:root {
    --green-950: #032a1d;
    --green-900: #073b2a;
    --green-800: #0c5039;
    --green-700: #176b4e;
    --gold-500: #cda451;
    --gold-400: #dfbd72;
    --gold-300: #ead39c;
    --ivory: #f8f4e9;
    --cream: #eee5d1;
    --paper: #fffdf8;
    --ink: #17231c;
    --muted: #657269;
    --line: rgba(7, 59, 42, .14);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow: 0 24px 70px rgba(13, 41, 29, .13);
    --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 70px 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; padding: 10px 16px; background: var(--gold-400); color: var(--green-950); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: white; transition: background .3s, box-shadow .3s, color .3s; }
.site-header.scrolled { color: var(--green-950); background: rgba(255, 253, 248, .92); box-shadow: 0 8px 32px rgba(3, 42, 29, .08); backdrop-filter: blur(18px); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { position: relative; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--gold-400); border-radius: 50%; color: var(--gold-400); font: 700 17px/1 var(--serif); letter-spacing: -.08em; }
.brand-mark::after { content: ''; position: absolute; inset: 4px; border: 1px solid currentColor; border-radius: inherit; opacity: .45; }
.brand-mark .crown { position: absolute; left: 50%; top: -9px; transform: translateX(-50%); padding-inline: 3px; font-size: 14px; line-height: 1; color: var(--gold-400); }
.site-header:not(.scrolled) .brand-mark .crown { background: transparent; }
.site-header.scrolled .brand-mark .crown { background: var(--paper); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font: 600 17px/1.1 var(--serif); letter-spacing: .02em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--gold-400); font-size: 9px; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 650; letter-spacing: .04em; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 12px 0; }
.site-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 6px; height: 1px; background: var(--gold-400); transition: right .25s; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 12px 18px; color: var(--green-950); background: var(--gold-400); border-radius: 999px; }
.mobile-menu-intro, .mobile-menu-contact { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; color: currentColor; }
.menu-toggle span { display: block; height: 1.5px; margin: 5px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero { position: relative; min-height: 760px; height: 100svh; color: white; background: var(--green-950); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: var(--green-950); }
.hero-slide { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 48%; opacity: 0; transform: scale(1.015); transition: opacity 1.25s ease-in-out; will-change: opacity, transform; }
.hero-slide.is-active { opacity: 1; animation: hero-slow-zoom 3s linear both; }
@keyframes hero-slow-zoom { from { transform: scale(1.015); } to { transform: scale(1.05); } }
.hero-slide-balcony { object-position: center 46%; }
.hero-shade { background: linear-gradient(90deg, rgba(3, 24, 17, .86) 0%, rgba(3, 24, 17, .53) 46%, rgba(3, 24, 17, .08) 78%), linear-gradient(0deg, rgba(3, 24, 17, .62), transparent 42%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 90px; }
.hero-kicker, .eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-400); font-size: 11px; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }
.hero-kicker svg { width: 15px; height: 15px; }
.hero h1 { max-width: 760px; margin: 22px 0 22px; font: 500 clamp(58px, 7.6vw, 108px)/.91 var(--serif); letter-spacing: -.045em; }
.hero h1 em { color: var(--gold-300); font-weight: 400; }
.hero-content > p { max-width: 610px; margin: 0; color: rgba(255, 255, 255, .82); font-size: clamp(16px, 1.45vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 22px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 750; letter-spacing: .025em; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--green-950); background: var(--gold-400); box-shadow: 0 10px 30px rgba(223, 189, 114, .22); }
.button-gold:hover { background: #eccb83; box-shadow: 0 14px 38px rgba(223, 189, 114, .32); }
.button-glass { color: white; border: 1px solid rgba(255, 255, 255, .36); background: rgba(255, 255, 255, .08); backdrop-filter: blur(8px); }
.button-dark { color: white; background: var(--green-900); }
.hero-facts { display: flex; gap: 0; margin-top: 56px; border-top: 1px solid rgba(255, 255, 255, .22); }
.hero-facts div { min-width: 150px; padding: 18px 34px 0 0; }
.hero-facts div + div { padding-left: 34px; border-left: 1px solid rgba(255, 255, 255, .22); }
.hero-facts strong { display: block; font: 500 28px/1 var(--serif); color: var(--gold-300); }
.hero-facts span { display: block; margin-top: 8px; color: rgba(255, 255, 255, .68); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-slider-controls { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.hero-slider-dots { display: flex; align-items: center; gap: 1px; }
.hero-slider-dots button { width: 31px; height: 32px; display: grid; place-items: center; padding: 0; color: white; background: transparent; border: 0; cursor: pointer; }
.hero-slider-dots button span { width: 19px; height: 2px; background: rgba(255,255,255,.42); border-radius: 999px; transition: width .35s ease, background .35s ease; }
.hero-slider-dots button.is-active span { width: 27px; background: var(--gold-400); }
.hero-slider-dots button:focus-visible, .hero-slider-toggle:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 2px; border-radius: 5px; }
.hero-slider-toggle { min-height: 34px; display: inline-flex; align-items: center; gap: 8px; padding: 4px 8px; color: rgba(255,255,255,.76); background: transparent; border: 0; font-size: 12px; font-weight: 700; letter-spacing: .04em; cursor: pointer; }
.pause-icon { position: relative; width: 10px; height: 12px; border-inline: 2px solid var(--gold-300); }
.hero-slider-toggle.is-paused .pause-icon { width: 0; height: 0; margin-inline: 1px 3px; border: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid var(--gold-300); }
.scroll-cue { position: absolute; z-index: 3; right: max(30px, calc((100vw - 1180px) / 2)); bottom: 46px; display: flex; align-items: center; gap: 13px; color: rgba(255, 255, 255, .75); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue span { width: 42px; height: 1px; background: var(--gold-400); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 110px; align-items: end; margin-bottom: 72px; }
.section-heading h2, .occasion-content h2, .location-content h2, .booking-copy h2 { margin: 15px 0 0; color: var(--green-950); font: 500 clamp(40px, 5vw, 68px)/1.06 var(--serif); letter-spacing: -.035em; }
.intro-copy p { margin: 0 0 18px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: var(--green-800); font-size: 13px; font-weight: 750; border-bottom: 1px solid var(--gold-500); padding-bottom: 4px; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.experience-collage { display: grid; grid-template-columns: 1.45fr .8fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 670px; }
.experience-collage figure { position: relative; margin: 0; overflow: hidden; border-radius: 16px; background: var(--cream); }
.experience-collage figure img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.experience-collage figure:hover img { transform: scale(1.035); }
.collage-main { grid-row: 1 / 3; }
.collage-top img { object-position: center 54%; }
.collage-bottom img { object-position: center 56%; }
.experience-collage figcaption { position: absolute; inset: auto 20px 18px; display: flex; align-items: center; gap: 12px; color: white; font-size: 12px; font-weight: 650; letter-spacing: .07em; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.experience-collage figcaption span { color: var(--gold-300); font: 500 20px/1 var(--serif); }

.amenities { background: var(--ivory); border-block: 1px solid rgba(205, 164, 81, .18); }
.section-heading-center { max-width: 720px; margin: 0 auto 58px; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading-center > p { max-width: 570px; margin: 20px auto 0; color: var(--muted); }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: 0 18px 50px rgba(20, 50, 35, .05); }
.amenity-card { min-height: 270px; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, transform .25s; }
.amenity-card:nth-child(3n) { border-right: 0; }
.amenity-card:nth-child(n+4) { border-bottom: 0; }
.amenity-card:hover { background: #fbf7ec; }
.amenity-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; color: var(--gold-500); border: 1px solid rgba(205, 164, 81, .42); border-radius: 50%; }
.amenity-icon svg { width: 23px; height: 23px; }
.amenity-card h3 { margin: 0 0 12px; color: var(--green-900); font: 600 25px/1.15 var(--serif); }
.amenity-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.occasion { background: var(--paper); }
.occasion-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 90px; align-items: center; }
.occasion-image { position: relative; }
.occasion-image::before { content: ''; position: absolute; z-index: -1; inset: -18px 50% 45% -18px; background: var(--green-900); border-radius: 18px; }
.occasion-image img { aspect-ratio: 1 / 1.04; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.occasion-badge { position: absolute; right: -34px; bottom: 42px; width: 132px; height: 132px; display: grid; place-content: center; text-align: center; color: var(--green-950); background: var(--gold-400); border: 9px solid var(--paper); border-radius: 50%; }
.occasion-badge strong { font: 600 29px/1 var(--serif); }
.occasion-badge span { margin-top: 6px; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.occasion-content { padding-right: 30px; }
.occasion-list { display: grid; gap: 22px; margin: 36px 0; }
.occasion-list > div { display: flex; align-items: flex-start; gap: 15px; color: var(--muted); font-size: 14px; }
.occasion-list > div > svg { width: 24px; height: 24px; padding: 5px; color: var(--green-900); background: var(--gold-300); border-radius: 50%; }
.occasion-list strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 15px; }

.group-chat-cta { padding: 28px 0; background: var(--ivory); }
.group-chat-card { position: relative; display: grid; gap: 24px; padding: 28px 22px; color: white; background: radial-gradient(circle at 95% 0%, rgba(223,189,114,.22), transparent 34%), linear-gradient(135deg, var(--green-950), var(--green-800)); border: 1px solid rgba(223,189,114,.26); border-radius: 24px; box-shadow: 0 20px 55px rgba(3,42,29,.18); overflow: hidden; isolation: isolate; }
.group-chat-card::after { content: ''; position: absolute; z-index: -1; right: -70px; bottom: -105px; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 58px rgba(255,255,255,.025); }
.group-chat-kicker { display: block; margin-bottom: 10px; color: var(--gold-300); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.group-chat-copy h2 { max-width: 720px; margin: 0; font: 500 clamp(32px, 9vw, 46px)/1.04 var(--serif); letter-spacing: -.035em; text-wrap: balance; }
.group-chat-copy p { margin: 10px 0 0; color: rgba(255,255,255,.74); font-size: 16px; }
.group-chat-action { display: grid; gap: 9px; }
.group-chat-button { width: 100%; min-height: 64px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 10px 15px 10px 10px; color: #052e20; background: #45df79; border: 1px solid rgba(255,255,255,.34); border-radius: 17px; box-shadow: 0 13px 30px rgba(15,100,53,.28); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.group-chat-button:hover { transform: translateY(-2px); background: #5bea8a; box-shadow: 0 17px 36px rgba(15,100,53,.34); }
.group-chat-button:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.group-chat-icon { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: #128c4c; border-radius: 13px; }
.group-chat-icon svg { width: 25px; height: 25px; }
.group-chat-button > span:nth-child(2) { display: grid; line-height: 1.2; }
.group-chat-button strong { font-size: 16px; font-weight: 850; }
.group-chat-button small { margin-top: 4px; color: rgba(5,46,32,.68); font-size: 10px; font-weight: 700; letter-spacing: .025em; }
.group-chat-button > svg { width: 21px; height: 21px; }
.group-chat-note { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 650; letter-spacing: .03em; text-align: center; }

@media (min-width: 761px) {
    .group-chat-cta { padding: 38px 0; }
    .group-chat-card { grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); align-items: center; gap: 55px; padding: 40px 46px; }
    .group-chat-copy h2 { font-size: clamp(38px, 4vw, 52px); }
    .group-chat-copy p { font-size: 17px; }
    .group-chat-button { min-height: 70px; }
}

.gallery-section { padding-bottom: 95px; overflow: hidden; background: var(--ivory); }
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.gallery-head p { max-width: 440px; margin: 0 0 4px; color: var(--muted); }
.gallery-track { width: min(1500px, calc(100% - 40px)); margin-left: max(20px, calc((100% - 1180px) / 2)); display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 420px); gap: 15px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; padding: 0 max(20px, calc((100vw - 1180px) / 2)) 10px 0; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-track.is-dragging .gallery-item { cursor: grabbing; }
.gallery-item { position: relative; height: 460px; padding: 0; border: 0; border-radius: 16px; background: var(--cream); overflow: hidden; scroll-snap-align: start; cursor: grab; }
.gallery-item-tall { height: 520px; }
.gallery-item img { height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item > span { position: absolute; right: 16px; bottom: 15px; width: 42px; height: 42px; display: grid; place-items: center; color: white; background: rgba(3,42,29,.72); backdrop-filter: blur(8px); border-radius: 50%; font: 500 13px/1 var(--serif); }
.gallery-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; }
.gallery-hint { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.gallery-hint b { margin-left: 7px; color: var(--gold-500); font-size: 18px; font-weight: 500; }
.mobile-hint { display: none; }
.gallery-autoplay-toggle { min-height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; color: var(--green-800); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer; }
.gallery-autoplay-toggle .pause-icon { border-color: var(--green-800); }
.gallery-autoplay-toggle.is-paused .pause-icon { width: 0; height: 0; margin-inline: 1px 3px; border: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid var(--green-800); }
.gallery-autoplay-toggle:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }

.location { background: var(--paper); }
.location-card { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 530px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.location-photo img { height: 100%; object-fit: cover; }
.location-content { position: relative; padding: 70px 60px; color: white; background: var(--green-900); overflow: hidden; }
.location-content::after { content: 'GP'; position: absolute; right: -26px; bottom: -60px; color: rgba(255,255,255,.035); font: 700 210px/1 var(--serif); }
.location-content .eyebrow { position: relative; z-index: 1; }
.location-content h2 { position: relative; z-index: 1; color: white; font-size: clamp(39px, 4vw, 57px); }
.location-content p { position: relative; z-index: 1; margin: 25px 0 32px; color: rgba(255,255,255,.7); }
.location-pin { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 45px; color: var(--green-950); background: var(--gold-400); border-radius: 50%; }
.location-pin svg { width: 25px; height: 25px; }
.location-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.text-link.light { margin: 0; color: white; border-color: rgba(255,255,255,.35); }

.booking { color: white; background: var(--green-950); }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: center; }
.booking-copy h2 { color: white; }
.booking-copy > p { max-width: 500px; margin: 25px 0 38px; color: rgba(255,255,255,.68); }
.contact-links { display: grid; gap: 14px; }
.contact-links a { display: flex; align-items: center; gap: 13px; width: fit-content; }
.contact-links a > svg { width: 36px; height: 36px; padding: 9px; color: var(--gold-300); border: 1px solid rgba(223,189,114,.35); border-radius: 50%; }
.contact-links span { display: grid; }
.contact-links small { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-links strong { color: white; font-size: 15px; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 40px; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.field label span { color: #8a948e; font-weight: 500; text-transform: none; }
.field input, .field select, .field textarea { width: 100%; min-height: 51px; padding: 13px 14px; color: var(--ink); background: #f7f4ec; border: 1px solid transparent; border-radius: 9px; outline: none; transition: border-color .2s, background .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: white; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(205,164,81,.14); }
.button-submit { grid-column: 1 / -1; margin-top: 5px; }
.form-note { grid-column: 1 / -1; margin: -7px 0 0; color: #7a857e; font-size: 11px; text-align: center; }

.site-footer { padding: 75px 0 30px; color: rgba(255,255,255,.66); background: #021d14; border-top: 1px solid rgba(223,189,114,.2); }
.footer-top { display: grid; grid-template-columns: 1.4fr .65fr .8fr 1fr; gap: 55px; }
.brand-footer { color: white; }
.footer-brand p { margin: 24px 0 0; font-family: var(--serif); font-size: 17px; line-height: 1.6; }
.footer-nav { display: grid; align-content: start; gap: 11px; font-size: 13px; }
.footer-nav strong { margin-bottom: 8px; color: var(--gold-300); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.footer-nav a:hover { color: white; }
.footer-cta { align-self: start; padding: 24px; border: 1px solid rgba(223,189,114,.25); border-radius: 14px; }
.footer-cta span { display: block; margin-bottom: 13px; font: 500 18px/1.2 var(--serif); color: white; }
.footer-cta a { display: flex; align-items: center; gap: 8px; color: var(--gold-300); font-size: 12px; font-weight: 750; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-book-bar { display: none; }

.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; padding: 0; color: white; background: rgba(1,17,12,.96); border: 0; }
.lightbox::backdrop { background: rgba(1,17,12,.92); }
.lightbox[open] { display: grid; grid-template-columns: 80px 1fr 80px; place-items: center; }
.lightbox figure { width: min(1100px, calc(100vw - 180px)); margin: 0; }
.lightbox figure img { max-height: 82dvh; object-fit: contain; }
.lightbox figcaption { margin-top: 12px; color: rgba(255,255,255,.68); font-size: 12px; text-align: center; }
.lightbox button { color: white; border: 0; background: transparent; cursor: pointer; }
.lightbox-close { position: fixed; top: 20px; right: 24px; z-index: 3; width: 46px; height: 46px; font-size: 35px; }
.lightbox-prev, .lightbox-next { width: 60px; height: 60px; font: 300 54px/1 var(--serif); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .section { padding: 95px 0; }
    .brand { position: relative; z-index: 102; }
    .menu-toggle { display: block; position: relative; z-index: 102; border: 1px solid currentColor; border-radius: 50%; }
    .site-nav { position: fixed; z-index: 101; inset: 0; width: 100vw; height: 100dvh; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 112px 24px max(28px, env(safe-area-inset-bottom)); color: white; background: radial-gradient(circle at 110% 5%, rgba(223,189,114,.2), transparent 34%), linear-gradient(155deg, #032a1d 0%, #064630 100%); overflow-y: auto; overscroll-behavior: contain; visibility: hidden; pointer-events: none; opacity: 0; transform: translateX(100%); transition: transform .38s cubic-bezier(.22,.75,.18,1), opacity .25s ease, visibility 0s linear .38s; }
    .site-nav::after { content: 'GP'; position: fixed; right: -28px; bottom: 62px; color: rgba(255,255,255,.035); font: 700 180px/1 var(--serif); pointer-events: none; }
    .site-nav.open { visibility: visible; pointer-events: auto; opacity: 1; transform: none; transition-delay: 0s; }
    .mobile-menu-intro { display: block; margin-bottom: 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(223,189,114,.25); }
    .mobile-menu-intro span { color: var(--gold-300); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
    .mobile-menu-intro p { max-width: 330px; margin: 7px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5; }
    .site-nav > a:not(.nav-cta) { width: 100%; padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.11); font: 500 clamp(29px, 8vw, 38px)/1.08 var(--serif); letter-spacing: -.025em; }
    .site-nav > a:not(.nav-cta)::after { display: none; }
    .site-nav .nav-cta { width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: center; margin-top: 22px; padding: 15px 22px; color: var(--green-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 14px 32px rgba(0,0,0,.2); font: 800 14px/1 var(--sans); }
    .mobile-menu-contact { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; padding-top: 22px; }
    .mobile-menu-contact a { min-width: 0; display: flex; align-items: center; gap: 9px; padding: 12px; color: white; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; }
    .mobile-menu-contact a:first-child { background: rgba(37,211,102,.12); border-color: rgba(69,223,121,.3); }
    .mobile-menu-contact svg { width: 22px; height: 22px; color: var(--gold-300); }
    .mobile-menu-contact a:first-child svg { color: #5bea8a; }
    .mobile-menu-contact span { min-width: 0; display: grid; line-height: 1.2; }
    .mobile-menu-contact small { color: rgba(255,255,255,.55); font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
    .mobile-menu-contact strong { margin-top: 3px; overflow: hidden; font-size: 11px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
    .menu-open .site-header { color: white; background: transparent; box-shadow: none; backdrop-filter: none; }
    .menu-open .site-header.scrolled .brand-mark .crown { background: #032a1d; }
    .menu-toggle[aria-expanded="true"] { color: white; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .intro-grid { gap: 55px; }
    .experience-collage { height: 550px; }
    .amenity-card { padding: 30px; }
    .occasion-grid { gap: 60px; }
    .occasion-badge { right: -20px; }
    .location-content { padding: 55px 40px; }
    .booking-grid { gap: 55px; }
    .footer-top { grid-template-columns: 1.2fr .7fr .8fr; }
    .footer-cta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
}

@media (max-width: 760px) {
    html { scroll-padding-top: 72px; }
    body { padding-bottom: 66px; }
    .container { width: min(100% - 32px, 620px); }
    .section { padding: 45px 0; }
    .nav-wrap { height: 72px; }
    .brand-mark { width: 43px; height: 43px; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy small { font-size: 8px; }
    .hero { min-height: 710px; height: 100svh; }
    .hero-slide { object-position: 56% center; }
    .hero-slide-balcony { object-position: center; }
    .hero-shade { background: linear-gradient(0deg, rgba(2,24,16,.9) 0%, rgba(2,24,16,.47) 70%, rgba(2,24,16,.3) 100%); }
    .hero-content { justify-content: flex-end; padding: 110px 0 55px; }
    .hero h1 { margin: 17px 0; font-size: clamp(48px, 15vw, 70px); }
    .hero-content > p { font-size: 15px; line-height: 1.6; }
    .hero-actions { width: 100%; margin-top: 25px; }
    .hero-actions .button { flex: 1; padding-inline: 14px; }
    .hero-facts { width: 100%; margin-top: 35px; }
    .hero-facts div { min-width: 0; flex: 1; padding: 15px 10px 0 0; }
    .hero-facts div + div { padding-left: 13px; }
    .hero-facts strong { font-size: 23px; }
    .hero-facts span { font-size: 8px; }
    .hero-slider-controls { width: 100%; justify-content: space-between; margin-top: 15px; }
    .hero-slider-dots button { width: 25px; }
    .hero-slider-dots button span { width: 14px; }
    .hero-slider-dots button.is-active span { width: 21px; }
    .scroll-cue { display: none; }
    .intro-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 48px; }
    .section-heading h2, .occasion-content h2, .location-content h2, .booking-copy h2 { font-size: clamp(39px, 11vw, 52px); }
    .experience-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr .8fr; height: 580px; gap: 10px; }
    .collage-main { grid-column: 1 / -1; grid-row: auto; }
    .experience-collage figcaption { inset: auto 13px 12px; font-size: 9px; }
    .amenity-grid { grid-template-columns: 1fr; }
    .amenity-card { min-height: auto; padding: 28px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
    .amenity-card:last-child { border-bottom: 0 !important; }
    .amenity-icon { margin-bottom: 20px; }
    .occasion-grid { grid-template-columns: 1fr; gap: 58px; }
    .occasion-content { padding: 0; }
    .occasion-badge { right: -5px; bottom: -28px; width: 112px; height: 112px; border-width: 7px; }
    .gallery-head { display: block; }
    .gallery-head p { margin-top: 20px; }
    .gallery-track { width: calc(100% - 16px); margin-left: 16px; grid-auto-columns: minmax(270px, 78vw); padding-right: 16px; }
    .gallery-item, .gallery-item-tall { height: 400px; }
    .desktop-hint { display: none; }
    .mobile-hint { display: inline; }
    .gallery-autoplay-toggle { min-height: 44px; }
    .location-card { grid-template-columns: 1fr; }
    .location-photo { height: 290px; }
    .location-content { padding: 45px 28px 50px; }
    .location-pin { margin-bottom: 28px; }
    .location-actions { align-items: flex-start; flex-direction: column; }
    .booking-grid { grid-template-columns: 1fr; gap: 48px; }
    .booking-form { grid-template-columns: 1fr; padding: 26px 20px; }
    .field, .field-full, .button-submit, .form-note { grid-column: 1; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-cta { grid-column: 1 / -1; }
    .footer-bottom { display: block; }
    .footer-bottom p + p { margin-top: 4px; }
    .mobile-book-bar { position: fixed; z-index: 90; inset: auto 0 0; display: grid; grid-template-columns: .8fr 1.5fr; min-height: 66px; padding: 8px 10px max(8px, env(safe-area-inset-bottom)); background: rgba(255,253,248,.96); border-top: 1px solid var(--line); box-shadow: 0 -12px 35px rgba(3,42,29,.12); backdrop-filter: blur(15px); }
    .mobile-book-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--green-900); font-size: 12px; font-weight: 750; }
    .mobile-book-bar a:last-child { color: var(--green-950); background: var(--gold-400); border-radius: 999px; }
    .lightbox[open] { grid-template-columns: 48px 1fr 48px; }
    .lightbox figure { width: calc(100vw - 96px); }
    .lightbox-prev, .lightbox-next { width: 46px; }
}

@media (max-width: 390px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-facts span { letter-spacing: .03em; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand, .footer-cta { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-slide { transform: none !important; }
}
