:root {
  --plum-950: #190d17;
  --plum-900: #26101f;
  --plum-800: #351128;
  --plum-700: #541c38;
  --oxblood: #75263c;
  --saffron: #d67634;
  --gold: #c9a466;
  --champagne: #ecd8af;
  --ivory: #faf6ee;
  --paper: #f2ebdf;
  --stone: #c9bfb3;
  --ink: #1a1518;
  --white: #fffdf9;
  --line-dark: rgba(255, 255, 255, .15);
  --line-light: rgba(26, 21, 24, .15);
  --display: "Bodoni 72", "Bodoni MT", Didot, "Times New Roman", serif;
  --sans: Manrope, Inter, Avenir, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --section: clamp(88px, 10vw, 144px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--plum-950); color: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
main { overflow-x: hidden; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, textarea, input, select { color: inherit; font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--ivory { background: var(--ivory); color: var(--ink); }
.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; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--ivory); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 4px; }

.concept-ribbon { position: relative; z-index: 80; height: 34px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--champagne); color: var(--ink); font-size: 11px; letter-spacing: .04em; }
.concept-ribbon b { font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.concept-ribbon a { border-bottom: 1px solid currentColor; font-weight: 700; }

.site-header { position: absolute; z-index: 900; top: 0; left: 0; right: 0; height: 88px; padding: 0 clamp(24px, 4vw, 68px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; border-bottom: 1px solid var(--line-dark); transition: background .35s ease, height .35s ease, transform .35s ease; }
.site-header.is-scrolled { position: fixed; top: 0; height: 70px; background: rgba(25, 13, 23, .92); backdrop-filter: blur(18px); box-shadow: 0 8px 36px rgba(0, 0, 0, .2); }
.brand { width: 132px; display: inline-flex; align-items: center; }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)); }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.desktop-nav a { position: relative; padding: 12px 0; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--champagne); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.host-link { border: 0; background: transparent; display: flex; align-items: center; gap: 9px; padding: 10px 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.host-link__spark { width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 36% 34%, #fff 0 5%, #edc989 9%, #a73d52 37%, #2c1027 70%); box-shadow: 0 0 16px rgba(236, 216, 175, .35); }
.menu-toggle { width: 42px; height: 42px; display: none; place-content: center; gap: 6px; border: 1px solid var(--line-dark); background: transparent; }
.menu-toggle i { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; left: 0; right: 0; padding: 24px 28px 36px; background: rgba(25, 13, 23, .98); border-top: 1px solid var(--line-dark); }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--display); font-size: 24px; }
.mobile-menu a.mobile-menu__event { color: var(--champagne); }

.button { min-height: 52px; padding: 0 24px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--compact { min-height: 42px; padding-inline: 18px; }
.button--champagne { background: var(--champagne); color: var(--ink); }
.button--champagne:hover { background: var(--white); }
.button--glass { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .06); color: var(--white); backdrop-filter: blur(6px); }
.button--glass:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button--plum { background: var(--plum-800); color: var(--white); }
.button--plum:hover { background: var(--oxblood); }
.text-button { padding: 12px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: var(--oxblood); font-size: 11px; font-weight: 750; letter-spacing: .22em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--champagne); }
.eyebrow--gold { color: var(--gold); }

.hero { position: relative; min-height: 100svh; isolation: isolate; overflow: hidden; }
.hero__image { position: absolute; z-index: -4; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; animation: hero-breathe 16s ease-in-out infinite alternate; }
.hero__veil { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg, rgba(12,7,10,.84) 0%, rgba(20,10,17,.58) 38%, rgba(20,10,17,.12) 70%, rgba(9,5,8,.22) 100%), linear-gradient(0deg, rgba(15,7,13,.68), transparent 48%); }
.hero__grain { position: absolute; z-index: -2; inset: 0; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero__content { min-height: 100svh; padding-top: 190px; padding-bottom: 110px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero h1, .section-heading h2, .welcome h2, .table-story h2, .event-feature h2, .celebrate h2, .final-cta h2 { margin: 0; font-family: var(--display); font-size: clamp(62px, 7.1vw, 112px); font-weight: 400; letter-spacing: -.05em; line-height: .88; }
.hero h1 em, .section-heading h2 em, .welcome h2 em, .table-story h2 em, .event-feature h2 em, .celebrate h2 em, .final-cta h2 em { color: var(--champagne); font-weight: 400; }
.hero__deck { max-width: 590px; margin: 30px 0 0; color: rgba(255, 255, 255, .76); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; }
.hero__actions { margin-top: 38px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-host-card { position: absolute; z-index: 3; top: clamp(154px, 18vh, 205px); right: clamp(32px, 5vw, 84px); width: min(350px, 28vw); padding: 17px 18px 17px 15px; display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 15px; border: 1px solid rgba(236,216,175,.38); background: rgba(25,13,23,.65); color: white; text-align: left; backdrop-filter: blur(19px); box-shadow: 0 24px 70px rgba(0,0,0,.26); transition: transform .3s var(--ease), background .25s ease; }
.hero-host-card:hover { background: rgba(25,13,23,.8); transform: translateY(-4px); }
.hero-host-card__portrait { position: relative; width: 76px; height: 76px; display: block; overflow: hidden; border: 1px solid rgba(236,216,175,.48); border-radius: 50%; background: #1b0d18; box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.hero-host-card__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 13%; transform: scale(1.08); animation: host-breathe 8s ease-in-out infinite; }
.hero-host-card__portrait i { position: absolute; z-index: 2; right: 5px; bottom: 6px; width: 8px; height: 8px; border: 2px solid rgba(25,13,23,.86); border-radius: 50%; background: #88c796; box-shadow: 0 0 0 3px rgba(136,199,150,.13); }
.hero-host-card__copy { min-width: 0; display: flex; flex-direction: column; }
.hero-host-card__copy small { color: var(--champagne); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-host-card__copy b { margin: 4px 0 7px; font-family: var(--display); font-size: 22px; font-weight: 400; line-height: 1.02; }
.hero-host-card__copy > span { color: rgba(255,255,255,.58); font-size: 8px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.hero-host-card__copy > span i { margin-left: 6px; color: var(--champagne); font-style: normal; }
.hero-programme { position: absolute; right: clamp(32px, 5vw, 84px); bottom: 54px; width: min(350px, 28vw); padding: 27px 28px 25px; border: 1px solid rgba(236,216,175,.34); background: rgba(31,13,25,.62); backdrop-filter: blur(18px); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.hero-programme__top { display: flex; align-items: center; gap: 10px; color: var(--champagne); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #e7794a; box-shadow: 0 0 0 0 rgba(231,121,74,.6); animation: pulse 2s infinite; }
.hero-programme__time { margin: 20px 0 5px; color: rgba(255,255,255,.58); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.hero-programme h2 { margin: 0; font-family: var(--display); font-size: 30px; font-weight: 400; line-height: 1.05; }
.hero-programme > p:last-of-type { margin: 13px 0 18px; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.55; }
.hero-programme a { display: inline-flex; gap: 14px; border-bottom: 1px solid var(--champagne); color: var(--champagne); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll { position: absolute; left: clamp(32px, 5vw, 84px); bottom: 32px; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll i { width: 54px; height: 1px; background: rgba(255,255,255,.4); position: relative; }
.hero__scroll i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-right: 1px solid rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.5); transform: rotate(-45deg); }

.welcome { position: relative; padding-block: 78px; background: var(--paper); color: var(--ink); }
.welcome::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 10px; background: var(--oxblood); }
.welcome__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.welcome h2 { font-size: clamp(44px, 4.8vw, 72px); line-height: .98; }
.welcome h2 em { color: var(--oxblood); }
.welcome__copy > p:last-child { max-width: 620px; margin: 25px 0 0; color: #645b60; font-size: 17px; }
.concierge-invitation { position: relative; min-height: 185px; padding: 26px 30px; display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 28px; border: 1px solid rgba(54,17,40,.2); background: rgba(255,255,255,.55); color: var(--ink); text-align: left; box-shadow: 0 22px 55px rgba(53,31,42,.08); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s ease; }
.concierge-invitation::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; top: -90px; border-radius: 50%; border: 1px solid rgba(117,38,60,.15); box-shadow: 0 0 0 25px rgba(117,38,60,.03), 0 0 0 50px rgba(117,38,60,.02); }
.concierge-invitation:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(53,31,42,.13); }
.concierge-invitation__portrait { position: relative; z-index: 1; width: 96px; height: 96px; display: block; overflow: hidden; border: 1px solid rgba(117,38,60,.23); border-radius: 50%; background: #1b0d18; box-shadow: 0 20px 42px rgba(75,26,54,.25); }
.concierge-invitation__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 13%; transform: scale(1.08); animation: host-breathe 8s ease-in-out infinite; }
.concierge-invitation__portrait i { position: absolute; z-index: 2; right: 8px; bottom: 8px; width: 9px; height: 9px; border: 2px solid var(--paper); border-radius: 50%; background: #69ae79; }
.concierge-orb { position: relative; width: 96px; height: 96px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 33% 29%, #fff 0 3%, #f4d89a 8%, #df8b53 23%, #8b294c 48%, #36132e 69%, #160b15 100%); box-shadow: inset -15px -18px 28px rgba(9,3,8,.32), 0 20px 42px rgba(75,26,54,.28), 0 0 0 1px rgba(117,38,60,.18); }
.concierge-orb::after { content: ""; position: absolute; inset: 13%; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.concierge-orb i { position: absolute; width: 23%; height: 1px; background: rgba(255,255,255,.45); border-radius: 50%; transform-origin: 210% center; animation: orbit 8s linear infinite; }
.concierge-orb i:nth-child(2) { width: 16%; transform-origin: 300% center; animation-duration: 12s; animation-direction: reverse; }
.concierge-orb i:nth-child(3) { width: 9%; transform-origin: 440% center; animation-duration: 16s; }
.concierge-invitation__copy { min-width: 0; display: flex; flex-direction: column; }
.concierge-invitation__copy small { color: var(--oxblood); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.concierge-invitation__copy b { max-width: 360px; margin: 8px 0 14px; font-family: var(--display); font-size: clamp(25px, 2.2vw, 34px); font-weight: 400; line-height: 1.1; }
.concierge-invitation__copy > span { color: #6a6064; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.concierge-invitation__copy > span i { margin-left: 8px; font-style: normal; }

.section-heading { margin-bottom: 64px; }
.section-heading--split { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.section-heading h2 { font-size: clamp(50px, 6vw, 86px); line-height: .92; }
.section-heading h2 em { color: var(--gold); }
.section-heading--split > p, .section-heading__aside p { max-width: 430px; margin: 0 0 8px; color: rgba(255,255,255,.55); font-size: 16px; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center h2 em { color: var(--oxblood); }

.programme { position: relative; background: var(--plum-950); overflow: hidden; }
.programme::before { content: "VL"; position: absolute; right: -2vw; top: 5%; color: rgba(255,255,255,.018); font-family: var(--display); font-size: 33vw; line-height: .7; pointer-events: none; }
.programme-grid { display: grid; grid-template-columns: 1.05fr 1.18fr .82fr; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.programme-card { position: relative; min-height: 540px; padding: 27px 28px 30px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; isolation: isolate; }
.programme-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(117,38,60,.35), transparent 37%); }
.programme-card--event { min-height: 590px; }
.programme-card--event > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.04); transition: transform 1s var(--ease); }
.programme-card--event:hover > img { transform: scale(1.035); }
.programme-card__overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(0deg, rgba(20,8,16,.98) 0%, rgba(20,8,16,.63) 53%, rgba(20,8,16,.2) 100%); }
.programme-card--offer { background: var(--paper); color: var(--ink); }
.programme-card--offer[hidden] { display: none; }
.programme-card--offer::before { background: linear-gradient(145deg, transparent, rgba(117,38,60,.06)); }
.programme-card__meta { display: flex; justify-content: space-between; align-items: center; gap: 15px; color: rgba(255,255,255,.52); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.programme-card--offer .programme-card__meta { color: #776c70; }
.status { padding: 7px 9px; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
.programme-card--offer .status { border-color: var(--line-light); color: var(--oxblood); }
.status--live { display: inline-flex; align-items: center; gap: 7px; border-color: rgba(214,118,52,.5); color: #f0b286; }
.status--live i { width: 5px; height: 5px; border-radius: 50%; background: #e7794a; }
.programme-card__date { margin: 0 0 18px; color: var(--champagne); font-family: var(--display); font-size: 43px; line-height: .85; }
.programme-card__date small { display: block; margin-top: 7px; font-family: var(--sans); font-size: 10px; font-weight: 750; letter-spacing: .18em; }
.programme-card--event .programme-card__date { font-size: 68px; }
.programme-card--offer .programme-card__date { color: var(--oxblood); }
.programme-card h3 { max-width: 390px; margin: 0; font-family: var(--display); font-size: clamp(35px, 3.6vw, 54px); font-weight: 400; line-height: .95; }
.programme-card__body > p:not(.programme-card__date) { max-width: 380px; margin: 18px 0 25px; color: rgba(255,255,255,.58); font-size: 14px; }
.programme-card--offer .programme-card__body > p:not(.programme-card__date) { color: #6e6468; }
.programme-card__actions { display: flex; gap: 21px; align-items: center; flex-wrap: wrap; }
.programme-card__actions a, .programme-card__actions button { padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--champagne); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.programme-card--offer .programme-card__actions a, .programme-card--offer .programme-card__actions button { color: var(--oxblood); }
.programme-card__number { position: absolute; right: -15px; top: 47px; color: rgba(117,38,60,.07); font-family: var(--display); font-size: 190px; line-height: 1; }

.destination-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.destination { position: relative; min-height: 710px; color: var(--white); overflow: hidden; isolation: isolate; }
.destination > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 1.2s ease; }
.destination:hover > img { transform: scale(1.04); filter: saturate(1.1); }
.destination__shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(0deg, rgba(22,9,17,.94) 0%, rgba(22,9,17,.46) 55%, rgba(22,9,17,.14) 100%); }
.destination__index { position: absolute; top: 25px; right: 29px; color: rgba(255,255,255,.55); font-family: var(--display); font-size: 28px; }
.destination__content { position: absolute; left: 42px; right: 42px; bottom: 40px; }
.destination__content > p:first-child { margin: 0 0 14px; color: var(--champagne); font-size: 10px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.destination h3 { margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 72px); font-weight: 400; line-height: .82; }
.destination h3 em { color: var(--champagne); font-weight: 400; }
.destination__content > p:not(:first-child) { max-width: 450px; margin: 22px 0; color: rgba(255,255,255,.7); }
.destination__facts { display: flex; gap: 8px; flex-wrap: wrap; }
.destination__facts span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.7); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.destination__actions { margin-top: 26px; display: flex; gap: 28px; }
.destination__actions button, .destination__actions a { padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--champagne); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.table-story { background: var(--plum-800); }
.table-story__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 145px); align-items: center; }
.table-story h2 { font-size: clamp(55px, 6.3vw, 92px); }
.table-story__copy > p:not(.eyebrow) { margin: 28px 0 36px; color: rgba(255,255,255,.6); font-size: 17px; }
.editorial-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.editorial-list li { padding: 18px 0; display: grid; grid-template-columns: 42px 1fr; gap: 12px; border-bottom: 1px solid var(--line-dark); }
.editorial-list li > span { color: var(--gold); font-family: var(--display); font-size: 20px; }
.editorial-list p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; }
.editorial-list b { display: block; margin-bottom: 1px; color: var(--white); font-size: 14px; }
.table-story__actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.food-collage { position: relative; min-height: 770px; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.food-collage figure { position: relative; margin: 0; overflow: hidden; }
.food-collage__hero { grid-row: 1 / -1; }
.food-collage__hero img { object-position: center top; }
.food-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.food-collage figure:hover img { transform: scale(1.04); }
.food-collage figcaption { position: absolute; left: 16px; bottom: 14px; padding: 7px 9px; background: rgba(26,13,22,.72); backdrop-filter: blur(8px); color: var(--champagne); font-size: 8px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.food-collage__seal { position: absolute; left: 48%; top: 50%; width: 104px; height: 104px; display: grid; place-content: center; border-radius: 50%; background: var(--champagne); color: var(--plum-800); font-family: var(--display); font-size: 23px; line-height: .75; text-align: center; transform: translate(-50%,-50%) rotate(-8deg); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.food-collage__seal i { display: block; margin-top: 8px; color: var(--oxblood); font-family: var(--sans); font-size: 10px; font-style: normal; }

.moments { position: relative; overflow: hidden; }
.moments::after { content: "VL"; position: absolute; z-index: 0; right: -4vw; bottom: -2vw; color: rgba(117,38,60,.035); font-family: var(--display); font-size: 31vw; line-height: .7; pointer-events: none; }
.moments .shell { position: relative; z-index: 1; }
.moments .section-heading--split > p { color: #6e6468; }
.moments-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: 360px 470px; gap: 12px; }
.moment { position: relative; margin: 0; overflow: hidden; background: var(--plum-900); color: white; isolation: isolate; }
.moment--venue { grid-column: 1; grid-row: 1; }
.moment--food { grid-column: 2; grid-row: 1 / 3; }
.moment--night { grid-column: 1; grid-row: 2; }
.moment::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(16,7,13,.88), rgba(16,7,13,.08) 62%); }
.moment img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s ease; }
.moment--food img { object-position: center; }
.moment:hover img { transform: scale(1.035); filter: saturate(1.07); }
.moment figcaption { position: absolute; z-index: 2; left: clamp(22px, 3vw, 38px); right: clamp(22px, 3vw, 38px); bottom: clamp(22px, 3vw, 34px); display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 3px 13px; }
.moment figcaption span { grid-row: 1 / 3; color: var(--champagne); font-family: var(--display); font-size: 31px; line-height: 1; }
.moment figcaption b { font-family: var(--display); font-size: clamp(27px, 3vw, 43px); font-weight: 400; line-height: .95; }
.moment figcaption small { color: rgba(255,255,255,.6); font-size: 8px; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
.moments__rights { margin: 18px 0 0; color: #857a7f; font-size: 9px; line-height: 1.5; }

/* Owner-approved nightlife archive, with a visible route into the full photo tour. */
.nightlife-gallery { position: relative; overflow: hidden; background: #120b11; color: var(--white); }
.nightlife-gallery::before { content: ""; position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 12% 8%, var(--oxblood), transparent 34%), radial-gradient(circle at 92% 84%, var(--saffron), transparent 28%); pointer-events: none; }
.nightlife-gallery .shell { position: relative; z-index: 1; }
.nightlife-gallery__intro { align-self: end; }
.nightlife-gallery__text-link { min-height: 44px; margin-top: 15px; padding: 0 0 7px; border: 0; border-bottom: 1px solid var(--champagne); background: transparent; color: var(--champagne); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.nightlife-gallery__text-link i { margin-left: 7px; font-style: normal; }
.nightlife-gallery__grid { display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(290px, .72fr); gap: 12px; }
.nightlife-gallery__lead, .nightlife-gallery__preview { position: relative; width: 100%; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(236,216,175,.16); background: #080507; color: var(--white); font: inherit; text-align: left; isolation: isolate; }
.nightlife-gallery__lead { min-height: 690px; }
.nightlife-gallery__side { min-width: 0; display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.nightlife-gallery__preview { min-height: 339px; }
.nightlife-gallery__lead > img, .nightlife-gallery__preview > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s ease; }
.nightlife-gallery__lead > img { object-position: center 42%; }
.nightlife-gallery__preview > img { filter: saturate(.88) contrast(1.03); }
.nightlife-gallery__lead:hover > img, .nightlife-gallery__preview:hover > img { transform: scale(1.035); filter: saturate(1.02) contrast(1.05); }
.nightlife-gallery__wash, .nightlife-gallery__preview::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(8,5,7,.92) 0%, rgba(8,5,7,.16) 63%, rgba(8,5,7,.2) 100%); content: ""; }
.nightlife-gallery__number { position: absolute; top: 27px; left: 29px; color: var(--champagne); font-family: var(--display); font-size: 24px; letter-spacing: .04em; }
.nightlife-gallery__number i { margin-inline: 6px; color: rgba(255,255,255,.4); font-family: var(--sans); font-size: 11px; font-style: normal; }
.nightlife-gallery__copy { position: absolute; left: clamp(25px, 4vw, 54px); right: clamp(25px, 4vw, 54px); bottom: clamp(28px, 5vw, 58px); display: flex; align-items: flex-start; flex-direction: column; }
.nightlife-gallery__copy small, .nightlife-gallery__preview small { margin-bottom: 11px; color: var(--champagne); font-size: 8px; font-weight: 760; letter-spacing: .17em; text-transform: uppercase; }
.nightlife-gallery__copy strong { font-family: var(--display); font-size: clamp(50px, 5.4vw, 78px); font-weight: 400; letter-spacing: -.04em; line-height: .88; }
.nightlife-gallery__copy strong em { color: var(--champagne); font-weight: 400; }
.nightlife-gallery__copy > span { margin-top: 23px; padding-bottom: 6px; border-bottom: 1px solid rgba(236,216,175,.8); color: var(--champagne); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.nightlife-gallery__launch { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(236,216,175,.35); border-radius: 50%; color: var(--champagne); font-size: 18px; transition: background .25s ease, transform .25s var(--ease); }
.nightlife-gallery__lead:hover .nightlife-gallery__launch { background: var(--champagne); color: var(--plum-900); transform: rotate(8deg); }
.nightlife-gallery__preview > span { position: absolute; z-index: 1; left: 24px; right: 20px; bottom: 24px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 0 14px; }
.nightlife-gallery__preview small { grid-column: 1 / -1; }
.nightlife-gallery__preview strong { font-family: var(--display); font-size: clamp(28px, 3vw, 38px); font-weight: 400; line-height: .95; }
.nightlife-gallery__preview i { color: rgba(236,216,175,.7); font-family: var(--display); font-size: 22px; font-style: normal; }
.nightlife-gallery__footer { min-height: 94px; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 28px; border-bottom: 1px solid var(--line-dark); }
.nightlife-gallery__footer p { margin: 0; display: flex; align-items: flex-start; flex-direction: column; gap: 5px; }
.nightlife-gallery__footer p span { color: var(--champagne); font-size: 8px; font-weight: 760; letter-spacing: .16em; text-transform: uppercase; }
.nightlife-gallery__footer p b { color: rgba(255,255,255,.48); font-size: 11px; font-weight: 500; }
.nightlife-gallery__footer .button { flex: 0 0 auto; }

@media (max-width: 820px) {
  .nightlife-gallery__grid { grid-template-columns: 1fr; }
  .nightlife-gallery__lead { min-height: 570px; }
  .nightlife-gallery__side { grid-template-columns: 1fr 1fr; grid-template-rows: 320px; }
}

@media (max-width: 600px) {
  .nightlife-gallery__grid { margin-inline: -16px; gap: 2px; }
  .nightlife-gallery__lead { min-height: min(67svh, 560px); border-inline: 0; }
  .nightlife-gallery__number { top: 20px; left: 20px; }
  .nightlife-gallery__copy { left: 21px; right: 21px; bottom: 27px; }
  .nightlife-gallery__copy strong { font-size: clamp(47px, 14vw, 64px); }
  .nightlife-gallery__launch { top: 17px; right: 17px; }
  .nightlife-gallery__side { grid-template-rows: 250px; gap: 2px; }
  .nightlife-gallery__preview { min-height: 250px; border: 0; }
  .nightlife-gallery__preview > span { left: 15px; right: 13px; bottom: 17px; }
  .nightlife-gallery__preview strong { font-size: clamp(20px, 6.4vw, 29px); }
  .nightlife-gallery__preview i { font-size: 17px; }
  .nightlife-gallery__footer { padding-top: 20px; align-items: stretch; flex-direction: column; }
  .nightlife-gallery__footer .button { width: 100%; }
}

.live-story { position: relative; background: #120b11; }
.live-story::before { content: ""; position: absolute; inset: 0; opacity: .1; background: radial-gradient(circle at 20% 20%, var(--oxblood), transparent 28%), radial-gradient(circle at 80% 75%, var(--saffron), transparent 22%); }
.section-heading__aside a { display: inline-block; margin-top: 16px; border-bottom: 1px solid var(--champagne); color: var(--champagne); font-size: 10px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.viva-stage { position: relative; border: 1px solid var(--line-dark); background: #090608; box-shadow: 0 36px 90px rgba(0,0,0,.34); }
.viva-stage__screen { position: relative; min-height: clamp(590px, 72vw, 820px); overflow: hidden; isolation: isolate; }
.viva-stage__screen > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.04); transition: transform 1.1s var(--ease), filter .6s ease; }
.viva-stage:hover .viva-stage__screen > img { transform: scale(1.018); filter: saturate(.96) contrast(1.04); }
.viva-stage__shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(0deg, rgba(8,4,7,.95) 0%, rgba(8,4,7,.45) 46%, rgba(8,4,7,.18) 75%), linear-gradient(90deg, rgba(8,4,7,.58), transparent 62%); }
.viva-stage__topline { position: absolute; z-index: 2; top: 27px; left: 28px; right: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 720; letter-spacing: .13em; text-transform: uppercase; }
.viva-stage__status { display: inline-flex; align-items: center; gap: 9px; color: var(--champagne); }
.viva-stage__status::before { content: ""; width: 19px; height: 1px; background: currentColor; }
.viva-stage__status.is-live { color: #ff9d78; }
.viva-stage__status.is-live::before { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(255,157,120,.12); }
.viva-stage__play { position: absolute; z-index: 3; top: 50%; left: 50%; width: 86px; height: 86px; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(17,8,14,.32); color: white; backdrop-filter: blur(12px); transform: translate(-50%,-50%); transition: color .22s ease, background .22s ease, transform .3s var(--ease); }
.viva-stage__play span { margin-left: 4px; font-size: 18px; }
.viva-stage__play:hover { background: var(--champagne); color: var(--ink); transform: translate(-50%,-50%) scale(1.055); }
.viva-stage__copy { position: absolute; z-index: 2; left: clamp(28px, 5vw, 72px); right: clamp(28px, 5vw, 72px); bottom: clamp(34px, 6vw, 76px); max-width: 760px; }
.viva-stage__copy > p:first-child { margin: 0 0 12px; color: var(--champagne); font-size: 9px; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.viva-stage__copy h3 { margin: 0; font-family: var(--display); font-size: clamp(50px, 6.6vw, 92px); font-weight: 400; line-height: .92; }
.viva-stage__copy > p:last-child { max-width: 560px; margin: 18px 0 0; color: rgba(255,255,255,.65); font-size: 15px; }
.viva-stage__footer { min-height: 88px; padding: 18px 27px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line-dark); background: #110b10; }
.viva-stage__footer p { margin: 0; display: flex; align-items: center; gap: 17px; }
.viva-stage__footer p span { color: var(--gold); font-size: 9px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.viva-stage__footer p b { color: rgba(255,255,255,.54); font-size: 11px; font-weight: 560; }
.viva-stage__footer button { padding: 10px 0; border: 0; border-bottom: 1px solid var(--champagne); background: transparent; color: var(--champagne); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.viva-stage__footer button span { margin-left: 7px; }

.media-library { margin-top: clamp(55px, 7vw, 88px); }
.media-library__heading { margin-bottom: 25px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 410px); gap: 45px; align-items: end; }
.media-library__heading .eyebrow { margin-bottom: 10px; }
.media-library__heading h3 { margin: 0; font-family: var(--display); font-size: clamp(37px, 4vw, 54px); font-weight: 400; }
.media-library__heading > p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; }
.media-library__items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.media-library__empty { grid-column: 1 / -1; margin: 0; padding: 30px; border: 1px solid var(--line-dark); color: rgba(255,255,255,.48); }
.media-library__item { position: relative; min-height: 278px; padding: 0; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid var(--line-dark); background: #160f14; color: white; text-align: left; isolation: isolate; }
.media-library__item > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.72); transition: transform .7s var(--ease), filter .4s ease; }
.media-library__item::after { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(0deg, rgba(9,5,8,.94), rgba(9,5,8,.08) 72%); }
.media-library__item:hover > img, .media-library__item.is-selected > img { transform: scale(1.035); filter: saturate(.92) brightness(.77); }
.media-library__item.is-selected { border-color: rgba(236,216,175,.62); }
.media-library__item-copy { width: 100%; padding: 21px; }
.media-library__item-copy span { display: block; margin-bottom: 7px; color: var(--champagne); font-size: 8px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.media-library__item-copy b { display: block; font-family: var(--display); font-size: 27px; font-weight: 400; line-height: 1.06; }
.media-library__item-copy small { display: block; margin-top: 10px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .05em; }
.media-library__item-index { position: absolute; top: 17px; right: 17px; width: 31px; height: 31px; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; color: rgba(255,255,255,.72); font-size: 8px; }
.stream-card { position: relative; margin-top: 14px; padding: 27px 30px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 34px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); }
.stream-card__status { display: flex; align-items: center; gap: 10px; color: #f0b286; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.stream-card__signal { width: 18px; height: 1px; background: currentColor; }
.stream-card.is-live .stream-card__signal { width: 7px; height: 7px; border-radius: 50%; box-shadow: 0 0 0 5px rgba(240,178,134,.12); }
.stream-card small { color: var(--gold); font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.stream-card h3 { margin: 2px 0 3px; font-family: var(--display); font-size: 29px; font-weight: 400; }
.stream-card p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }
.stream-card > button { padding: 11px 0; border: 0; border-bottom: 1px solid var(--champagne); background: transparent; color: var(--champagne); font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.event-feature__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(70px, 10vw, 140px); align-items: center; }
.event-feature__poster-wrap { position: relative; max-width: 560px; padding: 28px; background: var(--plum-800); transform: rotate(-1.4deg); box-shadow: 0 30px 70px rgba(60,35,47,.18); }
.event-feature__poster-wrap img { width: 100%; }
.event-feature__stamp { position: absolute; z-index: 2; right: -28px; top: -27px; width: 112px; height: 112px; display: grid; place-content: center; border-radius: 50%; background: var(--oxblood); color: var(--white); font-size: 10px; font-weight: 750; letter-spacing: .12em; line-height: 1.5; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.event-date { margin: 0 0 14px; display: flex; align-items: center; gap: 13px; color: var(--oxblood); }
.event-date strong { font-family: var(--display); font-size: 70px; font-weight: 400; line-height: 1; }
.event-date span { font-size: 10px; font-weight: 750; letter-spacing: .15em; line-height: 1.4; text-transform: uppercase; }
.event-feature h2 { font-size: clamp(62px, 6.8vw, 98px); }
.event-feature h2 em { color: var(--oxblood); }
.event-feature__copy > p:not(.eyebrow, .event-date) { max-width: 570px; margin: 28px 0; color: #685f63; font-size: 17px; }
.event-feature dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 32px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.event-feature dl div { padding: 17px 12px 17px 0; }
.event-feature dl div + div { padding-left: 18px; border-left: 1px solid var(--line-light); }
.event-feature dt { color: #887c81; font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.event-feature dd { margin: 4px 0 0; font-weight: 650; font-size: 13px; }
.event-feature__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.celebrate { position: relative; min-height: 810px; display: flex; align-items: center; isolation: isolate; }
.celebrate__image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.celebrate__shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(25,9,19,.92) 0%, rgba(25,9,19,.74) 43%, rgba(25,9,19,.18) 80%), linear-gradient(0deg, rgba(20,8,16,.4), transparent); }
.celebrate__content { padding-block: 90px; }
.celebrate h2 { font-size: clamp(62px, 7vw, 105px); }
.celebrate__content > p:not(.eyebrow) { max-width: 590px; margin: 29px 0 35px; color: rgba(255,255,255,.68); font-size: 18px; }
.celebrate__content > div { display: flex; gap: 12px; flex-wrap: wrap; }

.final-cta { text-align: center; }
.final-cta__inner { position: relative; padding-block: 20px; }
.final-cta__mark { position: absolute; inset: 50% auto auto 50%; color: rgba(117,38,60,.045); font-family: var(--display); font-size: 30vw; line-height: .7; transform: translate(-50%,-50%); pointer-events: none; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { position: relative; font-size: clamp(62px, 7.4vw, 108px); }
.final-cta h2 em { color: var(--oxblood); }
.final-cta__inner > div { position: relative; margin-top: 40px; display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }

.site-footer { padding: 75px 0 20px; background: #10090e; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; }
.site-footer__grid > div:first-child img { width: 155px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)); }
.site-footer__grid > div:first-child p { max-width: 280px; color: rgba(255,255,255,.42); font-size: 13px; }
.site-footer h2 { margin: 0 0 17px; color: var(--champagne); font-size: 9px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.site-footer a, .site-footer button { display: block; width: max-content; max-width: 100%; padding: 5px 0; border: 0; background: transparent; color: rgba(255,255,255,.58); font-size: 12px; text-align: left; }
.site-footer a:hover, .site-footer button:hover { color: var(--white); }
.site-footer__bottom { margin-top: 55px; padding-top: 17px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.3); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.ask-viva-fab { position: fixed; z-index: 55; right: 26px; bottom: 24px; min-width: 166px; padding: 9px 16px 9px 9px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(236,216,175,.35); border-radius: 999px; background: rgba(30,12,24,.91); color: white; backdrop-filter: blur(18px); box-shadow: 0 15px 50px rgba(0,0,0,.28); transition: transform .25s var(--ease), opacity .2s ease; }
.ask-viva-fab:hover { transform: translateY(-3px); }
.ask-viva-fab__portrait { position: relative; width: 40px; height: 40px; overflow: hidden; border: 1px solid rgba(236,216,175,.45); border-radius: 50%; background: #1b0d18; box-shadow: 0 0 14px rgba(233,198,129,.2); }
.ask-viva-fab__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 13%; transform: scale(1.08); }
.ask-viva-fab__portrait i { position: absolute; right: 2px; bottom: 3px; width: 7px; height: 7px; border: 1px solid rgba(30,12,24,.95); border-radius: 50%; background: #88c796; }
.ask-viva-fab > span:last-child { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.ask-viva-fab small { color: rgba(255,255,255,.46); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.ask-viva-fab b { margin-top: 3px; font-size: 12px; letter-spacing: .04em; }
.mobile-actionbar { display: none; }

.concierge { width: min(430px, calc(100vw - 24px)); max-width: none; height: min(760px, calc(100dvh - 32px)); max-height: none; margin: auto 18px 18px auto; padding: 0; border: 1px solid rgba(236,216,175,.24); border-radius: 0; background: var(--ivory); color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.48); overflow: hidden; }
.concierge::backdrop { background: rgba(9,5,8,.54); backdrop-filter: blur(5px); }
.concierge__shell { height: 100%; min-height: 0; display: grid; grid-template-rows: auto auto minmax(110px,1fr) auto auto auto auto auto; }
.concierge__header { padding: 17px 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line-light); background: var(--plum-900); color: var(--white); }
.concierge__identity { display: flex; align-items: center; gap: 12px; }
.concierge-host { position: relative; width: 72px; height: 72px; flex: 0 0 72px; display: block; border: 1px solid rgba(236,216,175,.4); border-radius: 50%; background: radial-gradient(circle at 50% 20%, rgba(236,216,175,.22), transparent 42%), #1b0d18; box-shadow: 0 9px 27px rgba(0,0,0,.32); overflow: hidden; isolation: isolate; }
.concierge-host::before { content: ""; position: absolute; z-index: 2; inset: 2px; border: 1px solid rgba(236,216,175,.2); border-radius: inherit; pointer-events: none; }
.concierge-host::after { content: ""; position: absolute; z-index: 3; inset: -2px; border: 1px solid transparent; border-top-color: rgba(240,198,112,.86); border-radius: inherit; opacity: 0; pointer-events: none; }
.concierge-host > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 13%; transform: scale(1.08); transform-origin: 50% 35%; }
.concierge-host__motion { position: absolute; z-index: 4; right: 2px; bottom: 2px; width: 19px; height: 19px; display: flex; align-items: center; justify-content: center; gap: 2px; border: 1px solid rgba(236,216,175,.34); border-radius: 50%; background: rgba(30,12,24,.92); opacity: 0; transition: opacity .2s ease; }
.concierge-host__motion i { width: 1px; height: 5px; display: block; background: var(--champagne); transform-origin: center; }
.concierge-host[data-host-state="idle"] > img { animation: host-breathe 8s ease-in-out infinite; }
.concierge-host[data-host-state="listening"] { box-shadow: 0 0 0 5px rgba(233,198,129,.12), 0 9px 27px rgba(0,0,0,.32); }
.concierge-host[data-host-state="listening"]::before { border-color: rgba(240,198,112,.72); animation: host-listen 1.5s ease-out infinite; }
.concierge-host[data-host-state="thinking"]::after { opacity: 1; animation: host-think 1.15s linear infinite; }
.concierge-host[data-host-state="speaking"] .concierge-host__motion { opacity: 1; }
.concierge-host[data-host-state="speaking"] .concierge-host__motion i { animation: host-speak .75s ease-in-out infinite alternate; }
.concierge-host[data-host-state="speaking"] .concierge-host__motion i:nth-child(2) { animation-delay: .16s; }
.concierge-host[data-host-state="speaking"] .concierge-host__motion i:nth-child(3) { animation-delay: .3s; }
.concierge-host[hidden] { display: none; }
.concierge__identity small { color: rgba(255,255,255,.5); font-size: 8px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.concierge__identity h2 { margin: 1px 0 0; font-family: var(--display); font-size: 24px; font-weight: 400; line-height: 1; }
.icon-button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: white; font-size: 22px; line-height: 1; }
.concierge__context { padding: 9px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px 18px; background: #e9dfd1; color: #74696e; font-size: 9px; letter-spacing: .04em; }
.concierge__context b { color: #5d3c4a; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.ai-status { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.ai-status > i { width: 6px; height: 6px; border-radius: 50%; background: #b39f8e; box-shadow: 0 0 0 3px rgba(179,159,142,.13); }
.ai-status.is-live > i { background: #4f9d67; box-shadow: 0 0 0 3px rgba(79,157,103,.13); }
.ai-status.is-guided > i { background: #c78340; box-shadow: 0 0 0 3px rgba(199,131,64,.13); }
.concierge__messages { min-height: 0; padding: 19px 18px; overflow-y: auto; overscroll-behavior: contain; scrollbar-color: rgba(117,38,60,.42) transparent; scrollbar-width: thin; touch-action: pan-y; cursor: grab; -webkit-overflow-scrolling: touch; }
.concierge__messages.is-dragging { cursor: grabbing; user-select: none; }
.message { max-width: 89%; margin: 0 0 14px; }
.message__author { display: block; margin: 0 0 4px 3px; color: #8b7e84; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.message p { margin: 0; padding: 12px 14px; border-radius: 0 14px 14px 14px; background: #e9dfd1; font-size: 13px; line-height: 1.5; }
.message--user { margin-left: auto; }
.message--user .message__author { text-align: right; margin-right: 3px; }
.message--user p { border-radius: 14px 0 14px 14px; background: var(--plum-800); color: white; }
.message__actions { margin-top: 10px; display: flex; gap: 7px; flex-wrap: wrap; }
.message--viva .message__actions::before { content: "Suggested next steps"; flex: 1 0 100%; color: #8a7e83; font-size: 7px; font-weight: 800; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
.message__actions a, .message__actions button { min-height: 44px; padding: 9px 12px; display: inline-flex; align-items: center; border: 1px solid rgba(53,17,40,.2); background: white; color: var(--plum-800); font-size: 9px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.typing { display: inline-flex; gap: 4px; align-items: center; padding: 12px 14px; background: #e9dfd1; border-radius: 0 14px 14px 14px; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: #8f7e87; animation: typing 1s infinite alternate; }
.typing i:nth-child(2) { animation-delay: .16s; }
.typing i:nth-child(3) { animation-delay: .32s; }
.quick-intents { padding: 0 18px 11px; display: flex; gap: 6px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; scrollbar-width: thin; touch-action: pan-x; cursor: grab; }
.quick-intents::-webkit-scrollbar { display: none; }
.quick-intents.is-dragging { cursor: grabbing; user-select: none; }
.quick-intents button { min-height: 44px; flex: 0 0 auto; padding: 10px 12px; border: 1px solid rgba(53,17,40,.18); border-radius: 999px; background: transparent; color: var(--plum-800); font-size: 9px; font-weight: 700; scroll-snap-align: start; }
.concierge__composer { margin: 0 12px; padding: 7px; display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 5px; border: 1px solid rgba(53,17,40,.21); background: white; }
.concierge__composer textarea { width: 100%; min-height: 42px; max-height: 100px; padding: 10px 8px; border: 0; outline: 0; background: transparent; color: var(--ink); resize: none; font-size: 13px; line-height: 1.4; }
.voice-button, .send-button { width: 44px; height: 44px; border: 0; border-radius: 50%; display: grid; place-content: center; }
.voice-button { background: #eee6db; color: var(--plum-800); }
.voice-button.is-listening { background: #ffd4c0; color: #8a271f; animation: voice-pulse 1.4s infinite; }
.voice-button.is-speaking { background: var(--plum-800); color: var(--champagne); box-shadow: 0 0 0 4px rgba(74,19,55,.1); }
.send-button { background: var(--plum-800); color: white; font-size: 19px; }
.concierge__note { margin: 0; padding: 8px 15px 12px; color: #8a7e83; font-size: 8px; line-height: 1.4; text-align: center; }
.voice-transcript { margin: 7px 12px 0; padding: 9px 11px; display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; border: 1px solid rgba(117,38,60,.18); background: #f6efe5; color: var(--ink); }
.voice-transcript[hidden] { display: none; }
.voice-transcript span { color: var(--oxblood); font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.voice-transcript b { min-width: 0; overflow-wrap: anywhere; font-size: 10px; font-weight: 620; line-height: 1.4; }

.media-modal { width: min(1080px, calc(100vw - 32px)); max-width: none; max-height: calc(100dvh - 32px); padding: 0; border: 1px solid rgba(236,216,175,.26); background: #0c080b; color: white; overflow: auto; }
.media-modal::backdrop { background: rgba(9,5,8,.82); backdrop-filter: blur(9px); }
.media-modal__shell { min-height: 0; background: #0c080b; }
.media-modal__header { min-height: 58px; padding: 8px 13px 8px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-dark); }
.media-modal__header > span { color: var(--champagne); font-size: 9px; font-weight: 760; letter-spacing: .16em; text-transform: uppercase; }
.media-modal__header button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: white; font-size: 21px; }
.media-modal__frame { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 35%, rgba(117,38,60,.45), transparent 42%), #080507; }
.media-modal__frame iframe, .media-modal__frame video { width: 100%; height: 100%; display: block; border: 0; background: black; }
.media-modal__frame video { object-fit: contain; }
.media-modal__frame > img { width: 100%; height: 100%; display: block; object-fit: cover; filter: brightness(.62) saturate(.78); }
.media-modal__placeholder { padding: 35px; display: grid; place-items: center; gap: 16px; text-align: center; }
.media-modal__placeholder > span { width: 68px; height: 68px; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.media-modal__placeholder p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.media-modal__fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; background: linear-gradient(0deg, rgba(8,4,7,.86), rgba(8,4,7,.18)); text-align: center; }
.media-modal__fallback p { max-width: 520px; margin: 0; color: rgba(255,255,255,.82); font-family: var(--display); font-size: clamp(28px, 4vw, 46px); line-height: 1.05; }
.media-modal__footer { padding: 24px 28px 27px; display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; border-top: 1px solid var(--line-dark); }
.media-modal__footer > div { max-width: 720px; }
.media-modal__footer [data-media-kicker] { margin: 0 0 6px; color: var(--gold); font-size: 8px; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.media-modal__footer h2 { margin: 0; font-family: var(--display); font-size: clamp(34px, 5vw, 54px); font-weight: 400; line-height: 1; }
.media-modal__footer [data-media-modal-description] { margin: 10px 0 0; color: rgba(255,255,255,.52); font-size: 12px; }
.media-modal__footer > a { flex: 0 0 auto; padding: 10px 0; border-bottom: 1px solid var(--champagne); color: var(--champagne); font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 30px; max-width: calc(100vw - 32px); padding: 11px 16px; background: var(--ivory); color: var(--ink); box-shadow: 0 12px 40px rgba(0,0,0,.3); font-size: 12px; transform: translateX(-50%); }

@keyframes hero-breathe { from { transform: scale(1); } to { transform: scale(1.025); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(231,121,74,0); } 100% { box-shadow: 0 0 0 0 rgba(231,121,74,0); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes typing { from { transform: translateY(0); opacity: .4; } to { transform: translateY(-4px); opacity: 1; } }
@keyframes voice-pulse { 50% { box-shadow: 0 0 0 7px rgba(214,118,52,.12); } }
@keyframes host-breathe { 0%, 100% { transform: scale(1.04); filter: brightness(1); } 50% { transform: scale(1.055); filter: brightness(1.035); } }
@keyframes host-listen { 0% { opacity: .9; transform: scale(.93); } 80%, 100% { opacity: 0; transform: scale(1.08); } }
@keyframes host-think { to { transform: rotate(360deg); } }
@keyframes host-speak { from { transform: scaleY(.55); } to { transform: scaleY(1.55); } }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: grid; }
  .hero-programme { width: 310px; }
  .hero-host-card { width: 310px; }
  .programme-grid { grid-template-columns: 1fr 1fr; }
  .programme-card--offer { grid-column: 1 / -1; min-height: 380px; }
  .table-story__grid { gap: 60px; }
  .food-collage { min-height: 620px; }
  .stream-card { grid-template-columns: 150px 1fr; }
  .stream-card > button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 40px, 720px); --section: 78px; }
  .concept-ribbon { height: auto; min-height: 34px; padding: 7px 15px; }
  .concept-ribbon span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .concept-ribbon b { display: none; }
  .site-header { top: 0; height: 68px; padding: 0 18px; }
  .brand { width: 108px; }
  .host-link { display: none; }
  .button--compact { min-height: 38px; padding-inline: 13px; font-size: 9px; }
  .hero { min-height: 100svh; }
  .hero__image { object-position: 50% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(15,7,13,.95) 0%, rgba(15,7,13,.73) 46%, rgba(15,7,13,.1) 82%), linear-gradient(90deg, rgba(15,7,13,.55), transparent 70%); }
  .hero__content { min-height: 100svh; padding-top: 130px; padding-bottom: 170px; justify-content: flex-end; }
  .hero h1 { font-size: clamp(52px, 13vw, 75px); line-height: .89; }
  .hero__deck { max-width: 510px; margin-top: 20px; font-size: 16px; }
  .hero__actions { margin-top: 25px; }
  .hero-host-card { display: none; }
  .hero-programme { left: 20px; right: 20px; bottom: 19px; width: auto; padding: 16px 18px; display: grid; grid-template-columns: auto 1fr; column-gap: 15px; }
  .hero-programme__top { grid-column: 1 / -1; }
  .hero-programme__time { margin: 13px 0 0; }
  .hero-programme h2 { margin-top: 8px; font-size: 22px; }
  .hero-programme > p:last-of-type, .hero-programme > a { display: none; }
  .hero__scroll { display: none; }
  .welcome__grid, .section-heading--split, .table-story__grid, .event-feature__grid { grid-template-columns: 1fr; }
  .welcome__grid { gap: 42px; }
  .concierge-invitation { min-height: 160px; grid-template-columns: 78px 1fr; gap: 20px; }
  .concierge-invitation__portrait { width: 76px; height: 76px; }
  .section-heading--split { gap: 25px; }
  .section-heading--split > p { margin: 0; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card--offer { grid-column: auto; }
  .programme-card, .programme-card--event { min-height: 500px; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination { min-height: 620px; }
  .table-story__grid { gap: 65px; }
  .food-collage { min-height: 700px; }
  .moments-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 450px; }
  .moment--venue { grid-column: 1 / -1; grid-row: 1; }
  .moment--food { grid-column: 1; grid-row: 2; }
  .moment--night { grid-column: 2; grid-row: 2; }
  .viva-stage__screen { min-height: 620px; }
  .media-library__heading { grid-template-columns: 1fr; gap: 15px; }
  .media-library__items { grid-template-columns: 1fr 1fr; }
  .media-library__item:first-child { grid-column: 1 / -1; min-height: 340px; }
  .stream-card { grid-template-columns: 1fr; gap: 18px; }
  .stream-card > button { grid-column: auto; justify-self: start; }
  .event-feature__poster-wrap { max-width: 500px; margin-inline: auto; }
  .event-feature__copy { max-width: 620px; }
  .celebrate { min-height: 720px; }
  .celebrate__shade { background: linear-gradient(0deg, rgba(25,9,19,.94) 0%, rgba(25,9,19,.65) 62%, rgba(25,9,19,.18) 100%); }
  .celebrate__content { align-self: flex-end; }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer__grid > div:last-child { display: none; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); --section: 66px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .concept-ribbon { padding-inline: 12px; font-size: 9px; }
  .concept-ribbon a { flex: 0 0 auto; }
  .site-header { padding-inline: 12px; }
  .site-header .button--compact { display: none; }
  .header-actions { gap: 7px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero__content { padding-top: 110px; padding-bottom: 154px; }
  .hero .eyebrow { margin-bottom: 15px; font-size: 9px; letter-spacing: .16em; }
  .hero h1 { font-size: clamp(49px, 15.8vw, 67px); }
  .hero__deck { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 14px; }
  .hero__actions { width: 100%; }
  .hero__actions .button { flex: 1 1 calc(50% - 6px); min-height: 47px; padding-inline: 12px; font-size: 9px; }
  .hero__actions .button--event { flex-basis: 100%; }
  .hero-programme { bottom: calc(76px + env(safe-area-inset-bottom)); padding: 10px 14px 11px; grid-template-columns: 1fr auto; row-gap: 6px; }
  .hero-programme__top { grid-column: 1; white-space: nowrap; }
  .hero-programme__time { margin: 0; align-self: center; font-size: 9px; white-space: nowrap; }
  .hero-programme h2 { grid-column: 1 / -1; margin-top: 0; overflow: hidden; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
  .welcome { padding-block: 57px; }
  .welcome h2 { font-size: 43px; }
  .welcome__copy > p:last-child { font-size: 14px; }
  .concierge-invitation { padding: 20px; grid-template-columns: 62px 1fr; gap: 16px; }
  .concierge-invitation__portrait { width: 61px; height: 61px; }
  .concierge-invitation__copy b { font-size: 22px; }
  .concierge-invitation__copy > span { font-size: 8px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 47px; }
  .section-heading--split > p, .section-heading__aside p { font-size: 14px; }
  .programme-grid { margin-inline: -16px; border-left: 0; }
  .programme-card { min-height: 460px; padding: 24px 20px; border-right: 0; }
  .programme-card--event { min-height: 530px; }
  .programme-card h3 { font-size: 40px; }
  .programme-card--event .programme-card__date { font-size: 56px; }
  .programme-card__actions a, .programme-card__actions button,
  .destination__actions a, .destination__actions button,
  .stream-card > button, .text-button,
  .section-heading__aside a, .viva-stage__footer button,
  .site-footer a, .site-footer button { min-height: 44px; display: inline-flex; align-items: center; }
  .destination-grid { margin-inline: -16px; gap: 1px; }
  .destination { min-height: 570px; }
  .destination__content { left: 24px; right: 24px; bottom: 27px; }
  .destination h3 { font-size: 52px; }
  .destination__actions { gap: 20px; }
  .table-story h2 { font-size: 52px; }
  .table-story__copy > p:not(.eyebrow) { font-size: 15px; }
  .food-collage { min-height: 540px; grid-template-columns: 1.2fr .8fr; }
  .food-collage__seal { width: 82px; height: 82px; font-size: 19px; }
  .moments-grid { margin-inline: -16px; grid-template-columns: 1fr; grid-template-rows: 360px 430px 390px; gap: 2px; }
  .moment--venue, .moment--food, .moment--night { grid-column: 1; }
  .moment--venue { grid-row: 1; }
  .moment--food { grid-row: 2; }
  .moment--night { grid-row: 3; }
  .moment figcaption b { font-size: 32px; }
  .moments__rights { font-size: 8px; }
  .table-story__actions .button { flex: 1 1 auto; }
  .viva-stage { margin-inline: -16px; border-inline: 0; }
  .viva-stage__screen { min-height: min(72svh, 610px); }
  .viva-stage__topline { top: 18px; left: 19px; right: 19px; }
  .viva-stage__topline > span:last-child { max-width: 48%; text-align: right; }
  .viva-stage__play { width: 64px; height: 64px; }
  .viva-stage__copy { left: 20px; right: 20px; bottom: 25px; }
  .viva-stage__copy h3 { font-size: clamp(45px, 13.2vw, 61px); }
  .viva-stage__copy > p:last-child { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 13px; }
  .viva-stage__footer { padding: 17px 20px; align-items: flex-start; flex-direction: column; gap: 15px; }
  .viva-stage__footer p { align-items: flex-start; flex-direction: column; gap: 5px; }
  .media-library { margin-top: 55px; }
  .media-library__items { margin-inline: -16px; padding-inline: 16px; display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .media-library__items::-webkit-scrollbar { display: none; }
  .media-library__item, .media-library__item:first-child { min-height: 285px; flex: 0 0 min(82vw, 330px); grid-column: auto; scroll-snap-align: start; }
  .stream-card { margin-inline: -16px; padding: 25px 20px; }
  .event-feature__poster-wrap { width: 100%; padding: 16px; transform: none; }
  .event-feature__stamp { right: -8px; top: -18px; width: 88px; height: 88px; font-size: 8px; }
  .event-feature h2 { font-size: 59px; }
  .event-feature dl { grid-template-columns: 1fr; }
  .event-feature dl div { padding: 12px 0; }
  .event-feature dl div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-light); }
  .event-feature__actions .button { width: 100%; }
  .celebrate { min-height: 670px; }
  .celebrate h2 { font-size: 56px; }
  .celebrate__content > p:not(.eyebrow) { font-size: 15px; }
  .celebrate__content > div .button { flex: 1 1 100%; }
  .final-cta h2 { font-size: 56px; }
  .final-cta__inner > div .button { width: 100%; }
  .site-footer { padding-top: 55px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .site-footer__grid > div:nth-child(3) { display: block; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .ask-viva-fab { display: none; }
  .mobile-actionbar { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; height: calc(62px + env(safe-area-inset-bottom)); padding: 0 6px env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(236,216,175,.23); background: rgba(25,13,23,.96); backdrop-filter: blur(18px); }
  .mobile-actionbar a, .mobile-actionbar button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border: 0; background: transparent; color: rgba(255,255,255,.75); font-size: 9px; font-weight: 700; letter-spacing: .05em; }
  .mobile-actionbar span { color: var(--champagne); font-size: 16px; line-height: 1; }
  .concierge { width: 100%; height: min(78dvh, 720px); margin: auto 0 0; border: 0; border-radius: 22px 22px 0 0; }
  .concierge__header { padding: 14px 15px; }
  .concierge-host { width: 58px; height: 58px; flex-basis: 58px; }
  .concierge__context { align-items: flex-start; flex-direction: column; gap: 3px; }
  .concierge__messages { padding: 16px 14px; }
  .quick-intents { padding-inline: 14px; }
  .media-modal { width: 100%; max-height: 92dvh; margin: auto 0 0; border: 0; border-radius: 20px 20px 0 0; }
  .media-modal__frame { aspect-ratio: 16 / 9; }
  .media-modal.is-portrait .media-modal__frame { aspect-ratio: 4 / 5; max-height: 62dvh; }
  .media-modal__footer { padding: 20px; align-items: flex-start; flex-direction: column; gap: 18px; }
  .media-modal__footer h2 { font-size: 36px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 47px; }
  .hero__actions .button { font-size: 8px; }
  .hero-programme h2 { font-size: 17px; }
  .section-heading h2, .welcome h2 { font-size: 41px; }
  .concierge-invitation { grid-template-columns: 1fr; }
  .concierge-invitation__portrait { width: 54px; height: 54px; }
  .food-collage { min-height: 480px; }
}

@media (max-width: 600px) and (max-height: 700px) {
  .hero__content { padding-bottom: 72px; }
  .hero-programme { display: none; }
}

@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; }
  .hero__image { transform: none!important; }
}

/* Photo-forward food discovery and editable tandoor announcement. */
.food-discovery { padding-top: clamp(74px, 8vw, 118px); border-top: 1px solid rgba(26,21,24,.09); }
.food-discovery .section-heading--split > p { color: #6e6468; }
.tandoor-announcement { min-height: 430px; margin-bottom: 18px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; background: var(--plum-800); color: var(--white); }
.tandoor-announcement[hidden] { display: none; }
.tandoor-announcement > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.tandoor-announcement > div { padding: clamp(34px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.tandoor-announcement [data-tandoor-label] { margin: 0 0 18px; padding: 7px 10px; border: 1px solid rgba(236,216,175,.42); color: var(--champagne); font-size: 9px; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; }
.tandoor-announcement[data-tandoor-status="now-available"] [data-tandoor-label] { border-color: #abcaa7; background: rgba(104,151,98,.16); color: #d5efcf; }
.tandoor-announcement h3 { max-width: 520px; margin: 0; font-family: var(--display); font-size: clamp(46px, 5vw, 72px); font-weight: 400; letter-spacing: -.04em; line-height: .92; }
.tandoor-announcement [data-tandoor-copy] { max-width: 520px; margin: 24px 0 28px; color: rgba(255,255,255,.63); }
.tandoor-announcement .text-button { color: var(--champagne); }
.food-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 300px; gap: 12px; }
.food-tile { position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: var(--paper); color: var(--white); isolation: isolate; }
.food-tile:nth-child(1), .food-tile:nth-child(5) { grid-column: span 5; }
.food-tile:nth-child(2), .food-tile:nth-child(6) { grid-column: span 3; }
.food-tile::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(20,8,16,.84), rgba(20,8,16,0) 58%); }
.food-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s ease; }
.food-tile:hover img { transform: scale(1.035); filter: saturate(1.08); }
.food-tile figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; flex-direction: column; }
.food-tile figcaption b { font-family: var(--display); font-size: 28px; font-weight: 400; line-height: 1; }
.food-tile figcaption span { margin-top: 7px; color: rgba(255,255,255,.6); font-size: 8px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.food-discovery__footer { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #74696e; font-size: 9px; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }

/* Immersive, keyboard-friendly outlet photo tour. */
.outlet-gallery { width: min(1220px, calc(100vw - 44px)); max-width: none; max-height: calc(100dvh - 44px); margin: auto; padding: 0; border: 0; background: #110a0f; color: var(--white); box-shadow: 0 40px 120px rgba(0,0,0,.58); }
.outlet-gallery::backdrop { background: rgba(8,4,7,.86); backdrop-filter: blur(10px); }
.outlet-gallery__shell { max-height: calc(100dvh - 44px); display: flex; flex-direction: column; }
.outlet-gallery__header { min-height: 92px; padding: 20px 25px 18px 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-bottom: 1px solid var(--line-dark); }
.outlet-gallery__header p { margin: 0 0 5px; color: var(--champagne); font-size: 8px; font-weight: 760; letter-spacing: .17em; text-transform: uppercase; }
.outlet-gallery__header h2 { margin: 0; font-family: var(--display); font-size: clamp(31px, 4vw, 54px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.outlet-gallery__header > button { flex: 0 0 46px; width: 46px; height: 46px; border: 1px solid var(--line-dark); background: transparent; color: var(--white); font-size: 28px; line-height: 1; }
.outlet-gallery__stage { min-height: 0; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; background: #090608; }
.outlet-gallery__stage figure { position: relative; min-width: 0; height: min(62dvh, 680px); margin: 0; overflow: hidden; }
.outlet-gallery__stage figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(7,4,6,.9), transparent); pointer-events: none; }
.outlet-gallery__stage img { width: 100%; height: 100%; object-fit: cover; }
.outlet-gallery__stage figcaption { position: absolute; z-index: 1; left: clamp(20px, 4vw, 50px); right: clamp(20px, 4vw, 50px); bottom: clamp(18px, 3vw, 36px); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.outlet-gallery__stage figcaption span { color: var(--champagne); font-size: 8px; font-weight: 780; letter-spacing: .15em; text-transform: uppercase; }
.outlet-gallery__stage figcaption b { max-width: 680px; font-family: var(--display); font-size: clamp(25px, 3vw, 40px); font-weight: 400; line-height: 1; text-align: right; }
.outlet-gallery__arrow { width: 46px; height: 46px; justify-self: center; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: var(--champagne); font-size: 19px; }
.outlet-gallery__arrow:hover, .outlet-gallery__header > button:hover { border-color: var(--champagne); background: rgba(236,216,175,.08); }
.outlet-gallery__footer { min-height: 94px; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid var(--line-dark); }
.outlet-gallery__thumbnails { min-width: 0; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.outlet-gallery__thumbnails button { flex: 0 0 82px; width: 82px; height: 58px; padding: 2px; border: 1px solid transparent; background: transparent; opacity: .52; }
.outlet-gallery__thumbnails button.is-active { border-color: var(--champagne); opacity: 1; }
.outlet-gallery__thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.outlet-gallery__footer .button { flex: 0 0 auto; min-height: 46px; padding-inline: 19px; font-size: 9px; }

@media (max-width: 820px) {
  .tandoor-announcement { grid-template-columns: 1fr; }
  .tandoor-announcement > img { min-height: 360px; max-height: 480px; }
  .food-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .food-tile, .food-tile:nth-child(1), .food-tile:nth-child(2), .food-tile:nth-child(5), .food-tile:nth-child(6) { grid-column: span 1; }
  .food-tile:first-child { grid-column: 1 / -1; }
  .outlet-gallery { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); }
  .outlet-gallery__shell { max-height: calc(100dvh - 24px); }
  .outlet-gallery__stage { grid-template-columns: 52px minmax(0, 1fr) 52px; }
  .outlet-gallery__stage figure { height: min(58dvh, 620px); }
}

@media (max-width: 600px) {
  .food-discovery { padding-top: 64px; }
  .tandoor-announcement { margin-inline: -16px; }
  .tandoor-announcement > img { min-height: 280px; max-height: 340px; }
  .tandoor-announcement > div { padding: 30px 24px 35px; }
  .tandoor-announcement h3 { font-size: 45px; }
  .food-gallery { margin-inline: -16px; grid-template-columns: 1fr; grid-auto-rows: 330px; gap: 2px; }
  .food-tile, .food-tile:first-child, .food-tile:nth-child(1), .food-tile:nth-child(2), .food-tile:nth-child(5), .food-tile:nth-child(6) { grid-column: 1; }
  .food-discovery__footer { align-items: stretch; flex-direction: column; }
  .food-discovery__footer .button { width: 100%; }
  .outlet-gallery { width: 100%; height: 100dvh; max-height: none; margin: 0; }
  .outlet-gallery__shell { height: 100%; max-height: none; }
  .outlet-gallery__header { min-height: 82px; padding: 14px 15px 13px 18px; }
  .outlet-gallery__header h2 { font-size: 31px; }
  .outlet-gallery__stage { position: relative; grid-template-columns: 1fr; }
  .outlet-gallery__stage figure { height: min(57dvh, 540px); }
  .outlet-gallery__stage figcaption { align-items: flex-start; flex-direction: column; gap: 8px; }
  .outlet-gallery__stage figcaption b { font-size: 28px; text-align: left; }
  .outlet-gallery__arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); background: rgba(17,10,15,.7); backdrop-filter: blur(6px); }
  .outlet-gallery__arrow--previous { left: 10px; }
  .outlet-gallery__arrow--next { right: 10px; }
  .outlet-gallery__footer { min-height: 0; padding: 12px; align-items: stretch; flex-direction: column; }
  .outlet-gallery__thumbnails button { flex-basis: 72px; width: 72px; height: 52px; }
  .outlet-gallery__footer .button { width: 100%; }
}

/* Promotion hub: compact discovery cards with one full-detail dialog. */
.promotions { position: relative; overflow: hidden; }
.promotions::before { content: "OFFERS"; position: absolute; right: -1vw; top: 2%; color: rgba(117,38,60,.025); font-family: var(--display); font-size: 18vw; line-height: .8; pointer-events: none; }
.promotions[hidden] { display: none; }
.promotions__heading { position: relative; z-index: 1; }
.promotions .section-heading__aside > p { color: #6e6468; }
.promotions .section-heading__aside .text-button { margin-top: 16px; color: var(--oxblood); }
.promotions-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; }
.promotion-card { position: relative; min-width: 0; min-height: 480px; display: grid; grid-template-rows: 265px 1fr; border: 1px solid rgba(53,17,40,.14); background: white; overflow: hidden; box-shadow: 0 22px 55px rgba(55,33,44,.07); }
.promotion-card__visual { position: relative; overflow: hidden; background: var(--paper); }
.promotion-card__visual::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg,rgba(22,9,17,.7),transparent); pointer-events: none; }
.promotion-card__visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.promotion-card:hover .promotion-card__visual img { transform: scale(1.035); filter: saturate(1.06); }
.promotion-card__visual > span { position: absolute; z-index: 1; left: 18px; bottom: 16px; padding: 6px 8px; border: 1px solid rgba(255,255,255,.45); background: rgba(20,8,16,.38); color: white; font-size: 8px; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(7px); }
.promotion-card__body { min-width: 0; padding: 24px 23px 22px; display: flex; flex-direction: column; align-items: flex-start; }
.promotion-card__meta { width: 100%; margin-bottom: 15px; display: flex; justify-content: space-between; gap: 12px; color: #82757b; font-size: 8px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.promotion-card h3 { margin: 0; font-family: var(--display); font-size: clamp(31px,3vw,44px); font-weight: 400; letter-spacing: -.035em; line-height: .96; }
.promotion-card__body > p { margin: 17px 0 21px; color: #6e6468; font-size: 13px; line-height: 1.55; }
.promotion-card__open { min-height: 44px; margin-top: auto; padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--oxblood); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.promotion-card__open span { margin-left: 8px; }

.promotion-modal { width: min(1080px,calc(100vw - 36px)); max-width: none; max-height: calc(100dvh - 36px); padding: 0; border: 0; background: var(--ivory); color: var(--ink); overflow: auto; box-shadow: 0 40px 120px rgba(0,0,0,.55); }
.promotion-modal::backdrop { background: rgba(8,4,7,.82); backdrop-filter: blur(9px); }
.promotion-modal__shell { min-height: min(680px,calc(100dvh - 36px)); display: grid; grid-template-columns: 1.02fr .98fr; }
.promotion-modal__visual { position: relative; min-height: 560px; overflow: hidden; background: #160b15; }
.promotion-modal__visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg,rgba(14,7,11,.8),transparent); pointer-events: none; }
.promotion-modal__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.promotion-modal__visual > span { position: absolute; z-index: 1; left: 28px; bottom: 27px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.45); background: rgba(20,8,16,.42); color: white; font-size: 8px; font-weight: 790; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(8px); }
.promotion-modal__content { min-width: 0; display: flex; flex-direction: column; }
.promotion-modal__content > header { min-height: 91px; padding: 18px 18px 17px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-light); }
.promotion-modal__content > header > div { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.promotion-modal__content > header p { margin: 0; color: var(--oxblood); font-size: 9px; font-weight: 790; letter-spacing: .12em; text-transform: uppercase; }
.promotion-modal__content > header span { color: #85777d; font-size: 9px; }
.promotion-modal__content > header button { flex: 0 0 46px; width: 46px; height: 46px; border: 1px solid rgba(53,17,40,.2); background: transparent; color: var(--plum-800); font-size: 27px; }
.promotion-modal__body { padding: clamp(35px,5vw,67px); display: flex; flex: 1; flex-direction: column; align-items: flex-start; justify-content: center; }
.promotion-modal__body .eyebrow { margin-bottom: 18px; }
.promotion-modal__body h2 { margin: 0; font-family: var(--display); font-size: clamp(48px,5.4vw,74px); font-weight: 400; letter-spacing: -.045em; line-height: .9; }
.promotion-modal__summary { margin: 25px 0 16px; color: var(--oxblood); font-family: var(--display); font-size: 23px; line-height: 1.15; }
.promotion-modal__summary + p { margin: 0; color: #6e6468; font-size: 14px; line-height: 1.65; }
.promotion-modal__actions { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 11px 21px; }
.promotion-modal__actions [hidden] { display: none!important; }
.promotion-modal__actions > a:not(.button) { min-height: 44px; display: inline-flex; align-items: center; border-bottom: 1px solid currentColor; color: var(--oxblood); font-size: 9px; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }

/* Ask Viva discoverability, visible speech transcript, and direct drag scrolling. */
.concierge-questions { position: relative; z-index: 8; padding: 0 18px 9px; }
.concierge-questions__toggle { width: 100%; min-height: 42px; padding: 8px 11px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; border: 1px solid rgba(53,17,40,.15); background: #f6efe5; color: var(--plum-800); text-align: left; }
.concierge-questions__toggle span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.concierge-questions__toggle b { color: #8a7e83; font-size: 8px; font-weight: 620; text-align: right; }
.concierge-questions__toggle i { font-style: normal; transition: transform .2s ease; }
.concierge-questions__toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.concierge-questions__panel { position: absolute; z-index: 10; left: 18px; right: 18px; bottom: calc(100% + 5px); max-height: min(330px,48dvh); padding: 11px; display: grid; gap: 9px; border: 1px solid rgba(53,17,40,.2); background: var(--ivory); box-shadow: 0 -20px 45px rgba(31,13,25,.2); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; touch-action: pan-y; cursor: grab; }
.concierge-questions__panel[hidden] { display: none; }
.concierge-questions__panel.is-dragging { cursor: grabbing; user-select: none; }
.concierge-questions__panel > div { display: grid; grid-template-columns: 105px 1fr; gap: 4px 7px; align-items: stretch; }
.concierge-questions__panel > div > span { grid-row: 1 / span 3; padding: 9px; display: flex; align-items: flex-start; background: #eee4d6; color: var(--oxblood); font-size: 7px; font-weight: 800; letter-spacing: .09em; line-height: 1.35; text-transform: uppercase; }
.concierge-questions__panel button { min-height: 40px; padding: 8px 10px; border: 1px solid rgba(53,17,40,.12); background: white; color: var(--ink); font-size: 9px; text-align: left; }
.concierge-questions__panel button:hover { border-color: var(--oxblood); color: var(--oxblood); }

@media (max-width: 900px) {
  .promotions-grid { grid-template-columns: 1fr 1fr; }
  .promotion-card:first-child { grid-column: 1 / -1; grid-template-columns: 1.05fr .95fr; grid-template-rows: 1fr; min-height: 380px; }
  .promotion-modal__shell { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 600px) {
  .promotions-grid { margin-inline: -16px; grid-template-columns: 1fr; gap: 2px; }
  .promotion-card, .promotion-card:first-child { grid-column: auto; min-height: 470px; grid-template-columns: 1fr; grid-template-rows: 245px 1fr; }
  .promotion-card__body { padding: 22px 20px; }
  .promotion-modal { width: 100%; height: 100dvh; max-height: none; margin: 0; }
  .promotion-modal__shell { min-height: 100%; grid-template-columns: 1fr; grid-template-rows: minmax(260px,39dvh) 1fr; }
  .promotion-modal__visual { min-height: 260px; }
  .promotion-modal__content > header { min-height: 77px; padding: 12px 13px 12px 18px; }
  .promotion-modal__body { padding: 30px 22px 38px; justify-content: flex-start; }
  .promotion-modal__body h2 { font-size: 48px; }
  .promotion-modal__summary { font-size: 20px; }
  .promotion-modal__actions .button { width: 100%; }
  .concierge-questions { padding-inline: 14px; }
  .concierge-questions__panel { left: 14px; right: 14px; max-height: 42dvh; }
  .concierge-questions__panel > div { grid-template-columns: 82px 1fr; }
}
