:root {
  --ink: #0b0b0d;
  --ink-soft: #151518;
  --paper: #f2f0eb;
  --white: #fff;
  --muted: #a8a7aa;
  --red: #ef3d24;
  --red-dark: #bd1d0f;
  --gold: #ffb21a;
  --line: rgba(255, 255, 255, 0.15);
  --max: 1240px;
  --condensed: "Barlow Condensed", Impact, sans-serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, video { display: block; width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 8px 12px; background: var(--white); color: var(--ink); transform: translateY(-140%); }
.skip-link:focus { transform: none; }

.utility-bar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 36px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: #050506;
  color: #aaa9ad;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.utility-bar a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.utility-bar a:hover { color: var(--white); }
.utility-bar svg { width: 13px; height: 13px; }
.utility-separator { width: 1px; height: 12px; background: #3a3a3d; }
.utility-spacer { flex: 1; }
.utility-promise { color: var(--gold); }

.site-header {
  position: absolute;
  top: 36px;
  left: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 92px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  transition: background .25s, min-height .25s, box-shadow .25s;
}
.site-header.is-fixed {
  position: fixed;
  top: 0;
  min-height: 76px;
  background: rgba(8, 8, 10, .94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .26);
  backdrop-filter: blur(16px);
}
.brand { width: min(100%, 310px); }
.brand img { height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #ddd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--red); transition: right .25s; }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: white; transition: .25s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background .2s, border .2s, color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 28px rgba(239, 61, 36, .22); }
.button-primary:hover { background: #ff4c31; box-shadow: 0 15px 35px rgba(239, 61, 36, .32); }
.button-ghost { border-color: rgba(255, 255, 255, .4); background: rgba(0, 0, 0, .1); }
.button-ghost:hover, .button-glass:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-glass { border-color: rgba(255, 255, 255, .42); background: rgba(6, 6, 8, .2); backdrop-filter: blur(8px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--red); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 10px; }
.button-large { min-height: 60px; padding: 0 27px; }
.button-full { width: 100%; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: #d5d4d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: var(--red); }
.eyebrow-dark { color: #5e5d60; }

.hero { position: relative; display: flex; min-height: max(720px, 100vh); overflow: hidden; isolation: isolate; }
.hero-media, .hero-shade, .hero-noise { position: absolute; inset: 0; }
.hero-media { z-index: -4; background: #14151a url("assets/hero-experience.png") center/cover; }
.hero-media video { height: 100%; object-fit: cover; object-position: 64% 50%; animation: heroIn 1.4s both; }
.hero-shade { z-index: -3; background: linear-gradient(90deg, rgba(4, 5, 7, .98) 0%, rgba(4, 5, 7, .82) 35%, rgba(4, 5, 7, .22) 68%, rgba(4, 5, 7, .35) 100%), linear-gradient(0deg, rgba(4, 5, 7, .78), transparent 42%); }
.hero-noise { z-index: -2; opacity: .12; 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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.hero-content { align-self: center; padding-top: 145px; padding-bottom: 100px; }
.hero h1 {
  max-width: 990px;
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(67px, 7.5vw, 118px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .84;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 em, .stay-content h2 em, .food-copy h2 em, .membership-copy h2 em { color: var(--red); font-style: italic; }
.hero-copy { max-width: 610px; margin: 28px 0 34px; color: #d1d0d2; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: 0; margin-top: 54px; }
.hero-proof div { display: flex; flex-direction: column; min-width: 145px; padding: 0 26px; border-left: 1px solid rgba(255, 255, 255, .25); }
.hero-proof div:first-child { padding-left: 0; border: 0; }
.hero-proof strong { font-family: var(--condensed); font-size: 27px; line-height: 1; }
.hero-proof span { margin-top: 8px; color: #a5a5a9; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.media-control { position: absolute; right: 26px; bottom: 26px; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(0,0,0,.25); cursor: pointer; backdrop-filter: blur(6px); }
.media-control svg { width: 18px; height: 18px; }
.media-control .play-icon { display: none; }
.media-control.paused .play-icon { display: block; }
.media-control.paused .pause-icon { display: none; }
.scroll-cue { position: absolute; right: max(90px, calc((100vw - var(--max)) / 2)); bottom: 34px; display: flex; align-items: center; gap: 10px; color: #9d9da1; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue span { width: 42px; height: 1px; background: #8c8c8e; }
@keyframes heroIn { from { transform: scale(1.06); opacity: .45; } to { transform: scale(1); opacity: 1; } }

.choice-section { padding: 120px 0 135px; background: var(--paper); color: var(--ink); }
.section-intro { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 50px; align-items: end; margin-bottom: 58px; }
.section-intro .eyebrow { align-self: start; margin-top: 14px; }
.section-intro h2, .gallery-heading h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .94;
  text-transform: uppercase;
}
.section-intro > p:last-child { margin: 0; color: #5e5d60; font-size: 14px; }
.conversion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.conversion-card { position: relative; min-height: 555px; overflow: hidden; padding: 48px; background: #18191c; color: white; isolation: isolate; }
.conversion-card-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.conversion-card:hover .conversion-card-bg { transform: scale(1.045); }
.membership-card .conversion-card-bg { background-image: linear-gradient(90deg, rgba(7,7,9,.94), rgba(7,7,9,.6)), url("assets/wash-1.jpg"); }
.order-card .conversion-card-bg { background-image: linear-gradient(90deg, rgba(7,7,9,.94), rgba(7,7,9,.56)), url("assets/food-1.jpg"); }
.conversion-card::after { content: ""; position: absolute; inset: 0; z-index: -1; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.card-number { position: absolute; right: 34px; top: 22px; color: rgba(255,255,255,.17); font-family: var(--condensed); font-size: 84px; font-weight: 800; line-height: 1; }
.conversion-content { display: flex; flex-direction: column; align-items: flex-start; height: 100%; max-width: 440px; }
.card-kicker { margin: 0 0 20px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.conversion-card h3 { margin: 0; font-family: var(--condensed); font-size: clamp(42px, 4vw, 61px); font-weight: 800; letter-spacing: -.025em; line-height: .96; text-transform: uppercase; }
.conversion-card h3 + p { max-width: 410px; margin: 23px 0; color: #c4c3c6; font-size: 14px; }
.check-list { display: grid; gap: 9px; margin: 0 0 28px; padding: 0; list-style: none; color: #ddd; font-size: 12px; }
.check-list span { margin-right: 8px; color: var(--red); font-weight: 900; }
.food-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 31px; }
.food-tags span { padding: 6px 11px; border: 1px solid rgba(255,255,255,.25); color: #d6d5d7; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: auto; padding: 12px 0; border: 0; border-bottom: 1px solid var(--red); background: transparent; color: white; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.text-link svg { width: 20px; height: 20px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(5px); }

.triple-experience { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 690px; }
.experience-panel { position: relative; min-height: 690px; overflow: hidden; isolation: isolate; }
.experience-panel img { position: absolute; inset: 0; z-index: -3; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .6s; }
.experience-panel:nth-child(1) img { object-position: 30% 50%; }
.experience-panel:nth-child(2) img { object-position: 62% 50%; }
.experience-panel:hover img { transform: scale(1.055); filter: saturate(1.1); }
.panel-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(0deg, rgba(4,4,5,.98) 0%, rgba(4,4,5,.75) 40%, rgba(4,4,5,.12) 80%), linear-gradient(90deg, rgba(0,0,0,.28), transparent); }
.experience-panel::after { content: ""; position: absolute; inset: 0; border-right: 1px solid rgba(255,255,255,.16); pointer-events: none; }
.panel-content { position: absolute; inset: auto 42px 45px; }
.panel-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.panel-icon svg { width: 23px; height: 23px; }
.panel-content p { margin: 0 0 9px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.panel-content h3 { margin: 0 0 28px; font-family: var(--condensed); font-size: clamp(43px, 3.4vw, 59px); font-weight: 800; letter-spacing: -.025em; line-height: .92; text-transform: uppercase; }
.panel-content a { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.6); color: #d8d7d9; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.panel-content a span { margin-left: 6px; color: var(--red); }

.stay-section { position: relative; display: grid; min-height: 810px; overflow: hidden; isolation: isolate; }
.stay-video, .stay-overlay { position: absolute; inset: 0; }
.stay-video { z-index: -3; background: url("assets/gallery-4.jpg") center/cover; }
.stay-video video { height: 100%; object-fit: cover; object-position: center 45%; }
.stay-overlay { z-index: -2; background: linear-gradient(90deg, rgba(5,5,6,.92), rgba(5,5,6,.45) 55%, rgba(5,5,6,.35)), linear-gradient(0deg, rgba(5,5,6,.4), rgba(5,5,6,.2)); }
.stay-content { align-self: center; }
.stay-content h2 { max-width: 880px; margin: 0; font-family: var(--condensed); font-size: clamp(72px, 8vw, 128px); font-weight: 900; letter-spacing: -.045em; line-height: .82; text-transform: uppercase; }
.stay-content > p { max-width: 550px; margin: 32px 0; color: #d2d1d3; font-size: 16px; }
.stay-actions { display: flex; align-items: center; gap: 28px; }
.inline-phone { color: #ddd; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.inline-phone span { margin-left: 8px; color: var(--red); }

.food-section { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 790px; background: var(--paper); color: var(--ink); }
.food-copy { align-self: center; max-width: 520px; padding: 100px 7vw; }
.food-copy h2, .membership-copy h2 { margin: 0; font-family: var(--condensed); font-size: clamp(61px, 6.7vw, 102px); font-weight: 900; letter-spacing: -.045em; line-height: .84; text-transform: uppercase; }
.food-copy > p { max-width: 490px; margin: 30px 0; color: #5c5b5e; font-size: 14px; }
.food-gallery { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 5px; min-height: 790px; padding: 5px 5px 5px 0; }
.food-gallery figure { position: relative; margin: 0; overflow: hidden; }
.food-gallery img { height: 100%; object-fit: cover; transition: transform .5s; }
.food-gallery figure:hover img { transform: scale(1.04); }
.food-gallery .food-main { grid-row: 1 / -1; }
.food-main img { object-position: center; }
.food-stamp { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 142px; height: 142px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(9,9,11,.82); color: white; transform: translate(-50%, -50%); backdrop-filter: blur(8px); }
.food-stamp span { position: absolute; font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.food-stamp strong { font-family: var(--condensed); font-size: 35px; }

.membership-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 800px; background: #111114; }
.membership-media { position: relative; min-height: 800px; overflow: hidden; }
.membership-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,12,.65), transparent 55%); }
.membership-media img { height: 100%; object-fit: cover; }
.membership-badge { position: absolute; right: 36px; bottom: 36px; z-index: 1; display: flex; align-items: center; gap: 15px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.35); background: rgba(8,8,10,.8); backdrop-filter: blur(10px); }
.membership-badge span { color: var(--red); font-family: var(--condensed); font-size: 44px; font-weight: 900; line-height: 1; }
.membership-badge small { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.25); font-size: 8px; font-weight: 800; letter-spacing: .16em; line-height: 1.5; text-transform: uppercase; }
.membership-copy { align-self: center; max-width: 700px; padding: 85px 8vw; }
.membership-copy > p:not(.eyebrow, .microcopy) { max-width: 560px; margin: 28px 0; color: #aaa9ad; font-size: 14px; }
.membership-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 38px 0 36px; border-top: 1px solid #333337; border-bottom: 1px solid #333337; }
.membership-points div { padding: 22px 18px 22px 0; }
.membership-points strong { display: block; margin-bottom: 8px; color: var(--red); font-family: var(--condensed); font-size: 22px; }
.membership-points span { color: #c2c1c4; font-size: 10px; font-weight: 700; line-height: 1.4; }
.microcopy { margin: 11px 0 0!important; color: #6f6e73!important; font-size: 9px!important; }

.gallery-section { padding: 120px 0 8px; background: var(--paper); color: var(--ink); }
.gallery-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.gallery-heading > p { max-width: 430px; margin: 0; color: #656467; font-size: 14px; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.4fr; gap: 5px; padding: 0 5px; }
.gallery-grid figure { height: 420px; margin: 0; overflow: hidden; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .55s, filter .55s; }
.gallery-grid figure:hover img { transform: scale(1.045); filter: saturate(1.12); }
.gallery-grid figure:nth-child(2) img { object-position: 35% center; }

.visit-section { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 650px; background: var(--ink-soft); }
.visit-info { align-self: center; padding: 90px max(48px, calc((100vw - var(--max)) / 2)); padding-right: 65px; }
.visit-info h2 { margin: 0 0 32px; font-family: var(--condensed); font-size: clamp(63px, 6vw, 96px); font-weight: 900; letter-spacing: -.04em; line-height: .84; text-transform: uppercase; }
.visit-info address { display: grid; gap: 6px; margin-bottom: 28px; color: #b2b1b4; font-size: 13px; font-style: normal; }
.visit-info address strong { color: white; font-size: 12px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.visit-phone { display: block; margin-top: 24px; color: var(--gold); font-family: var(--condensed); font-size: 29px; font-weight: 800; }
.map-wrap { position: relative; min-height: 650px; background: #ddd; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 650px; border: 0; filter: saturate(.55) contrast(1.05); }
.map-card { position: absolute; left: 24px; bottom: 24px; display: flex; align-items: center; gap: 14px; padding: 14px 19px; background: var(--ink); box-shadow: 0 15px 40px rgba(0,0,0,.25); }
.map-card > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); font-family: var(--condensed); font-weight: 900; }
.map-card div { display: grid; }
.map-card strong { font-size: 11px; }
.map-card small { color: #aaa; font-size: 8px; }

.site-footer { padding: 72px 0 110px; background: #070708; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; padding-bottom: 60px; }
.footer-brand img { max-width: 360px; }
.footer-brand p { max-width: 430px; margin: 24px 0 0; color: #77767b; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 9px; color: white; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a, .footer-links button { width: max-content; padding: 0; border: 0; background: transparent; color: #89888d; font-size: 11px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #222226; color: #5f5e63; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

.mobile-action-bar { display: none; }

.membership-modal { width: min(640px, calc(100% - 28px)); max-height: calc(100vh - 28px); overflow-y: auto; padding: 48px; border: 0; border-radius: 4px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.membership-modal::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.membership-modal[open] { animation: modalIn .25s both; }
.modal-close { position: absolute; right: 16px; top: 13px; width: 38px; height: 38px; border: 0; background: transparent; color: #555; font-size: 30px; cursor: pointer; }
.modal-brand { display: none; }
.membership-modal h2 { max-width: 500px; margin: 0; font-family: var(--condensed); font-size: 55px; font-weight: 900; letter-spacing: -.03em; line-height: .9; text-transform: uppercase; }
.membership-modal > p:not(.eyebrow) { margin: 20px 0 27px; color: #68676b; font-size: 13px; }
.membership-modal form { display: grid; gap: 15px; }
.membership-modal label { display: grid; gap: 6px; color: #444347; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.membership-modal label span { color: #aaa; font-weight: 600; }
.membership-modal input, .membership-modal select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid #cfccd0; border-radius: 0; background: white; color: var(--ink); font-size: 13px; outline: 0; }
.membership-modal input:focus, .membership-modal select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,61,36,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { color: #908f93; font-size: 8px; text-align: center; }
.form-success { display: none; padding: 20px 0; text-align: center; }
.form-success > span { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 19px; border-radius: 50%; background: var(--red); color: white; font-size: 28px; }
.form-success h3 { margin: 0; font-family: var(--condensed); font-size: 42px; text-transform: uppercase; }
.form-success p { margin: 10px auto 24px; color: #68676b; font-size: 12px; }
.membership-modal.submitted form, .membership-modal.submitted > .eyebrow, .membership-modal.submitted > h2, .membership-modal.submitted > p { display: none; }
.membership-modal.submitted .form-success { display: block; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

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

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 240px 1fr auto; gap: 16px; }
  .main-nav { justify-self: end; gap: 15px; }
  .header-actions .button-ghost { display: none; }
  .section-intro { grid-template-columns: .8fr 1.5fr; }
  .section-intro > p:last-child { grid-column: 2; }
  .conversion-card { min-height: 590px; padding: 38px; }
  .panel-content { inset-inline: 28px; }
  .food-section { grid-template-columns: 1fr; }
  .food-copy { max-width: none; padding: 90px max(24px, calc((100vw - var(--max)) / 2)); }
  .food-copy > p { max-width: 650px; }
  .food-gallery { min-height: 640px; padding-left: 5px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure { height: 360px; }
}

@media (max-width: 820px) {
  .wrap { width: min(calc(100% - 34px), var(--max)); }
  .utility-bar { height: 32px; padding: 0 17px; }
  .utility-bar a:first-child, .utility-separator, .utility-promise { display: none; }
  .utility-spacer { order: -1; }
  .site-header, .site-header.is-fixed { top: 32px; grid-template-columns: 1fr auto; min-height: 72px; padding: 11px 17px; }
  .site-header.is-fixed { top: 0; }
  .brand { width: 250px; max-width: calc(100vw - 105px); }
  .header-actions { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; display: grid; width: 100%; max-height: 0; overflow: hidden; gap: 0; background: rgba(8,8,10,.98); transition: max-height .3s; }
  .main-nav.open { max-height: 360px; }
  .main-nav a { padding: 16px 20px; border-top: 1px solid #222226; }
  .main-nav a::after { display: none; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 155px; padding-bottom: 100px; }
  .hero-media video { object-position: 61% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,5,7,.96), rgba(4,5,7,.55)), linear-gradient(0deg, rgba(4,5,7,.78), transparent 60%); }
  .hero h1 { font-size: clamp(61px, 16vw, 88px); }
  .hero-copy { max-width: 490px; }
  .scroll-cue { display: none; }
  .media-control { bottom: 78px; }
  .choice-section { padding: 88px 0 94px; }
  .section-intro { display: block; }
  .section-intro h2 { margin-bottom: 20px; }
  .conversion-grid { grid-template-columns: 1fr; }
  .conversion-card { min-height: 540px; }
  .triple-experience { grid-template-columns: 1fr; }
  .experience-panel { min-height: 640px; }
  .stay-section { min-height: 700px; }
  .stay-content h2 { font-size: clamp(65px, 15vw, 98px); }
  .membership-section { grid-template-columns: 1fr; }
  .membership-media { min-height: 560px; }
  .membership-copy { padding: 80px 8vw; }
  .gallery-section { padding-top: 90px; }
  .gallery-heading { display: block; }
  .gallery-heading > p { margin-top: 20px; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-info { padding: 80px 17px; }
  .map-wrap, .map-wrap iframe { min-height: 500px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .mobile-action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; height: 60px; box-shadow: 0 -8px 24px rgba(0,0,0,.3); }
  .mobile-action-bar button, .mobile-action-bar a { display: grid; place-items: center; border: 0; background: #17171a; color: white; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-action-bar a { background: var(--red); }
  .site-footer { padding-bottom: 95px; }
}

@media (max-width: 560px) {
  .hero { min-height: 710px; }
  .hero-content { padding-top: 132px; }
  .hero h1 { font-size: clamp(55px, 16vw, 75px); line-height: .87; }
  .hero-copy { margin: 21px 0 26px; font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 35px; }
  .hero-proof div { min-width: 0; flex: 1; padding: 0 12px; }
  .hero-proof strong { font-size: 23px; }
  .hero-proof span { font-size: 7px; }
  .media-control { display: none; }
  .section-intro h2, .gallery-heading h2 { font-size: 52px; }
  .conversion-card { min-height: 555px; padding: 32px 25px; }
  .conversion-card h3 { font-size: 44px; }
  .card-number { right: 19px; font-size: 65px; }
  .experience-panel { min-height: 580px; }
  .panel-content { inset: auto 25px 34px; }
  .panel-content h3 { font-size: 46px; }
  .stay-section { min-height: 660px; }
  .stay-content h2 { font-size: 64px; }
  .stay-actions { align-items: flex-start; flex-direction: column; }
  .food-copy { padding-block: 80px; }
  .food-copy h2, .membership-copy h2 { font-size: 61px; }
  .food-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 230px; min-height: 655px; }
  .food-gallery .food-main { grid-column: 1 / -1; grid-row: 1; }
  .food-stamp { width: 112px; height: 112px; }
  .food-stamp span { display: none; }
  .membership-media { min-height: 410px; }
  .membership-copy { padding: 75px 17px; }
  .membership-points { grid-template-columns: 1fr; }
  .membership-points div { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid #2d2d30; }
  .membership-points div:last-child { border: 0; }
  .membership-points strong { margin: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure { height: 245px; }
  .gallery-grid .gallery-wide { grid-column: 1 / -1; height: 310px; }
  .visit-info h2 { font-size: 66px; }
  .map-wrap, .map-wrap iframe { min-height: 420px; }
  .footer-brand img { max-width: 290px; }
  .footer-links { gap: 25px; }
  .footer-bottom { gap: 20px; }
  .membership-modal { padding: 39px 22px 27px; }
  .membership-modal h2 { font-size: 47px; }
  .form-row { grid-template-columns: 1fr; }
}

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