/* Hallmark · pre-emit critique: P5 H5 E5 S5 R5 V5
 * macrostructure: Masthead (N6) + Editorial sections + Footer Ft5 Statement
 * genre: editorial · theme: Lumen (warm-amber, Instrument Serif, Inter)
 * audience: Idaho homeowners · use: call / free estimate · tone: trustworthy craft
 * paper-band: light (L>85%) · display-style: classical-serif · accent-hue: warm (amber 35°)
 */

/* ────────────────────────────────────────────────────────────────────────────
   TOKENS
   ──────────────────────────────────────────────────────────────────────────── */
:root {
  /* Paper */
  --color-paper:        oklch(97.5% 0.008 78);   /* warm off-white */
  --color-paper-2:      oklch(94% 0.012 75);      /* aged parchment */
  --color-paper-3:      oklch(90% 0.018 72);      /* warm tan */
  --color-paper-dark:   oklch(17% 0.025 30);      /* near-black warm */

  /* Ink */
  --color-ink:          oklch(18% 0.02 30);       /* warm near-black */
  --color-ink-2:        oklch(38% 0.02 30);       /* mid-tone */
  --color-ink-3:        oklch(62% 0.016 40);      /* muted */

  /* Accent — Amber / terracotta */
  --color-accent:       oklch(62% 0.155 47);      /* amber gold */
  --color-accent-dark:  oklch(48% 0.138 42);      /* deep amber */
  --color-accent-light: oklch(82% 0.12 62);       /* pale gold */
  --color-accent-bg:    oklch(95% 0.04 68);       /* warm highlight bg */

  /* Brand deep */
  --color-brand:        oklch(28% 0.06 38);       /* dark warm brown */
  --color-brand-2:      oklch(22% 0.04 30);       /* very dark brown */

  /* Trust red */
  --color-trust:        oklch(52% 0.18 22);       /* deep terracotta red */

  /* Focus */
  --color-focus:        oklch(62% 0.155 47);

  /* Fonts */
  --font-display:       'Instrument Serif', 'Georgia', serif;
  --font-body:          'Inter', system-ui, -apple-system, sans-serif;
  --font-label:         'Inter', system-ui, sans-serif;
  --font-mono:          'JetBrains Mono', monospace;

  /* Type scale */
  --text-xs:            0.75rem;
  --text-sm:            0.875rem;
  --text-base:          1rem;
  --text-lg:            1.125rem;
  --text-xl:            1.25rem;
  --text-2xl:           1.5rem;
  --text-3xl:           2rem;
  --text-4xl:           2.75rem;
  --text-5xl:           3.75rem;
  --text-6xl:           5rem;

  /* Spacing (8pt scale) */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px oklch(18% 0.02 30 / 0.08);
  --shadow-md:  0 4px 16px oklch(18% 0.02 30 / 0.12);
  --shadow-lg:  0 12px 40px oklch(18% 0.02 30 / 0.18);
  --shadow-xl:  0 24px 80px oklch(18% 0.02 30 / 0.24);

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:    180ms;
  --dur-base:    280ms;
  --dur-slow:    450ms;
  --dur-reveal:  700ms;

  /* Layout */
  --max-w:      1200px;
  --max-w-text: 680px;
  --nav-h:      72px;
}

/* ────────────────────────────────────────────────────────────────────────────
   RESET + BASE
   ──────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 { font-style: normal; overflow-wrap: anywhere; min-width: 0; }

/* ────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ──────────────────────────────────────────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.t-h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.2;
}
.t-h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.3;
}
.t-lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--color-ink-2);
}
.t-body {
  font-size: var(--text-base);
  line-height: 1.7;
}
.t-small {
  font-size: var(--text-sm);
  color: var(--color-ink-3);
}
.t-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-3);
}
.t-accent { color: var(--color-accent); }
.t-brand  { color: var(--color-brand); }

/* Underline accent */
.underline-accent {
  text-decoration-line: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* ────────────────────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ──────────────────────────────────────────────────────────────────────────── */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow {
  width: min(100%, var(--max-w-text));
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section {
  padding-block: var(--space-24);
}
.section--sm {
  padding-block: var(--space-16);
}
.section--lg {
  padding-block: var(--space-32);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-8);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-6);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-6);
}

/* ────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}
.btn:active, .btn.is-active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-accent);
  color: oklch(12% 0.02 30);
}
.btn-primary:hover, .btn-primary.is-hover {
  background: var(--color-accent-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
}
.btn-secondary:hover, .btn-secondary.is-hover {
  background: var(--color-ink);
  color: var(--color-paper);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding-inline: var(--space-2);
}
.btn-ghost:hover { text-decoration: underline; text-underline-offset: 4px; }

.btn-white {
  background: var(--color-paper);
  color: var(--color-brand);
  border: 1.5px solid var(--color-paper);
}
.btn-white:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

/* ────────────────────────────────────────────────────────────────────────────
   NAVIGATION — N6 Masthead
   ──────────────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: oklch(17% 0.025 30 / 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  transition: background var(--dur-base) var(--ease-out);
}
.site-nav.is-light {
  background: oklch(97.5% 0.008 78 / 0.97);
  border-bottom-color: oklch(18% 0.02 30 / 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-8);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}
.nav-logo-mark svg {
  width: 20px;
  height: 20px;
  fill: oklch(12% 0.02 30);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-paper);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast);
}
.site-nav.is-light .nav-logo-name { color: var(--color-ink); }
.nav-logo-sub {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: oklch(90% 0.005 78);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.site-nav.is-light .nav-link { color: var(--color-ink-2); }
.nav-link:hover {
  color: var(--color-accent);
  background: oklch(100% 0 0 / 0.06);
}
.site-nav.is-light .nav-link:hover { background: var(--color-paper-2); }
.nav-link.is-active { color: var(--color-accent); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--color-paper-dark);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  box-shadow: var(--shadow-xl);
}
.site-nav.is-light .nav-dropdown-menu {
  background: var(--color-paper);
  border-color: oklch(18% 0.02 30 / 0.1);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: oklch(88% 0.005 78);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}
.site-nav.is-light .nav-dropdown-item { color: var(--color-ink-2); }
.nav-dropdown-item:hover {
  background: oklch(100% 0 0 / 0.08);
  color: var(--color-accent);
}
.site-nav.is-light .nav-dropdown-item:hover {
  background: var(--color-paper-2);
}

.nav-cta { margin-left: var(--space-4); }
.nav-phone {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast);
}
.nav-phone:hover { color: var(--color-accent-light); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-paper);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.site-nav.is-light .nav-hamburger span { background: var(--color-ink); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: oklch(17% 0.025 30);
  padding: var(--space-8) var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-out);
  z-index: 99;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-paper);
  text-decoration: none;
  padding-block: var(--space-3);
  border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  transition: color var(--dur-fast);
}
.nav-mobile-link:hover { color: var(--color-accent); }
.nav-mobile-sub {
  display: block;
  font-size: var(--text-base);
  color: oklch(70% 0.01 78);
  text-decoration: none;
  padding: var(--space-2) var(--space-6);
  transition: color var(--dur-fast);
}
.nav-mobile-sub:hover { color: var(--color-accent); }
.nav-mobile-cta { margin-top: var(--space-8); }

/* ────────────────────────────────────────────────────────────────────────────
   HERO — Full-bleed image hero
   ──────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-brand-2);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.hero:hover .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(17% 0.025 30 / 0.85) 0%,
    oklch(17% 0.025 30 / 0.4) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-32) var(--space-24);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: oklch(12% 0.02 30);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  margin-bottom: var(--space-6);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: oklch(12% 0.02 30);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--color-paper);
  max-width: 14ch;
  margin-bottom: var(--space-6);
}
.hero-title .accent-line {
  display: block;
  color: var(--color-accent);
}
.hero-lead {
  font-size: var(--text-xl);
  line-height: 1.55;
  color: oklch(88% 0.005 78);
  max-width: 52ch;
  margin-bottom: var(--space-10);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.hero-phone-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-paper);
  text-decoration: none;
}
.hero-phone-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid oklch(100% 0 0 / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.hero-phone-cta:hover .hero-phone-icon {
  border-color: var(--color-accent);
  background: oklch(100% 0 0 / 0.1);
}
.hero-phone-label { font-size: var(--text-xs); color: oklch(75% 0.01 78); }
.hero-phone-num { font-size: var(--text-lg); font-weight: 700; }

/* Hero stats bar */
.hero-stats {
  margin-top: var(--space-20);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}
.hero-stat {
  background: oklch(100% 0 0 / 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: oklch(78% 0.008 78);
  margin-top: var(--space-1);
}

/* ────────────────────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ──────────────────────────────────────────────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  padding-bottom: var(--space-16);
  background: var(--color-brand-2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero-home.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: var(--space-20);
}
.page-hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.page-hero-eyebrow a {
  color: oklch(70% 0.01 78);
  text-decoration: none;
}
.page-hero-eyebrow a:hover { color: var(--color-accent); }
.page-hero-eyebrow .sep { margin-inline: var(--space-2); color: oklch(50% 0.01 78); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-paper);
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-bottom: var(--space-6);
}
.page-hero p {
  font-size: var(--text-lg);
  color: oklch(80% 0.008 78);
  max-width: 56ch;
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────────────────────
   TRUST BAR
   ──────────────────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-brand);
  padding-block: var(--space-5);
  border-bottom: 3px solid var(--color-accent);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: oklch(88% 0.005 78);
  font-size: var(--text-sm);
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: oklch(100% 0 0 / 0.15);
}

/* ────────────────────────────────────────────────────────────────────────────
   SECTION HEADINGS
   ──────────────────────────────────────────────────────────────────────────── */
.section-head {
  margin-bottom: var(--space-12);
}
.section-head .eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.section-head p {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: var(--color-ink-2);
  max-width: 60ch;
  line-height: 1.65;
}
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

/* ────────────────────────────────────────────────────────────────────────────
   SERVICE CARDS
   ──────────────────────────────────────────────────────────────────────────── */
.service-card {
  background: var(--color-paper);
  border: 1px solid var(--color-paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-accent-light);
}
.service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-paper-3);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}
.service-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}
.service-card-top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.service-card-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-1);
}
.service-card-text p {
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.6;
}
.service-card-arrow {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--dur-fast);
}
.service-card:hover .service-card-arrow { gap: var(--space-3); }
.service-card-arrow svg { width: 16px; height: 16px; }

/* ────────────────────────────────────────────────────────────────────────────
   ABOUT SPLIT
   ──────────────────────────────────────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split-img-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.split-img-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-accent);
  line-height: 1;
}
.split-img-badge-label {
  font-size: var(--text-xs);
  color: var(--color-ink-2);
  line-height: 1.3;
}
.split-content { padding-inline: var(--space-4); }
.split-content .section-head { margin-bottom: var(--space-8); }
.split-check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.split-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.split-check-icon {
  width: 24px;
  height: 24px;
  background: var(--color-accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-check-icon svg { width: 13px; height: 13px; color: var(--color-accent); }

/* ────────────────────────────────────────────────────────────────────────────
   PROCESS STEPS
   ──────────────────────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-6);
  counter-reset: step;
}
.process-step {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-paper-3);
  background: var(--color-paper);
  position: relative;
  counter-increment: step;
  transition: box-shadow var(--dur-base);
}
.process-step:hover { box-shadow: var(--shadow-md); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────────────────────
   WHY CHOOSE US
   ──────────────────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--space-6);
}
.why-card {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-paper-3);
  padding: var(--space-8);
  transition: box-shadow var(--dur-base);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent-bg), var(--color-paper-2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.why-card-icon svg { width: 28px; height: 28px; color: var(--color-accent); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.why-card p {
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--color-brand);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: oklch(100% 0 0 / 0.04);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-paper);
  margin-bottom: var(--space-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: oklch(12% 0.02 30);
}
.testimonial-author-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-paper);
}
.testimonial-author-info span {
  font-size: var(--text-xs);
  color: oklch(65% 0.01 78);
}

/* ────────────────────────────────────────────────────────────────────────────
   AREAS GRID
   ──────────────────────────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: var(--space-3);
}
.area-chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: var(--color-paper);
  border: 1px solid var(--color-paper-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--color-ink);
  transition:
    border-color var(--dur-fast),
    background var(--dur-fast),
    transform var(--dur-fast);
}
.area-chip:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-bg);
  transform: translateX(4px);
}
.area-chip svg { width: 16px; height: 16px; color: var(--color-accent); }

/* ────────────────────────────────────────────────────────────────────────────
   CTA BAND
   ──────────────────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--color-brand-2) 0%,
    var(--color-brand) 100%
  );
  padding-block: var(--space-24);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.04;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--color-paper);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.cta-band p {
  margin-top: var(--space-3);
  color: oklch(72% 0.008 78);
  max-width: 50ch;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ──────────────────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 780px;
}
.faq-item {
  border: 1px solid var(--color-paper-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-paper);
  transition: box-shadow var(--dur-fast);
}
.faq-item.is-open { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-ink);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-item.is-open .faq-question { color: var(--color-accent); }
.faq-chevron {
  width: 24px;
  height: 24px;
  color: var(--color-ink-3);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}
.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--color-ink-2);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { display: block; }

/* ────────────────────────────────────────────────────────────────────────────
   CONTENT PAGE LAYOUT (inner pages)
   ──────────────────────────────────────────────────────────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-16);
  align-items: start;
}
.content-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.content-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--color-ink);
}
.content-body p {
  font-size: var(--text-base);
  color: var(--color-ink-2);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: 70ch;
}
.content-body .intro-p {
  font-size: var(--text-lg);
  color: var(--color-ink);
  line-height: 1.65;
}
.content-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
}
.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-block: var(--space-2);
  font-size: var(--text-base);
  color: var(--color-ink-2);
}
.content-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

/* Signs / reasons cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block: var(--space-6);
}
.info-card {
  background: var(--color-paper-2);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5) var(--space-6);
}
.info-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-2);
  color: var(--color-ink);
}
.info-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.65;
  max-width: none;
}

/* Sidebar */
.content-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-8));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.sidebar-cta-box {
  background: var(--color-brand);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}
.sidebar-cta-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-paper);
  margin-bottom: var(--space-3);
}
.sidebar-cta-box p {
  font-size: var(--text-sm);
  color: oklch(72% 0.008 78);
  margin-bottom: var(--space-6);
}
.sidebar-phone {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.sidebar-phone:hover { color: var(--color-accent-light); }
.sidebar-services-box {
  background: var(--color-paper);
  border: 1px solid var(--color-paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-services-title {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-3);
  border-bottom: 1px solid var(--color-paper-3);
  background: var(--color-paper-2);
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--color-paper-3);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover {
  background: var(--color-accent-bg);
  color: var(--color-accent-dark);
}
.sidebar-service-link svg { width: 14px; height: 14px; color: var(--color-accent); }

/* ────────────────────────────────────────────────────────────────────────────
   CONTACT FORM
   ──────────────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; color: var(--color-accent); }
.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-3);
  margin-bottom: var(--space-1);
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-ink);
  text-decoration: none;
  transition: color var(--dur-fast);
}
a.contact-info-value:hover { color: var(--color-accent); }
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-2);
  margin-bottom: var(--space-2);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--color-paper);
  border: 1.5px solid var(--color-paper-3);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px oklch(62% 0.155 47 / 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

/* ────────────────────────────────────────────────────────────────────────────
   FOOTER — Ft5 Statement
   ──────────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-brand-2);
  border-top: 3px solid var(--color-accent);
}
.footer-top {
  padding-block: var(--space-20);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-12);
}
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-paper);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: oklch(62% 0.01 60);
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: var(--space-6);
}
.footer-bbb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: oklch(80% 0.005 78);
}
.footer-bbb strong {
  color: var(--color-accent);
  font-size: var(--text-lg);
}
.footer-col h3 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(55% 0.01 60);
  margin-bottom: var(--space-5);
}
.footer-link {
  display: block;
  font-size: var(--text-sm);
  color: oklch(68% 0.01 60);
  text-decoration: none;
  padding-block: var(--space-2);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.footer-link:hover {
  color: var(--color-accent);
  padding-left: var(--space-2);
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-block: var(--space-2);
}
.footer-contact-line svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }
.footer-contact-line a, .footer-contact-line span {
  font-size: var(--text-sm);
  color: oklch(68% 0.01 60);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-contact-line a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-copy {
  font-size: var(--text-xs);
  color: oklch(42% 0.01 60);
}
.footer-legal {
  display: flex;
  gap: var(--space-6);
}
.footer-legal a {
  font-size: var(--text-xs);
  color: oklch(42% 0.01 60);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-legal a:hover { color: var(--color-accent); }

/* ────────────────────────────────────────────────────────────────────────────
   ANIMATIONS (reveal on scroll)
   ──────────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ────────────────────────────────────────────────────────────────────────────
   UTILITY
   ──────────────────────────────────────────────────────────────────────────── */
.bg-paper-2 { background: var(--color-paper-2); }
.bg-paper-3 { background: var(--color-paper-3); }
.bg-brand   { background: var(--color-brand); }
.bg-brand-2 { background: var(--color-brand-2); }

.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.max-w-text { max-width: var(--max-w-text); }

/* ────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .content-sidebar {
    position: static;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-section.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root {
    --text-6xl: 3.5rem;
    --text-5xl: 2.75rem;
    --text-4xl: 2.25rem;
    --space-24: 4rem;
    --space-32: 5rem;
  }
  .nav-links,
  .nav-cta,
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .cta-band-inner {
    flex-direction: column;
  }
  .hero-stats {
    gap: var(--space-2);
  }
}

@media (max-width: 414px) {
  .container { padding-inline: var(--space-4); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
