/* =====================================================================
   MAHANA MARKETING – Stylesheet
   Markenfarben & Typografie laut Marken-Board von Julie Fornara
   ===================================================================== */

/* --- Lokal eingebundene Schriften (SIL OFL, keine Google-Verbindung) --- */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 300; font-display: swap; src: url("assets/fonts/montserrat-300.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/montserrat-400.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/montserrat-500.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/montserrat-600.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/playfair-400.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/playfair-500.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/playfair-600.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/playfair-400-italic.woff2") format("woff2"); }

:root {
  /* --- Markenfarben --- */
  --off-white: #F7F5F2;
  --sand:      #E8E1D9;
  --sage:      #A3B18A;   /* Salbeigrün */
  --forest:    #344E41;   /* Tannengrün */
  --gold:      #C9A66B;

  /* --- Abgeleitete Töne --- */
  --ink:        #2B2621;  /* warmes Dunkelbraun für Fließtext */
  --ink-soft:   #6B655D;
  --sand-line:  #DDD4C9;
  --forest-deep:#2A3F34;

  /* --- Typografie --- */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* --- Layout --- */
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -24px rgba(52, 78, 65, 0.28);
  --shadow-sm: 0 8px 24px -16px rgba(52, 78, 65, 0.30);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* =====================================================================
   RESET & BASIS
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.12; color: var(--forest); letter-spacing: .01em; }

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.32rem; letter-spacing: .015em; }

::selection { background: var(--sage); color: #fff; }

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

.eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: .95rem 1.9rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.3rem; font-size: .88rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--forest); color: var(--off-white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-deep); color: #fff; }

.btn-ghost { background: transparent; color: var(--forest); border-color: var(--sand-line); }
.btn-ghost:hover { border-color: var(--forest); background: var(--sand); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8945a; color: #fff; }

.btn-outline-light { background: transparent; color: var(--off-white); border-color: rgba(247,245,242,.5); }
.btn-outline-light:hover { border-color: var(--off-white); background: rgba(247,245,242,.1); }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,245,242,.9);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 var(--sand-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Wortmarke: MARKETING zentriert unter MAHANA.
   text-indent gleicht den rechten Endabstand des letter-spacing aus,
   damit der sichtbare Text in jeder Zeile mittig sitzt. */
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-word {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .34em;
  text-indent: .34em;
  color: var(--forest);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .45rem;
}
.brand-word.light { color: var(--off-white); }
.brand-sub.light { color: var(--gold); }

.nav-list { list-style: none; display: flex; align-items: center; gap: 2.2rem; padding: 0; }
.nav-list a { font-size: .92rem; letter-spacing: .04em; color: var(--ink); font-weight: 500; }
.nav-list a:not(.btn):hover { color: var(--gold); }
.nav-cta a { color: var(--off-white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--forest); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.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); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(8rem, 16vh, 12rem) 0 clamp(4rem, 8vh, 7rem);
  overflow: hidden;
}
.hero-decor {
  position: absolute; top: 0; right: -2%; height: 100%; color: var(--sage);
  opacity: .28; pointer-events: none;
}
.hero-decor svg { height: 100%; width: auto; }

.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; position: relative; z-index: 2;
}
.hero h1 { margin: .3rem 0 1.5rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero-note { font-size: .82rem; letter-spacing: .05em; color: var(--ink-soft); }

/* Portrait */
.portrait-frame {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-tall { aspect-ratio: 3 / 4; }

.portrait-placeholder {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem; text-align: center;
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 14px, #ded5c9 14px, #ded5c9 28px);
  color: var(--forest);
}
.portrait-frame.is-placeholder .portrait-placeholder { display: flex; }
.portrait-placeholder span { font-family: var(--font-head); font-size: 1.3rem; }
.portrait-placeholder small { font-size: .72rem; letter-spacing: .08em; color: var(--ink-soft); background: rgba(247,245,242,.8); padding: .2rem .6rem; border-radius: 6px; }

/* =====================================================================
   STATEMENT
   ===================================================================== */
.statement { padding: clamp(3rem, 7vh, 5.5rem) 0; }
.statement-text {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  color: var(--forest);
  max-width: 20ch;
  margin-inline: auto;
  text-align: center;
}
.statement-text em { font-style: italic; color: var(--gold); }

/* =====================================================================
   SECTIONS ALLGEMEIN
   ===================================================================== */
.section { padding: clamp(4rem, 9vh, 7rem) 0; }
.section-alt { background: var(--sand); }
.section-head { max-width: 620px; margin-bottom: 3.2rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; }

/* =====================================================================
   LEISTUNGEN – CARDS
   ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--off-white); color: var(--forest);
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { background: var(--sage); color: #fff; }
.card h3 { margin-bottom: .6rem; color: var(--forest); }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* =====================================================================
   ABLAUF – STEPS
   ===================================================================== */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step-num {
  font-family: var(--font-head); font-size: 2.6rem; color: var(--gold);
  display: block; margin-bottom: .6rem; line-height: 1;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }
.step::before {
  content: ""; position: absolute; top: 1.9rem; left: 3.4rem; right: -1.6rem; height: 1px;
  background: var(--sand-line);
}
.step:last-child::before { display: none; }

/* =====================================================================
   REFERENZEN
   ===================================================================== */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ref-card {
  background: var(--off-white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ref-tag {
  align-self: flex-start;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); background: var(--sage);
  padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1.2rem;
  font-weight: 600;
}
.ref-card h3 { color: var(--forest); margin-bottom: .7rem; }
.ref-card p { color: var(--ink-soft); font-size: .93rem; }

/* Zwei-Karten-Variante (aktuell) – zentriert, nicht über volle Breite */
.ref-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; margin-inline: auto; }

/* Branchen-Leiste */
.ref-branchen { text-align: center; margin-top: 3.4rem; }
.branchen-label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.branchen-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1rem; }
.branchen-list li {
  font-family: var(--font-head); font-size: 1.05rem; color: var(--forest);
  padding: .5rem 1.4rem; border: 1px solid var(--sand-line); border-radius: 100px;
  background: #fff;
}
.ref-note { text-align: center; margin-top: 2.6rem; color: var(--ink-soft); font-size: .98rem; }
.ref-note a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.ref-note a:hover { color: var(--gold); }

/* Kundenstimme (Testimonial) */
.testimonial {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.8rem, 5vw, 4rem) clamp(2.2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.quote-mark {
  position: absolute; top: -.35em; left: clamp(1rem, 4vw, 2.4rem);
  font-family: var(--font-head); font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1; color: var(--sage); opacity: .5; pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.5; color: var(--forest);
  margin: 0 0 2rem; position: relative; z-index: 1;
}
.testimonial figcaption { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.testimonial-logos { display: flex; align-items: center; justify-content: center; gap: 1.6rem; flex-wrap: wrap; }
.testimonial-logos img { height: 62px; width: auto; object-fit: contain; }
.logo-divider { width: 1px; height: 44px; background: var(--sand-line); }
.testimonial-author { line-height: 1.4; }
.testimonial-author strong { display: block; color: var(--ink); font-weight: 600; letter-spacing: .02em; }
.testimonial-author span { font-size: .88rem; color: var(--ink-soft); }

.ref-scope { text-align: center; max-width: 640px; margin: 2rem auto 0; color: var(--ink-soft); font-size: 1rem; }
.ref-scope strong { color: var(--forest); font-weight: 600; }

/* =====================================================================
   ÜBER MICH
   ===================================================================== */
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-text h2 { margin-bottom: 1.3rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about-list li { position: relative; padding-left: 1.9rem; margin-bottom: .8rem; color: var(--ink); }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
}

/* =====================================================================
   CTA BAND (dunkel)
   ===================================================================== */
.cta-band {
  background: var(--forest);
  color: var(--off-white);
  padding: clamp(4rem, 9vh, 6.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -10%, rgba(163,177,138,.28), transparent 45%);
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--off-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(247,245,242,.8); max-width: 46ch; margin: 0 auto 2.2rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =====================================================================
   KONTAKT
   ===================================================================== */
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-details { list-style: none; padding: 0; margin-top: 2.4rem; }
.contact-details li { margin-bottom: 1.5rem; }
.contact-label { display: block; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .25rem; }
.contact-details a:hover { color: var(--gold); }

.contact-form {
  background: #fff; border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.3rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field label { font-size: .82rem; letter-spacing: .06em; font-weight: 500; margin-bottom: .5rem; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid var(--sand-line); border-radius: 10px;
  padding: .85rem 1rem; transition: border-color .25s var(--ease), background .25s var(--ease);
  width: 100%; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: #fff;
  box-shadow: 0 0 0 4px rgba(163,177,138,.18);
}
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .84rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.5; cursor: pointer; }
.consent input { margin-top: .25rem; accent-color: var(--forest); width: 16px; height: 16px; flex-shrink: 0; }
.consent a { color: var(--forest); text-decoration: underline; }
.form-hint { font-size: .78rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--forest-deep); color: rgba(247,245,242,.85); padding: clamp(3rem, 6vh, 4.5rem) 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand p { font-size: .9rem; color: rgba(247,245,242,.6); margin-top: 1rem; max-width: 28ch; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a { font-size: .92rem; color: rgba(247,245,242,.8); }
.footer-nav a:hover { color: var(--gold); }
.footer-meta { font-size: .88rem; color: rgba(247,245,242,.6); }
.footer-meta p { margin-bottom: .4rem; }
.footer-meta a:hover { color: var(--gold); }
.footer-inner + * { margin-top: 2rem; }

/* =====================================================================
   WHATSAPP FAB
   ===================================================================== */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   SCROLL-FORTSCHRITT (feine Linie oben)
   ===================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  z-index: 200; will-change: width;
}

/* =====================================================================
   LAUFBAND (Kompetenzen)
   ===================================================================== */
.marquee {
  overflow: hidden;
  background: var(--off-white);
  border-top: 1px solid var(--sand-line);
  border-bottom: 1px solid var(--sand-line);
  padding: 1.7rem 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 1.7rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--forest); white-space: nowrap;
}
.marquee i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   HERO-ZWEIG: zeichnet sich selbst
   ===================================================================== */
.hero-branch path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.6s var(--ease) forwards; }
.hero-branch > path { animation-delay: .25s; }
.hero-branch g path:nth-child(1) { animation-delay: .9s; }
.hero-branch g path:nth-child(2) { animation-delay: 1.05s; }
.hero-branch g path:nth-child(3) { animation-delay: 1.2s; }
.hero-branch g path:nth-child(4) { animation-delay: 1.35s; }
.hero-branch g path:nth-child(5) { animation-delay: 1.5s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-decor { will-change: transform; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .cards, .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 380px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 400px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav .nav-list {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--off-white); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.8rem; padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.25);
  }
  .nav .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .cards, .ref-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-decor { opacity: .12; height: 260px; top: 5rem; right: -20px; left: auto; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .ref-card:hover, .whatsapp-fab:hover { transform: none; }
  .marquee-track { animation: none; }
  .hero-branch path { animation: none; stroke-dashoffset: 0; }
  .hero-decor { transform: none !important; }
}
