/* ============================================================
   ALBA REAL ESTATE – Stylesheet
   Palette abgeleitet aus dem Logo: Taupe · Stein · Anthrazit
   Modern · editorial · reduziert
   ============================================================ */

:root {
  /* Farben – aus dem Logo */
  --ink:        #33302B;  /* Anthrazit („alba") */
  --ink-80:     #4A453E;
  --stone-700:  #655C51;  /* dunkles Taupe (Gebäude) */
  --stone-500:  #837A6E;  /* mittleres Taupe */
  --stone-400:  #9E9589;  /* helles Taupe */
  --greige:     #B8AFA4;
  --sand:       #EFEBE4;  /* warmer heller Hintergrund */
  --sand-2:     #E7E1D7;
  --cream:      #FAF8F4;  /* Karten / helle Flächen */
  --line:       #DDD5C9;  /* Trennlinien */
  --line-dark:  rgba(250,247,243,0.16);
  --white:      #ffffff;

  /* Typo */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Maße */
  --container: 1240px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 30px 70px -32px rgba(51, 48, 43, 0.45);
  --shadow-sm: 0 12px 34px -18px rgba(51, 48, 43, 0.32);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.45rem; font-weight: 500; }

.side-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--stone-500);
}

.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head .side-label { display: block; margin-bottom: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.96rem;
  padding: 1em 1.9em; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--stone-700); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border-color: rgba(51,48,43,0.28); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  padding: 12px 0; background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; position: relative; }
.brand-logo { height: 40px; width: auto; transition: opacity 0.35s var(--ease); }
.brand-logo--dark { position: absolute; left: 0; top: 0; opacity: 0; }
.site-header.scrolled .brand-logo--light { opacity: 0; }
.site-header.scrolled .brand-logo--dark { opacity: 1; }

.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav a { font-weight: 500; font-size: 0.98rem; color: var(--cream); transition: color 0.25s, opacity 0.25s; position: relative; opacity: 0.9; }
.site-header.scrolled .main-nav a { color: var(--ink-80); }
.main-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: currentColor; transition: width 0.28s var(--ease); }
.main-nav a:not(.nav-cta):hover { opacity: 1; }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { border: 1.5px solid rgba(250,247,243,0.5); padding: 0.55em 1.3em; border-radius: 100px; transition: background 0.25s, color 0.25s, border-color 0.25s; }
.nav-cta:hover { background: var(--cream); color: var(--ink) !important; border-color: var(--cream); }
.site-header.scrolled .nav-cta { border-color: var(--ink); color: var(--ink) !important; }
.site-header.scrolled .nav-cta:hover { background: var(--ink); color: var(--cream) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.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; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/hero.jpg');
  background-size: cover; background-position: center; transform: scale(1.04);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,22,0.80) 0%, rgba(28,25,22,0.66) 45%, rgba(28,25,22,0.88) 100%),
    linear-gradient(105deg, rgba(28,25,22,0.80) 0%, rgba(28,25,22,0.30) 74%);
}
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding: 150px 0 60px; }
.hero-content { max-width: 820px; color: var(--cream); text-shadow: 0 2px 24px rgba(20, 18, 16, 0.45); }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem; font-weight: 600; color: rgba(250,247,243,0.85); margin-bottom: 1.8rem; }
.hero-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.9rem, 8vw, 6rem); line-height: 1.0; letter-spacing: -0.03em; color: var(--cream); margin-bottom: 1.8rem; }
.hero-title em { font-style: italic; font-weight: 300; color: var(--greige); }
.hero-lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(250,247,243,0.9); max-width: 620px; margin-bottom: 2.6rem; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions .btn { text-shadow: none; }
.hero-actions .btn-primary { background: var(--cream); color: var(--ink); }
.hero-actions .btn-primary:hover { background: var(--white); color: var(--ink); }
.hero-actions .btn-line { color: var(--cream); border-color: rgba(250,247,243,0.6); }
.hero-actions .btn-line:hover { background: rgba(250,247,243,0.12); border-color: var(--cream); }

.hero-meta { position: relative; z-index: 2; border-top: 1px solid rgba(250,247,243,0.18); padding: 22px 0; }
.hero-meta-inner { display: flex; align-items: center; gap: clamp(1rem, 4vw, 3rem); flex-wrap: wrap; }
.hero-meta-item { color: rgba(250,247,243,0.72); font-size: 0.85rem; letter-spacing: 0.05em; transition: color 0.25s; }
.hero-meta-item:hover { color: var(--cream); }
.hero-scroll { margin-left: auto; color: rgba(250,247,243,0.6); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================================
   STATEMENT / PHILOSOPHIE
   ============================================================ */
.statement { background: var(--sand); }
.statement-grid { display: grid; grid-template-columns: 160px 1fr; gap: clamp(1.5rem, 5vw, 4rem); }
.statement-grid .side-label { padding-top: 0.7rem; }
.statement-text { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.28; letter-spacing: -0.02em; color: var(--ink); }
.statement-text em { color: var(--stone-500); font-style: normal; }
.statement-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.statement-cols p { color: var(--ink-80); font-size: 1rem; }

/* ============================================================
   LEISTUNGEN – editoriale nummerierte Liste
   ============================================================ */
.leistungen { background: var(--cream); }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0; border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}
.service-row:hover { background: var(--sand); padding-left: 24px; padding-right: 24px; }
.service-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--stone-400); }
.service-main { display: grid; grid-template-columns: minmax(180px, 260px) 1fr; gap: clamp(1rem, 4vw, 3rem); align-items: baseline; }
.service-main h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; letter-spacing: -0.02em; transition: color 0.3s; }
.service-main p { color: var(--stone-500); font-size: 1rem; max-width: 520px; }
.service-arrow { color: var(--stone-400); transition: transform 0.35s var(--ease), color 0.35s; }
.service-row:hover .service-arrow { color: var(--ink); transform: translate(6px, 0); }
.service-row:hover .service-num { color: var(--stone-700); }

/* ============================================================
   WARUM ALBA
   ============================================================ */
.why { background: var(--sand-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.why-image {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(51,48,43,0.05), rgba(101,92,81,0.14)),
    url('../assets/img/interieur.jpg');
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.why-text .side-label { display: block; margin-bottom: 1.1rem; }
.why-text h2 { margin-bottom: 1.1rem; }
.why-lead { color: var(--ink-80); font-size: 1.12rem; margin-bottom: 1.8rem; }
.check-list { display: grid; gap: 0.8rem; margin-bottom: 2.6rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--ink-80); }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 12px;
  border: 1.5px solid var(--stone-500); border-radius: 50%;
}
.check-list li::after {
  content: ''; position: absolute; left: 4px; top: 13px; width: 4px; height: 4px;
  background: var(--stone-700); border-radius: 50%;
}
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 2.8rem); padding-top: 1.8rem; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 2.8rem); font-weight: 500; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.85rem; color: var(--stone-500); margin-top: 0.5rem; max-width: 130px; }

/* ============================================================
   ABLAUF
   ============================================================ */
.ablauf { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { position: relative; padding: 2.2rem clamp(1rem, 2vw, 1.6rem) 0 0; border-top: 2px solid var(--ink); }
.step + .step { padding-left: clamp(1rem, 2vw, 1.6rem); }
.step-num { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--stone-400); display: block; margin-bottom: 1.4rem; }
.step h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 0.6rem; }
.step p { color: var(--stone-500); font-size: 0.96rem; }

/* ============================================================
   HAUSVERWALTUNG GESUCHT
   ============================================================ */
.verwaltung { background: var(--sand-2); }
.verwaltung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.verwaltung-text .side-label { display: block; margin-bottom: 1.1rem; }
.verwaltung-text h2 { margin-bottom: 1.1rem; }
.verwaltung-lead { color: var(--ink-80); font-size: 1.08rem; margin-bottom: 1.6rem; }

/* ============================================================
   REGIONEN
   ============================================================ */
.regionen { background: var(--ink); color: var(--sand); }
.regionen .side-label { color: var(--stone-400); }
.regionen h2 { color: var(--cream); }
.region-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.region-head .side-label { display: block; margin-bottom: 1.1rem; }
.region-head h2 { margin-bottom: 1.3rem; }
.region-intro { color: rgba(239,235,228,0.75); font-size: 1.1rem; }
.region-intro strong { color: var(--greige); font-weight: 600; }
.region-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.region-cards--two { grid-template-columns: repeat(2, 1fr); }
.region-card { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 2.2rem 1.9rem; transition: background 0.35s var(--ease), transform 0.35s var(--ease); }
.region-card:hover { background: rgba(250,247,243,0.05); transform: translateY(-6px); }
.region-index { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--stone-400); display: block; margin-bottom: 1.4rem; letter-spacing: -0.02em; }
.region-card h3 { color: var(--cream); font-weight: 500; margin-bottom: 0.4rem; }
.region-card p { color: rgba(239,235,228,0.6); font-size: 0.92rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info .side-label { display: block; margin-bottom: 1.1rem; }
.contact-info h2 { margin-bottom: 1.1rem; }
.contact-intro { color: var(--ink-80); font-size: 1.08rem; margin-bottom: 2.4rem; max-width: 420px; }
.contact-list { display: grid; gap: 1.5rem; }
.contact-list li { display: grid; grid-template-columns: 90px 1fr; gap: 1.2rem; align-items: start; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; }
.ci-label { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 600; color: var(--stone-500); padding-top: 3px; }
.contact-list a:hover { color: var(--stone-700); }

.contact-form-wrap { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.9rem, 4vw, 2.8rem); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-field { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.form-field label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--stone-500); margin-bottom: 0.6rem; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: transparent; border: none; border-bottom: 1.5px solid var(--line);
  padding: 0.5em 0; transition: border-color 0.25s; width: 100%;
}
.form-field select { cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--ink); }
.form-field input.invalid, .form-field textarea.invalid { border-color: #b0553f; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.84rem; color: var(--stone-500); margin-bottom: 1.6rem; cursor: pointer; }
.form-consent input { margin-top: 3px; accent-color: var(--ink); width: 16px; height: 16px; flex-shrink: 0; }
.form-consent a { color: var(--ink); text-decoration: underline; }
.form-status { margin-top: 1rem; font-size: 0.9rem; font-weight: 500; text-align: center; min-height: 1.2em; }
.form-status.success { color: #4f7a4a; }
.form-status.error { color: #b0553f; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(239,235,228,0.75); padding-top: clamp(56px, 8vw, 88px); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.2rem; }
.footer-logo { height: 44px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.95rem; color: rgba(239,235,228,0.6); }
.footer-nav-label { display: block; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; font-weight: 600; color: var(--stone-400); margin-bottom: 1.2rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { color: rgba(239,235,228,0.8); transition: color 0.25s; width: fit-content; }
.footer-nav a:hover { color: var(--cream); }
.footer-contact p { font-size: 0.95rem; margin-bottom: 0.8rem; color: rgba(239,235,228,0.7); line-height: 1.7; }
.footer-contact a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.6rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.84rem; color: rgba(239,235,228,0.55); }
.legal-nav { display: flex; gap: 1.6rem; }
.legal-nav a:hover { color: var(--cream); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.service-row.reveal:nth-child(2) { transition-delay: 0.06s; }
.service-row.reveal:nth-child(3) { transition-delay: 0.12s; }
.service-row.reveal:nth-child(4) { transition-delay: 0.18s; }
.region-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.region-card.reveal:nth-child(3) { transition-delay: 0.16s; }

/* ============================================================
   UNTERSEITEN (Impressum / Datenschutz)
   ============================================================ */
/* Header immer im hellen „scrolled"-Zustand auf Unterseiten */
body.subpage .site-header { background: rgba(250, 248, 244, 0.9); backdrop-filter: saturate(180%) blur(16px); box-shadow: 0 1px 0 var(--line); padding: 14px 0; }
body.subpage .brand-logo--light { opacity: 0; }
body.subpage .brand-logo--dark { opacity: 1; }
body.subpage .main-nav a { color: var(--ink-80); }
body.subpage .nav-cta { border-color: var(--ink); color: var(--ink) !important; }
body.subpage .nav-cta:hover { background: var(--ink); color: var(--cream) !important; }
body.subpage .nav-toggle span { background: var(--ink); }

.legal-hero { padding: clamp(130px, 16vw, 180px) 0 clamp(32px, 5vw, 56px); background: var(--sand); border-bottom: 1px solid var(--line); }
.legal-hero .side-label { display: block; margin-bottom: 1.1rem; }
.legal-hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
.legal-hero p { color: var(--stone-500); margin-top: 0.8rem; font-size: 0.95rem; }

.legal { background: var(--cream); }
.legal-content { max-width: 780px; }
.legal-block { padding: clamp(1.6rem, 3vw, 2.2rem) 0; border-bottom: 1px solid var(--line); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 500; margin-bottom: 1rem; }
.legal-block h3 { font-size: 1.1rem; font-weight: 600; margin: 1.4rem 0 0.5rem; }
.legal-block p { color: var(--ink-80); margin-bottom: 0.9rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--stone-700); text-decoration: underline; }
.legal-block ul { margin: 0 0 0.9rem; padding-left: 1.2rem; list-style: disc; color: var(--ink-80); }
.legal-block li { margin-bottom: 0.4rem; }
.legal-block strong { color: var(--ink); }
.legal-note { background: var(--sand-2); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-size: 0.88rem; color: var(--stone-700); border: 1px dashed var(--stone-400); }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.4rem; font-weight: 600; color: var(--ink); }
.legal-back:hover { color: var(--stone-700); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .statement-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid, .contact-grid, .verwaltung-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .region-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--cream); padding: 3rem 2.6rem; transform: translateX(100%);
    transition: transform 0.42s var(--ease); box-shadow: -30px 0 70px -24px rgba(51,48,43,0.4);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.2rem; color: var(--ink) !important; }
  .nav-cta { border-color: var(--ink) !important; }
  body.nav-open { overflow: hidden; }

  .service-row { grid-template-columns: 44px 1fr auto; gap: 1rem; }
  .service-main { grid-template-columns: 1fr; gap: 0.5rem; }
  .statement-cols { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-scroll { display: none; }
  .service-arrow { display: none; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
