:root {
    --forest-950: #0c211a;
    --forest-900: #123126;
    --forest-800: #1a4334;
    --forest-700: #285b48;
    --moss: #738269;
    --cream: #f4f0e7;
    --paper: #fbf9f4;
    --white: #fff;
    --wood: #8a4e30;
    --ember: #d67a38;
    --gold: #dca55a;
    --ink: #16201b;
    --muted: #617068;
    --line: rgba(22, 32, 27, .14);
    --shadow: 0 24px 70px rgba(17, 39, 30, .16);
    --radius: 1.25rem;
    --container: min(1180px, calc(100% - 3rem));
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 999; transform: translateY(-160%); padding: .8rem 1rem; color: var(--white); background: var(--forest-950); border-radius: .4rem; }
.skip-link:focus { transform: translateY(0); }

.eyebrow { margin: 0 0 1.1rem; color: var(--wood); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
h1 { max-width: 820px; font-size: clamp(3.3rem, 7.7vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
h3 { margin: 0 0 .7rem; font-size: 1.25rem; line-height: 1.25; }
.section-heading { max-width: 610px; }
.section-heading-centered { margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.lead { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.55; }

.site-header { position: fixed; top: 0; left: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; width: 100%; height: 5.25rem; padding: 0 clamp(1.25rem, 4vw, 4rem); color: var(--white); transition: height .3s, color .3s, background .3s, box-shadow .3s; }
.site-header.is-scrolled { height: 4.5rem; color: var(--ink); background: rgba(251, 249, 244, .94); box-shadow: 0 6px 30px rgba(20, 36, 29, .1); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; font-size: .92rem; letter-spacing: .02em; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 2.35rem; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: .8rem; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.25rem); }
.main-nav a { position: relative; font-size: .84rem; font-weight: 650; text-decoration: none; }
.main-nav a:not(.nav-cta)::after { position: absolute; bottom: -.35rem; left: 0; width: 100%; height: 1px; background: currentColor; content: ''; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .7rem 1.1rem; border: 1px solid currentColor; border-radius: 999px; }
.menu-toggle { display: none; width: 2.8rem; height: 2.8rem; padding: .65rem; color: inherit; background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: .35rem 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero { position: relative; display: grid; min-height: max(760px, 100svh); overflow: hidden; color: var(--white); isolation: isolate; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { z-index: -3; background-position: center; background-size: cover; opacity: 0; transform: scale(1.015); transition: opacity 1s ease, transform 8s ease; }
.hero-image.is-active { opacity: 1; transform: scale(1); }
.hero-image-day { background-image: url('../../zahradka-den.png'); }
.hero-image-night { background-image: url('../../zahradka-vecer.png'); }
.hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(6, 22, 16, .79) 0%, rgba(7, 20, 15, .44) 52%, rgba(7, 16, 12, .18) 100%), linear-gradient(0deg, rgba(6, 14, 10, .68) 0%, transparent 48%); transition: background .8s; }
[data-theme='day'] .hero-overlay { background: linear-gradient(90deg, rgba(12, 32, 23, .72), rgba(15, 34, 25, .33) 56%, rgba(15, 30, 22, .08)), linear-gradient(0deg, rgba(8, 22, 15, .64), transparent 48%); }
.hero-content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 7rem; padding-bottom: 10.5rem; }
.hero .eyebrow { color: #f3bf77; }
.theme-switch { display: inline-flex; gap: .25rem; margin-bottom: clamp(2rem, 5vh, 4rem); padding: .3rem; background: rgba(8, 20, 15, .38); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.theme-switch button { min-width: 6rem; padding: .55rem .9rem; color: rgba(255,255,255,.74); background: transparent; border: 0; border-radius: 999px; cursor: pointer; transition: color .3s, background .3s; }
.theme-switch button[aria-pressed='true'] { color: var(--ink); background: var(--cream); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.theme-switch span { margin-right: .25rem; }
.hero-lead { max-width: 640px; margin: 1.5rem 0 1.6rem; color: rgba(255,255,255,.9); font-size: clamp(1.1rem, 2vw, 1.4rem); }
.hero-stats { display: flex; flex-wrap: wrap; gap: .65rem 1.5rem; margin-bottom: 2rem; color: rgba(255,255,255,.82); font-size: .9rem; }
.hero-stats span { display: flex; gap: .3rem; }
.hero-stats span + span { padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.35); }
.hero-stats strong { color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; min-height: 3.4rem; padding: .8rem 1.45rem; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 750; text-decoration: none; cursor: pointer; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.button-primary { color: var(--white); background: var(--ember); }
.button-primary:hover { background: #c76729; }
[data-theme='day'] .hero .button-primary { color: var(--forest-950); background: #e7b467; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-light { color: var(--forest-950); background: var(--cream); }
.button-dark { color: var(--white); background: var(--forest-900); }
.hero-features { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(6, 1fr); color: rgba(255,255,255,.92); background: rgba(10, 28, 21, .62); border-top: 1px solid rgba(255,255,255,.18); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.hero-features > div { display: flex; align-items: center; justify-content: center; gap: .7rem; min-height: 5.5rem; padding: .75rem; border-right: 1px solid rgba(255,255,255,.14); font-size: .78rem; font-weight: 650; text-align: center; }
.hero-features svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: #e7b467; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }

.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.story .section-heading { position: sticky; top: 8rem; }
.story-copy { max-width: 680px; }
.story-copy p { margin: 0 0 1.5rem; color: #46554d; }
.story-copy .lead { color: var(--ink); }

.evening { padding-top: 0; background: var(--cream); }
.evening-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.evening-image { position: relative; }
.evening-image img { width: 100%; height: clamp(340px, 36vw, 470px); object-fit: cover; object-position: center 58%; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-note { position: absolute; right: -1.5rem; bottom: 2rem; padding: 1.1rem 1.4rem; color: var(--white); background: var(--forest-900); border-radius: .7rem; box-shadow: var(--shadow); font-size: .78rem; }
.image-note span { display: block; font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.evening-copy > p:not(.eyebrow) { color: #526058; }
.occasion-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem 1.25rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.occasion-list li { position: relative; padding-left: 1.3rem; font-size: .9rem; }
.occasion-list li::before { position: absolute; top: .65rem; left: 0; width: .38rem; height: .38rem; background: var(--ember); border-radius: 50%; content: ''; }
.price-panel { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 1rem; align-items: center; margin-top: clamp(3rem, 7vw, 6rem); padding: clamp(1.5rem, 3vw, 2.4rem); color: var(--white); background: var(--forest-900); border-radius: var(--radius); }
.price-panel > div { padding-left: clamp(.5rem, 2vw, 2rem); border-left: 1px solid rgba(255,255,255,.2); }
.price-panel span { display: block; margin-bottom: .25rem; color: rgba(255,255,255,.66); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.price-panel strong { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 400; }
.price-panel small { font-family: var(--sans); font-size: .8rem; font-weight: 500; }

.service { color: var(--white); background: var(--forest-800); }
.service-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.service .eyebrow { color: #e7ad65; }
.service-copy { max-width: 700px; }
.service-copy p { color: rgba(255,255,255,.72); }
.service-copy .lead { color: var(--white); }

.amenities { background: var(--paper); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity-card { min-height: 240px; padding: clamp(1.4rem, 3vw, 2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .3s, background .3s, transform .3s; }
.amenity-card:hover { color: var(--white); background: var(--forest-800); transform: translateY(-4px); }
.amenity-number { display: block; margin-bottom: 3.7rem; color: var(--wood); font-size: .72rem; font-weight: 750; }
.amenity-card:hover .amenity-number { color: #efbd7b; }
.amenity-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.amenity-card:hover p { color: rgba(255,255,255,.74); }

.wine-section { background: var(--cream); }
.wine-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.wine-image img { width: 100%; height: clamp(360px, 42vw, 590px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.wine-copy p:not(.eyebrow) { color: #526058; }
.wine-copy .lead { color: var(--ink); }

.social-offer { color: #172315; background: #f2ca26; }
.social-offer-inner { max-width: 920px; text-align: center; }
.social-offer .eyebrow { color: #684f00; }
.social-offer h2 { margin-inline: auto; }
.social-offer p:not(.eyebrow) { max-width: 720px; margin: 1.5rem auto 1rem; font-size: 1.08rem; }
.discount { display: block; font-family: var(--serif); font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 400; line-height: .95; }

.gallery-section { color: var(--white); background: var(--forest-950); }
.gallery-section .eyebrow { color: #e7ad65; }
.gallery-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; max-width: none; margin-bottom: 3rem; }
.gallery-heading > p { max-width: 400px; margin: 0; color: rgba(255,255,255,.65); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: .8rem; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 2; min-width: 0; padding: 0; overflow: hidden; background: #18362b; border: 0; border-radius: .7rem; cursor: zoom-in; }
.gallery-item-1, .gallery-item-6 { grid-column: span 8; }
.gallery-item-3, .gallery-item-5 { grid-row: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, opacity .4s; }
.gallery-item:hover img { transform: scale(1.035); opacity: .86; }
.gallery-zoom { position: absolute; right: 1rem; bottom: 1rem; display: grid; place-items: center; width: 2.6rem; height: 2.6rem; color: var(--white); background: rgba(8, 24, 18, .65); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1.4rem; transition: transform .25s, background .25s; }
.gallery-item:hover .gallery-zoom { background: var(--ember); transform: rotate(90deg); }

.tour { background: var(--cream); }
.tour-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.tour-heading h2 { max-width: 690px; }
.tour-frame { position: relative; padding-bottom: 56.25%; overflow: hidden; background: var(--forest-950); border-radius: var(--radius); box-shadow: var(--shadow); }
.tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.booking { color: var(--white); background: var(--forest-900); }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.booking .eyebrow { color: #e7ad65; }
.booking-intro { position: sticky; top: 8rem; }
.booking-intro > p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.68); }
.booking-summary { display: flex; gap: 2.5rem; margin-top: 3rem; }
.booking-summary div { display: flex; flex-direction: column; }
.booking-summary strong { font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.booking-summary span { color: rgba(255,255,255,.6); font-size: .78rem; }
.booking-form-wrap { padding: clamp(1.5rem, 4vw, 3.2rem); color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.field { margin-bottom: 1.4rem; }
.field label { display: flex; justify-content: space-between; margin-bottom: .45rem; font-size: .78rem; font-weight: 750; }
.optional { color: var(--muted); font-weight: 500; }
.field input, .field textarea { width: 100%; padding: .9rem 1rem; color: var(--ink); background: var(--white); border: 1px solid #cbd1cc; border-radius: .5rem; outline: 0; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(40, 91, 72, .14); }
.field.has-error input, .field.has-error textarea { border-color: #a83b35; }
.field-error { display: block; margin-top: .35rem; color: #9b312c; font-size: .78rem; }
.field-help { display: block; margin-top: .35rem; color: var(--muted); font-size: .72rem; text-align: right; }
.submit-button { width: 100%; border: 0; }
.form-disclaimer { margin: .9rem 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.form-message { margin-bottom: 1.2rem; padding: 1rem; border-radius: .5rem; font-size: .88rem; }
.form-message p { margin: .25rem 0 0; }
.form-success { color: #173e2e; background: #dcecdf; border: 1px solid #a8c8ae; }
.form-error { color: #792723; background: #f5dfdc; border: 1px solid #dfaaa5; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 1.5rem; font-weight: 300; transition: transform .25s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; margin: -.4rem 0 1.5rem; color: var(--muted); }

.site-footer { padding: 4.5rem 0 1.5rem; color: rgba(255,255,255,.72); background: #091b15; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand { color: var(--white); }
.footer-grid p { max-width: 350px; font-size: .86rem; }
.footer-grid h2 { margin: .4rem 0 1rem; color: var(--white); font-family: var(--sans); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:last-child a { display: block; margin-bottom: .55rem; font-size: .86rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom a { text-decoration: none; }
.back-to-top { display: grid; place-items: center; width: 2.35rem; aspect-ratio: 1; color: var(--white); border: 1px solid currentColor; border-radius: 50%; font-size: 1.1rem; transition: color .25s, background .25s; }
.back-to-top:hover { color: var(--forest-950) !important; background: var(--white); }

.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 3.5rem 5rem; color: var(--white); background: rgba(5, 15, 11, .96); border: 0; }
.lightbox[open] { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr) 3.5rem; align-items: center; }
.lightbox::backdrop { background: rgba(5, 15, 11, .95); }
.lightbox figure { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; height: 100%; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(100vh - 8rem); object-fit: contain; }
.lightbox figcaption { margin-top: .8rem; color: rgba(255,255,255,.72); font-size: .82rem; text-align: center; }
.lightbox button { color: var(--white); background: transparent; border: 0; cursor: pointer; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 3rem; height: 3rem; }
.lightbox-close svg { width: 1.7rem; height: 1.7rem; fill: none; stroke: currentColor; stroke-width: 1.4; }
.lightbox-nav { width: 3.5rem; height: 3.5rem; border: 1px solid rgba(255,255,255,.3) !important; border-radius: 50%; font-size: 2rem; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
    :root { --container: min(100% - 2rem, 760px); }
    .menu-toggle { display: block; z-index: 2; }
    .main-nav { position: fixed; inset: 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 6rem 2rem; color: var(--white); background: var(--forest-950); transform: translateX(100%); transition: transform .35s ease; }
    .main-nav.is-open { transform: none; }
    .main-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
    .main-nav .nav-cta { font-family: var(--sans); font-size: .9rem; }
    .menu-toggle[aria-expanded='true'] { color: var(--white); }
    .menu-toggle[aria-expanded='true'] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded='true'] span:nth-of-type(3) { opacity: 0; }
    .menu-toggle[aria-expanded='true'] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
    .hero { min-height: 880px; }
    .hero-features { grid-template-columns: repeat(3, 1fr); }
    .hero-features > div { min-height: 4.25rem; }
    .story-grid, .evening-grid, .service-grid, .wine-grid, .booking-grid, .faq-grid { grid-template-columns: 1fr; }
    .story .section-heading, .booking-intro { position: static; }
    .evening-image img { height: 430px; }
    .evening-copy { max-width: 680px; }
    .price-panel { grid-template-columns: repeat(3, 1fr); }
    .price-panel .button { grid-column: 1 / -1; margin-top: .5rem; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-auto-rows: 140px; }
    .tour-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    :root { --container: calc(100% - 1.5rem); --radius: .85rem; }
    .section { padding: 4.7rem 0; }
    .site-header { height: 4.5rem; padding-inline: .9rem; }
    .brand { font-size: .8rem; }
    .brand-mark { width: 2rem; }
    .hero { min-height: 900px; }
    .hero-content { justify-content: flex-start; padding-top: 7rem; padding-bottom: 18rem; }
    .theme-switch { margin-bottom: 2.2rem; }
    .theme-switch button { min-width: 5.4rem; }
    .hero h1 { font-size: clamp(3.2rem, 15vw, 4.4rem); }
    .hero-lead { font-size: 1.05rem; }
    .hero-stats { gap: .5rem 1rem; }
    .hero-stats span + span { padding-left: 0; border: 0; }
    .hero-actions { width: 100%; }
    .hero-actions .button { flex: 1 1 100%; }
    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .hero-features > div { justify-content: flex-start; min-height: 3.7rem; padding-inline: 1rem; font-size: .7rem; text-align: left; }
    .hero-features svg { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; }
    .story-grid { gap: 2rem; }
    .evening-image img { height: 360px; }
    .image-note { right: .75rem; bottom: .75rem; }
    .occasion-list { grid-template-columns: 1fr; }
    .price-panel { grid-template-columns: 1fr; gap: 1.3rem; }
    .price-panel > div { padding: 0 0 1.1rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
    .price-panel .button { grid-column: auto; }
    .amenities-grid { grid-template-columns: 1fr; }
    .amenity-card { min-height: auto; }
    .amenity-number { margin-bottom: 2rem; }
    .gallery-heading { grid-template-columns: 1fr; gap: 1.25rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery-item, .gallery-item-1, .gallery-item-3, .gallery-item-5, .gallery-item-6 { grid-column: span 1; grid-row: span 2; }
    .gallery-item:nth-child(3n + 1) { grid-column: span 2; }
    .tour-frame { padding-bottom: 75%; }
    .booking-grid { gap: 2.5rem; }
    .booking-summary { gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { gap: 1rem; }
    .lightbox { padding: 3.5rem .75rem 1rem; }
    .lightbox[open] { grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem; }
    .lightbox-nav { width: 2.5rem; height: 2.5rem; }
}

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