/* ═══════════════════════════════════════════════════
   HAKIM STYLING — style.css
   Fraunces · Inter  ·  warm ink & bronze
   ═══════════════════════════════════════════════════ */

:root {
  /* neutrals — crisp warm whites, espresso darks (tinted toward bronze) */
  --parchment: oklch(0.987 0.005 82);   /* main background */
  --cream:     oklch(0.966 0.008 78);   /* alternating section bg */
  --cream-dk:  oklch(0.936 0.010 76);
  --white:     oklch(0.996 0.002 90);
  --olive:     oklch(0.415 0.024 62);   /* warm taupe (hours, badges, banner) */
  --olive-lt:  oklch(0.520 0.030 64);
  --olive-dk:  oklch(0.255 0.020 58);   /* espresso — dark section base */
  --dark:      oklch(0.185 0.016 52);   /* near-black ink — footer, contact, feature */
  --text:      oklch(0.300 0.018 56);
  --muted:     oklch(0.505 0.021 58);   /* contrast-safe body-muted */

  /* accent — richer bronze */
  --gold:      oklch(0.555 0.108 66);   /* on light: buttons, prices, rules */
  --gold-lt:   oklch(0.760 0.105 78);   /* on dark: accents, headings */
  --warm-line: oklch(0.55 0.02 60 / 0.16);

  /* type */
  --serif: 'Fraunces','Playfair Display',Georgia,serif;
  --sans:  'Inter','Lato',system-ui,sans-serif;
  --fine:  'Fraunces','Cormorant Garamond',Georgia,serif;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html,body { width:100%; overflow-x:hidden; scroll-behavior:smooth; }
body {
  background:var(--parchment);
  color:var(--text);
  font-family:var(--sans);
  font-weight:400;
  line-height:1.7;
  font-optical-sizing:auto;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img { display:block; width:100%; height:100%; object-fit:cover; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── HELPERS ──────────────────────────────────────── */
.max {
  max-width:1180px;
  margin-inline:auto;
  padding-inline:clamp(1.25rem,4vw,3rem);
}
.eyebrow {
  font-family:var(--sans);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--olive-lt);
}
.rule {
  display:inline-block;
  width:36px; height:1px;
  background:var(--gold);
  vertical-align:middle;
  margin-right:.9rem;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:.95rem 2.15rem;
  border-radius:8px;
  cursor:pointer;
  transition:background .25s var(--ease-out), color .25s var(--ease-out),
             transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
             border-color .25s var(--ease-out);
  border:none;
  width:auto;
  align-self:flex-start;
}
.btn:active { transform:translateY(0); }
.btn-gold { background:var(--gold); color:#fff; box-shadow:0 6px 18px -8px rgba(40,30,15,.5); }
.btn-gold:hover { background:var(--dark); transform:translateY(-2px); box-shadow:0 14px 28px -12px rgba(40,30,15,.55); }
.btn-outline:hover, .btn-outline-light:hover { transform:translateY(-2px); }
.btn-outline {
  background:transparent;
  color:var(--text);
  border:1.5px solid rgba(90,80,50,.3);
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }
.btn-outline-light {
  background:transparent;
  color:var(--cream);
  border:1.5px solid rgba(240,235,226,.4);
}
.btn-outline-light:hover {
  border-color:var(--cream);
  background:rgba(240,235,226,.1);
}

/* ── HEADER ───────────────────────────────────────── */
.site-header {
  position:fixed;
  top:0; left:0; right:0;
  z-index:200;
  padding:1.1rem clamp(1.25rem,4vw,3rem);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  background:transparent;
  transition:background .4s,backdrop-filter .4s,border-color .4s;
}
.site-header.scrolled {
  background:rgba(28,22,14,.86);
  backdrop-filter:blur(16px) saturate(1.2);
  border-bottom:1px solid rgba(168,137,58,.22);
}
.logo {
  font-family:var(--serif);
  font-size:1.4rem;
  font-weight:600;
  color:#fff;
  letter-spacing:-.01em;
  flex-shrink:0;
}
.logo em { color:var(--gold-lt); font-style:italic; }
.hdr-nav { margin-left:auto; }
.hdr-nav ul { display:flex; gap:2.2rem; }
.hdr-nav a {
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
  transition:color .2s;
  white-space:nowrap;
}
.hdr-nav a:hover { color:#fff; }
.nav-book {
  font-family:var(--sans);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  background:var(--gold);
  color:#fff;
  padding:.62rem 1.5rem;
  border-radius:7px;
  transition:background .25s var(--ease-out), transform .25s var(--ease-out);
  flex-shrink:0;
  white-space:nowrap;
}
.nav-book:hover { background:var(--gold-lt); color:var(--dark); transform:translateY(-1px); }
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  flex-shrink:0;
}
.hamburger span { display:block; width:22px; height:1.5px; background:#fff; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  width:100%;
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:0;
}
.hero-bg img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:center center;
  filter:brightness(.45) saturate(.85);
}
.hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background:
          linear-gradient(to right, rgba(14,12,8,.88) 0%, rgba(14,12,8,.65) 50%, rgba(14,12,8,.05) 100%),
          linear-gradient(to top, rgba(14,12,8,.6) 0%, transparent 40%);
}
.hero-inner {
  position:relative;
  z-index:1;
  padding:clamp(6rem,11vw,9rem) clamp(1.25rem,4vw,3rem) clamp(4rem,7vw,6rem);
  max-width:680px;
}
.hero-tag {
  display:inline-flex;
  align-items:center;
  gap:.8rem;
  font-family:var(--sans);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold-lt);
  margin-bottom:1.8rem;
}
.hero-tag::before {
  content:'';
  display:block;
  width:28px; height:1px;
  background:var(--gold-lt);
  flex-shrink:0;
}
/* mobile: long address tag was overflowing/breaking with the wide letter-spacing — let it wrap cleanly */
@media (max-width:600px) {
  .hero-tag {
    flex-wrap:wrap;
    gap:.5rem .55rem;
    letter-spacing:.13em;
    font-size:.6rem;
    line-height:1.5;
  }
  .hero-tag::before { width:22px; }
}
.hero-h1 {
  font-family:var(--serif);
  font-optical-sizing:auto;
  font-size:clamp(2.9rem,7.2vw,5.8rem);
  font-weight:600;
  line-height:1.02;
  color:#fff;
  margin-bottom:1.4rem;
  letter-spacing:-.025em;
}
.hero-h1 em { font-style:italic; color:var(--gold-lt); display:block; }
.hero-desc {
  font-family:var(--fine);
  font-size:clamp(.95rem,1.6vw,1.15rem);
  font-weight:300;
  color:rgba(240,235,226,.72);
  line-height:1.8;
  max-width:460px;
  margin-bottom:2.2rem;
}
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.hero-social-proof { display:flex; align-items:center; gap:1rem; }
.hero-avatars { display:flex; }
.hero-avatars img {
  width:36px; height:36px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.35);
  object-fit:cover;
  margin-right:-10px;
  flex-shrink:0;
}
.hero-social-proof p {
  font-family:var(--sans);
  font-size:.78rem;
  color:rgba(240,235,226,.65);
  padding-left:18px;
}
.hero-social-proof strong { color:var(--gold-lt); font-weight:700; }
.hero-stats-aside {
  position:absolute;
  right:clamp(1.25rem,4vw,3rem);
  top:50%;
  transform:translateY(-50%);
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:2.5rem;
  border-left:1px solid rgba(168,137,58,.3);
  padding-left:1.5rem;
}
.hstat-num {
  font-family:var(--serif);
  font-size:2rem;
  font-weight:600;
  color:var(--gold-lt);
  line-height:1;
}
.hstat-lbl {
  font-family:var(--sans);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
}

/* ── HOURS ────────────────────────────────────────── */
.hours-section {
  background:var(--olive-dk);
  padding:2rem 0;
  width:100%;
}
.hours-inner {
  max-width:1180px;
  margin-inline:auto;
  padding-inline:clamp(1.25rem,4vw,3rem);
  display:flex;
  align-items:center;
  gap:2rem;
  flex-wrap:wrap;
}
.hours-title {
  font-family:var(--sans);
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold-lt);
  flex-shrink:0;
  white-space:nowrap;
}
.hours-circles { display:flex; gap:.7rem; flex-wrap:wrap; }
.hc {
  width:78px; height:78px;
  border-radius:50%;
  background:var(--olive);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.2rem;
  transition:background .2s,transform .2s;
  cursor:default;
}
.hc:hover { background:var(--olive-lt); transform:scale(1.06); }
.hc.closed { background:#2a2918; opacity:.55; }
.hc-day {
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#fff;
}
.hc-time {
  font-family:var(--sans);
  font-size: .62rem;
  color:rgba(255,255,255,.6);
  letter-spacing:.03em;
}


/* ── SECTIONS BASE ────────────────────────────────── */
.sec { padding:clamp(3.5rem,8vw,7rem) 0; }
.sec-eyebrow { margin-bottom:.9rem; }
.sec-title {
  font-family:var(--serif);
  font-optical-sizing:auto;
  font-size:clamp(1.9rem,4.2vw,3.2rem);
  font-weight:600;
  color:var(--dark);
  line-height:1.08;
  letter-spacing:-.02em;
  margin-bottom:1.5rem;
}
.sec-title-light { color:#fff; }

/* ── HOW IT WORKS ─────────────────────────────────── */
.how-section { background:var(--cream); }
.how-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:2rem;
  margin-bottom:4rem;
}
.how-steps { display:flex; flex-direction:column; }
.how-step {
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid var(--warm-line);
}
.how-step:last-child { border-bottom:1px solid var(--warm-line); }
.how-step:nth-child(even) .how-step-img { order:-1; }
.how-step-txt {
  padding:clamp(2.5rem,5vw,4rem) clamp(1.5rem,4vw,3rem);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1.2rem;
}
.how-step-img { overflow:hidden; aspect-ratio:16/10; background:var(--cream-dk); }
.how-step-img img { transition:transform .7s,filter .4s; filter:saturate(.85); }
.how-step:hover .how-step-img img { transform:scale(1.05); filter:saturate(1); }
.step-num-big {
  font-family:var(--serif);
  font-size:3.5rem;
  font-weight:700;
  color:var(--gold);
  opacity:.35;
  line-height:1;
}
.step-heading {
  font-family:var(--serif);
  font-size:1.45rem;
  font-weight:600;
  color:var(--dark);
  line-height:1.2;
}
.step-body { font-family:var(--fine); font-size:1rem; color:var(--muted); line-height:1.8; }

/* ── FRISUREN ─────────────────────────────────────── */
.styles-section { background:var(--parchment); }
.styles-layout {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:1.75rem;
  margin-top:3rem;
  align-items:start;
}
.style-card {
  background:var(--white);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px -8px rgba(40,30,15,.12);
  transition:transform .3s,box-shadow .3s;
}
.style-card:hover { transform:translateY(-5px); box-shadow:0 22px 44px -12px rgba(40,30,15,.20); }
.style-card-img { height:240px; overflow:hidden; }
.style-card-img img { transition:transform .6s,filter .4s; filter:saturate(.9); }
.style-card:hover .style-card-img img { transform:scale(1.07); filter:saturate(1.1); }
.style-card-body { padding:1.25rem 1.5rem 1.5rem; }
.style-badge {
  display:inline-block;
  font-family:var(--sans);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  background:var(--gold);
  color:#fff;
  padding:.22rem .75rem;
  border-radius:20px;
  margin-bottom:.7rem;
}
.style-badge.alt { background:var(--olive); }
.style-card-name {
  font-family:var(--serif);
  font-size:1.3rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:.35rem;
}
.style-card-meta { font-family:var(--sans); font-size:.74rem; color:var(--muted); }
.styles-list-card {
  background:var(--white);
  border-radius:16px;
  padding:1.75rem;
  box-shadow:0 10px 30px -8px rgba(40,30,15,.12);
}
.styles-list-title {
  font-family:var(--serif);
  font-size:1.15rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:1.2rem;
  padding-bottom:.9rem;
  border-bottom:1px solid var(--warm-line);
}
.styles-list { display:flex; flex-direction:column; }
.styles-list li {
  display:flex;
  align-items:center;
  gap:.65rem;
  padding:.65rem 0;
  border-bottom:1px solid var(--warm-line);
  font-family:var(--fine);
  font-size:1rem;
  color:var(--muted);
  transition:color .2s,padding-left .2s;
}
.styles-list li:last-child { border-bottom:none; }
.styles-list li::before { content:'✓'; color:var(--gold); font-family:var(--sans); font-size:.78rem; flex-shrink:0; }
.styles-list li:hover { color:var(--dark); padding-left:.4rem; }

/* ── REFERENZEN ───────────────────────────────────── */
.testi-section { background:var(--olive-dk); }
.testi-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  margin-top:3rem;
}
.testi-cards { display:flex; flex-direction:column; gap:1.25rem; }
.testi-card {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:1.5rem;
  transition:background .25s;
}
.testi-card:hover { background:rgba(255,255,255,.09); }
.testi-card.feat {
  background:rgba(168,137,58,.12);
  border-color:rgba(168,137,58,.35);
  position:relative;
}
.testi-card.feat::before {
  content:'Top Bewertung';
  position:absolute;
  top:-1px; right:1.5rem;
  font-family:var(--sans);
  font-size:.58rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  background:var(--gold);
  color:#fff;
  padding:.22rem .7rem;
  border-radius:0 0 6px 6px;
}
.testi-head { display:flex; align-items:center; gap:.85rem; margin-bottom:1rem; }
.testi-av {
  width:40px; height:40px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:2px solid rgba(168,137,58,.35);
}
.testi-name {
  font-family:var(--sans);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--cream);
}
.testi-stars { color:var(--gold-lt); font-size:.68rem; }
.testi-body {
  font-family:var(--fine);
  font-size:1rem;
  font-weight:300;
  color:rgba(240,235,226,.65);
  line-height:1.75;
  font-style:italic;
}
.testi-gallery {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px;
  border-radius:18px;
  overflow:hidden;
  align-self:start;
}
.tg-img { overflow:hidden; aspect-ratio:1; }
.tg-img img { transition:transform .5s,filter .4s; filter:saturate(.75); }
.tg-img:hover img { transform:scale(1.1); filter:saturate(1.1); }

/* ── STRIP ────────────────────────────────────────── */
.strip-wrap {
  overflow:hidden;
  background:var(--olive-dk);
  border-top:1px solid rgba(255,255,255,.06);
}
.strip-track {
  display:flex;
  animation:stripMove 28s linear infinite;
  width:max-content;
}
.strip-track img {
  width:190px; height:140px;
  flex-shrink:0;
  filter:grayscale(40%) brightness(.85);
  transition:filter .3s;
  border-right:1px solid rgba(255,255,255,.05);
}
.strip-track img:hover { filter:grayscale(0) brightness(1); }
.strip-wrap:hover .strip-track { animation-play-state:paused; }
@keyframes stripMove {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ── PRICING ──────────────────────────────────────── */
.pricing-section { background:var(--cream); }
.pricing-layout {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:1.5rem;
  margin-top:3rem;
  align-items:start;
}
.pc {
  background:var(--white);
  border-radius:18px;
  padding:2rem 1.75rem;
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  box-shadow:0 10px 30px -8px rgba(40,30,15,.12);
  position:relative;
  overflow:hidden;
}
.pc.feat { background:var(--dark); color:var(--cream); }
.pc-ribbon {
  position:absolute;
  top:14px; right:-26px;
  background:var(--gold);
  color:#fff;
  font-family:var(--sans);
  font-size:.58rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.3rem 2.5rem;
  transform:rotate(35deg);
}
.pc-name {
  font-family:var(--sans);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--muted);
}
.pc.feat .pc-name { color:rgba(240,235,226,.5); }
.pc-amount {
  font-family:var(--serif);
  font-size:3.5rem;
  font-weight:700;
  color:var(--dark);
  line-height:1.1;
  display:flex;
  align-items:flex-start;
  gap:.2rem;
  margin-bottom:.25rem;
}
.pc.feat .pc-amount { color:#fff; }
.pc-amount sup {
  font-family:var(--sans);
  font-size:1.2rem;
  font-weight:400;
  color:var(--muted);
  margin-top:.55rem;
  line-height:1;
}
.pc.feat .pc-amount sup { color:rgba(240,235,226,.5); }
.pc-sub { font-family:var(--fine); font-size:.88rem; color:var(--muted); margin-top:0; }
.pc.feat .pc-sub { color:rgba(240,235,226,.5); }
.pc-feats { display:flex; flex-direction:column; gap:.55rem; }
.pc-feats li { font-family:var(--fine); font-size:.97rem; display:flex; align-items:center; gap:.6rem; }
.pc-feats li.y { color:var(--text); }
.pc.feat .pc-feats li.y { color:var(--cream); }
.pc-feats li.y::before { content:'✓'; color:var(--gold); font-family:var(--sans); font-size:.75rem; flex-shrink:0; }
.pc-feats li.n { color:rgba(120,110,90,.35); }
.pc.feat .pc-feats li.n { color:rgba(240,235,226,.18); }
.pc-feats li.n::before { content:'✕'; font-family:var(--sans); font-size:.7rem; flex-shrink:0; }

.pc-list {
  background:var(--white);
  border-radius:18px;
  padding:2rem 1.75rem;
  box-shadow:0 10px 30px -8px rgba(40,30,15,.12);
}
.pc-list-title {
  font-family:var(--serif);
  font-size:1.15rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:1.2rem;
  padding-bottom:.9rem;
  border-bottom:1px solid var(--warm-line);
}
.price-rows { display:flex; flex-direction:column; }
.price-row {
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:.6rem 0;
  border-bottom:1px solid var(--warm-line);
  gap:1rem;
  transition:color .15s;
}
.price-row:last-child { border-bottom:none; }
.price-row span:first-child { font-family:var(--fine); font-size:.95rem; color:var(--muted); }
.price-row:hover span:first-child { color:var(--dark); }
.price-row-p { font-family:var(--serif); font-size:.95rem; font-weight:600; color:var(--gold); flex-shrink:0; }
.pricing-note {
  text-align:center;
  margin-top:1.5rem;
  font-family:var(--fine);
  font-size:.88rem;
  color:var(--muted);
}

/* ── WHY ──────────────────────────────────────────── */
.why-section { background:var(--parchment); border-top:1px solid var(--warm-line); }
.why-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--warm-line);
  border-radius:16px;
  overflow:hidden;
  margin-top:2.5rem;
}
.why-item {
  padding:2rem 1.5rem;
  border-right:1px solid var(--warm-line);
  transition:background .2s;
}
.why-item:last-child { border-right:none; }
.why-item:hover { background:var(--cream); }
.why-icon { font-size:1.3rem; color:var(--gold); margin-bottom:.8rem; display:block; }
.why-title { font-family:var(--serif); font-size:1rem; font-weight:600; color:var(--dark); margin-bottom:.5rem; }
.why-body { font-family:var(--fine); font-size:.93rem; color:var(--muted); line-height:1.7; }

/* ── CONTACT ──────────────────────────────────────── */
.contact-section { background:var(--cream); }
.contact-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 48px -14px rgba(40,30,15,.16);
  margin-top:3rem;
}
.contact-info {
  background:var(--dark);
  padding:clamp(2.5rem,5vw,4rem);
  display:flex;
  flex-direction:column;
  gap:1.75rem;
}
.cf-label {
  font-family:var(--sans);
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--gold-lt);
  margin-bottom:.3rem;
}
.cf-val { font-family:var(--fine); font-size:1.05rem; color:rgba(240,235,226,.85); line-height:1.5; }
.cf-val a:hover { color:var(--gold-lt); }
.cf-val-big { font-size:1.3rem !important; font-weight:600; color:#fff !important; }
.contact-img-wrap { overflow:hidden; min-height:420px; }
.contact-img-wrap img { filter:saturate(.85); transition:transform .7s,filter .5s; }
.contact-img-wrap:hover img { transform:scale(1.04); filter:saturate(1); }

/* ── LADYS ────────────────────────────────────────── */
.ladys {
  background:var(--olive);
  padding:2.5rem clamp(1.25rem,4vw,3rem);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2.5rem;
  flex-wrap:wrap;
  text-align:center;
}
.ladys p { font-family:var(--fine); font-size:1.02rem; color:rgba(240,235,226,.85); max-width:520px; }

/* ── FOOTER ───────────────────────────────────────── */
.site-footer { background:var(--dark); padding:2rem clamp(1.25rem,4vw,3rem); }
.footer-inner {
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
}
.footer-logo { font-family:var(--serif); font-size:1.2rem; font-weight:600; color:#fff; }
.footer-logo em { color:var(--gold-lt); font-style:italic; }
.footer-mid {
  display:flex;
  flex-direction:column;
  gap:.25rem;
  text-align:center;
  font-family:var(--fine);
  font-size:.88rem;
  color:rgba(240,235,226,.7);
}
.footer-mid a:hover { color:var(--gold-lt); }
.footer-copy {
  font-family:var(--sans);
  font-size:.65rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(240,235,226,.70);
}
.footer-credit {
  font-family:var(--sans);
  font-size:.62rem;
  color:rgba(240,235,226,.70);
  letter-spacing:.06em;
  text-align:right;
  display:flex;
  flex-direction:column;
  gap:.2rem;
  align-items:flex-end;
}
.footer-credit a {
  color:rgba(240,235,226,.70);
  transition:color .2s;
}
.footer-credit a:hover { color:var(--gold-lt); }

/* ── MOBILE NAV ───────────────────────────────────── */
.mob-nav {
  position:fixed;
  inset:0;
  background:rgba(20,17,10,.98);
  z-index:300;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1rem;
  transform:translateX(100%);
  transition:transform .38s cubic-bezier(.77,0,.175,1);
  border-left:1px solid rgba(168,137,58,.3);
}
.mob-nav.open { transform:none; }
.mob-close {
  position:absolute;
  top:1.75rem; right:1.75rem;
  font-size:1.8rem;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  line-height:1;
}
.mob-nav ul { display:flex; flex-direction:column; align-items:center; gap:1.5rem; }
.mob-nav a {
  font-family:var(--serif);
  font-size:1.9rem;
  font-weight:600;
  color:#fff;
  transition:color .2s;
}
.mob-nav a:hover { color:var(--gold-lt); }
/* booking button inside the mobile menu — keep it a small button, not the big serif nav size */
.mob-nav a.btn {
  font-family:var(--sans);
  font-size:1rem;
  font-weight:700;
  letter-spacing:.16em;
  padding:1.1rem 3rem;
  margin-top:1rem;
  color:#fff;
}
.mob-nav a.btn:hover { color:#fff; background:var(--olive-dk); }

/* ── REFERENZEN EYEBROW ───────────────────────────── */
.referenzen-eyebrow { color:rgba(200,168,76,.7) !important; }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-tag          { animation:fadeUp .65s .10s both; }
.hero-h1           { animation:fadeUp .80s .22s both; }
.hero-desc         { animation:fadeUp .70s .38s both; }
.hero-btns         { animation:fadeUp .65s .50s both; }
.hero-social-proof { animation:fadeUp .65s .62s both; }
.hero-stats-aside  { animation:fadeUp .80s .38s both; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width:1024px) {
  .styles-layout { grid-template-columns:1fr 1fr; }
  .styles-list-card { grid-column:span 2; }
  .pricing-layout { grid-template-columns:1fr 1fr; }
  .pc-list { grid-column:span 2; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .why-item:nth-child(2) { border-right:none; }
  .why-item:nth-child(3),
  .why-item:nth-child(4) { border-top:1px solid var(--warm-line); }
  .why-item:nth-child(4) { border-right:none; }
  .testi-layout { grid-template-columns:1fr; }
  .testi-gallery { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:900px) {
  .how-step { grid-template-columns:1fr; }
  .how-step:nth-child(even) .how-step-img { order:0; }
  .how-step-img { aspect-ratio:16/9; }
  .contact-layout { grid-template-columns:1fr; }
  .contact-img-wrap { min-height:260px; }
  .hero-stats-aside { display:none; }
}
@media (max-width:768px) {
  .hdr-nav,.nav-book { display:none; }
  .hamburger { display:flex; }
  .styles-layout { grid-template-columns:1fr; }
  .styles-list-card { grid-column:auto; }
  .pricing-layout { grid-template-columns:1fr; }
  .pc-list { grid-column:auto; }
  .why-grid { grid-template-columns:1fr; }
  .why-item { border-right:none; border-bottom:1px solid var(--warm-line); }
  .why-item:nth-child(3),
  .why-item:nth-child(4) { border-top:none; }
  .why-item:last-child { border-bottom:none; }
  .footer-inner { flex-direction:column; text-align:center; }
  .testi-gallery { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:480px) {
  .hours-circles { gap:.4rem; }
  .hc { width:72px; height:72px; }
  .hc-time { font-size:.6rem;
    color:rgba(255,255,255);
  }

  .ladys { flex-direction:column; }
}

/* ═══════════════════════════════════════════════════
   BARBER PAGE — barber.php
   ═══════════════════════════════════════════════════ */

.barber-hero {
  width:100%; min-height:60vh;
  position:relative; display:flex;
  align-items:flex-end; overflow:hidden;
}
.barber-hero-bg { position:absolute; inset:0; }
.barber-hero-bg img {
  width:100%; height:100%; object-fit:cover;
  object-position:center 30%;
  filter:brightness(.42) saturate(.85);
}
.barber-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:
          linear-gradient(to right, rgba(14,12,8,.88) 0%, rgba(14,12,8,.55) 55%, rgba(14,12,8,.08) 100%),
          linear-gradient(to top, rgba(14,12,8,.8) 0%, transparent 50%);
}
.barber-hero-inner {
  position:relative; z-index:1;
  padding:clamp(4rem,8vw,6rem) clamp(1.25rem,4vw,3rem);
  max-width:700px;
}
.barber-hero-inner .hero-tag  { animation:fadeUp .65s .10s both; }
.barber-hero-inner .hero-h1   { animation:fadeUp .80s .22s both; }
.barber-hero-inner .hero-desc { animation:fadeUp .70s .38s both; }
.barber-hero-inner .hero-btns { animation:fadeUp .65s .50s both; }

/* breadcrumb */
.breadcrumb {
  background:var(--cream);
  padding:.85rem clamp(1.25rem,4vw,3rem);
  border-bottom:1px solid var(--warm-line);
}
.breadcrumb-inner {
  max-width:1180px; margin-inline:auto;
  font-family:var(--sans); font-size:.7rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted); display:flex; align-items:center; gap:.6rem;
}
.breadcrumb-inner a { color:var(--muted); transition:color .2s; }
.breadcrumb-inner a:hover { color:var(--gold); }

/* barber intro */
.barber-intro { background:var(--parchment); padding:clamp(3.5rem,7vw,6rem) 0; }
.barber-intro-layout {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center;
}
.barber-intro-text p {
  font-family:var(--fine); font-size:1.05rem;
  color:var(--muted); line-height:1.85; margin-bottom:1.25rem;
}
.barber-intro-img {
  border-radius:16px; overflow:hidden; aspect-ratio:4/3;
  box-shadow:0 26px 56px -16px rgba(40,30,15,.22);
}
.barber-intro-img img { transition:transform .7s; }
.barber-intro-img:hover img { transform:scale(1.04); }

/* tools */
.barber-tools { background:var(--cream); padding:clamp(3.5rem,7vw,6rem) 0; }
.tool-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2rem; margin-top:3rem;
}
.tool-card {
  background:var(--white); border-radius:16px; overflow:hidden;
  box-shadow:0 10px 30px -8px rgba(40,30,15,.12);
  transition:transform .3s, box-shadow .3s;
}
.tool-card:hover { transform:translateY(-5px); box-shadow:0 22px 44px -12px rgba(40,30,15,.20); }
.tool-card-img { height:220px; overflow:hidden; }
.tool-card-img img { transition:transform .6s, filter .4s; filter:saturate(.9); }
.tool-card:hover .tool-card-img img { transform:scale(1.06); filter:saturate(1.1); }
.tool-card-body { padding:1.5rem; }
.tool-card-body h3 {
  font-family:var(--serif); font-size:1.2rem; font-weight:600;
  color:var(--dark); margin-bottom:.6rem;
}
.tool-card-body p {
  font-family:var(--fine); font-size:.97rem;
  color:var(--muted); line-height:1.75;
}

/* bart arten */
.bart-arten { background:var(--olive-dk); padding:clamp(3.5rem,7vw,6rem) 0; }
.bart-arten-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.25rem; margin-top:3rem;
}
.bart-item {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px; padding:1.75rem 1.5rem;
  transition:background .25s;
}
.bart-item:hover { background:rgba(255,255,255,.1); }
.bart-item-num {
  font-family:var(--serif); font-size:2.2rem; font-weight:700;
  color:var(--gold-lt); opacity:.4; line-height:1; margin-bottom:.75rem;
}
.bart-item h3 {
  font-family:var(--serif); font-size:1.15rem; font-weight:600;
  color:var(--cream); margin-bottom:.6rem;
}
.bart-item p {
  font-family:var(--fine); font-size:.97rem;
  color:rgba(240,235,226,.6); line-height:1.75;
}

/* FAQ */
.barber-faq { background:var(--parchment); padding:clamp(3.5rem,7vw,6rem) 0; }
.faq-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:0; border:1px solid var(--warm-line);
  border-radius:16px; overflow:hidden; margin-top:3rem;
}
.faq-item {
  padding:2rem; border-right:1px solid var(--warm-line);
  border-bottom:1px solid var(--warm-line); transition:background .2s;
}
.faq-item:nth-child(2n) { border-right:none; }
.faq-item:nth-last-child(-n+2) { border-bottom:none; }
.faq-item:hover { background:var(--cream); }
.faq-q {
  font-family:var(--serif); font-size:1.05rem; font-weight:600;
  color:var(--dark); margin-bottom:.65rem;
  display:flex; align-items:flex-start; gap:.6rem;
}
.faq-q::before {
  content:'Q'; font-family:var(--sans); font-size:.6rem; font-weight:700;
  letter-spacing:.1em; background:var(--gold); color:#fff;
  padding:.15rem .45rem; border-radius:3px; flex-shrink:0; margin-top:.3rem;
}
.faq-a {
  font-family:var(--fine); font-size:.97rem;
  color:var(--muted); line-height:1.8; padding-left:1.6rem;
}

/* infografik */
.barber-infografik {
  background:var(--cream); padding:clamp(3rem,6vw,5rem) 0;
  border-top:1px solid var(--warm-line);
}
.infografik-wrap {
  max-width:800px; margin-inline:auto;
  border-radius:16px; overflow:hidden;
  box-shadow:0 20px 48px -14px rgba(40,30,15,.16); margin-top:2.5rem;
}

/* barber CTA */
.barber-cta {
  background:var(--dark); padding:clamp(3rem,6vw,5rem) 0; text-align:center;
}
.barber-cta h2 {
  font-family:var(--serif); font-size:clamp(1.8rem,4vw,3rem);
  font-weight:600; color:#fff; margin-bottom:1rem;
}
.barber-cta h2 em { font-style:italic; color:var(--gold-lt); }
.barber-cta p {
  font-family:var(--fine); font-size:1.1rem;
  color:rgba(240,235,226,.65); margin-bottom:2rem;
  max-width:480px; margin-inline:auto;
}
.barber-cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ═══════════════════════════════════════════════════
   JOB PAGE — job.php
   ═══════════════════════════════════════════════════ */

.job-hero {
  width:100%; min-height:55vh;
  position:relative; display:flex;
  align-items:flex-end; overflow:hidden;
}
.job-hero-bg { position:absolute; inset:0; }
.job-hero-bg img {
  width:100%; height:100%; object-fit:cover;
  object-position:center 40%;
  filter:brightness(.42) saturate(.85);
}
.job-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:
          linear-gradient(to right, rgba(14,12,8,.88) 0%, rgba(14,12,8,.55) 55%, rgba(14,12,8,.08) 100%),
          linear-gradient(to top, rgba(14,12,8,.8) 0%, transparent 50%);
}
.job-hero-inner {
  position:relative; z-index:1;
  padding:clamp(4rem,8vw,6rem) clamp(1.25rem,4vw,3rem);
  max-width:700px;
}
.job-hero-inner .hero-tag  { animation:fadeUp .65s .10s both; }
.job-hero-inner .hero-h1   { animation:fadeUp .80s .22s both; }
.job-hero-inner .hero-desc { animation:fadeUp .70s .38s both; }
.job-hero-inner .hero-btns { animation:fadeUp .65s .50s both; }

.job-intro { background:var(--parchment); padding:clamp(3.5rem,7vw,6rem) 0; }
.job-intro-layout {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center;
}
.job-intro-text p {
  font-family:var(--fine); font-size:1.05rem;
  color:var(--muted); line-height:1.85; margin-bottom:1.25rem;
}
.job-intro-img {
  border-radius:16px; overflow:hidden; aspect-ratio:4/3;
  box-shadow:0 26px 56px -16px rgba(40,30,15,.22);
}
.job-intro-img img { transition:transform .7s; }
.job-intro-img:hover img { transform:scale(1.04); }

.job-cards-section { background:var(--cream); padding:clamp(3.5rem,7vw,6rem) 0; }
.job-cards-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:2rem; margin-top:3rem;
}
.job-card {
  background:var(--white); border-radius:18px;
  padding:2.5rem; box-shadow:0 10px 30px -8px rgba(40,30,15,.12);
  display:flex; flex-direction:column; gap:1.25rem;
  border:1px solid var(--warm-line);
  transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.job-card:hover { transform:translateY(-6px); box-shadow:0 22px 44px -12px rgba(40,30,15,.20); }
.job-card-tag {
  display:inline-block;
  font-family:var(--sans); font-size:.6rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  background:var(--gold); color:#fff;
  padding:.22rem .75rem; border-radius:20px; width:fit-content;
}
.job-card h3 {
  font-family:var(--serif); font-size:1.4rem;
  font-weight:600; color:var(--dark); line-height:1.2;
}
.job-card p {
  font-family:var(--fine); font-size:1rem;
  color:var(--muted); line-height:1.8; flex:1;
}
.job-details {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.5rem; margin-top:1rem;
}
.job-detail-box {
  background:var(--parchment); border-radius:18px; padding:1.25rem;
}
.job-detail-box h4 {
  font-family:var(--sans); font-size:.65rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.75rem;
}
.job-detail-box ul { display:flex; flex-direction:column; gap:.45rem; }
.job-detail-box li {
  font-family:var(--fine); font-size:.95rem;
  color:var(--muted); display:flex; align-items:flex-start; gap:.5rem;
}
.job-detail-box li::before {
  content:'✓'; color:var(--gold); font-family:var(--sans);
  font-size:.75rem; flex-shrink:0; margin-top:.15rem;
}

.job-gehalt { background:var(--olive-dk); padding:clamp(3rem,6vw,5rem) 0; }
.gehalt-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; margin-top:3rem;
}
.gehalt-item {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px; padding:2rem; text-align:center;
  transition:background .25s;
}
.gehalt-item:hover { background:rgba(255,255,255,.1); }
.gehalt-num {
  font-family:var(--serif); font-size:2rem; font-weight:700;
  color:var(--gold-lt); line-height:1; margin-bottom:.5rem;
}
.gehalt-label {
  font-family:var(--sans); font-size:.68rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
  color:rgba(240,235,226,.5);
}
.gehalt-desc {
  font-family:var(--fine); font-size:.95rem;
  color:rgba(240,235,226,.55); line-height:1.7; margin-top:.75rem;
}

.job-career { background:var(--parchment); padding:clamp(3.5rem,7vw,6rem) 0; }
.job-career-layout {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center; margin-top:3rem;
}
.job-career-img {
  border-radius:16px; overflow:hidden; aspect-ratio:1;
  box-shadow:0 26px 56px -16px rgba(40,30,15,.22);
}
.job-career-img img { transition:transform .7s; }
.job-career-img:hover img { transform:scale(1.04); }
.job-career-text p {
  font-family:var(--fine); font-size:1.05rem;
  color:var(--muted); line-height:1.85; margin-bottom:1.25rem;
}

.job-apply {
  background:var(--dark); padding:clamp(3rem,6vw,5rem) 0; text-align:center;
}
.job-apply h2 {
  font-family:var(--serif); font-size:clamp(1.8rem,4vw,3rem);
  font-weight:600; color:#fff; margin-bottom:1rem;
}
.job-apply h2 em { font-style:italic; color:var(--gold-lt); }
.job-apply p {
  font-family:var(--fine); font-size:1.1rem;
  color:rgba(240,235,226,.65); margin-bottom:2rem;
  max-width:520px; margin-inline:auto;
}
.apply-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.apply-contact {
  display:flex; gap:3rem; justify-content:center; flex-wrap:wrap;
  margin-top:2.5rem; padding-top:2rem;
  border-top:1px solid rgba(255,255,255,.1);
}
.apply-contact-item { display:flex; flex-direction:column; gap:.3rem; }
.apply-contact-label {
  font-family:var(--sans); font-size:.62rem; font-weight:700;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold-lt);
}
.apply-contact-val {
  font-family:var(--fine); font-size:1.1rem; color:rgba(240,235,226,.85);
}
.apply-contact-val a:hover { color:var(--gold-lt); }

.job-ladys {
  background:var(--olive); padding:2.5rem clamp(1.25rem,4vw,3rem);
  display:flex; align-items:center; justify-content:center;
  gap:2.5rem; flex-wrap:wrap; text-align:center;
}
.job-ladys p {
  font-family:var(--fine); font-size:1.02rem;
  color:rgba(240,235,226,.85); max-width:520px;
}

/*link seo scala*/
.footer-credit {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,235,226,.45);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: flex-end;
}
.footer-credit span {
  font-weight: 400;
  font-size: .65rem;
  color: rgba(240,235,226,.80);
}
.footer-credit a {
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(201,168,76,.35);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-credit a:hover {
  color: #fff;
  border-color: var(--gold-lt);
}

/* ── RESPONSIVE — barber & job pages ─────────────── */
@media (max-width:900px) {
  .barber-intro-layout { grid-template-columns:1fr; }
  .tool-grid { grid-template-columns:1fr 1fr; }
  .bart-arten-grid { grid-template-columns:1fr 1fr; }
  .job-intro-layout { grid-template-columns:1fr; }
  .job-career-layout { grid-template-columns:1fr; }
  .job-cards-grid { grid-template-columns:1fr; }
  .gehalt-grid { grid-template-columns:1fr 1fr; }
  .job-hero-inner,
  .barber-hero-inner {
    padding-top: 8rem;
  }
}
@media (max-width:640px) {
  .tool-grid { grid-template-columns:1fr; }
  .bart-arten-grid { grid-template-columns:1fr; }
  .faq-grid { grid-template-columns:1fr; }
  .faq-item { border-right:none; border-bottom:1px solid var(--warm-line); }
  .faq-item:nth-last-child(-n+2) { border-bottom:1px solid var(--warm-line); }
  .faq-item:last-child { border-bottom:none; }
  .gehalt-grid { grid-template-columns:1fr; }
  .job-details { grid-template-columns:1fr; }
  .apply-contact { gap:1.5rem; }
  .job-ladys { flex-direction:column; }
}

/* ═══════════════════════════════════════════════════
   FORMS — Kontakt (index) & Bewerbung (job)
   ═══════════════════════════════════════════════════ */

/* Contact form sits in the right column of .contact-layout (light panel) */
.contact-form-wrap {
  background:var(--parchment);
  padding:clamp(2rem,4vw,3.25rem);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.form-intro {
  font-family:var(--fine);
  font-size:1.05rem;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:1.6rem;
}

/* Job application form: light card on the dark .job-apply section */
.apply-form-card {
  background:var(--parchment);
  border-radius:18px;
  padding:clamp(1.75rem,4vw,2.75rem);
  box-shadow:0 26px 56px -16px rgba(0,0,0,.35);
  max-width:620px;
  margin:2.5rem auto 0;
  text-align:left;
}

/* Shared form primitives */
.frm { display:flex; flex-direction:column; gap:1.1rem; }
.frm-row { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.frm-field { display:flex; flex-direction:column; gap:.45rem; }
.frm-field label {
  font-family:var(--sans);
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--muted);
}
.frm-field input,
.frm-field textarea,
.frm-field select {
  font-family:var(--fine);
  font-size:1rem;
  color:var(--text);
  background:var(--white);
  border:1px solid rgba(90,80,50,.22);
  border-radius:8px;
  padding:.8rem 1rem;
  width:100%;
  transition:border-color .2s, box-shadow .2s;
}
.frm-field textarea { resize:vertical; min-height:120px; line-height:1.6; }
.frm-field select { cursor:pointer; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23906c2e' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.4rem;
}
.frm-field input:focus,
.frm-field textarea:focus,
.frm-field select:focus {
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(168,137,58,.15);
}
.frm .btn { align-self:flex-start; margin-top:.3rem; }
.frm[aria-busy="true"] .btn { opacity:.6; pointer-events:none; }

/* Honeypot — visually hidden, off-screen */
.frm-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* Status message */
.frm-status { font-family:var(--sans); font-size:.82rem; letter-spacing:.02em; margin:0; min-height:1.2em; }
.frm-status.ok  { color:#3c7a3c; }
.frm-status.err { color:#b3402e; }

@media (max-width:560px) {
  .frm-row { grid-template-columns:1fr; }
}
/* ── MOTION PREFERENCES ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .strip-track { animation:none !important; }
}
