:root {
    color-scheme: light dark;
    --navy: #10233e;
    --navy-deep: #09172a;
    --paper: #f4edda;
    --paper-2: #e9debf;
    --ink: #101f38;
    --red: #c93c2e;
    --red-dark: #a92c22;
    --gold: #d4a13a;
    --line: rgba(244, 237, 218, .18);
    --line-strong: rgba(244, 237, 218, .35);
    --muted: rgba(244, 237, 218, .72);
    --muted-soft: rgba(244, 237, 218, .54);
    --surface: #10233e;
    --surface-2: #132b4c;
    --page: #09172a;
    --text: #f4edda;
    --inverse: #101f38;
    --shadow: 0 30px 70px rgba(0, 0, 0, .28);
    --shell: min(92vw, 1280px);
    --display: 'Oswald', sans-serif;
    --body: 'DM Sans', sans-serif;
    --serif: 'Libre Baskerville', Georgia, serif;
}

html[data-theme='light'] {
    color-scheme: light;
    --line: rgba(16, 31, 56, .16);
    --line-strong: rgba(16, 31, 56, .32);
    --muted: rgba(16, 31, 56, .74);
    --muted-soft: rgba(16, 31, 56, .54);
    --surface: #f4edda;
    --surface-2: #e9debf;
    --page: #fbf7ec;
    --text: #101f38;
    --inverse: #f4edda;
    --shadow: 0 30px 70px rgba(44, 32, 14, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--page); color: var(--text); font-family: var(--body); font-size: 1rem; line-height: 1.65; overflow-x: hidden; transition: background-color .25s ease, color .25s ease; }
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .035; 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='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--red); color: #fff; }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 820px; }
.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: 1rem; left: 1rem; z-index: 200; transform: translateY(-180%); background: var(--paper); color: var(--ink); padding: .75rem 1rem; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: -.02em; line-height: .93; }
h1 { font-size: clamp(4rem, 10vw, 9rem); margin-bottom: 0; }
h2 { font-size: clamp(3rem, 6.5vw, 6.2rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.75rem, 3vw, 2.7rem); margin-bottom: 1rem; }
h1 em, h2 em { color: var(--gold); font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: -.04em; }
.eyebrow { margin-bottom: 1.2rem; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.large-copy { font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 2rem); line-height: 1.55; }
.section { position: relative; padding: clamp(5rem, 9vw, 9rem) 0; }
.section-heading > p:not(.eyebrow), .section-heading-row > p { color: var(--muted); max-width: 35rem; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-heading-row h2 { margin-bottom: 0; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid var(--red); background: var(--red); color: #fff; padding: .85rem 1.35rem; font-family: var(--display); font-size: .95rem; font-weight: 700; letter-spacing: .09em; line-height: 1; text-transform: uppercase; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: .72rem 1.05rem; font-size: .78rem; }
.button-ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--text); border-color: var(--text); color: var(--page); }
.button-inverse { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-inverse:hover { background: #fff; border-color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.text-link { display: inline-flex; gap: .65rem; align-items: center; border-bottom: 1px solid currentColor; padding-bottom: .2rem; font-weight: 700; }
.text-link span { color: var(--red); transition: transform .2s ease; }
.text-link:hover span { transform: translate(.15rem, -.15rem); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background-color .25s ease, border-color .25s ease, transform .25s ease; }
.site-header.is-scrolled { background: color-mix(in srgb, var(--page) 90%, transparent); border-color: var(--line); backdrop-filter: blur(18px); }
.page-home .site-header:not(.is-scrolled) { color: var(--paper); }
.page-home .site-header:not(.is-scrolled) .primary-nav:not(.is-open) a { color: rgba(244,237,218,.72); }
.page-home .site-header:not(.is-scrolled) .primary-nav:not(.is-open) a:hover,
.page-home .site-header:not(.is-scrolled) .primary-nav:not(.is-open) a.is-active { color: var(--paper); }
.page-home .site-header:not(.is-scrolled) .theme-toggle { border-color: rgba(244,237,218,.25); color: var(--paper); }
.header-inner { height: 84px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.brand { display: inline-flex; width: max-content; align-items: center; gap: .75rem; font-family: var(--display); font-size: 1.3rem; font-weight: 700; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.header-brand { height: 72px; line-height: 0; }
.header-brand-logo { width: 106px; height: auto; object-fit: contain; }
.brand-logo-light { display: none; }
html[data-theme='light'] .brand-logo-dark { display: none; }
html[data-theme='light'] .brand-logo-light { display: block; }
html[data-theme='light'] .page-home .site-header:not(.is-scrolled) .brand-logo-dark { display: block; }
html[data-theme='light'] .page-home .site-header:not(.is-scrolled) .brand-logo-light { display: none; }
.brand-mark { position: relative; width: 32px; height: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; transform: rotate(45deg); }
.brand-mark i { display: block; border: 3px solid var(--red); }
.brand-mark i:nth-child(1) { border-right: 0; border-bottom: 0; }
.brand-mark i:nth-child(2) { border-left: 0; border-bottom: 0; }
.brand-mark i:nth-child(3) { border-right: 0; border-top: 0; }
.brand-mark i:nth-child(4) { border-left: 0; border-top: 0; }
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a { position: relative; padding: .5rem 0; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav a::after { content: ''; position: absolute; inset: auto 0 0; height: 2px; transform: scaleX(0); background: var(--red); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a.is-active { color: var(--text); }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .7rem; }
.theme-toggle, .nav-toggle { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: transparent; color: var(--text); cursor: pointer; }
.theme-toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sun { display: none; }
html[data-theme='light'] .icon-sun { display: block; }
html[data-theme='light'] .icon-moon { display: none; }
.nav-toggle { display: none; padding: 9px; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; margin: 2px 0; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; background-color: var(--navy-deep); background-image: linear-gradient(rgba(5,15,28,.38), rgba(5,15,28,.7)), url('../images/breadsticks.webp'); background-position: center 38%; background-size: cover; color: var(--paper); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: brightness(.7) saturate(.88) contrast(1.06); transition: opacity .45s ease; }
.hero-video.is-playing { opacity: .9; }
.hero-video.is-unavailable { display: none; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 15, 28, .3) 0%, rgba(5, 15, 28, .4) 42%, rgba(5, 15, 28, .92) 100%), linear-gradient(90deg, rgba(5, 15, 28, .6), rgba(5, 15, 28, .12) 68%); }
.hero-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 9vw 9vw; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-inner { position: relative; z-index: 2; padding-top: 10rem; padding-bottom: clamp(5rem, 9vw, 8rem); }
.hero h1 { max-width: 1050px; text-shadow: 0 6px 38px rgba(0,0,0,.35); }
.hero h1 em { color: var(--paper); }
.hero-copy { max-width: 610px; margin: 2rem 0 2.2rem; color: rgba(244,237,218,.82); font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.45rem); }
.ticker { overflow: hidden; border-block: 1px solid rgba(244,237,218,.2); background: var(--red); color: #fff; white-space: nowrap; }
.ticker-track { width: max-content; display: flex; animation: ticker 24s linear infinite; }
.ticker-group { min-width: 100vw; display: flex; flex-shrink: 0; align-items: center; justify-content: space-around; gap: 2.4rem; padding: .9rem 1.2rem; }
.ticker span { font-family: var(--display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ticker i { width: 8px; height: 8px; background: var(--paper); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.split-intro { overflow: hidden; }
.split-intro::after { content: 'OF'; position: absolute; right: -2vw; bottom: -8vw; color: transparent; font-family: var(--display); font-size: 36vw; font-weight: 700; line-height: .7; -webkit-text-stroke: 1px var(--line); pointer-events: none; }
.split-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.split-grid .large-copy { max-width: 720px; }
.feature-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 6rem; border-block: 1px solid var(--line); }
.feature-strip article { min-height: 155px; display: flex; align-items: center; gap: 1rem; padding: 2rem; border-right: 1px solid var(--line); }
.feature-strip article:last-child { border-right: 0; }
.feature-strip strong { color: var(--red); font-family: var(--display); font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; }
.feature-strip span { max-width: 8rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }

.location-section { background: var(--surface); border-block: 1px solid var(--line); }
.location-grid { display: grid; grid-template-columns: 1.1fr 1fr .92fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.location-card { min-height: 480px; position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(2rem, 3.6vw, 3.5rem); background: var(--page); }
.location-featured { background: var(--surface-2); }
.location-social { background: var(--red); color: #fff; }
.location-social .card-kicker, .location-social p { color: rgba(255,255,255,.78); }
.location-social .button { margin-top: auto; }
.card-number { align-self: flex-end; color: var(--muted-soft); font-family: var(--display); font-size: .8rem; letter-spacing: .1em; }
.card-kicker { margin: 3rem 0 .6rem; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.location-card h3 { font-size: clamp(2.5rem, 4vw, 4rem); }
.location-hours { margin-top: auto; font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.location-hours strong { color: var(--gold); font-size: 1.6rem; }
.location-card address { margin-bottom: 1.6rem; color: var(--muted); font-style: normal; }
.schedule-disclaimer { margin: 1.5rem 0 0; color: var(--muted-soft); font-size: .82rem; }

.menu-preview { background: var(--page); }
.menu-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.menu-card { min-height: 350px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.2rem; background: var(--surface); }
.menu-card > span, .menu-card div > span { margin-bottom: auto; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.menu-card h3 { margin-top: 3rem; font-size: 3rem; }
.menu-card p { margin-bottom: 0; color: var(--muted); }
.menu-card-image { min-height: 700px; position: relative; grid-row: span 2; overflow: hidden; color: var(--paper); }
.menu-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(6,12,22,.9)); }
.menu-card-image > div { position: relative; z-index: 1; }
.menu-card-image:hover img { transform: scale(1.035); }
.menu-card-accent { background: var(--paper-2); color: var(--ink); }
.menu-card-accent p { color: rgba(16,31,56,.72); }
.menu-card-accent > span { color: var(--red); }

.catering-callout { background: var(--surface-2); }
.catering-callout-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(3rem, 8vw, 10rem); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 3rem 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { padding: 1rem 1rem 1rem 1.5rem; border-bottom: 1px solid var(--line); position: relative; font-weight: 600; }
.check-list li::before { content: '◆'; position: absolute; left: 0; color: var(--red); font-size: .65rem; }

.social-proof { overflow: hidden; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.social-photo { height: min(72vw, 760px); position: relative; transform: rotate(-2deg); box-shadow: var(--shadow); }
.social-photo::before { content: ''; position: absolute; z-index: 1; inset: 18px; border: 1px solid rgba(255,255,255,.45); pointer-events: none; }
.social-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.social-copy blockquote { margin: 0 0 2rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.5rem); font-style: italic; line-height: 1.2; }
.social-copy > p:not(.eyebrow) { max-width: 31rem; color: var(--muted); }

.page-hero { min-height: 76vh; display: flex; align-items: flex-end; padding: 12rem 0 5rem; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--red) 20%, transparent), transparent 35%), var(--page); }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 5rem; }
.page-hero .large-copy { margin-bottom: 0; }
.page-hero .button { margin-top: 2rem; }
.page-hero-about { background: linear-gradient(140deg, color-mix(in srgb, var(--red) 16%, transparent), transparent 48%), var(--page); }
.catering-hero { background: linear-gradient(140deg, color-mix(in srgb, var(--gold) 18%, transparent), transparent 48%), var(--page); }
.contact-hero { background: linear-gradient(140deg, color-mix(in srgb, var(--red) 18%, transparent), transparent 48%), var(--page); }

.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(4rem, 9vw, 10rem); }
.story-photo { height: min(70vw, 760px); position: relative; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.frame-corners::before, .frame-corners::after { content: ''; position: absolute; z-index: 2; width: 50px; height: 50px; pointer-events: none; }
.frame-corners::before { top: -10px; left: -10px; border-top: 7px solid var(--red); border-left: 7px solid var(--red); }
.frame-corners::after { right: -10px; bottom: -10px; border-right: 7px solid var(--red); border-bottom: 7px solid var(--red); }
.story-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.values-section { background: var(--surface); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.values-grid article { padding: 2.5rem 2rem 2.5rem 0; border-bottom: 1px solid var(--line); }
.values-grid article:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 3rem; }
.values-grid article:nth-child(even) { padding-left: 3rem; }
.values-grid span, .details-list span { color: var(--red); font-family: var(--display); font-size: .75rem; letter-spacing: .15em; }
.values-grid h3 { margin-top: 1.5rem; }
.values-grid p { max-width: 31rem; margin-bottom: 0; color: var(--muted); }
.next-pan { background: var(--red); color: #fff; text-align: center; }
.next-pan .eyebrow { color: var(--paper); }
.next-pan p:not(.eyebrow) { max-width: 42rem; margin: 0 auto 2rem; color: rgba(255,255,255,.78); }
.next-pan .button { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.next-pan .button-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.next-pan .button-row { justify-content: center; }

.packages-section { background: var(--surface); }
.packages-section .section-heading { max-width: 760px; margin-bottom: 4rem; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.package-card { min-height: 520px; padding: clamp(2rem, 3.5vw, 3.5rem); background: var(--page); }
.package-featured { background: var(--surface-2); box-shadow: inset 0 6px var(--red); }
.package-label { min-height: 2.5rem; display: flex; align-items: center; justify-content: space-between; color: var(--gold); font-family: var(--display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.package-label span { background: var(--red); color: #fff; padding: .35rem .5rem; font-family: var(--body); font-size: .58rem; letter-spacing: .1em; }
.price { margin: 2rem 0; font-family: var(--display); font-size: clamp(4rem, 7vw, 6.5rem); font-weight: 700; line-height: 1; }
.price sup { font-size: 1.8rem; vertical-align: top; }
.price small { color: var(--muted); font-family: var(--body); font-size: .75rem; font-weight: 500; text-transform: uppercase; }
.package-card ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.package-card li { padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.fine-note { margin: 1.5rem 0 0; color: var(--muted-soft); font-size: .85rem; }
.details-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; }
.details-list { border-top: 1px solid var(--line); }
.details-list article { display: grid; grid-template-columns: 50px 1fr 1.2fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.details-list h3 { margin: 0; font-size: 1.5rem; }
.details-list p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 6rem; }
.contact-big-link { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 2rem 0; border-block: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.35rem, 2.6vw, 2.8rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.1; text-transform: uppercase; white-space: nowrap; }
.contact-big-link span { flex: none; color: var(--red); }
.contact-primary > p:last-child { max-width: 36rem; margin-top: 2rem; color: var(--muted); }
.contact-cards { border-top: 1px solid var(--line); }
.contact-cards article { display: flex; flex-direction: column; padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.contact-cards p { margin-bottom: .4rem; color: var(--muted-soft); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-cards a { font-family: var(--display); font-size: 1.55rem; font-weight: 700; text-transform: uppercase; }
.contact-cards span { color: var(--muted); font-size: .85rem; }
.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; font-family: var(--display); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: .5rem; color: var(--red); font-size: 1.8rem; font-weight: 400; }
details[open] summary::after { content: '–'; }
details p { max-width: 43rem; padding-right: 3rem; color: var(--muted); }

.legal-hero { padding: 13rem 0 5rem; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
.legal-hero p:last-child { color: var(--muted); }
.legal-content h2 { margin: 3rem 0 1rem; font-size: 2rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--red); text-decoration: underline; text-underline-offset: .2em; }

.site-footer { padding: 5rem 0 1.5rem; background: var(--navy-deep); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand { margin-bottom: 1.5rem; }
.footer-grid p { color: rgba(244,237,218,.6); }
.footer-grid h2 { margin-bottom: 1.2rem; color: var(--gold); font-family: var(--body); font-size: .68rem; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin-bottom: .65rem; color: rgba(244,237,218,.72); font-size: .9rem; }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(244,237,218,.12); color: rgba(244,237,218,.45); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .primary-nav { position: fixed; inset: 84px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 4vw 2rem; background: var(--page); border-bottom: 1px solid var(--line); }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.4rem; }
    .nav-toggle { display: inline-grid; justify-self: end; }
    .header-actions { display: none; }
    .location-grid { grid-template-columns: 1fr 1fr; }
    .location-social { grid-column: 1 / -1; min-height: 340px; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .menu-card-image { min-height: 600px; }
    .page-hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
    .page-hero-grid { gap: 3rem; }
    .page-hero-grid .large-copy { max-width: 700px; }
    .story-grid { gap: 5rem; }
    .story-photo { width: min(90%, 580px); }
    .packages-grid { grid-template-columns: 1fr; }
    .package-card { min-height: 0; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
    :root { --shell: min(90vw, 1280px); }
    h1 { font-size: clamp(3.5rem, 17vw, 6rem); }
    h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .section { padding: 5rem 0; }
    .header-inner { height: 72px; }
    .primary-nav { top: 72px; }
    .brand { font-size: 1.08rem; }
    .header-brand { height: 64px; }
    .header-brand-logo { width: 88px; }
    .brand-mark { width: 27px; height: 27px; gap: 6px; }
    .hero { min-height: 860px; }
    .hero-inner { padding-top: 8rem; padding-bottom: 4.5rem; }
    .hero-copy { font-size: 1.05rem; }
    .hero .button { width: 100%; }
    .hero-grid { background-size: 22vw 22vw; }
    .split-grid, .catering-callout-grid, .social-grid, .details-grid, .faq-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .feature-strip { grid-template-columns: 1fr; margin-top: 4rem; }
    .feature-strip article { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--line); }
    .feature-strip article:last-child { border-bottom: 0; }
    .section-heading-row { display: block; }
    .section-heading-row > p, .section-heading-row > .button { margin-top: 1.5rem; }
    .location-grid, .menu-grid { grid-template-columns: 1fr; }
    .location-social { grid-column: auto; }
    .location-card { min-height: 420px; }
    .menu-card-image { min-height: 570px; grid-row: auto; }
    .menu-card { min-height: 300px; }
    .check-list, .values-grid { grid-template-columns: 1fr; }
    .social-photo { height: 120vw; max-height: 680px; }
    .page-hero { min-height: 86vh; padding: 9rem 0 4rem; }
    .story-photo { width: 100%; height: 125vw; max-height: 660px; }
    .values-grid article, .values-grid article:nth-child(odd), .values-grid article:nth-child(even) { padding: 2rem 0; border-right: 0; }
    .details-list article { grid-template-columns: 35px 1fr; }
    .details-list p { grid-column: 2; }
    .contact-big-link { font-size: clamp(1rem, 4.4vw, 1.4rem); letter-spacing: -.045em; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: .5rem; }
}

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