:root {
  --navy: #002b5c;
  --navy-deep: #001b3c;
  --red: #c8102e;
  --coral: #f4a58a;
  --blue: #1b8ac8;
  --blue-soft: #bcdff2;
  --sand: #f7efe1;
  --ink: #0a1a2f;
  --ink-2: #334a65;
  --ink-3: #6b7c90;
  --line: #d6dee8;
  --white: #fff;
  --shadow-card: 0 4px 14px rgba(0, 43, 92, .12);
  --shadow-hover: 0 14px 36px rgba(0, 43, 92, .18);
  --ease: 150ms cubic-bezier(.2, .8, .2, 1);
  --container: 1200px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Figtree", sans-serif; line-height: 1.55; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.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; z-index: 100; left: 20px; top: -60px; background: var(--white); color: var(--navy); padding: 12px 18px; border: 2px solid var(--navy); border-radius: 8px; font-weight: 800; transition: top var(--ease); }
.skip-link:focus { top: 16px; }
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 80px 0; }
.display { margin: 0; font-family: "Anton", sans-serif; font-weight: 400; line-height: .98; letter-spacing: .012em; text-transform: uppercase; }
.eyebrow { margin: 0 0 12px; color: var(--red); font-family: "Bowlby One SC", sans-serif; font-size: 13px; line-height: 1.35; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow-coral { color: var(--coral); }
.text-white { color: var(--white) !important; }
.section-title { color: var(--navy); font-size: clamp(40px, 5vw, 60px); }
.section-heading { margin-bottom: 40px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.split-heading { display: grid; grid-template-columns: 1.1fr .75fr; gap: 64px; align-items: end; padding-bottom: 28px; border-bottom: 3px solid var(--navy); }
.split-heading > p { margin: 0; color: var(--ink-2); font-size: 17px; }
.section-copy { max-width: 680px; color: var(--ink-2); font-size: 17px; }
.stamp-light { text-shadow: 4px 4px 0 var(--red); }

.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 12px 28px; border: 2px solid var(--white); border-radius: 8px; background: var(--red); box-shadow: 4px 4px 0 var(--navy-deep); color: var(--white); font-family: "Anton", sans-serif; font-size: 19px; letter-spacing: .035em; line-height: 1; text-align: center; text-decoration: none; text-transform: uppercase; transition: transform var(--ease), box-shadow var(--ease), background var(--ease); }
.button:hover { transform: translateY(-2px); color: var(--white); box-shadow: 6px 7px 0 var(--navy-deep); }
.button-small { min-height: 44px; padding: 10px 20px; font-size: 16px; box-shadow: 3px 3px 0 rgba(0, 0, 0, .35); }
.button-ghost { background: transparent; box-shadow: none; }
.button-ghost:hover { background: rgba(255, 255, 255, .12); box-shadow: none; }
.button-menu { margin-top: 22px; border-color: var(--navy); box-shadow: 4px 4px 0 var(--navy); }

/* Shared header */
.site-header { position: sticky; z-index: 50; top: 0; height: var(--header-height); border-bottom: 3px solid var(--red); background: rgba(0, 43, 92, .98); color: var(--white); }
.header-inner { display: flex; width: min(1440px, calc(100% - 48px)); height: 100%; margin-inline: auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; min-width: max-content; align-items: center; gap: 11px; color: var(--white); text-decoration: none; }
.brand:hover { color: var(--white); }
.brand img { width: auto; height: 52px; object-fit: contain; }
.brand-lockup { display: flex; flex-direction: column; font-family: "Anton", sans-serif; font-size: 17px; letter-spacing: .035em; line-height: 1.05; text-transform: uppercase; }
.brand-lockup strong { font-weight: 400; }
.brand-lockup em { color: var(--coral); font-style: normal; }
.site-nav { display: flex; margin-left: auto; align-items: center; gap: clamp(16px, 2vw, 28px); }
.site-nav a { color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.site-nav a:hover { color: var(--coral); }
.site-nav a[aria-current="page"] { border-bottom: 2px solid var(--red); color: var(--coral); }
.site-nav .nav-mobile-cta { display: none; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 2px solid rgba(255, 255, 255, .6); border-radius: 8px; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--white); transition: transform var(--ease), opacity var(--ease); }

/* Home hero */
.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.home-hero { display: grid; min-height: 560px; align-items: center; }
.hero-image, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 52%; }
.hero-scrim { background: linear-gradient(90deg, rgba(0, 27, 60, .88) 0%, rgba(0, 27, 60, .69) 52%, rgba(0, 27, 60, .28) 100%), linear-gradient(0deg, rgba(0, 27, 60, .18), rgba(0, 27, 60, .18)); }
.hero-content { position: relative; z-index: 2; padding: 88px 0 64px; }
.hero-content .display { max-width: 760px; color: var(--white); font-size: clamp(56px, 7vw, 104px); }
.hero-lede { max-width: 620px; margin: 28px 0 32px; color: var(--white); font-size: clamp(17px, 2vw, 19px); line-height: 1.6; }
.hero-scroll { position: absolute; z-index: 3; right: 32px; bottom: 28px; display: grid; width: 48px; height: 48px; place-items: center; border: 2px solid rgba(255, 255, 255, .7); border-radius: 50%; color: var(--white); font-family: "JetBrains Mono", monospace; text-decoration: none; }
.hero-scroll:hover { border-color: var(--coral); color: var(--coral); }

.stats-strip { border-top: 1px solid rgba(255, 255, 255, .14); background: var(--navy); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 24px 0; }
.stat { min-height: 66px; padding: 4px 24px; border-left: 3px solid var(--red); }
.stat strong { display: block; font-family: "Anton", sans-serif; font-size: 34px; font-weight: 400; letter-spacing: .025em; line-height: 1; text-transform: uppercase; }
.stat span { display: block; margin-top: 8px; color: var(--blue-soft); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

/* Venue cards */
.venues-section { background: var(--white); }
.venue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.venue-card { overflow: hidden; border: 2px solid var(--navy); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-card); color: inherit; text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.venue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: inherit; }
.venue-card-featured { grid-column: span 2; }
.card-image-wrap { position: relative; height: 224px; overflow: hidden; background: var(--sand); }
.venue-card-featured .card-image-wrap { height: 290px; }
.card-image-wrap::after { position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(0, 27, 60, .3)); content: ""; }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.venue-card:hover img { transform: scale(1.025); }
.pill { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .75); border-radius: 999px; background: var(--red); color: var(--white); font-family: "Bowlby One SC", sans-serif; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.venue-card-body { padding: 22px 24px 25px; }
.venue-card-body h3 { margin: 0; color: var(--navy); font-family: "Anton", sans-serif; font-size: 28px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.venue-card-body p { margin: 13px 0 16px; color: var(--ink-2); font-size: 15px; }
.venue-card-body .capacity { margin: 11px 0 0; color: var(--red); font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 600; }
.text-link { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.venue-card:hover .text-link { color: var(--red); }

/* Modular homepage */
.venue-carousel-section { padding: 72px 0 64px; overflow: hidden; background: var(--white); }
.reel-section-heading { display: flex; margin-bottom: 32px; padding-bottom: 20px; align-items: flex-end; justify-content: space-between; gap: 28px; border-bottom: 3px solid var(--navy); }
.reel-section-heading .eyebrow { margin-bottom: 8px; }
.reel-heading-side { display: flex; align-items: center; gap: 20px; }
.reel-heading-side > p { max-width: 340px; margin: 0; color: var(--ink-2); font-size: 15px; }
.reel-controls { display: flex; flex: none; gap: 10px; }
.reel-controls button { width: 46px; height: 46px; padding: 0 0 4px; border: 2px solid var(--white); border-radius: 8px; background: transparent; color: var(--white); font-size: 30px; line-height: 1; cursor: pointer; transition: background var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease); }
.reel-controls button:hover { border-color: var(--red); background: var(--red); color: var(--white); }
.reel-controls button:disabled { opacity: .4; cursor: default; }
.reel-controls button:disabled:hover { border-color: var(--white); background: transparent; }
.reel-controls-navy button { border-color: var(--navy); color: var(--navy); }
.reel-controls-navy button:hover { border-color: var(--navy); background: var(--navy); }
.reel-controls-navy button:disabled:hover { border-color: var(--navy); background: transparent; color: var(--navy); }
.venue-reel { display: flex; gap: 20px; padding: 6px max(32px, calc((100vw - 1200px) / 2 + 32px)) 14px; overflow-x: auto; scroll-padding: 0 max(32px, calc((100vw - 1200px) / 2 + 32px)); scroll-snap-type: x proximity; scrollbar-width: none; }
.venue-reel::-webkit-scrollbar { display: none; }
.venue-reel-card { display: flex; flex: 0 0 300px; overflow: hidden; flex-direction: column; border: 2px solid var(--navy); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-card); color: inherit; text-decoration: none; scroll-snap-align: start; transition: transform var(--ease), box-shadow var(--ease); }
.venue-reel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); color: inherit; }
.venue-reel-card .card-image-wrap { height: 180px; flex: none; }
.venue-reel-card .venue-card-body { display: flex; padding: 16px 18px 18px; flex: 1; flex-direction: column; gap: 8px; }
.venue-reel-card .venue-card-body h3 { font-size: 23px; }
.venue-reel-card .venue-card-body .capacity { min-height: 38px; margin: 0; font-size: 12px; }
.venue-reel-card .text-link { margin-top: auto; }
.venue-reel-card:hover img { transform: scale(1.025); }
.venue-carousel-more { display: flex; margin-top: 26px; justify-content: center; }
.venue-carousel-more .button { border-color: var(--navy); box-shadow: 4px 4px 0 var(--navy-deep); }
.compact-section-heading { display: flex; margin-bottom: 32px; padding-bottom: 18px; align-items: flex-end; justify-content: space-between; gap: 32px; border-bottom: 3px solid rgba(255, 255, 255, .25); }
.compact-section-heading > p { max-width: 360px; margin: 0; color: var(--blue-soft); font-size: 15px; }
.event-type-grid.event-type-grid-compact { gap: 16px; }
.event-card.event-card-compact { min-height: 0; padding: 18px 20px; align-items: baseline; flex-direction: row; gap: 14px; border-radius: 12px; border-bottom-width: 4px; }
.event-card.event-card-compact > span { color: inherit; font-family: inherit; font-size: inherit; letter-spacing: normal; }
.event-card.event-card-compact > span:first-child { flex: none; color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 16px; line-height: 1; }
.event-card.event-card-compact > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.event-card.event-card-compact strong { margin: 0; color: var(--navy); font-family: "Anton", sans-serif; font-size: 20px; font-style: normal; font-weight: 400; letter-spacing: normal; line-height: 1.05; text-transform: uppercase; }
.event-card.event-card-compact em { color: var(--blue); font-size: 11px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.catering-teaser { border-bottom: 3px solid var(--navy); background: var(--sand); }
.catering-teaser-grid { display: grid; padding-block: 56px; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.catering-teaser-copy > p:not(.eyebrow) { max-width: 650px; color: var(--ink-2); font-size: 16px; }
.catering-teaser-photo { height: 280px; overflow: hidden; border: 3px solid var(--navy); border-radius: 14px; box-shadow: 6px 6px 0 var(--red); }
.catering-teaser-photo img { width: 100%; height: 100%; object-fit: cover; }
.explore-teasers { padding: 64px 0; background: var(--white); }
.explore-teaser-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.gallery-teaser, .faq-teaser { overflow: hidden; border: 2px solid var(--navy); border-radius: 14px; color: inherit; text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.gallery-teaser:hover, .faq-teaser:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.gallery-teaser { display: flex; flex-direction: column; background: var(--white); }
.gallery-teaser-images { display: grid; height: 170px; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-teaser-images img { width: 100%; height: 100%; object-fit: cover; }
.teaser-copy { display: flex; padding: 20px 24px 22px; align-items: flex-end; justify-content: space-between; gap: 16px; }
.teaser-copy > span { display: flex; flex-direction: column; gap: 6px; }
.teaser-copy small, .faq-teaser small { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.teaser-copy strong, .faq-teaser > strong { color: var(--navy); font-family: "Anton", sans-serif; font-size: 28px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.teaser-copy em, .faq-teaser em { color: var(--blue); font-size: 12px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.faq-teaser { display: flex; padding: 26px 28px; flex-direction: column; gap: 12px; border: 0; background: var(--navy); }
.faq-teaser small, .faq-teaser em { color: var(--coral); }
.faq-teaser > strong { color: var(--white); }
.faq-teaser > span { display: flex; flex-direction: column; }
.faq-teaser > span span { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); color: var(--blue-soft); font-size: 14px; }
.faq-teaser > span span:last-child { border-bottom: 0; }
.faq-teaser em { margin-top: auto; }

/* Venues landing page */
.venues-page-hero .page-hero-inner { padding-bottom: 32px; }
.venue-jump-links { display: flex; padding-bottom: 40px; flex-wrap: wrap; gap: 10px; }
.venue-jump-links a { padding: 8px 16px; border: 2px solid rgba(255, 255, 255, .3); border-radius: 999px; background: rgba(255, 255, 255, .08); color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; transition: background var(--ease), border-color var(--ease); }
.venue-jump-links a:hover { border-color: var(--red); background: var(--red); color: var(--white); }
.venue-showcase { border-bottom: 3px solid var(--navy); background: var(--white); scroll-margin-top: var(--header-height); }
.venue-showcase--sand { background: var(--sand); }
.venue-showcase-grid { display: grid; padding-block: 64px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.venue-showcase--reverse .venue-showcase-media { order: 2; }
.venue-showcase-media { position: relative; height: 380px; overflow: hidden; border: 3px solid var(--navy); border-radius: 14px; background: var(--sand); box-shadow: 6px 6px 0 var(--red); }
.venue-showcase-media img { width: 100%; height: 100%; object-fit: cover; }
.venue-showcase-media .pill { top: 14px; left: 14px; }
.venue-showcase-copy { display: flex; flex-direction: column; gap: 16px; }
.venue-showcase-copy .eyebrow, .venue-showcase-copy > p { margin: 0; }
.venue-showcase-copy h2 { color: var(--navy); font-size: clamp(34px, 3.6vw, 48px); }
.venue-showcase-copy > p:not(.eyebrow):not(.venue-showcase-capacity) { color: var(--ink-2); font-size: 16px; }
.venue-showcase-capacity { padding: 10px 0; border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy); color: var(--red); font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.venue-amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.venue-amenities span { padding: 6px 14px; border: 2px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); font-size: 12px; font-weight: 700; }
.venue-showcase-actions { display: flex; margin-top: 6px; align-items: center; flex-wrap: wrap; gap: 20px; }
.venue-showcase-actions > a:not(.button) { color: var(--navy); font-size: 14px; font-weight: 700; }
.venue-showcase-actions > a:not(.button):hover { color: var(--red); }
.venue-showcase-button { min-height: 0; padding: 14px 24px; border: 0; box-shadow: 4px 4px 0 var(--navy); font-family: "Figtree", sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .06em; }
.venue-showcase-button:hover { box-shadow: 5px 6px 0 var(--navy); }
.venues-page-cta { background: var(--navy); color: var(--white); }
.venues-page-cta-inner { display: flex; padding-block: 64px; align-items: center; justify-content: space-between; gap: 32px; }
.venues-page-cta-inner > div { max-width: 650px; }
.venues-page-cta h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); }
.venues-page-cta p { margin: 14px 0 0; color: var(--blue-soft); font-size: 16px; }
.venues-page-cta .button { flex: none; }

/* Event types */
.section-navy { color: var(--white); background-color: var(--navy); background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 8px); }
.event-type-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.event-card { display: flex; min-height: 244px; padding: 28px; flex-direction: column; border-radius: 14px; border-bottom: 5px solid var(--red); background: var(--white); color: var(--ink); text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, .25); color: var(--ink); }
.event-card > span { color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 13px; letter-spacing: .12em; }
.event-card h3 { margin: 16px 0 10px; color: var(--navy); font-family: "Anton", sans-serif; font-size: 27px; font-weight: 400; line-height: 1.06; text-transform: uppercase; }
.event-card p { margin: 0 0 24px; color: var(--ink-2); font-size: 14px; }
.event-card strong { margin-top: auto; color: var(--blue); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

/* Catering */
.catering-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.catering-copy { display: flex; flex-direction: column; gap: 20px; }
.catering-copy .eyebrow, .catering-copy .section-copy { margin: 0; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.menu-grid > div { padding: 14px 16px; border: 2px solid var(--navy); border-radius: 8px; background: var(--sand); }
.menu-grid strong { display: block; color: var(--navy); font-family: "Bowlby One SC", sans-serif; font-size: 13px; letter-spacing: .055em; text-transform: uppercase; }
.menu-grid span { display: block; margin-top: 4px; color: var(--ink-2); font-size: 13px; }
.catering-actions { display: flex; margin-top: 6px; align-items: center; gap: 20px; }
.catering-menu-button { min-height: 0; padding: 14px 26px; border: 0; box-shadow: 4px 4px 0 var(--navy); font-family: "Figtree", sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .06em; }
.catering-menu-button:hover { box-shadow: 4px 4px 0 var(--navy); }
.catering-jump { color: var(--navy); font-size: 14px; font-weight: 700; }
.catering-jump:hover { color: var(--red); }
.catering-photo { position: relative; height: 460px; overflow: hidden; border: 3px solid var(--navy); border-radius: 14px; box-shadow: 6px 6px 0 var(--red); }
.catering-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-note { position: absolute; left: 16px; bottom: 16px; padding: 8px 14px; border: 2px solid var(--navy); border-radius: 8px; background: var(--sand); color: var(--navy); font-family: "Bowlby One SC", sans-serif; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.catering-reel-section { padding: 72px 0 84px; overflow: hidden; background: var(--navy); }
.catering-reel-heading { display: flex; margin-bottom: 36px; align-items: flex-end; justify-content: space-between; gap: 24px; }
.catering-reel-copy { display: flex; max-width: 620px; flex-direction: column; gap: 12px; }
.catering-reel-copy .eyebrow { margin: 0; }
.catering-reel-copy h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); line-height: 1.05; }
.catering-reel-copy > p:not(.eyebrow) { margin: 0; color: var(--blue-soft); font-size: 16px; }
.catering-reel-controls { display: flex; gap: 10px; }
.catering-reel-controls button { width: 46px; height: 46px; padding: 0 0 4px; border: 2px solid var(--white); border-radius: 8px; background: transparent; color: var(--white); font-size: 30px; line-height: 1; cursor: pointer; transition: background var(--ease), border-color var(--ease), opacity var(--ease); }
.catering-reel-controls button:hover { border-color: var(--red); background: var(--red); }
.catering-reel-controls button:disabled { opacity: .4; cursor: default; }
.catering-reel-controls button:disabled:hover { border-color: var(--white); background: transparent; }
.catering-reel { display: flex; gap: 20px; padding: 6px max(32px, calc((100vw - 1200px) / 2 + 32px)) 14px; overflow-x: auto; scroll-padding: 0 max(32px, calc((100vw - 1200px) / 2 + 32px)); scroll-snap-type: x proximity; scrollbar-width: none; }
.catering-reel::-webkit-scrollbar { display: none; }
.catering-reel-card { display: flex; flex: 0 0 320px; margin: 0; overflow: hidden; flex-direction: column; border-radius: 12px; background: var(--sand); box-shadow: 5px 5px 0 var(--red); scroll-snap-align: start; transition: transform var(--ease); }
.catering-reel-card:hover { transform: translateY(-3px); }
.catering-reel-card > img, .catering-reel-card > video { display: block; width: 100%; height: 380px; background: var(--ink); object-fit: cover; }
.catering-reel-card figcaption { display: flex; padding: 12px 16px 14px; flex-direction: column; gap: 2px; border-top: 2px solid var(--navy); }
.catering-reel-card figcaption strong { color: var(--navy); font-family: "Bowlby One SC", sans-serif; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }
.catering-reel-card figcaption span { color: var(--ink-2); font-size: 13px; }

/* Fact cards */
.advantage-section { border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); background: var(--sand); }
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.paper-card { min-height: 220px; padding: 28px; border: 2px solid var(--navy); border-radius: 8px; background: var(--white); box-shadow: 4px 4px 0 var(--navy); }
.paper-card:nth-child(1) { transform: rotate(-.45deg); }
.paper-card:nth-child(2) { transform: rotate(.35deg); }
.paper-card:nth-child(3) { transform: rotate(-.25deg); }
.paper-card > span { color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 12px; }
.paper-card h3 { margin: 18px 0 10px; color: var(--navy); font-family: "Anton", sans-serif; font-size: 27px; font-weight: 400; text-transform: uppercase; }
.paper-card p { margin: 0; color: var(--ink-2); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 12px; background: var(--sand); }
.gallery-grid .gallery-main { grid-column: span 2; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-cta { display: flex; margin-top: 32px; justify-content: center; }

/* Gallery page */
body.modal-open { overflow: hidden; }
.gallery-page-hero { position: relative; display: flex; min-height: 620px; overflow: hidden; align-items: flex-end; color: var(--white); background: var(--navy-deep); }
.gallery-page-hero-image, .gallery-page-hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-page-hero-image { object-fit: cover; object-position: center 45%; }
.gallery-page-hero-scrim { background: linear-gradient(90deg, rgba(0, 27, 60, .94) 0%, rgba(0, 27, 60, .7) 50%, rgba(0, 27, 60, .18) 100%), linear-gradient(0deg, rgba(0, 27, 60, .58), transparent 55%); }
.gallery-page-hero-content { position: relative; z-index: 2; padding: 62px 0 72px; }
.breadcrumb-light { padding: 0 0 38px; color: var(--blue-soft); }
.breadcrumb-light a { color: var(--blue-soft); }
.gallery-page-hero h1 { max-width: 950px; color: var(--white); font-size: clamp(62px, 8vw, 104px); }
.gallery-page-hero-content > p:not(.eyebrow) { max-width: 720px; margin: 26px 0 30px; color: var(--white); font-size: 19px; }
.gallery-browser { background: #fbfcfe; }
.gallery-browser-heading { display: grid; grid-template-columns: 1.1fr .8fr; gap: 64px; align-items: end; padding-bottom: 30px; border-bottom: 3px solid var(--navy); }
.gallery-browser-heading > p { margin: 0; color: var(--ink-2); font-size: 17px; }
.gallery-toolbar { display: flex; margin: 28px 0 34px; align-items: center; justify-content: space-between; gap: 24px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 9px; }
.gallery-filter { padding: 9px 14px; border: 2px solid var(--navy); border-radius: 999px; background: var(--white); color: var(--navy); font-size: 12px; font-weight: 800; cursor: pointer; }
.gallery-filter:hover, .gallery-filter.is-active { background: var(--navy); color: var(--white); }
.gallery-count { min-width: max-content; margin: 0; color: var(--ink-3); font-family: "JetBrains Mono", monospace; font-size: 11px; text-transform: uppercase; }
.gallery-count strong { color: var(--red); font-size: 15px; }
.gallery-wall { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; grid-auto-rows: 62px; gap: 16px; }
.gallery-card { position: relative; grid-column: span 4; grid-row: span 4; overflow: hidden; padding: 0; border: 0; border-radius: 12px; background: var(--navy); box-shadow: var(--shadow-card); cursor: zoom-in; }
.gallery-card--wide { grid-column: span 8; grid-row: span 5; }
.gallery-card[hidden] { display: none; }
.gallery-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 27, 60, .92) 0, rgba(0, 27, 60, .12) 58%, transparent 78%); content: ""; opacity: .76; transition: opacity 250ms ease; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms cubic-bezier(.2, .8, .2, 1); }
.gallery-card-overlay { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; display: flex; align-items: flex-start; flex-direction: column; color: var(--white); text-align: left; }
.gallery-card-overlay span { color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.gallery-card-overlay strong { margin-top: 4px; font-family: "Anton", sans-serif; font-size: clamp(19px, 2vw, 26px); font-weight: 400; line-height: 1.05; text-transform: uppercase; }
.gallery-card-play { position: absolute; z-index: 3; top: 16px; right: 16px; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 999px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.gallery-card[data-video-src] { cursor: pointer; }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.035); }
.gallery-card:hover::after, .gallery-card:focus-visible::after { opacity: 1; }
.gallery-plan-band { padding: 64px 0; background-color: var(--navy-deep); background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 8px); color: var(--white); }
.gallery-plan-inner { display: flex; padding-block: 56px; align-items: center; justify-content: space-between; gap: 56px; }
.gallery-plan-inner > div { max-width: 760px; }
.gallery-plan-inner h2 { color: var(--navy); font-size: clamp(36px, 4vw, 52px); }
.gallery-plan-inner p:not(.eyebrow) { margin: 16px 0 0; color: var(--ink-2); font-size: 17px; }
.gallery-plan-inner .button { min-width: max-content; }
.gallery-lightbox { width: min(1200px, calc(100% - 32px)); max-width: none; max-height: calc(100vh - 32px); padding: 0; overflow: visible; border: 0; border-radius: 14px; background: transparent; color: var(--white); }
.gallery-lightbox::backdrop { background: rgba(0, 12, 28, .92); backdrop-filter: blur(5px); }
.lightbox-panel { position: relative; display: grid; grid-template-columns: 54px minmax(0, 1fr) 54px; gap: 16px; padding: 54px 22px 20px; align-items: center; border: 2px solid rgba(255, 255, 255, .25); border-radius: 14px; background: var(--navy-deep); box-shadow: 0 24px 80px rgba(0, 0, 0, .45); }
.lightbox-panel figure { min-width: 0; margin: 0; }
.lightbox-image-wrap { display: grid; height: min(68vh, 720px); place-items: center; overflow: hidden; border-radius: 9px; background: #000b18; }
.lightbox-image-wrap img, .lightbox-image-wrap video { width: 100%; height: 100%; object-fit: contain; }
.lightbox-panel figcaption { display: grid; grid-template-columns: 1fr auto; gap: 4px 24px; padding: 16px 4px 0; }
.lightbox-panel figcaption span { grid-column: 1 / -1; color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-panel figcaption strong { font-family: "Anton", sans-serif; font-size: 23px; font-weight: 400; line-height: 1.1; text-transform: uppercase; }
.lightbox-panel figcaption small { align-self: end; color: var(--blue-soft); font-family: "JetBrains Mono", monospace; font-size: 11px; }
.lightbox-close, .lightbox-nav { display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .52); border-radius: 50%; background: rgba(0, 43, 92, .82); color: var(--white); cursor: pointer; }
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--coral); background: var(--red); }
.lightbox-close { position: absolute; z-index: 3; top: 12px; right: 14px; width: 36px; height: 36px; font-size: 26px; line-height: 1; }
.lightbox-nav { width: 48px; height: 48px; font-family: "JetBrains Mono", monospace; font-size: 24px; }

/* FAQ */
.faq-section { background: #fbfcfe; }
.faq-container { max-width: 960px; }
.accordion { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 2px solid var(--line); border-radius: 10px; background: var(--white); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; padding: 19px 22px; align-items: center; justify-content: space-between; gap: 24px; border: 0; background: transparent; color: var(--navy); font-size: 16px; font-weight: 800; text-align: left; cursor: pointer; }
.faq-item button span { font-family: "JetBrains Mono", monospace; font-size: 22px; font-weight: 400; }
.faq-item.is-open { border-color: var(--navy); }
.faq-item.is-open button { background: var(--navy); color: var(--white); }
.faq-answer { padding: 6px 22px 20px; }
.faq-answer p { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; }

/* Inquiry */
.inquiry-section { color: var(--white); background-color: var(--navy-deep); background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 8px); }
.inquiry-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.inquiry-copy > p:not(.eyebrow) { max-width: 620px; color: var(--blue-soft); font-size: 17px; }
.contact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .2); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.contact-list > div { display: flex; flex-direction: column; }
.contact-list strong { font-size: 16px; }
.contact-list span { margin: 2px 0 8px; color: var(--blue-soft); font-size: 13px; }
.contact-list a { color: var(--white); font-family: "JetBrains Mono", monospace; font-size: 12px; text-decoration: none; }
.contact-list a:hover { color: var(--coral); }
.inquiry-copy address { color: var(--blue-soft); font-family: "JetBrains Mono", monospace; font-size: 12px; font-style: normal; }
.inquiry-form { padding: 32px; border-radius: 14px; background: var(--white); box-shadow: 8px 8px 0 rgba(200, 16, 46, .75); color: var(--ink); }
.form-heading { display: flex; margin-bottom: 24px; align-items: baseline; justify-content: space-between; gap: 16px; }
.form-heading span { color: var(--navy); font-family: "Anton", sans-serif; font-size: 26px; text-transform: uppercase; }
.form-heading small { color: var(--ink-3); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid label { color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 2px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink); font-size: 15px; text-transform: none; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); outline: 2px solid transparent; box-shadow: 0 0 0 3px rgba(27, 138, 200, .2); }
.form-grid textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-submit { width: 100%; margin-top: 22px; border-color: var(--navy); box-shadow: 4px 4px 0 var(--navy); cursor: pointer; }
.form-note, .form-status { margin: 14px 0 0; color: var(--ink-3); font-size: 11px; text-align: center; }
.form-status { min-height: 18px; color: var(--navy); font-weight: 700; }
.typeform-card { overflow: hidden; }
.typeform-embed { width: 100%; height: auto; border-radius: 8px; overflow: hidden; background: var(--sand); }
.typeform-card .form-note a { color: var(--navy); font-weight: 800; }

/* Modular pages */
.page-hero { color: var(--white); background-color: var(--navy); background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 8px); }
.page-hero-inner { display: flex; padding-block: 72px 64px; flex-direction: column; gap: 20px; }
.page-hero-inner .eyebrow { margin: 0; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(44px, 5.5vw, 76px); }
.page-hero-inner > p:not(.eyebrow) { max-width: 650px; margin: 0; color: var(--blue-soft); font-size: 18px; }
.page-hero-narrow .page-hero-inner, .content-cta-narrow, .faq-page-section .faq-container { max-width: 900px; }
.catering-hero-actions { margin-top: 4px; }
.catering-jump-light { color: var(--white); }
.catering-jump-light:hover { color: var(--coral); }
.content-cta { border-top: 3px solid var(--navy); background: var(--sand); }
.content-cta-inner { display: flex; padding-block: 56px; align-items: center; justify-content: space-between; gap: 40px; }
.content-cta-inner > div { max-width: 670px; }
.content-cta h2 { color: var(--navy); font-size: clamp(28px, 3.2vw, 42px); }
.content-cta p { margin: 10px 0 0; color: var(--ink-2); font-size: 16px; }
.content-cta p a { color: var(--navy); font-weight: 800; }
.content-cta .button { border-color: var(--navy); box-shadow: 4px 4px 0 var(--navy); }
.faq-page-section { background: var(--white); }

/* Footer */
.site-footer { padding: 44px 0; border-top: 3px solid var(--red); background: var(--navy-deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.footer-brand img { height: 58px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 22px; }
.site-footer nav a { color: var(--blue-soft); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.site-footer nav a:hover { color: var(--coral); }
.footer-meta { display: flex; align-items: flex-end; flex-direction: column; color: var(--ink-3); font-size: 11px; text-align: right; }
.footer-meta strong { margin-bottom: 4px; color: var(--blue-soft); font-size: 13px; }

/* Venue detail */
.subpage-main { background: var(--white); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; padding: 24px 0; color: var(--ink-3); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.venue-hero-wrap { position: relative; }
.venue-hero-photo { position: relative; height: 480px; overflow: hidden; border-radius: 14px; background: var(--sand); }
.venue-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero-photo .pill { top: 22px; left: 22px; }
.venue-title-card { position: relative; z-index: 2; width: min(900px, calc(100% - 64px)); margin: -72px auto 0; padding: 28px 34px; border-radius: 14px; background: var(--navy); box-shadow: 8px 8px 0 var(--red); color: var(--white); }
.venue-title-card h1 { color: var(--white); font-size: clamp(48px, 7vw, 80px); }
.venue-title-card p { margin: 10px 0 0; color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 88px; }
.fact-tile { padding: 22px 18px; border: 2px solid var(--navy); border-radius: 8px; background: var(--sand); }
.fact-tile strong { display: block; color: var(--navy); font-family: "JetBrains Mono", monospace; font-size: clamp(18px, 2.4vw, 27px); line-height: 1.15; }
.fact-tile span { display: block; margin-top: 8px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.venue-overview-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 64px; align-items: start; }
.venue-description h2 { padding-bottom: 16px; border-bottom: 3px solid var(--navy); }
.venue-description p { color: var(--ink-2); font-size: 17px; }
.subheading { margin: 30px 0 14px; color: var(--navy); font-family: "Bowlby One SC", sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 7px 11px; border: 2px solid var(--navy); border-radius: 999px; color: var(--navy); font-size: 12px; font-weight: 800; }
.included-card { padding: 30px; border-radius: 14px; background: var(--navy); box-shadow: 6px 6px 0 var(--red); color: var(--white); }
.included-card h2 { margin: 0 0 20px; color: var(--coral); font-family: "Bowlby One SC", sans-serif; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.included-card ul { display: grid; margin: 0 0 28px; padding: 0; gap: 13px; list-style: none; }
.included-card li { position: relative; padding-left: 25px; color: var(--blue-soft); font-size: 14px; }
.included-card li::before { position: absolute; left: 0; color: var(--coral); font-weight: 900; content: "✓"; }
.included-card .button { width: 100%; }
.setup-band { border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); background: var(--sand); }
.setup-header { display: flex; margin-bottom: 28px; align-items: center; justify-content: space-between; gap: 24px; }
.setup-controls { display: flex; flex-wrap: wrap; gap: 8px; }
.setup-control { padding: 9px 14px; border: 2px solid var(--navy); border-radius: 999px; background: transparent; color: var(--navy); font-size: 12px; font-weight: 800; cursor: pointer; }
.setup-control[aria-selected="true"] { background: var(--navy); color: var(--white); }
.setup-detail { display: grid; grid-template-columns: .62fr 1.38fr; gap: 32px; padding: 28px; border: 2px solid var(--navy); border-radius: 12px; background: var(--white); box-shadow: 5px 5px 0 var(--navy); align-items: center; }
.setup-number strong { display: block; color: var(--red); font-family: "JetBrains Mono", monospace; font-size: clamp(38px, 6vw, 58px); line-height: 1; }
.setup-number span { color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.setup-detail p { margin: 0; color: var(--ink-2); }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-strip figure { height: 250px; margin: 0; overflow: hidden; border-radius: 12px; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { padding: 24px; border: 2px solid var(--navy); border-radius: 14px; color: inherit; text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); color: inherit; }
.related-card h3 { margin: 0; color: var(--navy); font-family: "Anton", sans-serif; font-size: 25px; font-weight: 400; text-transform: uppercase; }
.related-card strong { display: block; margin: 8px 0; color: var(--red); font-family: "JetBrains Mono", monospace; font-size: 12px; }
.related-card p { margin: 0; color: var(--ink-2); font-size: 14px; }
.cta-band { padding: 56px 0; background: var(--navy-deep); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { color: var(--white); }
.cta-band p { margin: 12px 0 0; color: var(--blue-soft); }

/* Event type detail */
.type-hero { padding: 68px 0; background-color: var(--navy); background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 8px); }
.type-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.type-hero .breadcrumb { padding: 0 0 24px; color: var(--blue-soft); }
.type-hero .breadcrumb a { color: var(--blue-soft); }
.type-hero h1 { color: var(--white); font-size: clamp(52px, 7vw, 88px); }
.type-hero p { max-width: 680px; color: var(--blue-soft); font-size: 18px; }
.type-hero-photo { height: 440px; overflow: hidden; border: 2px solid rgba(255, 255, 255, .3); border-radius: 14px; box-shadow: 8px 8px 0 var(--red); }
.type-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { padding-top: 18px; border-top: 4px solid var(--red); }
.value-card h2 { margin: 0; color: var(--navy); font-family: "Anton", sans-serif; font-size: 25px; font-weight: 400; text-transform: uppercase; }
.value-card p { margin: 8px 0 0; color: var(--ink-2); font-size: 14px; }
.agenda-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.agenda-card { padding: 22px; border: 2px solid var(--navy); border-radius: 8px; background: var(--sand); }
.agenda-card time { color: var(--red); font-family: "JetBrains Mono", monospace; font-size: 14px; font-weight: 600; }
.agenda-card h3 { margin: 14px 0 8px; color: var(--navy); font-family: "Anton", sans-serif; font-size: 24px; font-weight: 400; text-transform: uppercase; }
.agenda-card p { color: var(--ink-2); font-size: 14px; }
.agenda-card strong { color: var(--blue); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.matcher-list { display: grid; gap: 12px; }
.matcher-row { display: grid; grid-template-columns: 180px 1fr auto; gap: 24px; padding: 20px 26px; align-items: center; border-radius: 12px; background: var(--white); color: inherit; text-decoration: none; transition: transform var(--ease); }
.matcher-row:hover { transform: translateY(-2px); color: inherit; }
.matcher-row > strong { color: var(--red); font-family: "JetBrains Mono", monospace; font-size: 22px; }
.matcher-row h3 { margin: 0; color: var(--navy); font-family: "Anton", sans-serif; font-size: 24px; font-weight: 400; text-transform: uppercase; }
.matcher-row p { margin: 3px 0 0; color: var(--ink-2); font-size: 14px; }
.matcher-row > span { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .venue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .venue-card-featured { grid-column: span 2; }
  .event-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1 / -1; grid-row: 2; }
  .facts-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wall { grid-auto-rows: 56px; }
  .gallery-card { grid-column: span 6; }
  .gallery-card--wide { grid-column: span 12; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .container { width: min(var(--container), calc(100% - 40px)); }
  .section { padding: 64px 0; }
  .header-inner { width: calc(100% - 32px); }
  .brand img { height: 46px; }
  .brand-lockup { font-size: 15px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: none; padding: 28px 24px 34px; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 3px solid var(--red); background: var(--navy); box-shadow: 0 20px 32px rgba(0, 0, 0, .25); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, .15); font-size: 15px; }
  .site-nav .nav-mobile-cta { display: block; margin-top: 16px; padding: 13px 16px; border: 2px solid var(--white); border-radius: 8px; background: var(--red); text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .home-hero { min-height: 660px; }
  .hero-scrim { background: rgba(0, 27, 60, .72); }
  .hero-content { padding: 64px 0 84px; }
  .hero-content .display { font-size: clamp(56px, 14vw, 82px); }
  .split-heading, .catering-grid, .inquiry-grid, .venue-overview-grid, .type-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .split-heading { align-items: start; }
  .reel-section-heading, .compact-section-heading { align-items: flex-start; flex-direction: column; }
  .reel-heading-side { width: 100%; align-items: flex-start; justify-content: space-between; }
  .catering-teaser-grid, .explore-teaser-grid { grid-template-columns: 1fr; }
  .catering-teaser-photo { height: 360px; }
  .content-cta-inner { align-items: flex-start; flex-direction: column; }
  .catering-photo { height: 420px; }
  .catering-reel-heading { align-items: flex-start; flex-direction: column; }
  .advantage-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-grid .gallery-main { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .site-footer nav { grid-column: auto; grid-row: auto; }
  .footer-meta { align-items: center; text-align: center; }
  .venue-hero-photo { height: 400px; border-radius: 0; margin-inline: -20px; }
  .venue-title-card { width: calc(100% - 32px); margin-top: -54px; padding: 24px; }
  .facts-grid { margin-top: 76px; }
  .setup-header { align-items: flex-start; flex-direction: column; }
  .photo-strip, .related-grid { grid-template-columns: 1fr; }
  .photo-strip figure { height: 290px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .type-hero-photo { height: 360px; }
  .gallery-page-hero { min-height: 580px; }
  .gallery-page-hero-content { padding: 54px 0 62px; }
  .gallery-browser-heading { grid-template-columns: 1fr; gap: 24px; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-plan-inner { align-items: flex-start; flex-direction: column; }
  .venue-showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .venue-showcase--reverse .venue-showcase-media { order: 0; }
  .venues-page-cta-inner { align-items: flex-start; flex-direction: column; }
  .lightbox-panel { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; padding-inline: 12px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-image-wrap { height: min(62vh, 620px); }
}

@media (max-width: 580px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 52px 0; }
  .section-title { font-size: clamp(38px, 12vw, 50px); }
  .brand-lockup strong { max-width: 150px; }
  .hero-content .display { font-size: clamp(52px, 16vw, 72px); }
  .hero-scroll { display: none; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 16px 20px; }
  .venue-grid, .event-type-grid { grid-template-columns: 1fr; }
  .reel-section-heading { width: calc(100% - 32px); }
  .reel-heading-side { flex-direction: column; }
  .venue-reel { padding-inline: 16px; scroll-padding-inline: 16px; }
  .venue-reel-card { flex-basis: min(82vw, 300px); }
  .venue-carousel-more { padding-inline: 16px; }
  .venue-carousel-more .button { width: 100%; }
  .catering-teaser-grid { padding-block: 48px; }
  .catering-teaser-photo { height: 280px; }
  .teaser-copy { align-items: flex-start; flex-direction: column; }
  .gallery-teaser-images { height: 140px; }
  .page-hero-inner { padding-block: 56px 48px; }
  .page-hero-inner > p:not(.eyebrow) { font-size: 16px; }
  .venue-jump-links { padding-bottom: 32px; }
  .venue-jump-links a { flex: 1 1 auto; text-align: center; }
  .venue-showcase-grid { padding-block: 48px; }
  .venue-showcase-media { height: 290px; }
  .venue-showcase-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .venue-showcase-actions .button { width: 100%; }
  .venue-showcase-actions > a:not(.button) { align-self: center; }
  .venues-page-cta-inner { padding-block: 52px; }
  .venues-page-cta .button { width: 100%; }
  .content-cta-inner .button { width: 100%; }
  .venue-card-featured { grid-column: auto; }
  .venue-card-featured .card-image-wrap { height: 224px; }
  .menu-grid, .contact-list, .form-grid, .facts-grid, .value-grid, .agenda-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 170px; gap: 10px; }
  .gallery-grid .gallery-main { grid-row: span 2; }
  .inquiry-form { padding: 24px 18px; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .venue-hero-photo { height: 320px; margin-inline: -16px; }
  .venue-title-card h1 { font-size: clamp(44px, 14vw, 62px); }
  .facts-grid { gap: 10px; }
  .setup-detail { grid-template-columns: 1fr; }
  .matcher-row { grid-template-columns: 1fr; gap: 8px; }
  .matcher-row > span { margin-top: 8px; }
  .catering-actions { align-items: stretch; flex-direction: column; }
  .catering-actions .button { width: 100%; }
  .catering-jump { align-self: center; }
  .catering-reel-section { padding: 56px 0 64px; }
  .catering-reel { padding-inline: 16px; scroll-padding-inline: 16px; }
  .catering-reel-card { flex-basis: min(82vw, 320px); }
  .gallery-page-hero { min-height: 610px; }
  .gallery-page-hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .gallery-page-hero-content > p:not(.eyebrow) { font-size: 16px; }
  .gallery-wall { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
  .gallery-card, .gallery-card--wide { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery-card--wide { aspect-ratio: 16 / 10; }
  .gallery-filters { gap: 7px; }
  .gallery-filter { padding: 8px 11px; font-size: 11px; }
  .gallery-plan-inner .button { width: 100%; }
  .gallery-lightbox { width: calc(100% - 16px); max-height: calc(100vh - 16px); }
  .lightbox-panel { grid-template-columns: 40px minmax(0, 1fr) 40px; padding: 50px 8px 14px; }
  .lightbox-image-wrap { height: auto; aspect-ratio: 16 / 10; }
  .lightbox-panel figcaption { grid-template-columns: 1fr; }
  .lightbox-panel figcaption small { align-self: auto; }
}

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