/* ============================================================
   SJ-Gutachten — Premium redesign
   Type: Newsreader (display serif), Hanken Grotesk (UI/body),
         Geist Mono (technical labels)
   ============================================================ */

:root {
  /* neutrals — faint cool, harmonized with the brand blue */
  --bg:        oklch(0.985 0.004 245);
  --bg-2:      oklch(0.965 0.006 245);
  --bg-3:      oklch(0.945 0.008 245);
  --ink:       oklch(0.215 0.022 255);
  --ink-deep:  oklch(0.165 0.020 258);
  --ink-deeper:oklch(0.135 0.018 260);
  --muted:     oklch(0.505 0.018 255);
  --muted-2:   oklch(0.62 0.014 255);
  --line:      oklch(0.905 0.006 250);
  --line-2:    oklch(0.86 0.008 250);

  /* single disciplined accent — the brand azure, elevated */
  --accent:        oklch(0.585 0.135 248);
  --accent-strong: oklch(0.515 0.140 250);
  --accent-soft:   oklch(0.945 0.030 245);
  --accent-on-dark:oklch(0.70 0.125 244);

  --on-dark:        oklch(0.965 0.006 245);
  --on-dark-muted:  oklch(0.74 0.012 250);
  --on-dark-line:   oklch(1 0 0 / 0.12);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20,28,45,.06), 0 1px 1px rgba(20,28,45,.04);
  --shadow:    0 12px 30px -12px rgba(20,28,45,.18), 0 4px 10px -6px rgba(20,28,45,.10);
  --shadow-lg: 0 30px 60px -22px rgba(20,28,45,.30), 0 10px 22px -14px rgba(20,28,45,.14);
  --shadow-accent: 0 16px 34px -14px oklch(0.585 0.135 248 / 0.55);

  --ease: cubic-bezier(.22,.68,.18,1);
  --container: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);

  --font-serif: "Newsreader", Georgia, serif;
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.003em;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/* long German compound words: wrap gracefully, never overflow */
.lede, p, .why-item p, .step p, .service-card p { hyphens: auto; }
.display, .section-title { overflow-wrap: break-word; }
.hero-copy, .split > *, .about-body, .section-head, .service-card, .step, .tcard { min-width: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; font-weight: 500; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section--tint { background: var(--bg-2); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 1.7em; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.is-centered { justify-content: center; }

.display {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
}
.display em { font-style: italic; color: var(--accent-strong); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 3.9vw, 3.1rem);
}
.section-title em { font-style: italic; color: var(--accent-strong); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  line-height: 1.62;
  max-width: 56ch;
}

.section-head { max-width: 62ch; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head .lede { margin-top: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  --bg-btn: var(--ink);
  --fg-btn: var(--on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: var(--bg-btn);
  color: var(--fg-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--accent { --bg-btn: var(--accent); --fg-btn: #fff; box-shadow: var(--shadow-accent); }
.btn--accent:hover { background: var(--accent-strong); transform: translateY(-2px); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  --bg-btn: transparent; --fg-btn: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--on-dark-ghost {
  --bg-btn: transparent; --fg-btn: var(--on-dark);
  border-color: var(--on-dark-line);
}
.btn--on-dark-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: oklch(0.985 0.004 245 / 0.82);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--ink-deep);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 30% 0%, oklch(0.70 0.125 244 / .55), transparent 60%);
}
.brand-mark span { position: relative; z-index: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; color: var(--ink);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2);
}

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  padding: 0.5rem 0.72rem; border-radius: 999px; white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--bg-3); }

.header-cta { display: flex; align-items: center; gap: 0.7rem; }
.header-phone {
  display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
}
.header-phone span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.header-phone strong { font-size: 1.02rem; font-weight: 700; color: var(--ink); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
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); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 76px 0 0 0;
  background: oklch(0.985 0.004 245 / 0.97);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  z-index: 90;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  padding: 1.5rem var(--pad-x) 2.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  overflow-y: auto;
}
body.nav-open .mobile-nav { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a.m-link {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500;
  padding: 0.7rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.m-link span { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted-2); }
.mobile-nav .btn { margin-top: 1.4rem; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: 132px; padding-bottom: clamp(2rem, 4vw, 4rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(58% 50% at 90% -6%, oklch(0.585 0.135 248 / 0.12), transparent 70%),
    radial-gradient(46% 42% at -4% 28%, oklch(0.585 0.135 248 / 0.06), transparent 72%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(oklch(0.45 0.06 250 / 0.10) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(175deg, #000 0%, transparent 62%);
  mask-image: linear-gradient(175deg, #000 0%, transparent 62%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid oklch(0.585 0.135 248 / 0.18);
}
.hero-kicker b { color: var(--accent-strong); font-weight: 700; }
.hero h1 { margin-top: 1.5rem; }
.hero .lede { margin-top: 1.5rem; max-width: 50ch; }
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-trust {
  margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.8rem 2.4rem;
}
.trust-item { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-item b { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; line-height: 1; color: var(--ink); }
.trust-item span { font-size: 0.82rem; color: var(--muted); }
.trust-item .stars { color: var(--accent); letter-spacing: 0.1em; font-size: 1.05rem; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.165 0.020 258 / 0.55));
}
.hero-badge {
  position: absolute; left: -22px; bottom: 30px; z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.9rem;
  max-width: 270px;
}
.hero-badge .dot {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
}
.hero-badge .dot svg { width: 22px; height: 22px; }
.hero-badge b { display: block; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.hero-badge span { font-size: 0.8rem; color: var(--muted); }
.hero-float-top {
  position: absolute; right: -14px; top: 26px; z-index: 2;
  background: var(--ink-deep); color: var(--on-dark);
  border-radius: var(--radius); padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.7rem;
}
.hero-float-top .stars { color: var(--accent-on-dark); }
.hero-float-top b { font-size: 0.95rem; }
.hero-float-top span { font-size: 0.74rem; color: var(--on-dark-muted); display: block; }

/* ---------- logo / trust strip ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 1.4rem;
}
.marquee-inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1rem 2.6rem;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
}
.marquee-item svg { width: 1.15rem; height: 1.15rem; color: var(--accent); flex: none; }
.marquee-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }

/* ---------- services ---------- */
.services-grid {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  counter-reset: svc;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem 1.7rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
  counter-increment: svc;
}
.service-card::after {
  content: counter(svc, decimal-leading-zero);
  position: absolute; top: 1rem; right: 1.4rem; z-index: 0;
  font-family: var(--font-serif); font-weight: 500; font-size: 3.1rem; line-height: 1;
  color: var(--bg-3); transition: color .45s var(--ease); pointer-events: none;
}
.service-card:hover::after { color: var(--accent-soft); }
.service-card > * { position: relative; z-index: 1; }
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--accent); transition: width .45s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--muted-2);
}
.service-ico {
  width: 52px; height: 52px; border-radius: 14px; margin-top: 0.9rem;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.service-ico svg { width: 26px; height: 26px; }
.service-card:hover .service-ico { background: var(--accent); color: #fff; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.32rem; margin-top: 1.2rem; letter-spacing: -0.01em; }
.service-card p { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

/* ---------- split / why ---------- */
.split {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split-media { order: -1; }
.split-media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; background: var(--bg-3);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--line);
}
.why-item:last-child { border-bottom: 0; padding-bottom: 0; }
.why-ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--ink); color: #fff; display: grid; place-items: center;
}
.why-ico svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 1.1rem; font-weight: 700; font-family: var(--font-sans); }
.why-item p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- process ---------- */
.process { background: var(--ink-deep); color: var(--on-dark); }
.process .section-title, .process .display { color: var(--on-dark); }
.process .lede { color: var(--on-dark-muted); }
.process .eyebrow { color: var(--accent-on-dark); }
.steps {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.step {
  position: relative;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  background: oklch(1 0 0 / 0.02);
}
.step-num {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 500;
  color: var(--accent-on-dark); line-height: 1;
}
.step h3 { margin-top: 1rem; font-size: 1.12rem; font-weight: 700; font-family: var(--font-sans); color: var(--on-dark); }
.step p { margin: 0.5rem 0 0; color: var(--on-dark-muted); font-size: 0.92rem; line-height: 1.55; }
.step-line {
  position: absolute; top: 2.4rem; right: -0.55rem; width: 1.1rem; height: 1px;
  background: var(--on-dark-line);
}

/* ---------- video ---------- */
.video-section { background: var(--ink-deep); color: var(--on-dark); position: relative; overflow: hidden; }
.video-section::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  left: -200px; bottom: -260px;
  background: radial-gradient(circle, oklch(0.585 0.135 248 / 0.28), transparent 65%);
}
.video-split { position: relative; z-index: 1; align-items: center; }
.video-section .section-title, .video-section .display { color: var(--on-dark); }
.video-section .lede { color: var(--on-dark-muted); margin-top: 1.3rem; }
.video-section .eyebrow { color: var(--accent-on-dark); }
.video-points { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.video-points span { display: flex; align-items: center; gap: 0.65rem; font-size: 0.98rem; color: var(--on-dark); font-weight: 500; }
.video-points svg { width: 1.25rem; height: 1.25rem; color: var(--accent-on-dark); flex: none; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--on-dark-line); background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- damage gallery ---------- */
.gallery-grid {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
}
.gcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--bg-3); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gcard:nth-child(1), .gcard:nth-child(6) { grid-column: span 2; aspect-ratio: 16 / 10; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gcard:hover img { transform: scale(1.06); }
.gcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.165 0.02 258 / 0) 35%, oklch(0.135 0.018 260 / 0.85));
}
.gcard-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.1rem 1.2rem; color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 0.5rem;
}
.gcard-meta .label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.85 0.01 250); }
.gcard-meta .cost { font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 600; line-height: 1; }
.gcard-meta .cost small { font-size: 0.6em; opacity: 0.8; }
.gallery-note { margin-top: 1.4rem; font-size: 0.88rem; color: var(--muted); text-align: center; }

/* ---------- about / founder ---------- */
.about { background: var(--bg-2); }
.about-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow);
}
.about-photo { position: relative; background: var(--bg-3); height: 100%; min-height: 480px; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-body { padding: clamp(2rem, 3.5vw, 3.4rem) clamp(1.8rem, 3vw, 3rem) clamp(2rem, 3.5vw, 3.4rem) 0; }
.about-body .eyebrow { margin-bottom: 1rem; }
.about-sign {
  font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--ink);
  margin-top: 1.5rem;
}
.about-meta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-strong);
  border: 1px solid oklch(0.585 0.135 248 / 0.16);
}
.about-contact {
  margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem;
}
.about-contact .row { display: flex; gap: 0.7rem; align-items: flex-start; }
.about-contact svg { width: 1.2rem; height: 1.2rem; color: var(--accent-strong); flex: none; margin-top: 0.15rem; }
.about-contact .k { display: block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.15rem; }
.about-contact .v { display: block; font-size: 0.95rem; font-weight: 500; color: var(--ink); }

/* ---------- testimonials ---------- */
.tcards { margin-top: clamp(2.5rem, 4vw, 3.5rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.tcard .stars { color: var(--accent); letter-spacing: 0.12em; font-size: 1.05rem; }
.tcard blockquote {
  margin: 0; font-family: var(--font-serif); font-size: 1.14rem; line-height: 1.5; color: var(--ink);
  letter-spacing: -0.01em;
}
.tcard .who { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.tcard .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem;
}
.tcard .who b { font-size: 0.92rem; font-weight: 700; display: block; }
.tcard .who span { font-size: 0.78rem; color: var(--muted); }
.tcard .g { margin-left: auto; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- FAQ ---------- */
.faq-wrap { margin-top: clamp(2.5rem, 4vw, 3.5rem); display: grid; grid-template-columns: 1fr; gap: 0.7rem; max-width: 880px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item.is-open { border-color: oklch(0.585 0.135 248 / 0.3); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.35rem 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: var(--font-sans); font-size: 1.06rem; font-weight: 600; color: var(--ink);
}
.faq-icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent-strong);
  transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.6rem 1.5rem; color: var(--muted); line-height: 1.65; font-size: 1rem; }
.faq-a-inner p { margin: 0 0 0.8rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-deeper); color: var(--on-dark); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  right: -180px; top: -260px;
  background: radial-gradient(circle, oklch(0.585 0.135 248 / 0.35), transparent 65%);
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-band .display { color: var(--on-dark); }
.cta-band .display em { color: var(--accent-on-dark); }
.cta-band .lede { color: var(--on-dark-muted); margin-top: 1.3rem; }
.cta-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-actions .btn { width: 100%; }
.cta-mini { margin-top: 0.4rem; font-size: 0.82rem; color: var(--on-dark-muted); text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-deeper); color: var(--on-dark-muted); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; border-top: 1px solid var(--on-dark-line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; }
.footer-logo { width: 168px; border-radius: 14px; box-shadow: var(--shadow); }
.footer-about { margin-top: 1.2rem; font-size: 0.92rem; line-height: 1.6; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); margin: 0 0 1.1rem; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: var(--on-dark); font-size: 0.95rem; margin: 0 0 0.7rem; opacity: 0.86; transition: opacity .2s var(--ease), color .2s; }
.footer-col a:hover { opacity: 1; color: var(--accent-on-dark); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--on-dark-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--on-dark-muted); }
.footer-bottom a:hover { color: var(--on-dark); }

/* ---------- floating + mobile call bar ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.5);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: none; gap: 0.6rem; padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: oklch(0.985 0.004 245 / 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-callbar .btn { flex: 1; padding: 0.9rem 1rem; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: oklch(0.135 0.018 260 / 0.88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 5vw;
}
.lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: 880px; width: 100%; }
.lightbox img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox figcaption {
  margin-top: 1rem; display: flex; align-items: center; justify-content: space-between;
  color: var(--on-dark); font-family: var(--font-sans);
}
.lightbox figcaption .cost { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: #fff; }
.lightbox figcaption .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); }
.lb-close {
  position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff;
  cursor: pointer; font-size: 1.4rem; display: grid; place-items: center;
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

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

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .header-phone { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gcard:nth-child(1), .gcard:nth-child(6) { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .about-card { grid-template-columns: 1fr; }
  .about-photo { min-height: 340px; height: auto; aspect-ratio: 16/10; }
  .about-body { padding: clamp(1.8rem,4vw,2.6rem); }
  .tcards { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .header-cta .btn--accent span,
  .header-cta .btn--accent { gap: 0; }
  .mobile-callbar { display: flex; }
  .wa-float { bottom: 84px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gcard, .gcard:nth-child(1), .gcard:nth-child(6) { grid-column: span 1; aspect-ratio: 16/10; }
  .about-contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .hero { padding-top: 104px; }
  body { padding-bottom: 76px; }
}

@media (max-width: 560px) {
  .header-cta .btn--accent { display: none; }
}

@media (max-width: 420px) {
  .hero-float-top { right: 0; }
}
