/* Coffee Bar 7 — custom design system */
:root {
  --ink: #142426;
  --ink-soft: #425356;
  --pine: #14383a;
  --pine-2: #0d2b2d;
  --copper: #a95340;
  --peach: #e9b995;
  --cream: #fff8ee;
  --sand: #f1e7da;
  --paper: #fffdf9;
  --line: rgba(20, 56, 58, .17);
  --white: #fff;
  --error: #a7332d;
  --success: #2f6f55;
  --shadow-sm: 0 10px 30px rgba(26, 42, 43, .08);
  --shadow-lg: 0 28px 80px rgba(10, 29, 31, .17);
  --radius-sm: .75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2.25rem;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Snell Roundhand", "Segoe Script", "URW Chancery L", cursive;
  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { text-decoration-thickness: .13em; }
::selection { background: var(--peach); color: var(--pine-2); }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
  border-radius: .25rem;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--pine);
  border-radius: .5rem;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--space-8); }
.section-tint { background: var(--cream); }
.section-dark { background: var(--pine-2); color: var(--cream); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { font-size: clamp(3.4rem, 8vw, 7.3rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.35rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
h3 { font-family: var(--serif); font-size: 1.65rem; margin-bottom: .8rem; }
h1 em { color: var(--peach); font-family: var(--script); font-size: 1.08em; font-weight: 400; }
.eyebrow {
  margin-bottom: 1rem;
  color: var(--copper);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--peach); }
.large-copy { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1.42; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.button svg { width: 1.15rem; fill: currentColor; }
.button:hover { transform: translateY(-2px); text-decoration: none; }
.button:active { transform: translateY(0); }
.button-primary { color: var(--white); background: var(--copper); box-shadow: 0 12px 28px rgba(187, 101, 79, .3); }
.button-primary:hover { background: #8d4034; box-shadow: 0 16px 34px rgba(187, 101, 79, .35); }
.button-secondary { color: var(--cream); background: var(--pine); }
.button-secondary:hover { background: var(--pine-2); }
.button-light { color: var(--pine-2); background: var(--cream); }
.button-light:hover { background: var(--white); box-shadow: 0 16px 34px rgba(0,0,0,.16); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.button-outline { color: var(--pine); border-color: var(--pine); background: transparent; }
.button-outline:hover { color: var(--cream); background: var(--pine); }
.button-small { min-height: 42px; padding: .72rem 1.05rem; font-size: .86rem; }
.text-link { display: inline-flex; gap: .45rem; align-items: center; color: var(--copper); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { background: rgba(255, 253, 249, .94); border-color: var(--line); box-shadow: 0 6px 24px rgba(9, 27, 29, .07); backdrop-filter: blur(16px); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; color: var(--peach); text-decoration: none; }
.brand img { width: 170px; height: auto; }
.site-header.is-scrolled .brand { color: var(--pine); }
.site-nav { display: flex; align-items: center; gap: 1.65rem; color: var(--white); font-size: .91rem; font-weight: 700; }
.site-nav > a:not(.button) { text-decoration: none; position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.42rem; height: 2px; background: currentColor; transition: right var(--transition); }
.site-nav > a:not(.button):hover::after { right: 0; }
.site-header.is-scrolled .site-nav { color: var(--ink); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 0; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.12); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform var(--transition), opacity var(--transition); }
.site-header.is-scrolled .menu-toggle { color: var(--pine); background: var(--sand); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 820px; height: min(100svh, 980px); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--pine-2); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,19,21,.94) 0%, rgba(7,27,29,.79) 48%, rgba(7,27,29,.3) 100%), linear-gradient(0deg, rgba(5,18,20,.58), transparent 45%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); align-items: end; gap: clamp(3rem, 8vw, 8rem); padding-top: 8rem; }
.hero-copy { max-width: 750px; }
.hero-lead { max-width: 625px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 2.2rem 0 1.7rem; }
.status-pill { width: fit-content; display: flex; align-items: center; gap: .7rem; padding: .68rem 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.9); background: rgba(8,28,30,.38); backdrop-filter: blur(10px); font-size: .87rem; }
.status-dot { flex: 0 0 auto; width: .64rem; height: .64rem; border-radius: 50%; background: #cba95a; box-shadow: 0 0 0 5px rgba(203,169,90,.15); }
.is-open .status-dot { background: #62b88b; box-shadow: 0 0 0 5px rgba(98,184,139,.16); }
.is-closed .status-dot { background: #d77a71; box-shadow: 0 0 0 5px rgba(215,122,113,.16); }
.hero-card { padding: 2rem; border: 1px solid rgba(255,255,255,.19); border-radius: var(--radius-md); background: rgba(8, 29, 31, .58); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.hero-card-kicker { margin-bottom: .55rem; color: var(--peach); font-weight: 800; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-card-title { font-family: var(--serif); font-size: 1.55rem; line-height: 1.35; }
.hero-card-rule { height: 1px; margin: 1.3rem 0; background: rgba(255,255,255,.18); }
.hero-card dl { margin: 0 0 1.3rem; }
.hero-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; }
.hero-card dt { color: rgba(255,255,255,.66); }
.hero-card dd { margin: 0; font-weight: 700; }
.hero-card .text-link { color: var(--peach); }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 2rem; width: 34px; height: 55px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 10px; width: 4px; height: 8px; border-radius: 99px; background: var(--white); transform: translateX(-50%); animation: scroll-cue 1.7s ease-in-out infinite; }
@keyframes scroll-cue { 0%,100%{transform:translate(-50%,0);opacity:.45} 50%{transform:translate(-50%,17px);opacity:1} }

.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 7rem); align-items: end; }
.split-heading h2 { margin-bottom: 0; font-size: clamp(2.4rem, 5.5vw, 4.7rem); }
.intro-copy { padding-bottom: .7rem; color: var(--ink-soft); font-size: 1.08rem; }
.intro-copy p { margin-bottom: 1.5rem; }
.section-heading { max-width: 780px; margin-bottom: 3.5rem; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading > p:last-child { max-width: 620px; margin-inline: auto; color: var(--ink-soft); }
.section-heading.narrow { max-width: 650px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.offer-card { position: relative; min-height: 410px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.65); transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease; }
.offer-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow-sm); }
.offer-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; bottom: -90px; border-radius: 50%; background: rgba(233,185,149,.2); transition: transform 300ms ease; }
.offer-card:hover::after { transform: scale(1.2); }
.offer-icon { width: 86px; height: 86px; display: grid; place-items: center; margin-bottom: 4rem; border-radius: 50%; color: var(--copper); background: var(--sand); }
.offer-icon svg { width: 48px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.card-number { margin-bottom: .6rem; color: var(--copper); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.offer-card p:last-child { color: var(--ink-soft); }
.offer-note { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 2rem; padding: 1.1rem; border: 1px dashed rgba(187,101,79,.35); border-radius: var(--radius-sm); color: var(--ink-soft); text-align: center; }
.offer-note span { color: var(--copper); }
.offer-note p { margin: 0; }
.offer-note a { color: var(--copper); font-weight: 800; }

.story-grid { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.story-visual { position: relative; }
.photo-frame { position: relative; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); }
.photo-frame::before { content: "7"; position: absolute; z-index: 2; right: -1.3rem; top: -3.1rem; color: var(--peach); font-family: var(--serif); font-size: 8rem; line-height: 1; text-shadow: 0 10px 30px rgba(20,56,58,.12); }
.photo-frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: calc(var(--radius-lg) - .7rem); }
.photo-caption { max-width: 460px; margin: 1rem 0 0 1rem; color: var(--ink-soft); font-size: .82rem; }
.story-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 2rem 0; }
.check-list li { display: flex; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.check-list span { color: var(--copper); }

.hours-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.hours-copy { position: sticky; top: 135px; }
.hours-copy > p:not(.eyebrow) { max-width: 510px; color: rgba(255,248,238,.7); }
.live-status { width: fit-content; display: flex; align-items: center; gap: .8rem; margin-top: 2rem; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-weight: 700; }
.hours-table { width: 100%; border-collapse: collapse; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.14); }
.hours-table th, .hours-table td { padding: 1.25rem .4rem; }
.hours-table th { text-align: left; font-weight: 500; }
.hours-table td { text-align: right; color: var(--peach); }
.hours-table tr.today { position: relative; }
.hours-table tr.today th::before { content: "Heute"; display: inline-block; margin-right: .7rem; padding: .25rem .45rem; border-radius: 999px; color: var(--pine-2); background: var(--peach); font-family: var(--sans); font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; vertical-align: .25rem; }
.hours-note { margin-top: 1.2rem; color: rgba(255,248,238,.55); font-size: .85rem; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0; margin: 0; list-style: none; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.7rem; border-top: 1px solid var(--line); }
.step-index { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; color: var(--cream); background: var(--pine); font-family: var(--serif); font-weight: 700; }
.step p { margin: 0; color: var(--ink-soft); }

.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.2rem; align-items: stretch; }
.location-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); color: var(--cream); background: var(--pine); }
.location-card address { margin: .5rem 0 1.5rem; font-style: normal; font-size: 1.1rem; }
.contact-links { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 2rem; }
.contact-links a { width: fit-content; color: var(--peach); font-weight: 700; }
.location-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.location-card .button-outline { color: var(--cream); border-color: rgba(255,255,255,.55); }
.location-card .button-outline:hover { color: var(--pine); background: var(--cream); }
.map-illustration { position: relative; display: block; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); text-decoration: none; }
.map-illustration svg { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.map-illustration:hover svg { transform: scale(1.025); }
.map-illustration > span { position: absolute; right: 1.5rem; bottom: 1.5rem; padding: .75rem 1rem; border-radius: 999px; color: var(--cream); background: var(--pine); font-weight: 800; box-shadow: var(--shadow-sm); }

.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-heading { position: sticky; top: 135px; align-self: start; }
.faq-heading p:last-child { color: var(--ink-soft); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; justify-content: space-between; gap: 1rem; padding: 1.45rem 3rem 1.45rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.35rem; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; right: .3rem; top: 50%; width: 1rem; height: 2px; background: var(--copper); transition: transform var(--transition); }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details > div { padding: 0 3rem 1.45rem 0; color: var(--ink-soft); }
.accordion details > div p { margin: 0; }

.reservation { color: var(--cream); background: var(--copper); }
.reservation-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.reservation-copy { position: sticky; top: 135px; }
.reservation-copy > p:not(.eyebrow) { color: rgba(255,248,238,.78); }
.direct-contact { margin-top: 2.5rem; }
.direct-contact p { margin-bottom: .15rem; color: rgba(255,248,238,.66); font-size: .85rem; }
.direct-contact a { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; }
.reservation-form { padding: clamp(1.4rem, 4vw, 2.7rem); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); background: rgba(93, 31, 24, .12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: .4rem; font-size: .83rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .78rem .9rem;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: .72rem;
  color: var(--cream);
  background: rgba(255,255,255,.09);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,248,238,.56); }
.field select option { color: var(--ink); background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cream); background: rgba(255,255,255,.14); box-shadow: 0 0 0 4px rgba(255,255,255,.1); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #ffe2dd; box-shadow: 0 0 0 3px rgba(255,226,221,.12); }
.field-hint { display: block; margin-top: .35rem; color: rgba(255,248,238,.62); font-size: .74rem; }
.field-error { display: block; min-height: 1.1rem; margin-top: .3rem; color: #fff2ef; font-size: .76rem; font-weight: 700; }
.consent { display: flex; gap: .75rem; align-items: flex-start; cursor: pointer; font-size: .85rem; }
.consent input { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; margin-top: .22rem; accent-color: var(--pine); }
.consent-error { margin-bottom: .8rem; }
.submit-button { min-width: 245px; }
.submit-button.is-loading { pointer-events: none; opacity: .8; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(20,56,58,.25); border-top-color: var(--pine); border-radius: 50%; animation: spin .7s linear infinite; }
.is-loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { min-height: 1.5rem; margin-top: 1rem; font-weight: 800; }
.form-status.success { color: #effff6; }
.form-status.error { color: #fff2ef; }

.site-footer { padding: 4.5rem 0 1.5rem; color: rgba(255,248,238,.78); background: #081f21; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 3rem; }
.footer-brand .brand { color: var(--peach); }
.footer-brand p { max-width: 280px; margin-top: 1rem; }
.site-footer h2 { margin-bottom: 1rem; color: var(--cream); font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.site-footer address { margin-bottom: .65rem; font-style: normal; }
.site-footer a { display: block; width: fit-content; margin-bottom: .5rem; text-decoration: none; }
.site-footer a:hover { color: var(--peach); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,248,238,.48); font-size: .8rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-sm { transition-delay: 90ms; }
.reveal-delay { transition-delay: 150ms; }
.reveal-delay-lg { transition-delay: 180ms; }

.legal-main { min-height: 70vh; padding: 9rem 0 5rem; }
.legal-shell { max-width: 820px; }
.legal-shell h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal-shell h2 { margin-top: 2.5rem; font-size: 1.7rem; }
.legal-shell h3 { margin-top: 2rem; font-size: 1.2rem; }
.legal-shell p, .legal-shell li { color: var(--ink-soft); }
.legal-note { padding: 1rem 1.2rem; border-left: 4px solid var(--copper); background: var(--cream); }
.placeholder { padding: .1rem .3rem; color: #752d22; background: #f7d7cd; font-weight: 800; }
.legal-header { background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-header .brand { color: var(--pine); }
.legal-header .site-nav { color: var(--ink); }

@media (max-width: 980px) {
  :root { --space-8: 5.5rem; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 86px 1rem auto;
    display: grid;
    gap: 0;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink);
    background: rgba(255,253,249,.98);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { padding: .8rem 1rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .nav-cta { margin-top: .4rem; color: var(--white); }
  .hero { height: auto; min-height: 860px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; align-items: center; padding-block: 9.5rem 6rem; }
  .hero-card { max-width: 520px; }
  .scroll-cue { display: none; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card:last-child { grid-column: 1 / -1; min-height: 340px; }
  .story-grid, .hours-grid, .location-grid, .faq-grid, .reservation-shell { grid-template-columns: 1fr; }
  .story-copy { max-width: 720px; }
  .hours-copy, .faq-heading, .reservation-copy { position: static; }
  .steps { grid-template-columns: 1fr; }
  .step { grid-template-columns: 2.4rem 1fr; }
  .map-illustration { min-height: 420px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  :root { --space-8: 4.5rem; }
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .header-inner { min-height: 74px; }
  .brand img { width: 145px; }
  .site-nav { inset: 74px .75rem auto; }
  .hero { min-height: 820px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(5,19,21,.72), rgba(5,19,21,.94) 72%); }
  .hero-inner { padding-block: 8.2rem 4.5rem; }
  .hero-copy { align-self: end; }
  h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 1.4rem; }
  .split-heading { grid-template-columns: 1fr; gap: 2rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card:last-child { grid-column: auto; }
  .offer-card { min-height: 340px; }
  .offer-icon { margin-bottom: 2.7rem; }
  .offer-note { align-items: flex-start; text-align: left; }
  .photo-frame::before { right: -.2rem; top: -2rem; font-size: 6rem; }
  .hours-table { font-size: 1.05rem; }
  .hours-table th, .hours-table td { padding: 1rem .2rem; }
  .hours-table tr.today th::before { display: block; width: fit-content; margin: 0 0 .25rem; }
  .location-card { padding: 2rem 1.4rem; border-radius: var(--radius-md); }
  .location-actions { flex-direction: column; }
  .map-illustration { min-height: 330px; border-radius: var(--radius-md); }
  .map-illustration > span { right: .8rem; bottom: .8rem; font-size: .8rem; }
  .faq-grid { gap: 1.8rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .reservation-form { border-radius: var(--radius-md); }
  .submit-button { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .status-pill { align-items: flex-start; border-radius: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.brand .logo-dark { display: none; }
.site-header.is-scrolled .brand .logo-light { display: none; }
.site-header.is-scrolled .brand .logo-dark { display: block; }
.brand-footer .logo-dark { display: none; }
.legal-header .brand img { display: block; }
