/* ==========================================================================
   Haarstudio Schnittpunkt, Baindt — Demo-Gestaltungsvorschlag
   Konzept "Schnittpunkt": der Punkt, an dem sich Linien treffen, der praezise
   Schnitt. Klares, modernes Liniengrafik-Konzept: sich kreuzende duenne Linien,
   ein "+"/X-Schnittpunkt-Motiv, eine stilisierte Schere. Praezise und geometrisch,
   aber warm und einladend (Dorf-Friseur fuer Damen und Herren).
   Palette: tiefes Petrol/Teal (Leitfarbe) + warmer Kupfer/Terracotta (Akzent)
            + Creme-Grundflaeche + Sand-Sekundaer + fast-Schwarz (Text).
   Schriften: Bricolage Grotesque (Display) + Schibsted Grotesk (Body),
              lokal gehostet, DSGVO-konform.
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --teal: #20524d;          /* tiefes Petrol/Teal — Leitfarbe */
  --teal-dark: #173b37;     /* dunkler, Footer / Hover */
  --teal-deep: #102b28;     /* tiefste Flaeche */
  --teal-soft: #d8e3e0;     /* zarte Teal-Flaeche */
  --copper: #c2724a;        /* warmer Kupfer/Terracotta — Akzent */
  --copper-light: #d79270;  /* helleres Kupfer auf Dunkel */
  --copper-soft: #f0ddd0;   /* zarte Kupfer-Flaeche */
  --cream: #f4efe7;         /* Creme-Grundflaeche */
  --cream-2: #ebe3d6;       /* abgesetzte Creme */
  --white: #fbf8f2;         /* Karten / heller Kontrast */
  --sand: #d9cbb8;          /* Sand-Sekundaer */
  --ink: #1c2220;           /* fast-Schwarz — Text */
  --ink-soft: #51605c;      /* abgesetzter Fliesstext */
  --line: #ddd2c0;          /* Trennlinien auf Creme */

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;

  --container: 1160px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;

  --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.04rem;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--copper); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--copper);
  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: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  hyphens: manual;
}

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

.mark { color: var(--copper); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--copper);
}
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  color: var(--ink-soft);
  max-width: 38rem;
}

/* ---------- Schnittpunkt-Zierelement (Wiedererkennung) ---------- */
.cross-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: 1.4rem;
}
.cross-divider::before,
.cross-divider::after {
  content: "";
  height: 1px;
  width: clamp(2.5rem, 14vw, 8rem);
  background: linear-gradient(90deg, transparent, var(--copper));
}
.cross-divider::after { background: linear-gradient(90deg, var(--copper), transparent); }
.cross-divider svg { width: 30px; height: 30px; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--teal-deep);
  color: var(--cream);
  font-size: 0.79rem;
  text-align: center;
  padding: 0.5rem var(--pad);
  line-height: 1.45;
}
.demo-bar strong { color: var(--copper-light); font-weight: 600; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 231, 0.92);
  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.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand__mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name .brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.34rem;
  color: var(--teal);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.brand__name small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.34rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.9rem);
}
.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(--copper); }
.nav a[aria-current="page"] {
  color: var(--teal);
  border-bottom-color: var(--copper);
}
.nav__cta {
  background: var(--teal);
  color: var(--cream) !important;
  padding: 0.52rem 1.2rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--teal-dark); color: var(--white) !important; }

.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(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(48rem 28rem at 88% -12%, var(--copper-soft) 0%, transparent 58%),
    radial-gradient(46rem 26rem at -10% 112%, var(--teal-soft) 0%, transparent 55%);
  overflow: hidden;
}
/* feines Linienraster als Schnittpunkt-Textur */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  mask-image: radial-gradient(70% 70% at 60% 40%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 { margin-block: 0.5rem 1.3rem; }
.hero .hero__name {
  display: block;
  font-size: clamp(2.7rem, 7.6vw, 5.2rem);
  color: var(--teal);
  line-height: 0.96;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
.hero .hero__sub {
  display: block;
  font-size: clamp(1.4rem, 3.4vw, 2.3rem);
  color: var(--ink);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.hero__art { display: grid; place-items: center; }

/* ---------- Schnittpunkt-Emblem (Wiedererkennung: kreuzende Linien / Schere) ---------- */
.emblem {
  width: min(360px, 76vw);
  height: auto;
  filter: drop-shadow(0 22px 42px rgba(16, 43, 40, 0.20));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  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(--teal); color: var(--cream); }
.btn--solid:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn--copper { border-color: var(--copper); color: var(--copper); }
.btn--copper:hover { background: var(--copper); border-color: var(--copper); color: var(--white); }
.btn--light { border-color: var(--cream); color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--teal); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--cream2 { background: var(--cream-2); }
.section--teal { background: var(--teal); color: var(--cream); }
.section--teal h2, .section--teal h3 { color: var(--cream); }
.section--teal p { color: rgba(244, 239, 231, 0.86); }
.section--teal .eyebrow { color: var(--copper-light); }
.section--teal .eyebrow::before { background: var(--copper-light); }
.section--teal .mark { color: var(--copper-light); }

.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--teal .section__head p { color: rgba(244, 239, 231, 0.86); }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- Karten-Raster ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(28, 34, 32, 0.02);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 43, 40, 0.10); }
.card:hover::before { opacity: 1; }
.card__icon { width: 42px; height: 42px; margin-bottom: 1rem; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.96rem; color: var(--ink-soft); }
.card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--copper-soft);
  border-radius: 999px;
  padding: 0.22rem 0.8rem;
  margin-bottom: 0.9rem;
}

/* ---------- Leistungs-Liste ---------- */
.menu-list { list-style: none; max-width: 50rem; }
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.3rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:first-child { border-top: 1px solid var(--line); }
.menu-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--copper);
  font-size: 1.1rem;
  grid-row: span 2;
}
.menu-item__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.menu-item__desc {
  grid-column: 2;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* ---------- Hinweis-/Notiz-Karte ---------- */
.note-card {
  margin-top: 2rem;
  background: var(--copper-soft);
  border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 50rem;
}
.note-card strong { color: var(--ink); font-weight: 600; }

/* ---------- Vorstellungs-/Versprechen-Sektion ---------- */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.8rem, 4vw, 3.6rem);
  align-items: center;
}
.split__art { display: grid; place-items: center; }
.split__seal {
  width: min(300px, 72vw);
  filter: drop-shadow(0 18px 34px rgba(16, 43, 40, 0.16));
}
.feature-list { list-style: none; margin-top: 1.4rem; }
.feature-list li {
  position: relative;
  padding-left: 1.9rem;
  padding-block: 0.45rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.85rem;
  width: 0.7rem;
  height: 0.7rem;
  background:
    linear-gradient(var(--copper), var(--copper)) center / 100% 1.5px no-repeat,
    linear-gradient(var(--copper), var(--copper)) center / 1.5px 100% no-repeat;
}
.section--teal .feature-list li { color: rgba(244, 239, 231, 0.9); }
.section--teal .feature-list li::before {
  background:
    linear-gradient(var(--copper-light), var(--copper-light)) center / 100% 1.5px no-repeat,
    linear-gradient(var(--copper-light), var(--copper-light)) center / 1.5px 100% no-repeat;
}

/* ---------- Foto-Platzhalter ---------- */
.photo-ph {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, var(--cream-2) 0 16px, var(--copper-soft) 16px 32px);
  border: 1.5px dashed var(--copper);
  border-radius: var(--radius);
  color: var(--copper);
  min-height: 320px;
  padding: 1.5rem;
}
.photo-ph span {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: var(--cream);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(28, 34, 32, 0.08);
  color: var(--teal);
}
.photo-ph small { display: block; margin-top: 0.5rem; color: var(--ink-soft); font-weight: 400; }

/* ---------- Oeffnungszeiten ---------- */
.hours {
  list-style: none;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: var(--white);
  box-shadow: inset 0 -1px 0 var(--line);
}
.hours li:last-child { box-shadow: none; }
.hours li.is-closed { color: var(--ink-soft); background: var(--cream-2); }
.hours .day { font-weight: 600; color: var(--ink); }
.hours .time { font-variant-numeric: tabular-nums; }
.hours li.is-closed .day { color: var(--ink-soft); }

/* ---------- Termin-Hinweis-Band ---------- */
.appt {
  background: var(--copper-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.appt h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.5rem; }
.appt p { color: var(--ink-soft); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--teal);
  color: var(--cream);
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,239,231,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,231,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 80% at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--cream); margin-bottom: 0.6rem; }
.cta-band p {
  color: rgba(244, 239, 231, 0.86);
  max-width: 34rem;
  margin-inline: auto;
}
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.1rem);
  color: var(--cream);
  margin-block: 1.4rem 1.2rem;
  border-bottom: 2px solid var(--copper);
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: -0.01em;
}
.cta-band .tel:hover { border-color: var(--cream); color: var(--copper-light); }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.3rem);
}
.contact-card h2 { font-size: 1.45rem; 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.5rem);
  color: var(--teal);
  line-height: 1.1;
  margin-block: 0.3rem 0.4rem;
  letter-spacing: -0.01em;
}
.contact-card .tel-note { font-size: 0.88rem; color: var(--ink-soft); }
.contact-card address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- Kontakt-/Terminformular (gestalterisch, nicht funktional) ---------- */
.form { display: grid; gap: 1rem; }
.form .field { display: grid; gap: 0.35rem; }
.form label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.form input,
.form textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}
.form input:focus,
.form textarea:focus { outline: none; border-color: var(--copper); }
.form .form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 46rem; }
.legal h1 { margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 0.7rem; }
.legal p, .legal address { color: var(--ink-soft); font-style: normal; }
.legal p + p { margin-top: 0.8rem; }
.legal ul { margin: 0.6rem 0 0 1.2rem; color: var(--ink-soft); }
.legal li { padding-block: 0.2rem; }

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

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

/* ---------- Footer ---------- */
.site-foot {
  background: var(--teal-deep);
  color: var(--cream-2);
  padding-block: clamp(2.4rem, 5vw, 3.6rem) 1.4rem;
}
.site-foot a { color: var(--copper-light); }
.site-foot a:hover { text-decoration: underline; }
.site-foot h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.foot-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.foot-brand svg { width: 40px; height: 40px; }
.site-foot .foot-word {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
}
.site-foot ul { list-style: none; font-size: 0.95rem; }
.site-foot li { padding-block: 0.18rem; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-meta {
  border-top: 1px solid rgba(244, 239, 231, 0.16);
  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(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s 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; }

/* Schnittpunkt-Linien zeichnen sich beim Laden */
.draw-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.6s var(--ease) forwards;
}
.draw-line.d2 { animation-delay: 0.25s; }
.draw-line.d3 { animation-delay: 0.5s; }
.cross-dot {
  opacity: 0;
  animation: pop 0.5s var(--ease) 1s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .draw-line { animation: none; stroke-dashoffset: 0; }
  .cross-dot { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .emblem { width: min(260px, 60vw); }
  .contact-grid, .split { grid-template-columns: 1fr; }
  .split__art { order: -1; }
  .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); }
}

@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
}
