:root {
  --ink: #16211f;
  --ink-deep: #0e1715;
  --pine: #1a3b34;
  --pine-soft: #31554d;
  --wine: #72222a;
  --wine-deep: #51151b;
  --gold: #caa466;
  --gold-light: #ecd9b5;
  --ivory: #f8f3e9;
  --paper: #fffdf8;
  --mist: #e7ede7;
  --muted: #6c7773;
  --line: rgba(22, 33, 31, .16);
  --white-line: rgba(255,255,255,.22);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: min(1240px, calc(100vw - 72px));
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
body.modal-open, body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(202,164,102,.74); outline-offset: 3px; }
section[id] { scroll-margin-top: 84px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 124px 0; }

.page-loader { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; background: var(--ink-deep); color: var(--gold-light); transition: opacity .45s ease, visibility .45s ease; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: min(330px, 72vw); max-height: min(150px, 24vh); object-fit: contain; filter: drop-shadow(0 12px 26px rgba(0,0,0,.30)); animation: logo-intro .8s ease both; }
@keyframes logo-intro { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 16px 0; color: #fff; transition: background .3s ease, box-shadow .3s ease, padding .3s ease; }
.site-header.scrolled { padding: 10px 0; background: rgba(14,23,21,.94); box-shadow: 0 12px 30px rgba(0,0,0,.16); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; min-width: 0; }
.brand-logo { display: block; width: clamp(124px, 11vw, 172px); height: 42px; object-fit: contain; object-position: left center; filter: drop-shadow(0 3px 8px rgba(0,0,0,.24)); }
.brand-type { margin-top: 6px; color: rgba(255,255,255,.78); font-size: 7px; font-weight: 800; letter-spacing: .18em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav > a { color: rgba(255,255,255,.82); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: color .2s ease; }
.desktop-nav > a:hover { color: var(--gold-light); }
.desktop-nav .nav-cta { margin-left: 4px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.46); color: #fff; }
.desktop-nav .nav-cta:hover { border-color: var(--gold); background: var(--gold); color: var(--ink-deep); }
.menu-toggle { display: none; width: 45px; height: 42px; border: 1px solid rgba(255,255,255,.45); background: transparent; color: #fff; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: min(820px,100svh); overflow: hidden; color: #fff; background: var(--ink-deep); isolation: isolate; }
.hero-image { position: absolute; inset: -14px; z-index: -3; background: url("assets/new-media/photos/hero-image.jpg") center center / cover no-repeat; filter: blur(3px); transform: scale(1.035); will-change: transform; }
.hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-noise { position: absolute; inset: 0; z-index: -1; opacity: .24; background-image: radial-gradient(rgba(255,255,255,.18) .55px, transparent .6px); background-size: 5px 5px; mix-blend-mode: soft-light; pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: 1.1fr .42fr; gap: 50px; min-height: min(820px,100svh); align-items: end; padding: 150px 0 92px; }
.hero-copy { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: var(--pine); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 31px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
h1,h2,h3,h4,p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 23px; color: #fff; font: 400 clamp(60px,7vw,103px)/.91 var(--serif); letter-spacing: -.07em; }
h1 em, h2 em { color: var(--gold-light); font-style: italic; }
.hero-lede { max-width: 540px; margin-bottom: 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 15px 18px; border: 1px solid transparent; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-gold { background: var(--gold); color: var(--ink-deep); }
.button-gold:hover { background: var(--gold-light); }
.underline-link { position: relative; display: inline-flex; align-items: center; gap: 9px; padding-bottom: 6px; border-bottom: 1px solid currentColor; color: var(--pine); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: color .2s ease, gap .2s ease; }
.underline-link:hover { gap: 14px; color: var(--wine); }
.light-link { color: var(--gold-light); }
.hero-side { align-self: end; justify-self: end; max-width: 270px; padding-bottom: 4px; }
.hero-side-line { width: 100%; height: 1px; margin: 23px 0 18px; background: rgba(255,255,255,.44); }
.hero-side p { margin-bottom: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.7; }
.hero-side b { color: var(--gold-light); font-size: 9px; letter-spacing: .13em; }
.hero-count { color: rgba(255,255,255,.68); font: 400 22px var(--serif); letter-spacing: .04em; }
.scroll-indicator { position: absolute; left: max(36px, calc((100vw - min(1240px, calc(100vw - 72px))) / 2)); bottom: 31px; display: inline-flex; align-items: center; gap: 14px; color: rgba(255,255,255,.68); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.scroll-indicator i { display: block; width: 47px; height: 1px; background: currentColor; position: relative; }
.scroll-indicator i:after { content: ''; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }

.pricing-section { background: var(--ivory); }
.pricing-top, .gallery-heading { display: grid; grid-template-columns: 1fr .68fr; gap: 90px; align-items: end; }
.pricing-top h2, .gallery-heading h2, .section-intro h2 { margin-bottom: 0; color: var(--ink); font: 400 clamp(47px,5vw,75px)/.98 var(--serif); letter-spacing: -.065em; }
.pricing-top-copy { max-width: 450px; }
.pricing-top-copy p, .gallery-heading > p { margin-bottom: 25px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.pricing-groups { display: grid; gap: 78px; margin-top: 54px; }
.pricing-group { padding-top: 25px; border-top: 1px solid var(--line); }
.pricing-group-head { display: grid; grid-template-columns: 1fr .68fr; gap: 90px; align-items: end; margin-bottom: 28px; }
.pricing-group-head > div { display: flex; align-items: baseline; gap: 14px; }
.pricing-group-number { color: var(--wine); font: 400 32px/1 var(--serif); }
.pricing-group-head h3 { margin: 0; color: var(--ink); font: 400 clamp(31px,3vw,44px)/1 var(--serif); letter-spacing: -.055em; }
.pricing-group-head p { max-width: 450px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.special-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 670px; }
.premium-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1000px; }
.price-card { position: relative; display: flex; min-height: 420px; flex-direction: column; padding: 28px 24px 23px; border: 1px solid var(--line); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { z-index: 1; transform: translateY(-8px); box-shadow: 0 24px 42px rgba(22,33,31,.12); }
.price-card.featured { border-color: var(--gold); background: linear-gradient(145deg, #fffdf8 0%, #f7ecd6 100%); }
.card-flag { position: absolute; top: 0; right: 0; padding: 8px 10px; background: var(--wine); color: #fff; font-size: 8px; font-weight: 850; letter-spacing: .11em; }
.price-card > p { margin-bottom: 16px; color: var(--pine); font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.price-card h3 { min-height: 51px; margin-bottom: 14px; color: var(--ink); font: 400 26px/.99 var(--serif); letter-spacing: -.045em; }
.price-card > strong { margin-bottom: 20px; color: var(--wine); font: 400 40px/1 var(--serif); letter-spacing: -.045em; }
.price-saving { display: block; margin: -10px 0 20px; color: var(--pine-soft); font-size: 10px; font-weight: 760; line-height: 1.5; }
.price-saving s { color: var(--muted); text-decoration-thickness: 1px; }
.price-card ul { display: grid; gap: 10px; margin: 0 0 16px; padding: 0; list-style: none; color: var(--muted); font-size: 12px; line-height: 1.4; }
.price-card li { position: relative; padding-left: 14px; }
.price-card li:before { content: ''; position: absolute; left: 0; top: .48em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.package-note { margin: 0 0 22px; padding: 14px 14px 13px; border: 1px solid rgba(202,164,102,.38); background: linear-gradient(135deg, rgba(255,253,248,.9), rgba(247,236,214,.58)); color: var(--ink); font-size: 11px; line-height: 1.55; }
.package-note span { display: block; margin-bottom: 8px; color: var(--wine); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.package-note p { margin: 0; }
.package-note strong { color: var(--pine); font-weight: 850; }
.choose-package { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding: 14px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--pine); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-align: left; text-transform: uppercase; }
.choose-package span { font-size: 17px; transition: transform .2s ease; }
.choose-package:hover span { transform: translate(3px,-3px); }


/* Text-based Terms & Conditions panel: styled to echo the supplied soft blue-and-pink card without using it as an image. */
.terms-section { position: relative; isolation: isolate; overflow: hidden; padding: 106px 0; background: #edf4f4; }
.terms-section:before,
.terms-section:after { content: ''; position: absolute; z-index: -1; width: 58vw; height: 58vw; border-radius: 45% 55% 52% 48% / 39% 46% 54% 61%; filter: blur(3px); opacity: .72; pointer-events: none; }
.terms-section:before { top: -38vw; left: -22vw; background: rgba(128, 207, 236, .55); transform: rotate(-16deg); }
.terms-section:after { right: -26vw; bottom: -41vw; background: rgba(244, 139, 185, .42); transform: rotate(23deg); }
.terms-wash { position: absolute; z-index: -1; pointer-events: none; filter: blur(2px); opacity: .72; }
.terms-wash-blue { top: 11%; right: -11%; width: 47vw; height: 48vw; border-radius: 60% 40% 62% 38% / 48% 63% 37% 52%; background: rgba(130, 209, 241, .34); transform: rotate(15deg); }
.terms-wash-pink { bottom: -18%; left: -9%; width: 46vw; height: 44vw; border-radius: 43% 57% 34% 66% / 49% 38% 62% 51%; background: rgba(243, 126, 174, .38); transform: rotate(-17deg); }
.terms-wash-lilac { top: 39%; left: 34%; width: 34vw; height: 22vw; border-radius: 47% 53% 54% 46% / 58% 45% 55% 42%; background: rgba(191, 164, 226, .23); transform: rotate(-9deg); }
.terms-shell { position: relative; }
.terms-card { position: relative; max-width: 1090px; margin: 0 auto; padding: clamp(34px, 5.2vw, 68px) clamp(22px, 6vw, 84px) 35px; border: 1px solid rgba(255,255,255,.74); background: linear-gradient(135deg, rgba(255,255,255,.71), rgba(255,255,255,.51)); box-shadow: 0 28px 72px rgba(65,87,87,.13); backdrop-filter: blur(8px); }
.terms-card:before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(22,33,31,.12); pointer-events: none; }
.terms-kicker { margin: 0 0 11px; color: var(--wine); font-size: 9px; font-weight: 850; letter-spacing: .2em; text-align: center; text-transform: uppercase; }
.terms-card h2 { margin: 0; color: var(--ink); font: italic 400 clamp(41px, 5vw, 70px)/.95 var(--serif); letter-spacing: -.065em; text-align: center; }
.terms-card h2 span { color: var(--wine); }
.terms-rule { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 20px auto 32px; color: var(--pine); }
.terms-rule i { width: min(90px, 18vw); height: 1px; background: rgba(26,59,52,.38); }
.terms-rule span { color: var(--wine); font: italic 400 15px var(--serif); letter-spacing: .05em; }
.terms-list { display: grid; gap: 9px; max-width: 880px; margin: 0 auto; padding: 0; list-style: none; color: #283833; font: italic 400 clamp(14px, 1.35vw, 17px)/1.55 var(--serif); }
.terms-list li { position: relative; padding-left: 23px; }
.terms-list li:before { content: '•'; position: absolute; top: -.05em; left: 1px; color: var(--wine); font: 400 24px/1 var(--serif); }
.terms-list strong { color: var(--ink); font-weight: 700; }
.terms-note { max-width: 880px; margin: 27px auto 0; padding-top: 16px; border-top: 1px solid rgba(22,33,31,.14); color: var(--pine-soft); font-size: 10px; font-weight: 800; letter-spacing: .11em; line-height: 1.6; text-align: center; text-transform: uppercase; }

.visual-story { position: relative; overflow: hidden; background: var(--pine); color: #fff; }
.visual-story:after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .34; background-image: linear-gradient(120deg, transparent 0 48%, rgba(202,164,102,.23) 48.15% 48.35%, transparent 48.5%); }
.story-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1fr; gap: 10vw; align-items: center; }
.story-images { position: relative; min-height: 650px; padding: 0 84px 84px 0; }
.story-main { height: 590px; margin: 0; overflow: hidden; }
.story-main img, .story-overlay img { width: 100%; height: 100%; object-fit: cover; }
.story-overlay { position: absolute; right: 0; bottom: 0; width: 53%; height: 305px; margin: 0; border: 10px solid var(--pine); overflow: hidden; }
.story-tag { position: absolute; top: 38px; left: -10px; padding: 10px 0 10px 11px; border-left: 1px solid var(--gold-light); color: var(--gold-light); font-size: 8px; font-weight: 850; letter-spacing: .14em; line-height: 1.55; }
.story-copy { max-width: 510px; padding: 40px 0; }
.story-copy h2 { margin-bottom: 23px; color: #fff; font: 400 clamp(54px,5.8vw,82px)/.94 var(--serif); letter-spacing: -.065em; }
.story-copy p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.8; }
.story-stats { display: flex; gap: 51px; margin: 33px 0; padding: 22px 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.story-stats div { display: grid; gap: 4px; }
.story-stats strong { color: var(--gold-light); font: 400 38px/1 var(--serif); }
.story-stats span { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.button-light { border-color: rgba(255,255,255,.52); color: #fff; }
.button-light:hover { border-color: var(--gold-light); background: var(--gold-light); color: var(--ink-deep); }

.film-section { position: relative; isolation: isolate; overflow: hidden; background: #0e1715; color: #fff; }
.film-section:before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(135deg, rgba(114,34,42,.34), transparent 35%), radial-gradient(circle at 77% 22%, rgba(202,164,102,.20), transparent 31%), var(--ink-deep); }
.film-section:after { content: ''; position: absolute; inset: 0; z-index: -1; opacity: .15; background-image: radial-gradient(rgba(255,255,255,.24) .65px, transparent .7px); background-size: 6px 6px; pointer-events: none; }
.film-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(10px); pointer-events: none; }
.film-glow-left { width: 360px; height: 360px; left: -130px; bottom: 12%; background: rgba(114,34,42,.34); }
.film-glow-right { width: 460px; height: 460px; right: -150px; top: 8%; background: rgba(202,164,102,.18); }
.film-heading { display: grid; grid-template-columns: 1fr .66fr; gap: 88px; align-items: end; margin-bottom: 50px; }
.film-heading h2 { margin-bottom: 0; color: #fff; font: 400 clamp(50px,5.4vw,82px)/.94 var(--serif); letter-spacing: -.065em; }
.film-heading p:not(.eyebrow) { max-width: 460px; margin: 0; color: rgba(255,255,255,.70); font-size: 14px; line-height: 1.85; }
.film-grid { display: grid; grid-template-columns: 1.25fr repeat(2, minmax(0, .75fr)); grid-auto-rows: 260px; gap: 13px; }
.film-card { position: relative; display: block; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.13); background: #08100e; color: #fff; text-align: left; box-shadow: 0 18px 44px rgba(0,0,0,.18); }
.film-card-large { grid-row: span 2; }
.film-card img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transform: scale(1.01); transition: transform .55s ease, opacity .25s ease; }
.film-card:hover img, .film-card:focus-visible img { opacity: .92; transform: scale(1.06); }
.film-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,10,9,.88), rgba(5,10,9,.14) 58%, rgba(5,10,9,.22)); pointer-events: none; }
.film-play { position: absolute; top: 22px; right: 22px; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.56); border-radius: 999px; background: rgba(255,255,255,.08); color: var(--gold-light); font-size: 17px; line-height: 1; box-shadow: 0 10px 26px rgba(0,0,0,.25); transition: background .2s ease, color .2s ease, transform .2s ease; }
.film-card:hover .film-play, .film-card:focus-visible .film-play { background: var(--gold); color: var(--ink-deep); transform: scale(1.06); }
.film-meta { position: absolute; left: 23px; right: 23px; bottom: 22px; display: grid; gap: 7px; }
.film-meta small { color: var(--gold-light); font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.film-meta b { color: #fff; font: 400 29px/1 var(--serif); letter-spacing: -.045em; }
.film-card:not(.film-card-large) .film-meta b { font-size: 24px; }
.modal-stage video { width: 100%; max-height: 79vh; background: #000; box-shadow: 0 22px 70px rgba(0,0,0,.45); }
.modal-stage .video-figure { width: min(980px, 100%); margin-inline: auto; }


.services-section { background: var(--paper); }
.section-intro { display: flex; flex-direction: column; align-items: flex-start; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-top: 47px; }
.service-card { position: relative; min-height: 440px; overflow: hidden; color: #fff; background: var(--ink); }
.service-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .84; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,15,13,.91), rgba(8,15,13,.03) 68%); }
.service-card > div { position: relative; z-index: 1; display: flex; height: 100%; flex-direction: column; justify-content: end; padding: 23px 20px; }
.service-card span { margin-bottom: auto; color: var(--gold-light); font: 400 27px var(--serif); }
.service-card h3 { margin: 0 0 10px; color: #fff; font: 400 28px/1 var(--serif); letter-spacing: -.04em; }
.service-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.65; }


.gallery-section { background: var(--ivory); }
.gallery-heading { align-items: end; }
.gallery-heading > p { margin-bottom: 0; max-width: 430px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 50px 0 20px; }
.gallery-filter { padding: 10px 12px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.gallery-filter:hover, .gallery-filter.active { border-color: var(--wine); background: var(--wine); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 260px; gap: 13px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--pine); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,15,13,.7), transparent 48%); opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover:after { opacity: 1; }
.gallery-caption { position: absolute; z-index: 1; bottom: 17px; left: 18px; right: 18px; display: flex; align-items: end; justify-content: space-between; opacity: 0; color: #fff; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption span { font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.gallery-caption b { font: 400 22px var(--serif); }
.gallery-empty { grid-column: 1/-1; padding: 60px 0; color: var(--muted); text-align: center; }

.booking-section { position: relative; overflow: hidden; background: var(--ink-deep); color: #fff; }
.booking-backdrop { position: absolute; inset: 0; opacity: .24; background: linear-gradient(95deg, rgba(5,13,11,.93), rgba(5,13,11,.38)), url('assets/new-media/photos/34_DSC08828.webp') center/cover; }
.booking-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: min(10vw,120px); align-items: center; }
.booking-copy h2 { margin-bottom: 24px; color: #fff; font: 400 clamp(55px,5.8vw,83px)/.94 var(--serif); letter-spacing: -.07em; }
.booking-copy > p:not(.eyebrow) { max-width: 470px; color: rgba(255,255,255,.73); font-size: 15px; line-height: 1.8; }
.booking-contact { display: grid; gap: 8px; margin-top: 41px; padding: 23px 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.booking-contact span { color: var(--gold-light); font-size: 8px; font-weight: 850; letter-spacing: .15em; }
.booking-contact strong { color: #fff; font: 400 30px var(--serif); }
.booking-contact small { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.6; }
.booking-form { display: grid; gap: 15px; padding: 34px; background: var(--ivory); color: var(--ink); box-shadow: 21px 21px 0 rgba(202,164,102,.28); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label { display: grid; gap: 7px; color: var(--pine); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.booking-form input,.booking-form select,.booking-form textarea { width: 100%; border: 1px solid rgba(22,33,31,.19); border-radius: 0; background: #fff; padding: 13px 12px; color: var(--ink); font-size: 14px; letter-spacing: normal; outline: none; text-transform: none; transition: box-shadow .2s ease, border .2s ease; }
.booking-form textarea { min-height: 103px; resize: vertical; }
.booking-form input:focus,.booking-form select:focus,.booking-form textarea:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(49,85,77,.14); }
.field-label { display: block; color: var(--pine); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.field-help { margin: -2px 0 10px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.shift-picker { min-width: 0; margin: 0; padding: 0; border: 0; }
.shift-picker .field-label { margin-bottom: 7px; }
.shift-picker .field-help { margin-bottom: 10px; }
.shift-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.shift-option { display: flex !important; grid-template-columns: none !important; align-items: center; gap: 11px !important; min-height: 64px; padding: 12px 13px; border: 1px solid rgba(22,33,31,.16); background: #fff; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.shift-option:hover { border-color: rgba(103,25,38,.42); transform: translateY(-1px); }
.shift-option:has(input:checked) { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(103,25,38,.09); }
.shift-option input { width: 17px !important; height: 17px; margin: 0; padding: 0 !important; accent-color: var(--wine); flex: 0 0 auto; }
.shift-option span { display: grid; gap: 4px; color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: normal; line-height: 1.35; text-transform: none; }
.shift-option small { color: var(--wine); font-size: 11px; font-weight: 850; letter-spacing: normal; text-transform: none; }
.package-picker { display: grid; gap: 8px; }
.package-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.package-option { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; padding: 12px; border: 1px solid rgba(22,33,31,.16); background: #fff; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.package-option:hover { border-color: rgba(103,25,38,.42); transform: translateY(-1px); }
.package-option:has(input:checked) { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(103,25,38,.09); }
.package-option input { width: 17px !important; height: 17px; margin: 2px 0 0; padding: 0 !important; accent-color: var(--wine); flex: 0 0 auto; }
.package-option span { display: grid; gap: 4px; color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: normal; line-height: 1.35; text-transform: none; }
.package-option small { color: var(--wine); font-size: 11px; font-weight: 850; }
.selected-package-list { margin: 2px 0 0; padding: 10px 11px; border: 1px dashed rgba(22,33,31,.2); background: rgba(255,255,255,.62); color: var(--muted); font-size: 11px; line-height: 1.55; }
.payment-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-summary div { padding: 14px 12px; border: 1px solid rgba(202,164,102,.44); background: linear-gradient(135deg, rgba(255,253,248,.95), rgba(247,236,214,.62)); }
.payment-summary span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.payment-summary strong { color: var(--wine); font: 400 25px var(--serif); }

.button-booking { width: 100%; margin-top: 2px; background: var(--wine); color: #fff; }
.button-booking:hover { background: var(--wine-deep); }
.form-note { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }

.site-footer { padding: 72px 0 18px; background: #0b1210; color: #fff; }
.footer-layout { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 70px; }
.footer-brand .brand-logo { width: clamp(160px, 14vw, 220px); height: 56px; }
.footer-brand .brand-type { margin-top: 9px; font-size: 7px; }
.footer-layout p { max-width: 350px; margin: 19px 0 0; color: rgba(255,255,255,.57); font-size: 12px; line-height: 1.8; }
.footer-layout h3 { margin: 0 0 18px; color: var(--gold-light); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.footer-layout div:not(:first-child) { display: grid; align-content: start; gap: 10px; }
.footer-layout div:not(:first-child) a, .footer-layout div:not(:first-child) span { color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.5; }
.footer-layout div:not(:first-child) a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 63px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38); font-size: 8px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.media-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 62px 86px; background: rgba(4,10,9,.95); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.media-modal.open { opacity: 1; visibility: visible; }
.modal-stage { width: min(1080px,79vw); max-height: 84vh; }
.modal-stage img { width: 100%; max-height: 79vh; object-fit: contain; background: #000; }
.modal-stage figure { margin: 0; text-align: center; }
.modal-stage figcaption { margin-top: 12px; color: rgba(255,255,255,.72); font: 400 17px var(--serif); }
.modal-close,.modal-nav { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.05); color: #fff; transition: background .2s ease, color .2s ease; }
.modal-close:hover,.modal-nav:hover { background: var(--gold); color: var(--ink-deep); }
.modal-close { top: 21px; right: 25px; width: 45px; height: 45px; font-size: 31px; font-weight: 200; }
.modal-nav { top: 50%; width: 48px; height: 48px; transform: translateY(-50%); font-size: 23px; }
.modal-prev { left: 24px; }
.modal-next { right: 24px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1080px) {
  :root { --shell: min(1240px, calc(100vw - 48px)); }
  .pricing-top,.gallery-heading,.film-heading { gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .film-grid { grid-template-columns: repeat(2,1fr); }
  .booking-layout { gap: 55px; }
}

@media (max-width: 800px) {
  .section { padding: 88px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; top: 72px; right: 24px; display: grid; width: min(360px, calc(100vw - 48px)); padding: 10px; background: rgba(14,23,21,.98); box-shadow: 0 18px 34px rgba(0,0,0,.23); opacity: 0; visibility: hidden; transform: translateY(-11px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { padding: 13px; border-bottom: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.8); font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
  .mobile-nav a:last-child { margin-top: 8px; border: 0; background: var(--gold); color: var(--ink-deep); }
  .hero { min-height: 700px; }
  .hero-layout { grid-template-columns: 1fr; min-height: 700px; padding: 136px 0 78px; }
  .hero-side { display: none; }
  .scroll-indicator { display: none; }
  .pricing-top, .pricing-group-head, .gallery-heading, .film-heading { grid-template-columns: 1fr; gap: 22px; }
  .story-layout, .booking-layout { grid-template-columns: 1fr; }
  .story-layout { gap: 35px; }
  .story-images { min-height: 550px; max-width: 620px; }
  .story-main { height: 500px; }
  .story-copy { max-width: 620px; padding: 0; }
  .film-grid { grid-auto-rows: 230px; }
  .booking-layout { gap: 50px; }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-layout > div:first-child { grid-column: span 2; }
}

@media (max-width: 800px) {
  .terms-section { padding: 80px 0; }
  .terms-section:before { top: -40vw; left: -45vw; width: 100vw; height: 100vw; }
  .terms-section:after { right: -53vw; bottom: -42vw; width: 108vw; height: 108vw; }
  .terms-wash-blue { right: -52vw; width: 100vw; height: 100vw; }
  .terms-wash-pink { left: -52vw; width: 104vw; height: 104vw; }
  .terms-wash-lilac { left: 15%; width: 76vw; height: 47vw; }
  .terms-card { padding: 41px 30px 30px; }
  .terms-list { gap: 10px; font-size: 16px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 36px); }
  .site-header { padding: 12px 0; }
  .site-header.scrolled { padding: 9px 0; }
  .brand-logo { width: 132px; height: 37px; }
  .brand-type { margin-top: 4px; font-size: 6px; letter-spacing: .15em; }
  .mobile-nav { top: 65px; right: 18px; width: calc(100vw - 36px); }
  .hero { min-height: 630px; }
  .hero-layout { min-height: 630px; padding: 118px 0 50px; }
  h1 { font-size: clamp(54px,16vw,74px); }
  .hero-lede { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .pricing-top h2, .gallery-heading h2, .section-intro h2, .film-heading h2 { font-size: 46px; }
  .pricing-groups { gap: 58px; margin-top: 34px; }
  .package-note { padding: 13px 13px 12px; font-size: 10.5px; }
  .pricing-group { padding-top: 20px; }
  .pricing-group-head { margin-bottom: 22px; }
  .pricing-group-head > div { gap: 10px; }
  .pricing-group-number { font-size: 27px; }
  .pricing-group-head p { font-size: 11px; line-height: 1.55; }
  .pricing-grid,.special-pricing-grid { grid-template-columns: 1fr; }
  .terms-section { padding: 62px 0; }
  .terms-card { padding: 35px 22px 25px; }
  .terms-card:before { inset: 8px; }
  .terms-card h2 { font-size: 43px; }
  .terms-rule { margin: 17px auto 26px; }
  .terms-list { gap: 10px; font-size: 15px; line-height: 1.52; }
  .terms-list li { padding-left: 20px; }
  .terms-note { margin-top: 22px; font-size: 8px; }

  .price-card { min-height: 350px; }
  .story-images { min-height: 428px; padding: 0 42px 42px 0; }
  .story-main { height: 386px; }
  .story-overlay { width: 58%; height: 185px; border-width: 6px; }
  .story-tag { top: 16px; font-size: 7px; }
  .story-copy h2, .booking-copy h2 { font-size: 52px; }
  .film-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; gap: 10px; }
  .film-card-large { grid-row: span 1; }
  .film-meta { left: 18px; right: 18px; bottom: 17px; }
  .film-meta b, .film-card:not(.film-card-large) .film-meta b { font-size: 24px; }
  .film-play { width: 46px; height: 46px; top: 16px; right: 16px; }
  .story-stats { gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 365px; }
  .gallery-filters { margin-top: 34px; gap: 6px; }
  .gallery-filter { padding: 8px 9px; font-size: 8px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; gap: 8px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-caption { display: none; }
  .package-options, .payment-summary { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 23px 18px; box-shadow: 11px 11px 0 rgba(202,164,102,.24); }
  .booking-contact strong { font-size: 25px; }
  .footer-layout { grid-template-columns: 1fr; gap: 30px; }
  .footer-layout > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 38px; }
  .media-modal { padding: 55px 12px; }
  .modal-stage { width: 83vw; }
  .modal-stage video { max-height: 70vh; }
  .modal-nav { width: 39px; height: 39px; }
  .modal-prev { left: 6px; }
  .modal-next { right: 6px; }
  .modal-close { top: 12px; right: 12px; width: 38px; height: 38px; }
}

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

/* More natural card height when package cards stack on smaller screens. */
@media (max-width: 800px) {
  .price-card { min-height: 0; }
}

/* Keep the official logo comfortably proportioned on very small screens. */
@media (max-width: 390px) {
  .brand-logo { width: 116px; height: 34px; }
  .brand-type { font-size: 5px; letter-spacing: .13em; }
  .loader-logo { width: min(280px, 76vw); }
}

@media (max-width: 640px) { .shift-options { grid-template-columns: 1fr; } }
