/* =============================================================
   DachService Freiburg — Premium Roofing
   Design tokens, base, layout, components
============================================================== */

:root {
  /* Brand */
  --c-primary: #1E3A8A;
  --c-primary-600: #213fa0;
  --c-primary-700: #182f6e;
  --c-accent: #C47A3A;
  --c-accent-600: #b06b30;

  /* Surfaces — cool premium palette */
  --c-bg: #FFFFFF;
  --c-soft: #F8FAFC;
  --c-soft-2: #F1F5F9;
  --c-line: #E2E8F0;
  --c-line-2: #CBD5E1;

  /* Text — premium near-black + muted slate */
  --c-text: #0F172A;
  --c-text-2: #475569;
  --c-text-3: #64748B;
  --c-muted: #94A3B8;

  /* Dark surface (hero overlay, emergency, final CTA, footer) */
  --c-dark: #0A1228;
  --c-dark-2: #0F172A;

  /* Semantic */
  --c-danger: #DC2626;
  --c-success: #16A34A;
  --c-warn: #F59E0B;

  /* Type */
  --font-sans: "Inter", "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;

  /* Type scale */
  --fs-xs: 0.8125rem;     /* 13 */
  --fs-sm: 0.9375rem;     /* 15 */
  --fs-base: 1rem;        /* 16 */
  --fs-md: 1.125rem;      /* 18 */
  --fs-lg: 1.25rem;       /* 20 */
  --fs-xl: 1.5rem;        /* 24 */
  --fs-2xl: 1.875rem;     /* 30 */
  --fs-3xl: 2.25rem;      /* 36 */
  --fs-4xl: clamp(2.25rem, 4.5vw, 3.5rem);
  --fs-5xl: clamp(2.75rem, 6vw, 4.75rem);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --sh-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --sh-sm: 0 2px 6px rgba(15, 23, 42, .06), 0 1px 2px rgba(15,23,42,.04);
  --sh-md: 0 8px 24px rgba(15, 23, 42, .08), 0 2px 6px rgba(15,23,42,.04);
  --sh-lg: 0 24px 60px rgba(15, 23, 42, .12), 0 6px 18px rgba(15,23,42,.06);
  --sh-xl: 0 40px 90px rgba(15, 23, 42, .18);
  --sh-blue: 0 16px 40px rgba(30, 58, 138, .25);

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;

  /* Layout */
  --container: 1240px;
  --container-narrow: 980px;
  --pad-x: clamp(20px, 4vw, 40px);
  --nav-h: 140px;
}

/* =============================================================
   Reset & Base
============================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }

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

/* =============================================================
   Typography
============================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
h1 { font-size: var(--fs-5xl); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-4xl); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p  { color: var(--c-text-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(30, 58, 138, .08);
  border: 1px solid rgba(30, 58, 138, .1);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(196, 122, 58, .18);
}
.text-accent { color: var(--c-accent); }
.text-primary { color: var(--c-primary); }
.text-muted { color: var(--c-text-2); }

/* Italic serif accent inside a sans headline — editorial premium feel */
.italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-accent);
}

/* =============================================================
   Layout helpers
============================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; overflow: hidden; }
.section--soft { background: var(--c-soft); }
.section--soft-2 { background: var(--c-soft-2); }
.section--dark { background: var(--c-text); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }

/* Full-bleed dark section — strong color, premium */
.section--bleed-dark {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  color: #fff;
  isolation: isolate;
}
.section--bleed-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(196,122,58,.22), transparent 55%),
    radial-gradient(800px 540px at 0% 100%, rgba(30,58,138,.42), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.section--bleed-dark > .container { position: relative; z-index: 1; }
.section--bleed-dark h2 { color: #fff; }
.section--bleed-dark p { color: rgba(255,255,255,.94); }
.section--bleed-dark .section-head p { color: rgba(255,255,255,.92); font-size: var(--fs-md); }
.section--bleed-dark .eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.section--bleed-dark .eyebrow::before { background: var(--c-accent); box-shadow: 0 0 0 4px rgba(196,122,58,.32); }
.section--bleed-dark .section-head h2::after { background: linear-gradient(90deg, var(--c-accent), #fff); }
.section--bleed-dark .btn--primary {
  background: #fff;
  color: var(--c-text);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}
.section--bleed-dark .btn--primary:hover { background: var(--c-accent); color: #fff; box-shadow: 0 20px 40px rgba(196, 122, 58, .45); }

/* Full-bleed soft section — premium light tone with subtle dot pattern */
.section--bleed-soft {
  background: var(--c-soft);
  position: relative;
}
.section--bleed-soft::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30, 58, 138, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 0;
}
.section--bleed-soft > .container { position: relative; z-index: 1; }

/* Section with diagonal stripe accent background */
.section--stripes {
  position: relative;
  background:
    linear-gradient(135deg, rgba(30,58,138,.025) 0%, transparent 50%),
    repeating-linear-gradient(45deg,
      rgba(196,122,58,.04) 0,
      rgba(196,122,58,.04) 1px,
      transparent 1px,
      transparent 60px),
    #fff;
}

/* Floating colored blobs — used on bleed-dark for premium depth */
.section--blobs { position: relative; }
.section--blobs::before,
.section--blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
  z-index: 0;
}
.section--blobs::before {
  top: -10%; left: 5%;
  width: 380px; height: 380px;
  background: var(--c-primary);
  animation: blobFloat 14s ease-in-out infinite;
}
.section--blobs::after {
  bottom: -15%; right: 8%;
  width: 420px; height: 420px;
  background: var(--c-accent);
  animation: blobFloat 18s ease-in-out infinite reverse;
}
.section--blobs > .container { position: relative; z-index: 1; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-25px,20px) scale(.95); }
}

/* Hover icon bounce — light interaction */
@keyframes iconBounce {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-4px) rotate(-3deg); }
}

/* Pulse halo for accent dots */
@keyframes accentPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(196,122,58,.45); }
  50%     { box-shadow: 0 0 0 10px rgba(196,122,58,0); }
}
.eyebrow::before { animation: accentPulse 2.4s ease-out infinite; }

/* Shimmer sweep across primary buttons on hover (overrides existing) */
.btn--primary { isolation: isolate; }
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s var(--ease-out);
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
}
.btn--primary:hover::after { transform: translateX(110%); }

/* Floating animation for selected elements */
@keyframes floatGentle {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* Flush-bottom — kill the gap between this section and the next (typically footer) */
.section--flush-bottom { padding-bottom: 0 !important; }
.section--flush-bottom + .footer,
.section--flush-bottom + footer.footer {
  margin-top: 0;
}
.section--flush-bottom > .container { padding-bottom: clamp(72px, 9vw, 130px); }

/* Subtle radial gradient richness for plain white sections */
.section--lift {
  background:
    radial-gradient(700px 460px at 0% 0%, rgba(30, 58, 138, .04), transparent 55%),
    radial-gradient(800px 520px at 100% 100%, rgba(196, 122, 58, .04), transparent 55%),
    #fff;
}

/* Watermark text feature removed for cleaner premium look */
[data-watermark] { position: relative; }
[data-watermark] > .container { position: relative; z-index: 1; }

/* Radial glow utilities — premium texture for sections */
.glow-tl { position: relative; }
.glow-tl::after {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(30,58,138,.07), transparent 60%);
  pointer-events: none; z-index: 0;
}
.glow-br { position: relative; }
.glow-br::after {
  content: "";
  position: absolute;
  bottom: -10%; right: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196,122,58,.08), transparent 60%);
  pointer-events: none; z-index: 0;
}
.glow-tl > .container, .glow-br > .container { position: relative; z-index: 1; }

/* SVG noise texture — adds subtle grain */
.has-noise { position: relative; }
.has-noise::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .17 0 0 0 0 .24 0 0 0 0 .31 0 0 0 .35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.has-noise > .container { position: relative; z-index: 1; }
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0;
}
.section-head > * { width: 100%; max-width: 780px; }
.section-head > .eyebrow { width: auto; align-self: center; flex: 0 0 auto; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); position: relative; display: block; }
.section-head h2::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  border-radius: var(--r-pill);
}
.section-head p { font-size: var(--fs-md); margin-top: 24px; color: var(--c-text-2); line-height: 1.6; }
.section-head .eyebrow { margin-bottom: 24px; }
/* Dark variant of section-head accent line */
.section--dark .section-head h2::after,
.cta-final h2::after { background: linear-gradient(90deg, var(--c-accent), #fff); }

/* =============================================================
   Buttons
============================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-base) var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-700) 100%);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn--primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.1s var(--ease-out);
  z-index: -1;
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--primary:hover { background: var(--c-primary-600); box-shadow: 0 24px 60px rgba(30,58,138,.35); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--accent { background: var(--c-accent); color: #fff; box-shadow: 0 16px 40px rgba(196,122,58,.3); }
.btn--accent:hover { background: var(--c-accent-600); }

.btn--ghost { background: rgba(15,23,42,.05); color: var(--c-text); }
.btn--ghost:hover { background: rgba(15,23,42,.1); }

.btn--outline { background: transparent; color: var(--c-text); box-shadow: inset 0 0 0 1.5px var(--c-line-2); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--c-text); }

.btn--lg { height: 64px; padding: 0 34px; font-size: var(--fs-lg); }
.btn--sm { height: 44px; padding: 0 20px; font-size: var(--fs-sm); }
.btn--full { width: 100%; }

/* Two-line CTA: phone number primary, subtitle below */
.btn--phone {
  height: auto;
  min-height: 72px;
  padding: 14px 32px 14px 28px;
  white-space: normal;
  text-align: left;
}
.btn--phone svg { width: 22px; height: 22px; flex: 0 0 22px; }
.btn-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  line-height: 1.1;
}
.btn-phone__num {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}
.btn-phone__sub {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.02em;
  text-transform: none;
}
.btn--phone.btn--full .btn-phone { align-items: center; }
.btn--phone.btn--full { text-align: center; }
@media (max-width: 540px) {
  .btn--phone { padding: 12px 22px 12px 20px; min-height: 68px; }
  .btn-phone__num { font-size: 1.15rem; }
  .btn-phone__sub { font-size: 0.72rem; }
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Call button — emphasis */
.btn--call {
  background: #fff;
  color: var(--c-text);
  box-shadow: 0 0 0 1.5px var(--c-line);
}
.btn--call .btn-call-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(22,163,74,.18);
  animation: pulseDot 2s var(--ease-out) infinite;
}
.btn--call:hover { box-shadow: 0 0 0 1.5px var(--c-text); }

@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 4px rgba(22,163,74,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(22,163,74,.0); }
}

/* =============================================================
   Navbar
============================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 96px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), height var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  transition: background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              height var(--t-base) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(226, 232, 240, .8);
  box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
  height: 76px;
}

/* Transparent nav at top of any page with a dark hero */
body:has(.hero, .service-hero) .nav:not(.is-scrolled) {
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__links > a,
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav-dropdown__toggle {
  color: rgba(255,255,255,.96);
}
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav-dropdown__toggle:hover,
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__links > a:hover { color: #fff; }
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__burger span,
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__burger span::before,
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__burger span::after { background: #fff; }

/* Logo swap: dark by default, light when transparent over dark hero */
.nav__logo-img--light { display: none; }
.nav__logo-img--dark { display: block; }
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__logo-img--dark { display: none; }
body:has(.hero, .service-hero) .nav:not(.is-scrolled) .nav__logo-img--light { display: block; }
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding: 8px 0;
}
.nav__logo img {
  height: 76px;
  width: auto;
  max-width: none;
  display: block;
  transition: opacity var(--t-fast), height var(--t-base) var(--ease-out);
}
.nav__logo:hover img { opacity: .85; }
.nav.is-scrolled .nav__logo img { height: 58px; }
@media (max-width: 900px) {
  .nav__logo img { height: 64px; }
  .nav.is-scrolled .nav__logo img { height: 52px; }
}
@media (max-width: 540px) {
  .nav__logo img { height: 56px; }
  .nav.is-scrolled .nav__logo img { height: 46px; }
}
.nav__links { display: flex; align-items: center; gap: 6px; margin-right: 8px; }
.nav__links > a, .nav-dropdown__toggle {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-2);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__links > a:hover, .nav-dropdown__toggle:hover { color: var(--c-text); background: rgba(15,23,42,.04); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn--primary { padding: 0 22px; height: 48px; font-size: var(--fs-sm); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 500; color: var(--c-text-2);
  padding: 10px 14px; border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown__toggle:hover { color: var(--c-text); background: rgba(15,23,42,.04); }
.nav-dropdown__toggle svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav-dropdown:hover .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 280px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-base) var(--ease-out),
              visibility var(--t-base),
              transform var(--t-base) var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--c-text);
  font-weight: 500;
}
.nav-dropdown__menu a:hover { background: var(--c-soft); }
.nav-dropdown__menu .ico {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(30,58,138,.08);
  color: var(--c-primary);
  border-radius: var(--r-sm);
}
.nav-dropdown__menu .ico svg { width: 16px; height: 16px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  background: rgba(15,23,42,.05);
}
.nav__burger span {
  width: 18px; height: 2px; background: var(--c-text);
  border-radius: 1px; position: relative;
  transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-base);
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0; width: 18px; height: 2px;
  background: var(--c-text); border-radius: 1px;
  transition: transform var(--t-base) var(--ease-out);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top:  6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 24px var(--pad-x) 32px;
  transform: translateY(-110%);
  transition: transform var(--t-base) var(--ease-out), visibility var(--t-base);
  z-index: 99;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
@media (max-width: 900px) {
  .nav__drawer { display: block; }
}
body.menu-open .nav__drawer { transform: translateY(0); visibility: visible; pointer-events: auto; }
.nav__drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-md); font-weight: 500;
  color: var(--c-text);
}
.nav__drawer .btn { margin-top: 18px; }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn:not(.btn--primary) { display: none; }
  .nav__burger { display: flex; }
}

/* =============================================================
   Hero — CENTERED, full-bleed video bg, deep navy overlay
============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  text-align: center;
  color: #fff;
  background: var(--c-dark);
}
.hero__bg-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg-media video,
.hero__bg-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg-media video { z-index: 1; }
.hero__bg-media img.hero__bg-fallback { z-index: 0; }

/* Deep navy gradient overlay for readability */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 40, .55) 0%, rgba(10, 18, 40, .45) 40%, rgba(10, 18, 40, .82) 100%);
  z-index: -1;
}
/* Two soft accent halos for premium depth */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 15% 25%, rgba(196,122,58,.22), transparent 60%),
    radial-gradient(50% 40% at 85% 75%, rgba(30,58,138,.30), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero .eyebrow {
  background: rgba(255,255,255,.08);
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
}
.hero .eyebrow::before { background: var(--c-accent); box-shadow: 0 0 0 4px rgba(196,122,58,.25); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  margin: 28px 0 26px;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 .italic-accent {
  position: relative;
  display: inline-block;
}
.hero h1 .italic-accent {
  color: var(--c-accent);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}

.hero__lead {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.82);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.55;
}
.hero__phone-note {
  margin-top: 22px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.62);
  letter-spacing: 0.04em;
}

/* Trust strip below the hero CTA, stars + credential */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 28px auto 0;
  padding: 10px 22px 10px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

/* Hero stats row, 4 stat tiles with big number + label */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px auto 0;
  max-width: 880px;
  width: 100%;
  padding: 0 8px;
}
.hero-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.hero-stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,.86);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stats__item { padding: 12px 10px; }
  .hero-stats__num { font-size: 1.35rem; }
  .hero-stats__label { font-size: 0.72rem; letter-spacing: 0.02em; }
}
.hero-trust__stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
}
.hero-trust__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.hero-trust__text {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(255,255,255,.94);
}
.hero-trust__text strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 540px) {
  .hero-trust { gap: 10px; padding: 8px 16px; }
  .hero-trust__text { font-size: 0.78rem; }
  .hero-trust__stars svg { width: 14px; height: 14px; }
}
/* Service hero variant: dark-on-light or same on image-dark backgrounds — keep same look */
.service-hero .hero-trust { margin-top: 24px; }

.hero__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 44px auto 0;
  max-width: 720px;
}
.hero__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-sm); font-weight: 500;
  color: rgba(255,255,255,.82);
}
.hero__features svg { width: 18px; height: 18px; color: var(--c-accent); flex: 0 0 18px; }

.hero .btn-row { justify-content: center; }
.hero .btn--primary {
  background: #fff;
  color: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.hero .btn--primary:hover { background: var(--c-accent); color: #fff; box-shadow: 0 24px 60px rgba(196,122,58,.45); }
.hero .btn--primary::before { background: linear-gradient(120deg, transparent 30%, rgba(0,0,0,.15) 50%, transparent 70%); }

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBob 2.6s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1.5px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.8));
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .8; }
  50%     { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (max-width: 720px) {
  .hero { min-height: 92vh; }
  .hero__features { gap: 12px 22px; margin-top: 34px; }
  .hero__scroll { display: none; }
}


/* =============================================================
   Trust bar / logos / stats
============================================================== */
.trustbar {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
  padding: 28px 0;
}
.trustbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.trustbar__item {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--fs-sm); color: var(--c-text-2); font-weight: 500;
}
.trustbar__item svg { width: 22px; height: 22px; color: var(--c-primary); }
.trustbar__item strong { color: var(--c-text); font-weight: 700; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__suffix { font-size: 0.7em; color: var(--c-accent); }
.stat__lbl { margin-top: 12px; font-size: var(--fs-sm); color: var(--c-text-2); }

@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   Trust grid (4 indicators replacing reviews)
============================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-grid:has(> .trust-card:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
.trust-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base);
  text-align: left;
  position: relative;
  isolation: isolate;
}
.trust-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity var(--t-base);
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .10);
  border-color: transparent;
}
.trust-card:hover::after { opacity: 1; }
.trust-card__ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  color: #fff;
  border-radius: var(--r-md);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(30, 58, 138, .25);
  transition: transform var(--t-base) var(--ease-out);
}
.trust-card:hover .trust-card__ico { transform: scale(1.05) rotate(-3deg); }
.trust-card__ico svg { width: 26px; height: 26px; }
.trust-card h3 { font-size: var(--fs-lg); margin-bottom: 12px; letter-spacing: -0.015em; }
.trust-card p { font-size: var(--fs-sm); line-height: 1.65; }

@media (max-width: 1000px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .trust-grid { grid-template-columns: 1fr; gap: 16px; } }

/* =============================================================
   Services grid
============================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base);
  will-change: transform;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity var(--t-base), transform .55s var(--ease-out);
  z-index: 2;
}
.service-card:hover::before { opacity: 1; transform: scaleX(1); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, transparent 60%, rgba(30,58,138,.04));
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, .12), 0 8px 24px rgba(15, 23, 42, .06);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-soft);
  position: relative;
}
.service-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,.18));
  pointer-events: none;
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; gap: 14px; }
.service-card__ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,58,138,.10), rgba(196,122,58,.10));
  color: var(--c-primary);
  border-radius: var(--r-md);
  margin-bottom: 6px;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base) var(--ease-out);
}
.service-card:hover .service-card__ico {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.service-card:hover .service-card__ico { transform: scale(1.05) rotate(-3deg); }
.service-card__ico svg { width: 24px; height: 24px; }
.service-card h3 { font-size: var(--fs-xl); letter-spacing: -0.015em; }
.service-card p { font-size: var(--fs-sm); color: var(--c-text-2); flex: 1; line-height: 1.6; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--c-primary);
  margin-top: 6px;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--t-base) var(--ease-out); }
.service-card:hover .service-card__link { color: var(--c-accent); }
.service-card:hover .service-card__link svg { transform: translateX(6px); }

@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Emergency banner
============================================================== */
.emergency {
  position: relative;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.emergency::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 460px at 100% 0%, rgba(196,122,58,.22), transparent 60%),
    radial-gradient(600px 420px at 0% 100%, rgba(30,58,138,.32), transparent 60%);
  z-index: -1;
}
.emergency { text-align: center; }
.emergency h2 { color: #fff; font-size: var(--fs-4xl); margin: 20px auto; max-width: 720px; }
.emergency h2 .italic-accent { color: var(--c-accent); }
.emergency p { color: rgba(255,255,255,.82); font-size: var(--fs-md); margin: 0 auto 32px; max-width: 620px; }
.emergency .eyebrow { background: rgba(196,122,58,.22); color: var(--c-accent); border: 1px solid rgba(196,122,58,.3); }
.emergency .eyebrow::before { background: var(--c-accent); box-shadow: 0 0 0 4px rgba(196,122,58,.3); }
.emergency__phone {
  margin-top: 24px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  letter-spacing: 0.04em;
}
.emergency .btn--primary {
  background: #fff;
  color: #000;
}
.emergency .btn--primary:hover { background: var(--c-accent); color: #fff; }

/* =============================================================
   Why us / feature grid
============================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.why-card {
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .1);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card__ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,58,138,.10), rgba(196,122,58,.10));
  color: var(--c-primary);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base) var(--ease-out);
}
.why-card:hover .why-card__ico {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  color: #fff;
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 10px 22px rgba(30, 58, 138, .28);
}
.why-card__ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: var(--fs-lg); margin-bottom: 10px; letter-spacing: -0.01em; min-height: calc(var(--fs-lg) * 1.3 * 2); }
.why-card p { font-size: var(--fs-sm); line-height: 1.6; min-height: calc(var(--fs-sm) * 1.6 * 3); }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card h3, .why-card p { min-height: 0; }
}

/* =============================================================
   Process / timeline
============================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30,58,138,.25) 12%, rgba(196,122,58,.25) 50%, rgba(30,58,138,.25) 88%, transparent);
  z-index: 0;
}
.process-step { position: relative; text-align: center; padding: 0 12px; z-index: 1; }
.process-step__num {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  border: 4px solid #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  color: #fff;
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base),
              box-shadow var(--t-base);
  position: relative;
  box-shadow: 0 0 0 1px var(--c-line), 0 12px 28px rgba(30, 58, 138, .22);
}
.process-step__num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(196, 122, 58, .35);
  opacity: 0;
  transition: opacity var(--t-base);
}
.process-step:hover .process-step__num {
  background: linear-gradient(135deg, var(--c-accent), #d68a4a);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 0 1px transparent, 0 14px 32px rgba(196, 122, 58, .45);
}
.process-step:hover .process-step__num::after { opacity: 1; }
.process-step h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.process-step p { font-size: var(--fs-sm); }
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}

/* =============================================================
   Before / After
============================================================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, .18);
}
.ba-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.ba-card:hover img { transform: scale(1.08); }
.ba-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,18,40,.55) 65%, rgba(10,18,40,.92));
  display: flex; align-items: flex-end;
  padding: 26px;
  color: #fff;
}
.ba-card__overlay h3 { color: #fff; font-size: var(--fs-lg); letter-spacing: -0.01em; }
.ba-card__overlay p { color: rgba(255,255,255,.8); font-size: var(--fs-xs); margin-top: 6px; line-height: 1.5; }
.ba-card__tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--c-primary);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
  border-left: 3px solid var(--c-accent);
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ba-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Testimonials
============================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-card__stars { display: flex; gap: 2px; color: #F59E0B; }
.testi-card__stars svg { width: 18px; height: 18px; fill: currentColor; }
.testi-card blockquote {
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: 1.55;
  font-weight: 500;
}
.testi-card__author {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  color: #fff; font-weight: 700;
  font-family: var(--font-display);
}
.testi-card__name { font-weight: 600; color: var(--c-text); font-size: var(--fs-sm); }
.testi-card__role { color: var(--c-text-2); font-size: var(--fs-xs); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FAQ
============================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
  opacity: 0;
  transition: opacity var(--t-base);
}
.faq__item:hover::before,
.faq__item[open]::before { opacity: 1; }
.faq__item[open] {
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-primary); }
.faq__item[open] summary { color: var(--c-primary); background: linear-gradient(135deg, rgba(30,58,138,.03), rgba(196,122,58,.03)); }
.faq__item summary::after {
  content: "+";
  font-size: 22px; font-weight: 300;
  color: var(--c-primary);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(30,58,138,.08);
  border-radius: 50%;
  flex: 0 0 36px;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base), color var(--t-base);
}
.faq__item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 138, .25);
}
.faq__answer {
  padding: 0 28px 26px;
  color: var(--c-text-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* =============================================================
   Final CTA
============================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(196,122,58,.22), transparent 60%),
    radial-gradient(700px 460px at 100% 100%, rgba(30,58,138,.32), transparent 60%);
}
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; font-size: var(--fs-4xl); margin: 22px 0; letter-spacing: -0.025em; }
.cta-final h2 .italic-accent { color: var(--c-accent); }
.cta-final p { color: rgba(255,255,255,.82); font-size: var(--fs-md); max-width: 620px; margin: 0 auto 36px; line-height: 1.6; }
.cta-final .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.18); }
.cta-final .eyebrow::before { background: var(--c-accent); box-shadow: 0 0 0 4px rgba(196,122,58,.32); }
.cta-final .btn-row { justify-content: center; }
.cta-final .btn--primary {
  background: #fff;
  color: var(--c-text);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}
.cta-final .btn--primary:hover { background: var(--c-accent); color: #fff; box-shadow: 0 20px 40px rgba(196, 122, 58, .45); }

/* =============================================================
   Footer
============================================================== */
.footer {
  background: #05080F;
  color: rgba(255,255,255,.65);
  padding: 100px 0 36px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(720px, 60%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: .7;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(30,58,138,.16), transparent 60%),
    radial-gradient(500px 320px at 100% 100%, rgba(196,122,58,.08), transparent 60%);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer__brand img { height: 96px; width: auto; margin-bottom: 24px; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: var(--fs-sm); max-width: 320px; }
.footer h4 {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
  color: rgba(255,255,255,.7);
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
}
.footer__col a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact a, .footer__contact span {
  display: inline-flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.7); font-size: var(--fs-sm);
}
.footer__contact svg { width: 16px; height: 16px; margin-top: 3px; color: var(--c-accent); flex: 0 0 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: var(--fs-xs);
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Service page hero (smaller, more focused)
============================================================== */
/* Service page hero — same DNA as homepage hero: centered, full-bleed image, dark overlay, 1 CTA */
.service-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: #000;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.service-hero__bg {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.service-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.78) 100%);
  z-index: -1;
}
.service-hero::after {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196,122,58,.16), transparent 60%);
  pointer-events: none; z-index: -1;
}
.service-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.service-hero .eyebrow {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}
.service-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: #fff;
  margin: 24px 0 20px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.service-hero__lead { font-size: var(--fs-lg); color: rgba(255,255,255,.84); margin: 0 auto 32px; max-width: 640px; line-height: 1.55; }
.service-hero .btn-row { justify-content: center; }
.service-hero .btn--primary {
  background: #fff;
  color: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.service-hero .btn--primary:hover { background: var(--c-accent); color: #fff; }
.service-hero .hero__features {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 28px;
  margin: 36px auto 0; max-width: 640px;
}
.service-hero .hero__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-sm); font-weight: 500;
  color: rgba(255,255,255,.82);
}
.service-hero .hero__features svg { width: 18px; height: 18px; color: var(--c-accent); flex: 0 0 18px; }

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.service-hero .breadcrumbs a { color: rgba(255,255,255,.75); }
.service-hero .breadcrumbs a:hover { color: var(--c-accent); }
.service-hero .breadcrumbs span { color: rgba(255,255,255,.35); }
/* light variant for contact/about/legal pages */
.breadcrumbs--light a:hover { color: var(--c-primary); }
.breadcrumbs--light span { color: var(--c-line-2); }
.breadcrumbs--light, .breadcrumbs--light a { color: var(--c-text-3); }

@media (max-width: 720px) {
  .service-hero { min-height: 70vh; padding-top: calc(var(--nav-h) + 40px); }
}

/* Service content blocks */
/* Premium feature list — grid of icon + text rows, can be used as 1 or 2 columns */
.bullet-list {
  display: grid;
  gap: 14px;
  grid-auto-rows: minmax(92px, auto);
}
.bullet-list--cols { grid-template-columns: repeat(2, 1fr); gap: 16px 28px; grid-auto-rows: minmax(92px, auto); }
@media (max-width: 720px) { .bullet-list--cols { grid-template-columns: 1fr; } }

.bullet-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  font-size: var(--fs-sm); color: var(--c-text);
  line-height: 1.55;
  min-height: 92px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base),
              box-shadow var(--t-base);
}
.bullet-list li:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(30,58,138,.03), rgba(196,122,58,.04));
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}
.bullet-list li::before {
  content: "";
  flex: 0 0 30px;
  width: 30px; height: 30px;
  margin-top: 1px;
  background-color: var(--c-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(30, 58, 138, .28), inset 0 -1px 0 rgba(0,0,0,.08);
}

/* Numbered problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px 28px 28px 28px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base),
              box-shadow var(--t-base),
              background var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.problem-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--c-accent), rgba(196,122,58,.2) 70%, transparent);
  transition: width var(--t-base);
}
.problem-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(196,122,58,.10), transparent 70%);
  z-index: -1;
  pointer-events: none;
  opacity: .6;
  transition: opacity var(--t-base);
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 48px rgba(15, 23, 42, .10);
}
.problem-card:hover::before { width: 6px; }
.problem-card:hover::after { opacity: 1; }
.problem-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 64px;
}
.problem-card__body h3 {
  font-size: var(--fs-md);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.problem-card__body p {
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: stretch;
}
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--sh-md);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; }
.split--reverse .split__media { order: -1; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 4/3; min-height: 0; }
  .split__media img { position: static; }
}

/* Related services strip */
.related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related a {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base),
              color var(--t-base);
}
.related a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.04), rgba(196,122,58,.04));
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
}
.related a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
  border-color: transparent;
}
.related a:hover::before { opacity: 1; }
.related .ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,58,138,.10), rgba(196,122,58,.10));
  color: var(--c-primary);
  border-radius: var(--r-md);
  flex: 0 0 48px;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.related a:hover .ico {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-700));
  color: #fff;
  transform: rotate(-4deg);
}
.related .ico svg { width: 22px; height: 22px; }
.related strong {
  font-size: var(--fs-sm);
  color: var(--c-text);
  font-weight: 600;
  display: block;
  letter-spacing: -0.005em;
}
.related .arr {
  margin-left: auto;
  color: var(--c-primary);
  transition: transform var(--t-base) var(--ease-out), color var(--t-base);
}
.related a:hover .arr { transform: translateX(4px); color: var(--c-accent); }
.related .arr svg { width: 18px; height: 18px; }
@media (max-width: 1000px) { .related { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .related { grid-template-columns: 1fr; } }

/* =============================================================
   Sticky mobile CTA
============================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 18px;
  box-shadow: var(--sh-lg);
  align-items: center; justify-content: space-between;
  gap: 12px;
  transform: translateY(120%);
  transition: transform var(--t-base) var(--ease-out);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__label { font-size: var(--fs-xs); color: var(--c-text); font-weight: 600; }
.mobile-cta__label small { display: block; color: var(--c-text-3); font-weight: 500; font-size: 10px; margin-bottom: 2px; }
.mobile-cta .btn { height: 44px; padding: 0 18px; font-size: var(--fs-sm); }
@media (max-width: 900px) { .mobile-cta { display: flex; } }

/* =============================================================
   Contact page — premium lead-form card + direct-contact sidebar
============================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

/* Lead form card */
.lead-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(15, 23, 42, .08), 0 4px 14px rgba(15, 23, 42, .04);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lead-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
}
.lead-card__head { margin-bottom: 32px; }
.lead-card__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 18px;
}
.lead-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(196,122,58,.2);
  animation: accentPulse 2.4s ease-out infinite;
}
.lead-card__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.lead-card__head h2 .italic-accent { color: var(--c-accent); display: inline-block; }
.lead-card__head p { font-size: var(--fs-sm); color: var(--c-text-2); line-height: 1.6; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-soft);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-family: inherit;
  color: var(--c-text);
  transition: border-color var(--t-fast),
              background var(--t-fast),
              box-shadow var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-text-3); }
.field input:hover, .field select:hover, .field textarea:hover { background: #fff; border-color: var(--c-line); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(30,58,138,.10);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }

.field--icon input { padding-left: 46px; }
.field__ico {
  position: absolute;
  left: 14px; top: 36px;
  width: 20px; height: 20px;
  color: var(--c-text-3);
  pointer-events: none;
  transition: color var(--t-fast);
}
.field--icon input:focus ~ .field__ico,
.field--icon input:not(:placeholder-shown) ~ .field__ico { color: var(--c-primary); }
.field__ico svg { width: 100%; height: 100%; }

.field__consent {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--fs-xs);
  color: var(--c-text-2);
  line-height: 1.55;
  margin-top: 4px;
  cursor: pointer;
}
.field__consent input[type="checkbox"] {
  width: 18px; height: 18px; flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.field__consent a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

.lead-form__submit {
  width: 100%;
  margin-top: 22px;
  height: 60px;
  font-size: var(--fs-md);
}

.lead-card__trust {
  display: flex; flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.lead-card__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-text-2);
}
.lead-card__trust svg { width: 14px; height: 14px; color: var(--c-success); }

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

/* Direct-contact channels */
.contact-side { display: grid; gap: 14px; align-self: start; }
@media (min-width: 981px) { .contact-side { position: sticky; top: 140px; } }

.contact-channel {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base),
              box-shadow var(--t-base);
}
.contact-channel:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(15, 23, 42, .08);
}
.contact-channel__ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,58,138,.10), rgba(196,122,58,.10));
  color: var(--c-primary);
  border-radius: var(--r-md);
  flex: 0 0 48px;
  transition: background var(--t-base), color var(--t-base);
}
.contact-channel__ico svg { width: 22px; height: 22px; }
.contact-channel > span:not(.contact-channel__ico) {
  display: flex; flex-direction: column; gap: 2px;
  font-style: normal;
}
.contact-channel small {
  font-size: var(--fs-xs);
  color: var(--c-text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-channel strong {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
  word-break: break-word;
}
.contact-channel em {
  font-style: normal;
  font-size: var(--fs-xs);
  color: var(--c-text-2);
  margin-top: 2px;
}

.contact-channel--accent {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  border-color: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-channel--accent::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 280px at 100% 0%, rgba(196,122,58,.25), transparent 60%);
  pointer-events: none;
}
.contact-channel--accent > * { position: relative; }
.contact-channel--accent .contact-channel__ico { background: rgba(255,255,255,.1); color: #fff; }
.contact-channel--accent small { color: rgba(255,255,255,.6); }
.contact-channel--accent strong { color: #fff; }
.contact-channel--accent em { color: rgba(255,255,255,.7); }
.contact-channel--accent:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(15, 23, 42, .25); }

/* Opening hours card */
.hours-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.hours-card h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.hours-card ul { display: grid; gap: 8px; font-size: var(--fs-sm); }
.hours-card li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  color: var(--c-text-2);
}
.hours-card li strong { color: var(--c-text); font-weight: 600; }
.hours-card li em { font-style: normal; color: var(--c-text-3); }
.hours-card__emerg {
  margin-top: 6px;
  padding-top: 12px !important;
  border-top: 1px dashed var(--c-line-2);
}
.hours-card__emerg span,
.hours-card__emerg strong {
  color: var(--c-accent) !important;
  font-weight: 700;
}

/* =============================================================
   About page — story split, founder panel, city pills, quote
============================================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-story__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(15, 23, 42, .14), 0 8px 24px rgba(15, 23, 42, .06);
}
.about-story__media img { width: 100%; height: 100%; object-fit: cover; }
.about-story__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  right: 20px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .18);
}
.about-story__badge strong {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--c-text);
  font-weight: 700;
}
.about-story__badge span {
  font-size: var(--fs-xs);
  color: var(--c-text-2);
  margin-top: 2px;
}
.about-story__body h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 22px 0 22px; letter-spacing: -0.025em; line-height: 1.1; }
.about-story__body p { font-size: var(--fs-md); line-height: 1.7; margin-bottom: 18px; color: var(--c-text-2); }
.about-story__body strong { color: var(--c-text); font-weight: 600; }

.about-quote {
  margin-top: 28px;
  padding: 28px 32px;
  border-left: 3px solid var(--c-accent);
  background: linear-gradient(135deg, rgba(30,58,138,.04), rgba(196,122,58,.05));
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--c-text);
}
.about-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-2);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story__media { aspect-ratio: 4/3; max-height: 460px; }
}

/* Founder section — full-bleed dark feature */
.founder-section {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.founder-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 540px at 100% 0%, rgba(196,122,58,.20), transparent 60%),
    radial-gradient(700px 480px at 0% 100%, rgba(30,58,138,.36), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.founder-section__media {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  z-index: 1;
}
.founder-section__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.founder-section__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 40%, var(--c-dark) 100%);
}
.founder-section__body {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 96px) clamp(48px, 6vw, 96px) clamp(40px, 5vw, 72px);
  max-width: calc(var(--container) / 2 + 60px);
}
.founder-section__body .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.16); }
.founder-section__body .eyebrow::before { background: var(--c-accent); box-shadow: 0 0 0 4px rgba(196,122,58,.32); }
.founder-section__body h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 22px 0 22px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.founder-section__body h2 .italic-accent { color: var(--c-accent); }
.founder-section__body p { color: rgba(255,255,255,.82); font-size: var(--fs-md); line-height: 1.7; margin-bottom: 36px; }

.founder-section__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.founder-section__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.founder-section__meta span {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .founder-section { grid-template-columns: 1fr; }
  .founder-section__media { min-height: 280px; max-height: 380px; }
  .founder-section__media::after { background: linear-gradient(180deg, transparent 40%, var(--c-dark) 100%); }
  .founder-section__body { padding: 48px var(--pad-x); max-width: none; }
  .founder-section__meta { gap: 16px; }
}
@media (max-width: 540px) {
  .founder-section__meta { grid-template-columns: 1fr; gap: 14px; }
}

/* City pills */
.city-pills {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.city-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
  transition: transform var(--t-fast) var(--ease-out),
              border-color var(--t-fast),
              background var(--t-fast),
              color var(--t-fast),
              box-shadow var(--t-fast);
}
.city-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex: 0 0 6px;
}
.city-pill:hover {
  transform: translateY(-2px);
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 138, .25);
}
.city-pill:hover::before { background: var(--c-accent); }

/* =============================================================
   Legal pages
============================================================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: var(--fs-2xl); margin: 40px 0 16px; }
.prose h3 { font-size: var(--fs-lg); margin: 28px 0 12px; }
.prose p, .prose ul { margin-bottom: 16px; color: var(--c-text-2); font-size: var(--fs-sm); line-height: 1.7; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--c-text); font-weight: 600; }

/* =============================================================
   Utility
============================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hide-desktop { display: none; }
@media (max-width: 900px) { .hide-mobile { display: none; } .hide-desktop { display: block; } }
