/* ==========================================================================
   Dorfgasthaus zum Löwen, Frickingen-Leustetten — Demo-Gestaltungsvorschlag
   Charakter: traditionsreiches Dorfgasthaus im Salemer Tal, refined rustic.
   Erzählung "vom Revier auf den Teller" (Wild aus eigener Jagd).
   Leitfarbe Dorfgrün, scharfer Löwen-Gold-Akzent, warme Creme-Flächen.
   Wappentier (springender Löwe) als eigenes SVG-Emblem.
   Farbwelt: Dorfgrün #28592c · Gold #eb9115 · Hellgelb #f6e08b ·
             Weinrot #8a1521 (sparsam) · Creme #f7f1e3 · Tinte #211d16
   Schriften: Vollkorn (Display) + Instrument Sans (Body), lokal gehostet
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Vollkorn";
  src: url("../fonts/vollkorn.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vollkorn";
  src: url("../fonts/vollkorn-italic.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --green: #28592c;        /* Dorfgrün — Leitfarbe */
  --green-deep: #173619;   /* tiefes Grün — Flächen/Hover */
  --green-mid: #3f6843;    /* mittleres Grün */
  --green-soft: #537a57;   /* gedämpftes Grün — Text auf hell */
  --gold: #eb9115;         /* Löwen-Gold — Akzent */
  --gold-deep: #c9760a;    /* Gold-Hover */
  --straw: #f6e08b;        /* Hellgelb — feine Linien/Highlights */
  --wine: #8a1521;         /* Weinrot — sparsamer Zweitakzent */

  --cream: #f7f1e3;        /* Grundton */
  --cream-deep: #efe6d2;   /* abgesetzte helle Fläche */
  --paper: #fffdf7;        /* Karten */
  --ink: #211d16;          /* Text */
  --ink-soft: #4f4636;     /* abgesetzter Fließtext */
  --line: #e3d8c0;         /* Trennlinien */

  --font-display: "Vollkorn", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 44px -22px rgba(23, 54, 25, 0.45);
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  /* sehr feine Papier-/Grain-Textur über dem warmen Ton */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(235, 145, 21, 0.05), transparent 40%),
    radial-gradient(circle at 88% 6%, rgba(40, 89, 44, 0.05), transparent 38%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--green); text-decoration: none; }

::selection { background: var(--green); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--green-deep);
  text-wrap: balance;
  hyphens: manual; /* nur gesetzte &shy; */
}

h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

.mark { color: var(--gold); }
.mark--cream { color: var(--straw); }

em, .ital { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section--green .eyebrow { color: var(--straw); }
.section--green .eyebrow::before { background: var(--straw); }

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  color: var(--ink-soft);
  max-width: 38rem;
  line-height: 1.65;
}

/* ---------- Forst-Linie (Wiedererkennung: dezente Wald-/Geweih-Bordüre) ---------- */
.forest-rule {
  height: 26px;
  width: 100%;
  color: var(--gold);
  opacity: 0.9;
}
.forest-rule svg { width: 100%; height: 100%; }
.section--green .forest-rule { color: var(--straw); }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--green-deep);
  color: var(--cream);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem var(--pad);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.demo-bar strong { color: var(--straw); font-weight: 600; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 227, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--green-deep);
}
.brand__mark { width: 50px; height: 50px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.02;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.01em;
}
.brand__name small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.28rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.8rem);
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--gold-deep); }
.nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--gold);
}
.nav__cta {
  background: var(--green);
  color: var(--cream) !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  white-space: nowrap;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.nav__cta:hover { background: var(--green-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--green-deep) 0%, var(--green) 58%, var(--green-mid) 100%);
  color: var(--cream);
}
/* dekorativer großer Löwen-Schattenriss im Hintergrund */
.hero__ghost {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: min(560px, 70vw);
  color: rgba(246, 224, 139, 0.07);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.4rem, 8vw, 6.5rem);
}
.hero .eyebrow { color: var(--straw); }
.hero .eyebrow::before { background: var(--straw); }
.hero h1 {
  color: var(--cream);
  margin-block: 0.3rem 1.3rem;
}
.hero h1 .mark { color: var(--gold); }
.hero .lead { color: rgba(247, 241, 227, 0.9); max-width: 34rem; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}
.hero__emblem { display: grid; place-items: center; }
.hero__emblem .crest {
  width: min(300px, 62vw);
  filter: drop-shadow(0 22px 36px rgba(13, 30, 14, 0.55));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.78rem 1.7rem;
  border-radius: 999px;
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease), border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.btn--solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--cream); }
.btn--ghost { border-color: rgba(247, 241, 227, 0.6); color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }
.btn--green { background: var(--green); border-color: var(--green); color: var(--cream); }
.btn--green:hover { background: var(--green-deep); border-color: var(--green-deep); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--cream { background: var(--cream-deep); }
.section--green {
  background:
    linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--cream);
}
.section--green h2, .section--green h3 { color: var(--cream); }
.section--green p { color: rgba(247, 241, 227, 0.88); }

.section__head { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section__head h2 { margin-bottom: 0.85rem; }
.section__head p { color: var(--ink-soft); }
.section--green .section__head p { color: rgba(247, 241, 227, 0.88); }

/* ---------- Standbeine / Highlight-Karten ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pillar__icon {
  width: 46px;
  height: 46px;
  color: var(--green);
  margin-bottom: 1rem;
}
.pillar h3 { font-size: 1.45rem; margin-bottom: 0.4rem; color: var(--green-deep); }
.pillar p { font-size: 0.97rem; color: var(--ink-soft); }
.pillar__link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}
.pillar__link:hover { color: var(--green); }
.pillar::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.pillar:hover::after { transform: scaleY(1); }

/* ---------- Story / Revier-Block ---------- */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, var(--green-mid), var(--green-deep));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.story__art .crest { width: 58%; color: var(--straw); }
.story__art::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(246, 224, 139, 0.3);
  border-radius: var(--radius);
}
.story blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  color: var(--green-deep);
  margin: 1.4rem 0;
  padding-left: 1.3rem;
  border-left: 3px solid var(--gold);
}

/* ---------- Termine / Aktuelles ---------- */
.dates { display: grid; gap: 1rem; }
.date-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
}
.date-item__badge {
  display: grid;
  place-items: center;
  text-align: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--cream);
  flex-shrink: 0;
  line-height: 1.05;
}
.date-item__badge .d { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.date-item__badge .m { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; }
.date-item__badge--season { background: var(--gold); color: var(--green-deep); }
.date-item h3 { font-size: 1.2rem; margin-bottom: 0.15rem; }
.date-item p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Menü-/Küchen-Listen ---------- */
.menu-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.6rem, 4vw, 2.8rem);
}
.menu-cat h3 {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--line);
}
.menu-cat h3 .tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.menu-cat ul { list-style: none; }
.menu-cat li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.menu-cat li:last-child { border-bottom: none; }
.menu-cat li strong { color: var(--ink); font-weight: 600; }

/* ---------- Hinweis-Karte ---------- */
.note-card {
  margin-top: 1.9rem;
  background: var(--paper);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.1rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  box-shadow: var(--shadow-soft);
}
.note-card strong { color: var(--green-deep); font-weight: 600; }
.section--cream .note-card { background: var(--cream); box-shadow: none; }

/* ---------- Preis-Pille ---------- */
.price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-deep);
}
.price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- Zimmer/FeWo-Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.feature {
  border-top: 2px solid var(--gold);
  padding-top: 1.1rem;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 0.4rem; color: var(--green-deep); }
.feature p { font-size: 0.96rem; color: var(--ink-soft); }
.section--green .feature { border-top-color: var(--straw); }
.section--green .feature p { color: rgba(247, 241, 227, 0.88); }

/* feine Ausstattungs-Liste */
.kit-list { list-style: none; columns: 2; column-gap: 2rem; }
.kit-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--ink-soft);
  break-inside: avoid;
}
.kit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.section--green .kit-list li { color: rgba(247, 241, 227, 0.9); }

/* ---------- Öffnungszeiten ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  max-width: 34rem;
  box-shadow: var(--shadow-soft);
}
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.99rem;
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours th { font-weight: 600; color: var(--ink); width: 48%; }
.hours td { color: var(--ink-soft); }
.hours .is-closed td { color: var(--green-soft); font-style: italic; }
.hours-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--green-soft);
  line-height: 1.55;
}

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--cream);
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band__crest {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  color: rgba(246, 224, 139, 0.06);
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); margin-bottom: 0.6rem; }
.cta-band p { color: rgba(247, 241, 227, 0.88); max-width: 36rem; margin-inline: auto; }
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.3rem);
  color: var(--straw);
  margin-block: 1.4rem 1.3rem;
  border-bottom: 3px solid rgba(246, 224, 139, 0.4);
  transition: border-color 0.2s;
}
.cta-band .tel:hover { border-color: var(--straw); }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}
.contact-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-card .tel-big {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  color: var(--green);
  line-height: 1.1;
  margin-block: 0.3rem 0.8rem;
}
.contact-card address { font-style: normal; color: var(--ink-soft); line-height: 1.65; }
.contact-card ul { list-style: none; color: var(--ink-soft); }
.contact-card li { padding-block: 0.25rem; }
.contact-card .meta { font-size: 0.95rem; }
.contact-card .meta strong { color: var(--ink); font-weight: 600; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 46rem; }
.legal h1 { margin-bottom: 1.6rem; color: var(--green-deep); }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 0.7rem; color: var(--green-deep); }
.legal p, .legal address { color: var(--ink-soft); font-style: normal; }
.legal p + p { margin-top: 0.8rem; }
.legal a { color: var(--gold-deep); text-decoration: underline; }

.demo-note {
  background: var(--cream-deep);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.demo-note strong { color: var(--green-deep); font-weight: 600; }

.placeholder {
  display: inline-block;
  background: var(--cream-deep);
  border: 1px dashed var(--green-soft);
  border-radius: 6px;
  padding: 0.05rem 0.55rem;
  font-size: 0.88rem;
  color: var(--green-soft);
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--green-deep);
  color: rgba(247, 241, 227, 0.82);
  padding-block: clamp(2.4rem, 5vw, 3.6rem) 1.4rem;
}
.site-foot a { color: var(--cream); }
.site-foot a:hover { color: var(--straw); text-decoration: underline; }
.site-foot h3 { color: var(--straw); font-size: 1.2rem; margin-bottom: 0.7rem; }
.site-foot ul { list-style: none; font-size: 0.95rem; }
.site-foot li { padding-block: 0.18rem; }
.foot-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.foot-brand .crest { width: 44px; color: var(--straw); }
.foot-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--cream); }

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-meta {
  border-top: 1px solid rgba(247, 241, 227, 0.2);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* ---------- Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  body { background-attachment: scroll; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__emblem { order: -1; }
  .hero__emblem .crest { width: min(190px, 46vw); }
  .story { grid-template-columns: 1fr; }
  .story__art { aspect-ratio: 16 / 10; max-width: 28rem; }
  .hours-grid, .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad) 1.2rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav__cta { margin-top: 0.9rem; text-align: center; border-radius: 12px; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .brand__name { font-size: 1.18rem; }
  .brand__mark { width: 42px; height: 42px; }
  .kit-list { columns: 1; }
  .foot-grid { grid-template-columns: 1fr; }
}
