/* ==========================================================================
   Johannes Längle Bau- und Möbelschreinerei — Demo-Gestaltungsvorschlag
   Charakter: ruhiges, hochwertiges Handwerk, refined minimal, editorial.
   Materialgefühl Holz/Natur, warme Walnuss-/Eichentöne auf Leinen.
   Eigenständig gegenüber schreinerei-denn: Spectral (Serif, Kontrast) +
   Plus Jakarta Sans (Body), Honig-Eiche als Leitakzent, Maserungs-Linien
   statt Schwalbenschwanz, Monogramm JL als Wiedererkennung.
   Palette: Leinen #F6F1E9 · Espresso #2B2018 · Honig-Eiche #B07A3C ·
            Salbei #6B7559 · Text #322820
   Schriften: Spectral (Headlines) + Plus Jakarta Sans (Text), lokal gehostet
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Spectral";
  src: url("../fonts/spectral-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("../fonts/spectral-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("../fonts/spectral-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("../fonts/spectral-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("../fonts/spectral-italic-400.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/jakarta.woff2") format("woff2");
  font-weight: 400 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/jakarta-italic.woff2") format("woff2");
  font-weight: 400 600; font-style: italic; font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --linen: #f6f1e9;        /* Leinen — Grundton */
  --linen-deep: #ece3d4;   /* abgesetzte helle Fläche */
  --linen-line: #ddd1bd;   /* Trennlinien auf hell */
  --espresso: #2b2018;     /* Walnuss/Espresso — Leitfarbe, dunkle Flächen */
  --espresso-soft: #4a3a2c;/* abgesetzter Fließtext auf hell */
  --ink: #322820;          /* Fließtext */
  --oak: #b07a3c;          /* Honig-Eiche — Leitakzent */
  --oak-dark: #97632c;     /* Akzent-Hover */
  --oak-pale: #d9b483;     /* helles Holz auf dunkel */
  --sage: #6b7559;         /* Salbei — Zweitakzent */
  --sage-pale: #9aa487;    /* Salbei hell auf dunkel */
  --line-dark: rgba(246, 241, 233, 0.14);

  --font-head: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 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.05rem;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--linen);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--oak-dark); text-decoration: none; }
a:hover { color: var(--espresso); }

::selection { background: var(--oak); color: var(--linen); }

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

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

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--espresso);
  text-wrap: balance;
  hyphens: manual;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.1rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); }

.mark { color: var(--oak); }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oak-dark);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem; height: 2px;
  background: var(--oak);
  display: inline-block;
}

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: var(--espresso-soft);
  max-width: 38em;
}

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--espresso);
  color: var(--linen);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem var(--pad);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.demo-bar strong { color: var(--oak-pale); font-weight: 700; }

/* ---------- Header / Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 233, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--linen-line);
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand { display: flex; align-items: center; gap: 0.8rem; color: var(--espresso); }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.08;
  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(--oak-dark);
  margin-top: 0.28rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--espresso);
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--oak-dark); }
.nav a[aria-current="page"] { border-bottom-color: var(--oak); }

.nav__cta {
  background: var(--espresso);
  color: var(--linen) !important;
  padding: 0.55rem 1.15rem !important;
  border-bottom: none !important;
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--oak-dark); }

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

/* ---------- Maserungs-Trenner ----------
   Feine, leicht versetzte Linien als Anklang an Holzfasern/Jahresringe.
   Ersetzt das Schwalbenschwanz-Motiv aus der Referenz durch ein eigenes Mark. */
.grain {
  height: 26px;
  background-repeat: repeat-x;
  background-size: 120px 26px;
  background-position: center;
  opacity: 0.9;
}
.grain--oak {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 26'%3E%3Cg fill='none' stroke='%23b07a3c' stroke-width='1.1' opacity='0.55'%3E%3Cpath d='M0 5 Q30 2 60 5 T120 5'/%3E%3Cpath d='M0 13 Q30 9 60 13 T120 13'/%3E%3Cpath d='M0 21 Q30 18 60 21 T120 21'/%3E%3C/g%3E%3C/svg%3E");
}

/* dünner Maserungs-Akzent als Inline-Element */
.fiber {
  height: 3px;
  width: 3.2rem;
  background: linear-gradient(90deg, var(--oak), transparent);
  border-radius: 2px;
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.8rem, 9vw, 6.5rem); }
.section--linen-deep { background: var(--linen-deep); }
.section--espresso {
  background: var(--espresso);
  color: rgba(246, 241, 233, 0.86);
  position: relative;
  overflow: hidden;
}
.section--espresso h2, .section--espresso h3 { color: var(--linen); }
.section--espresso .eyebrow { color: var(--oak-pale); }
.section--espresso .eyebrow::before { background: var(--oak-pale); }
.section--espresso p { color: rgba(246, 241, 233, 0.82); }
.section--espresso a { color: var(--oak-pale); }
.section--espresso a:hover { color: var(--linen); }

.section__head { max-width: 46em; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section__head p { color: var(--espresso-soft); margin-top: 1rem; }
.section--espresso .section__head p { color: rgba(246, 241, 233, 0.82); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 7vw, 5.5rem); position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .serif-em { font-style: italic; font-weight: 400; color: var(--oak); }
.hero .lead { margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Hero-Kunstobjekt: Monogramm-Karte mit Maserung */
.hero__art { display: flex; justify-content: center; }
.monogram-card {
  position: relative;
  width: clamp(220px, 26vw, 320px);
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(160deg, #3a2c20 0%, #241a12 100%);
  border-radius: 4px;
  box-shadow: 0 26px 60px rgba(43, 32, 24, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(217, 180, 131, 0.22);
}
.monogram-card::after {
  /* feine Maserungslinien über die Karte */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cg fill='none' stroke='%23d9b483' stroke-width='0.8' opacity='0.13'%3E%3Cpath d='M-10 30 Q60 18 110 32 T230 30'/%3E%3Cpath d='M-10 70 Q60 56 110 72 T230 70'/%3E%3Cpath d='M-10 110 Q60 96 110 112 T230 110'/%3E%3Cpath d='M-10 150 Q60 136 110 152 T230 150'/%3E%3Cpath d='M-10 190 Q60 176 110 192 T230 190'/%3E%3Cpath d='M-10 230 Q60 216 110 232 T230 230'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}
.monogram-card__jl {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(5rem, 11vw, 8rem);
  line-height: 0.9;
  color: var(--oak-pale);
  letter-spacing: -0.04em;
}
.monogram-card__label {
  position: absolute;
  z-index: 2;
  bottom: 1.3rem;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(217, 180, 131, 0.72);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.82rem 1.7rem;
  border: 1.5px solid var(--espresso);
  border-radius: 2px;
  color: var(--espresso);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--espresso); color: var(--linen); }
.btn--solid { background: var(--espresso); color: var(--linen); border-color: var(--espresso); }
.btn--solid:hover { background: var(--oak-dark); border-color: var(--oak-dark); color: var(--linen); }
.btn--light { border-color: var(--oak-pale); color: var(--linen); }
.btn--light:hover { background: var(--oak-pale); color: var(--espresso); border-color: var(--oak-pale); }

/* ---------- Leistungs-Bereich (editorial, kein Standard-Raster) ---------- */
.offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem) clamp(2rem, 5vw, 4rem);
}
.offer__item { position: relative; padding-top: 1.5rem; border-top: 2px solid var(--linen-line); }
.offer__item h3 { margin-bottom: 0.6rem; }
.offer__item p { color: var(--espresso-soft); font-size: 1rem; }
.offer__no {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--oak);
  display: block;
  margin-bottom: 0.4rem;
}

/* ---------- Werte / Arbeitsweise (auf Espresso) ---------- */
.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.4rem, 3vw, 2.4rem); }
.value { position: relative; padding-top: 1.6rem; }
.value::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 2.6rem; height: 3px;
  background: var(--oak-pale);
  border-radius: 2px;
}
.value h3 { margin-bottom: 0.5rem; font-weight: 600; }
.value p { font-size: 0.98rem; }

/* ---------- Doppel-Block (Text + Statement) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.statement {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.32;
  color: var(--espresso);
  border-left: 3px solid var(--oak);
  padding-left: clamp(1.2rem, 3vw, 2rem);
}
.section--espresso .statement { color: var(--linen); border-left-color: var(--oak-pale); }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--espresso); color: var(--linen); text-align: center; padding-block: clamp(3.8rem, 8vw, 6rem); position: relative; overflow: hidden; }
.cta-band h2 { color: var(--linen); margin-bottom: 0.9rem; }
.cta-band p { color: rgba(246, 241, 233, 0.82); max-width: 38em; margin-inline: auto; }
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--oak-pale);
  margin-block: 1.4rem 1.6rem;
  font-variant-numeric: tabular-nums;
}
.cta-band .tel:hover { color: var(--linen); }

/* ---------- Kontaktformular (in Seitenpalette integriert) ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { }
.contact-info dl { margin-top: 1.8rem; }
.contact-info dt {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--oak-dark);
  margin-bottom: 0.25rem;
}
.contact-info dd { margin-bottom: 1.4rem; }
.contact-info dd a, .contact-info dd .val {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--espresso);
  overflow-wrap: anywhere;
}
.contact-info dd a:hover { color: var(--oak-dark); }

/* Formular-Karte: Espresso-Fläche, kein weißer Standardkasten */
.form-card {
  background: var(--espresso);
  border-radius: 5px;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  box-shadow: 0 22px 50px rgba(43, 32, 24, 0.22);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--oak), var(--sage));
}
.form-card h2 { color: var(--linen); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.5rem; }
.form-card .form-intro { color: rgba(246, 241, 233, 0.78); font-size: 0.98rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--oak-pale);
  margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--linen);
  background: rgba(246, 241, 233, 0.06);
  border: 1px solid rgba(217, 180, 131, 0.32);
  border-radius: 3px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246, 241, 233, 0.4); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--oak-pale);
  background: rgba(246, 241, 233, 0.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-card .btn--submit {
  background: var(--oak);
  color: var(--espresso);
  border: none;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.7rem;
}
.form-card .btn--submit:hover { background: var(--oak-pale); }
.form-hint { font-size: 0.8rem; color: rgba(246, 241, 233, 0.6); margin-top: 0.9rem; line-height: 1.5; }

/* ---------- Über die Schreinerei ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-grid .lead-drop p:first-of-type::first-letter {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 0.78;
  float: left;
  margin: 0.1em 0.12em 0 0;
  color: var(--oak);
}
.about-grid p + p { margin-top: 1.1rem; color: var(--espresso-soft); }
.cred {
  background: var(--linen-deep);
  border: 1px solid var(--linen-line);
  border-radius: 4px;
  padding: 1.6rem 1.5rem;
}
.cred h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.cred ul { list-style: none; }
.cred li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  color: var(--espresso-soft);
}
.cred li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px;
  background: var(--oak);
  transform: rotate(45deg);
}

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.3rem; font-weight: 600; margin: 2.3rem 0 0.7rem; }
.legal p, .legal address { color: var(--espresso-soft); font-style: normal; }
.legal p + p { margin-top: 0.8rem; }
.legal ul { padding-left: 1.3rem; color: var(--espresso-soft); }

.demo-note {
  background: var(--linen-deep);
  border-left: 4px solid var(--oak);
  border-radius: 0 4px 4px 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
  color: var(--ink);
}
.placeholder {
  display: inline-block;
  background: var(--linen-deep);
  border: 1px dashed var(--oak);
  border-radius: 3px;
  padding: 0.05rem 0.5rem;
  color: var(--oak-dark);
  font-size: 0.92em;
}

/* ---------- Footer ---------- */
.site-foot { background: #211811; color: rgba(246, 241, 233, 0.74); font-size: 0.95rem; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  padding-block: clamp(2.6rem, 6vw, 3.6rem) 2rem;
}
.foot-brand .brand__name { color: var(--linen); }
.foot-brand p { margin-top: 0.9rem; max-width: 26em; color: rgba(246, 241, 233, 0.66); font-size: 0.92rem; }
.site-foot h3 { color: var(--linen); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.85rem; }
.site-foot ul { list-style: none; }
.site-foot li { margin-bottom: 0.5rem; }
.site-foot a { color: rgba(246, 241, 233, 0.74); }
.site-foot a:hover { color: var(--oak-pale); }
.foot-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
  font-size: 0.84rem;
}
.foot-meta a { color: rgba(246, 241, 233, 0.74); }
.foot-meta a:hover { color: var(--oak-pale); }

/* ---------- Scroll-Reveal ---------- */
.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) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsiv: Tablet ---------- */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { justify-content: flex-start; }
  .monogram-card { width: clamp(200px, 40vw, 260px); }
  .values { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Responsiv: Mobil ---------- */
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--linen);
    border-bottom: 1px solid var(--linen-line);
    padding: 0.8rem var(--pad) 1.2rem;
    gap: 0.2rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.7rem 0.3rem; border-bottom: 1px solid var(--linen-line); }
  .nav a[aria-current="page"] { border-bottom-color: var(--oak); }
  .nav__cta { text-align: center; margin-top: 0.7rem; }
  body.nav-open .site-head { box-shadow: 0 12px 30px rgba(43, 32, 24, 0.14); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .offer, .values { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.06rem; }
}
