/* ============================================================
   DIE HÜTTE — Smash Burger & Co
   Shared stylesheet. Colors taken from the poster style ref.
   Edit the variables below to retune the whole site.
   ============================================================ */

/* ---------- Self-hosted fonts (faster, no Google CDN) ---------- */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --coral:      #FFADAF;   /* main background */
  --coral-soft: #FAC5C1;   /* header/footer bars */
  --cream:      #F9F1DE;   /* text on coral, panels */
  --cheese:     #F2A33C;   /* accent (burger cheese / orange) */
  --cheese-deep:#E07B2E;   /* darker accent for hovers */
  --ink:        #3a2b2b;   /* dark text on cream */

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --app-height: 100vh;
  --hero-mobile-extra: 2.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--coral);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Display typography ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--cheese-deep);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--coral-soft);
  border-bottom: 2px solid rgba(58,43,43,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cheese-deep); }

.nav-mobile-only { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--cheese);
  color: var(--cream);
  border: 2px solid var(--cheese);
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--cheese-deep); border-color: var(--cheese-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--coral); border-color: var(--cream); }
.btn-lg { font-size: 18px; padding: 15px 34px; }

/* burger / close toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(40px, 8vh, 90px);
}
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
  font-size: clamp(72px, 17vw, 230px);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-title span {
  display: block;
  line-height: 1;
}
.hero-title span + span {
  margin-top: clamp(6px, 0.14em, 28px);
}
.hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  background: transparent;
  border: 2px solid #fff;
  border-radius: clamp(22px, 2.5vw, 36px);
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
}
.hero-card .hero-title { color: var(--cream); }
.hero-card .hero-sub { color: var(--cream); max-width: 32ch; }
.hero-card .eyebrow { color: var(--cheese-deep); }
.hero-card .scroll-ind { color: var(--cream); }
.hero-card .scroll-mouse { border-color: var(--cream); }
.hero-card .btn-ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.hero-card .btn-ghost:hover {
  background: var(--cream);
  color: var(--coral);
  border-color: var(--cream);
}
.hero-sub {
  margin: 22px 0 30px;
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 30ch;
  color: var(--cream);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
.hero-visual img {
  width: 100%;
  max-width: clamp(280px, 32vw, 480px);
  height: auto;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 16px 28px rgba(58, 43, 43, 0.18));
}
.hero-visual img.img-fade {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.hero-visual img.img-fade.is-loaded {
  opacity: 1;
}

/* loop motif (matches the ((( mark in the poster) */
.loops { display: inline-flex; gap: 2px; vertical-align: middle; }
.loops span {
  width: 11px; height: 22px;
  border: 2px solid var(--cream);
  border-radius: 50%;
}

/* scroll indicator */
.scroll-ind {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(30px, 6vh, 60px);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--cream);
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2.5px solid var(--cream);
  border-radius: 14px;
  position: relative;
  flex: none;
}
.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  background: var(--cheese);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* ============================================================
   SECTIONS — generic
   ============================================================ */
section { padding-block: clamp(64px, 10vh, 120px); }

.section-head { margin-bottom: clamp(32px, 6vh, 60px); }
.section-title {
  font-size: clamp(44px, 8vw, 110px);
  color: var(--cream);
  margin-top: 6px;
}

/* checkerboard accent strip */
.checker {
  height: 14px;
  background-image:
    linear-gradient(45deg, var(--cheese) 25%, transparent 25%),
    linear-gradient(-45deg, var(--cheese) 25%, transparent 25%);
  background-size: 14px 14px;
  opacity: 0.5;
  margin: 8px 0;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-text p { margin-bottom: 18px; font-size: clamp(15px, 1.6vw, 18px); }
.about-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 24px;
}
.about-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(11px, 1.1vw, 13px);
  line-height: 1.25;
  padding: 12px 10px;
  min-height: 54px;
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.about-badge-short { display: none; }
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-imgs img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}
.about-imgs img:first-child { aspect-ratio: 3/4; }

/* ---------- Menu ---------- */
.menu-section { background: var(--cream); color: var(--ink); }
.menu-section .section-title { color: var(--ink); }
.menu-section .eyebrow { color: var(--cheese-deep); }

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
}
.menu-group { margin-bottom: 34px; }
.menu-group h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 26px;
  color: var(--cheese-deep);
  margin-bottom: 14px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(58,43,43,0.18);
}
.menu-item .mi-name { font-weight: 700; font-size: 17px; }
.menu-item .mi-desc { font-size: 13.5px; opacity: 0.72; font-weight: 400; }
.menu-item .mi-price {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  white-space: nowrap;
}
.menu-note { font-size: 13px; opacity: 0.65; margin-top: 8px; }

/* ---------- Ice Cream ---------- */
.ice-section { background: var(--coral-soft); }
.ice-section .section-head { text-align: center; }
.ice-section .section-title { color: var(--cream); }
.ice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 40px);
  max-width: 760px;
  margin: 0 auto;
}
.ice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--cream);
  border-radius: clamp(22px, 3vw, 32px);
  padding: clamp(22px, 3vw, 36px) clamp(18px, 2.5vw, 28px) clamp(20px, 2.5vw, 30px);
  box-shadow: 0 26px 50px -28px rgba(58, 43, 43, 0.45);
  transition: transform 0.2s;
}
.ice-card:hover { transform: translateY(-6px); }
.ice-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ice-img img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(58, 43, 43, 0.18));
}
.ice-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink);
  margin-bottom: 10px;
}
.ice-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--cheese);
  border-radius: 999px;
  padding: 6px 20px;
}
.ice-note {
  text-align: center;
  margin-top: clamp(24px, 4vh, 40px);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--cream);
}

/* ---------- Find Us ---------- */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}
.info-block { margin-bottom: 30px; }
.info-block h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 22px;
  color: var(--cheese-deep);
  margin-bottom: 10px;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  max-width: 320px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(249,241,222,0.25);
}
.hours-list .day { font-weight: 600; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 3px solid var(--cream);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.socials { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.icon-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--coral);
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.icon-btn:hover { transform: translateY(-3px); background: var(--cheese); color: var(--cream); }
.icon-btn svg { width: 26px; height: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--coral-soft);
  padding-block: 34px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--cream);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 4px; white-space: nowrap; }
.footer-left { justify-self: start; align-items: flex-start; text-align: left; }
.footer-center { justify-self: center; align-items: center; text-align: center; }
.footer-right { justify-self: end; display: block; text-align: right; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-sep { opacity: 0.45; user-select: none; }
.footer-link {
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--cream);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cheese-deep); }
.footer-right a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--cheese-deep); }

/* ============================================================
   MODAL
   ============================================================ */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 43, 43, 0.55);
}
.modal-box {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -25px rgba(58, 43, 43, 0.5);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
}
.modal-close:hover { color: var(--cheese-deep); transform: scale(1.1); }
.modal-box h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 26px;
  color: var(--cheese-deep);
  margin-bottom: 16px;
}
.modal-content { min-height: 80px; }
.modal-content p + p { margin-top: 1em; }
.modal-content a {
  color: var(--cheese-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-content a:hover { color: var(--ink); }
body.modal-open { overflow: hidden; }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-page {
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.order-page .order-main {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(12px, 2vh, 24px);
}
.order-page .footer {
  flex-shrink: 0;
  padding-block: 18px;
  font-size: 12px;
}
.order-page .footer-inner {
  gap: 10px 16px;
}
.order-page .order-box {
  padding: clamp(22px, 4vw, 44px);
}
.order-page .order-box h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin: 6px 0 clamp(14px, 2.5vh, 20px);
}
.order-page .back-btn {
  margin-bottom: clamp(10px, 1.5vh, 16px);
}
.order-page .order-section-title {
  font-size: clamp(18px, 3.5vw, 24px);
  margin-bottom: 10px;
}
.order-page .order-contact { margin-bottom: 16px; }
.order-page .order-divider { margin-bottom: 14px; }
.order-main {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 60px;
}
.order-wrap {
  width: 100%;
  max-width: 520px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
  transition: color 0.2s, transform 0.15s;
}
.back-btn:hover {
  color: var(--cheese-deep);
  transform: translateX(-3px);
}
.order-box {
  background: var(--cream);
  color: var(--ink);
  border-radius: 26px;
  padding: clamp(32px, 5vw, 56px);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px -25px rgba(58,43,43,0.4);
}
.order-box .eyebrow { color: var(--cheese-deep); }
.order-box h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 0.9;
  color: var(--ink);
  margin: 8px 0 22px;
}
.order-box p { font-size: 16px; margin-bottom: 26px; }
.order-section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(20px, 4vw, 26px);
  letter-spacing: 0.03em;
  color: var(--cheese-deep);
  margin-bottom: 14px;
}
.order-contact {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 22px;
}
.order-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  padding: 14px;
  border-radius: 14px;
  background: var(--coral);
  color: var(--cream);
  transition: transform 0.15s, background 0.2s;
}
.order-contact a:hover { transform: translateY(-2px); background: var(--cheese-deep); }
.order-divider {
  display: flex; align-items: center; gap: 12px;
  color: rgba(58,43,43,0.5);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.order-divider::before, .order-divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(58,43,43,0.2);
}
.btn-foodora {
  background: #d70f64;
  border-color: #d70f64;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.btn-foodora:hover { background: #b30b53; border-color: #b30b53; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--coral-soft);
    padding: 12px var(--pad) 28px;
    transform: translateY(-120%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    border-bottom: none;
    box-shadow: none;
    visibility: hidden;
    pointer-events: none;
  }
  body.menu-open .nav-links {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    border-bottom: 2px solid rgba(58,43,43,0.1);
    box-shadow: 0 18px 30px -20px rgba(58,43,43,0.5);
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-mobile-only { display: list-item; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(249,241,222,0.3);
    font-size: 18px;
    text-align: center;
  }
  .nav-links li:last-child {
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links .btn {
    display: inline-flex;
    width: auto;
    margin-top: 0;
    padding: 11px 28px;
  }

  .hero {
    padding-block: clamp(10px, 2vh, 20px);
  }

  .hero-card {
    background: transparent;
    border: none;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 0;
    align-items: center;
    overflow: visible;
  }
  .hero-card .hero-copy { display: contents; }
  .hero-card .eyebrow {
    grid-column: 1;
    grid-row: 1;
    color: var(--cheese-deep);
    position: relative;
    z-index: 2;
  }
  .hero-card .hero-title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(62px, 19vw, 112px);
    align-self: start;
    margin-top: 2cm;
    color: var(--cream);
    position: relative;
    z-index: 2;
  }
  .hero-card .hero-title span + span {
    margin-top: clamp(4px, 0.08em, 14px);
  }
  .hero-card .hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    margin-right: calc(-1 * var(--pad));
    overflow: visible;
    z-index: 1;
  }
  .hero-card .hero-visual img {
    width: clamp(260px, 78vw, 400px);
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: right center;
    transform: none;
    filter: drop-shadow(0 12px 22px rgba(58, 43, 43, 0.16));
  }
  .hero-card .hero-sub {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: none;
    color: var(--cream);
  }
  .hero-card .hero-cta { grid-column: 1 / -1; grid-row: 4; }
  .hero-card .scroll-ind {
    grid-column: 1 / -1;
    grid-row: 5;
    color: var(--cream);
  }
  .hero-card .scroll-mouse { border-color: var(--cream); }
  .hero-card .btn-ghost {
    color: var(--cream);
    border-color: var(--cream);
  }
  .hero-card .btn-ghost:hover {
    background: var(--cream);
    color: var(--coral);
    border-color: var(--cream);
  }
  .about-grid, .menu-cols, .find-grid { grid-template-columns: 1fr; }
  .about-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 16px 0 20px;
  }
  .about-badge {
    font-size: 10px;
    letter-spacing: 0.03em;
    padding: 9px 6px;
    min-height: 0;
    line-height: 1.2;
    border-width: 1.5px;
  }
  .about-badge-full { display: none; }
  .about-badge-short { display: inline; }

  .footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px) + 2.75rem);
  }

  .order-page .footer {
    margin-top: auto;
    padding-top: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .order-page .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .order-page .footer-left {
    justify-self: start;
    text-align: left;
  }
  .order-page .footer-center {
    justify-self: center;
    text-align: center;
  }
  .order-page .footer-right {
    justify-self: end;
    text-align: right;
    font-size: 9px;
    letter-spacing: 0.06em;
  }
}

@media (min-width: 861px) {
  .hero {
    justify-content: flex-start;
    padding-block: clamp(52px, 8vh, 96px) clamp(40px, 7vh, 72px);
  }
  .hero-card {
    position: relative;
    padding-right: 0;
    align-items: stretch;
  }
  .hero-visual {
    position: static;
    align-self: stretch;
    min-height: clamp(520px, 64vh, 760px);
  }
  .hero-visual img {
    position: absolute;
    right: 0;
    top: calc(50% - 5cm);
    transform: translateY(-50%);
    width: auto;
    height: clamp(600px, 72vh, 860px);
    max-width: none;
    object-fit: contain;
    object-position: right center;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(var(--app-height) + var(--hero-mobile-extra));
  }
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
  }
  .footer-left, .footer-center, .footer-right {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .order-page .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    gap: 8px 10px;
  }
  .order-page .footer-left {
    justify-self: start;
    text-align: left;
  }
  .order-page .footer-center {
    justify-self: center;
    text-align: center;
  }
  .order-page .footer-right {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .about-imgs { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-mouse::after { animation: none; }
  .hero-visual img.img-fade {
    opacity: 1;
    transition: none;
  }
}
