/* ================================================================
   Scollo Painting Inc. — Main Stylesheet
   Deep navy · warm amber/gold · editorial serif · clean grotesque
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Brand: Navy */
  --navy-950: #0a1626;
  --navy-900: #0f2034;
  --navy-800: #14263d;
  --navy-700: #1d3553;
  --navy-600: #2a4870;

  /* Brand: Amber/Gold */
  --amber-700: #9a6a26;
  --amber-600: #b07f30;
  --amber-500: #c18a3d;
  --amber-400: #d4a25c;
  --amber-300: #e4c08f;
  --amber-100: #f6ecd9;
  --amber-50:  #faf4e9;

  /* Neutrals */
  --white:     #ffffff;
  --paper:     #faf8f4;
  --cloud:     #f3efe8;
  --stone-200: #e6e0d6;
  --stone-300: #d2cabb;
  --stone-400: #a9a193;
  --stone-500: #7c7468;
  --stone-600: #574f44;
  --ink:       #1b1814;

  /* Functional */
  --success: #2f7d52;
  --danger:  #b23b2e;

  /* Semantic surfaces */
  --surface-page:        var(--paper);
  --surface-card:        var(--white);
  --surface-panel:       var(--cloud);
  --surface-inverse:     var(--navy-900);
  --surface-accent-soft: var(--amber-50);

  /* Semantic text */
  --text-strong:        var(--ink);
  --text-body:          var(--stone-600);
  --text-muted:         var(--stone-500);
  --text-on-dark:       #f4f1ea;
  --text-on-dark-muted: #b9c2cf;
  --text-accent:        var(--amber-600);

  /* Borders */
  --border-subtle:  var(--stone-200);
  --border-default: var(--stone-300);
  --border-strong:  var(--stone-400);
  --border-on-dark: rgba(255,255,255,0.14);

  /* Brand primaries */
  --brand-navy:         var(--navy-900);
  --brand-accent:       var(--amber-500);
  --brand-accent-hover: var(--amber-600);

  /* Typography */
  --font-serif:   "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans:    "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: var(--font-serif);
  --font-heading: var(--font-serif);
  --font-body:    var(--font-sans);
  --font-ui:      var(--font-sans);

  /* Type scale */
  --fs-display-xl: 4.5rem;
  --fs-display-l:  3.5rem;
  --fs-display-m:  2.75rem;
  --fs-h1:         2.25rem;
  --fs-h2:         1.75rem;
  --fs-h3:         1.375rem;
  --fs-h4:         1.125rem;
  --fs-body-lg:    1.1875rem;
  --fs-body:       1rem;
  --fs-small:      0.875rem;
  --fs-eyebrow:    0.78rem;

  /* Weights */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* Line heights */
  --lh-tight:   1.08;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  /* Letter spacing */
  --ls-tight:   -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.04em;
  --ls-eyebrow: 0.18em;

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4rem;
  --space-9:  6rem;
  --space-10: 8rem;

  /* Radii */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:     0 1px 2px rgba(20,24,33,0.06);
  --shadow-sm:     0 2px 8px rgba(20,24,33,0.07);
  --shadow-md:     0 10px 28px -8px rgba(15,32,52,0.16);
  --shadow-lg:     0 24px 60px -18px rgba(15,32,52,0.28);
  --shadow-accent: 0 12px 30px -10px rgba(193,138,61,0.5);

  /* Layout */
  --container-max:    1200px;
  --container-narrow: 760px;
  --gutter:           clamp(1.25rem, 4vw, 3rem);
  --header-h:         84px;

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:    140ms;
  --dur-base:    240ms;
  --dur-slow:    420ms;

  /* Focus */
  --ring: color-mix(in oklch, var(--amber-500) 65%, white);
}

/* === BASE RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: var(--ls-normal); }
h4 { font-size: var(--fs-h4); letter-spacing: var(--ls-normal); }
p { margin: 0 0 var(--space-4); text-wrap: pretty; }
a { color: var(--text-accent); text-decoration: none; }
a:hover { color: var(--brand-accent-hover); }
strong { color: var(--text-strong); font-weight: var(--fw-semibold); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: var(--space-5); margin: 0 0 var(--space-4); }
li { margin-bottom: var(--space-2); }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
  display: block;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--amber-400); }

.rule-accent {
  width: 48px; height: 3px;
  background: var(--brand-accent);
  border: 0; border-radius: var(--radius-pill);
  margin: 0 0 18px;
}
.rule-accent--center { margin-inline: auto; }

.accent-italic {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--text-accent);
}
.accent-italic--light { color: var(--amber-400); }

.section-lead {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}
.section-lead--light { color: var(--text-on-dark-muted); }

.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;
}

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: var(--surface-page);
  border-bottom: 1px solid transparent;
  transition:
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    backdrop-filter var(--dur-base) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(250,248,244,0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--border-subtle);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 120px; }
.header-nav {
  display: flex; gap: 4px; margin-left: 12px;
}
.header-nav a {
  font-family: var(--font-ui);
  font-size: 14.5px; font-weight: 600;
  color: var(--stone-600);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.header-nav a:hover { color: var(--navy-900); }
.header-nav a[aria-current="page"] { color: var(--amber-700); }
.header-actions {
  margin-left: auto;
  display: flex; align-items: center; gap: 18px;
}
.menu-btn {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  color: var(--navy-900); padding: 6px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  line-height: 0;
}
.menu-btn svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-page);
  padding: 12px var(--gutter) 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 4px;
  font-family: var(--font-ui); font-weight: 600;
  font-size: 16px; color: var(--navy-900);
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--amber-600); }
.mobile-menu-actions {
  display: flex; gap: 12px; margin-top: 18px;
}

/* === DROPDOWN NAV === */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-ui);
  font-size: 14.5px; font-weight: 600;
  color: var(--stone-600);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  text-decoration: none;
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-dropdown:hover .nav-dropdown-btn { color: var(--navy-900); }
.nav-dropdown-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(15,32,52,0.15), 0 2px 8px rgba(15,32,52,0.08);
  border: 1px solid var(--border-subtle);
  padding: 10px 0 6px;
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  font-family: var(--font-ui); font-size: 13.5px; font-weight: 500;
  color: var(--navy-900);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-panel a:hover { background: var(--surface-raised); color: var(--amber-700); }
.nav-dropdown-panel a svg { color: var(--amber-600); flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: var(--border-subtle); margin: 6px 0; }
.nav-dropdown-panel .nav-dropdown-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 6px 14px 4px;
  padding: 10px 16px;
  background: var(--navy-900); color: #fff;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 13.5px;
}
.nav-dropdown-panel .nav-dropdown-all:hover { background: var(--amber-700); color: #fff; }
.nav-dropdown-panel .nav-dropdown-all svg { color: #fff; }

/* Areas dropdown — wider, 2 cols */
.nav-dropdown-panel--areas {
  min-width: 480px;
}
.nav-dropdown-panel--areas .nav-dd-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 4px 10px;
}
.nav-dropdown-panel--areas .nav-dd-grid a {
  padding: 7px 10px; font-size: 13px;
}

/* Mobile dropdown */
.mobile-nav-dropdown-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 13px 4px;
  font-family: var(--font-ui); font-weight: 600;
  font-size: 16px; color: var(--navy-900);
  border-bottom: 1px solid var(--border-subtle);
  background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; cursor: pointer;
}
.mobile-nav-dropdown-btn:hover { color: var(--amber-600); }
.mobile-nav-dropdown-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.mobile-nav-dropdown-btn.open svg { transform: rotate(180deg); }
.mobile-nav-dropdown-list {
  display: none; background: var(--surface-raised);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-dropdown-list.open { display: block; }
.mobile-nav-dropdown-list a {
  border-bottom: 1px solid var(--border-subtle);
  padding: 11px 18px;
  font-size: 14.5px; font-weight: 500; color: var(--stone-600);
}
.mobile-nav-dropdown-list a:last-child { border-bottom: none; }

/* === BUTTON === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 600;
  line-height: 1; white-space: nowrap; letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn--sm  { padding: 9px 16px;  font-size: 14px; gap: 7px; }
.btn--md  { padding: 13px 24px; font-size: 15px; gap: 9px; }
.btn--lg  { padding: 17px 34px; font-size: 17px; gap: 10px; }

.btn--primary {
  background: var(--amber-500); color: var(--navy-950);
  border: 1px solid var(--amber-500);
}
.btn--primary:hover {
  background: var(--amber-600); border-color: var(--amber-600);
  transform: translateY(-1px); box-shadow: var(--shadow-accent);
  color: var(--navy-950);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent; color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn--secondary:hover { background: var(--navy-900); color: var(--white); }

.btn--ghost {
  background: transparent; color: var(--navy-900);
  border: 1.5px solid transparent;
}
.btn--ghost:hover { background: var(--amber-50); border-color: var(--amber-100); color: var(--navy-900); }

.btn--inverse {
  background: var(--white); color: var(--navy-900);
  border: 1px solid var(--white);
}
.btn--inverse:hover { background: var(--paper); color: var(--navy-900); }

.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 1em; height: 1em; flex-shrink: 0; }

/* === BADGE === */
.badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.badge--accent {
  background: var(--amber-50); color: var(--amber-700);
  border: 1px solid var(--amber-100);
}
.badge--navy { background: var(--navy-800); color: var(--text-on-dark); }
.badge--amber-light { background: rgba(255,255,255,0.15); color: #ffffff; border: 1px solid rgba(255,255,255,0.3); }

/* === CARD === */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
}
.card--navy {
  background: var(--navy-800);
  border-color: var(--border-on-dark);
}
.card--panel {
  background: var(--surface-panel);
  border-color: var(--border-subtle);
}

/* === SERVICE CARD === */
.service-card {
  display: block;
  text-decoration: none;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-default);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-600);
  margin-bottom: var(--space-5);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-heading); font-size: var(--fs-h3);
  font-weight: 600; color: var(--text-strong); margin: 0 0 10px;
}
.service-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--text-body); margin: 0 0 18px;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-weight: 600;
  font-size: 14px; color: var(--amber-600);
}
.service-card__link svg {
  width: 16px; height: 16px;
  transition: transform var(--dur-base) var(--ease-out);
}
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* === TRUST ITEM === */
.trust-item { display: flex; flex-direction: column; }
.trust-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-400);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}
.trust-item__icon svg { width: 18px; height: 18px; }
.trust-item__title {
  font-family: var(--font-heading); font-size: var(--fs-h4);
  font-weight: 600; color: var(--text-on-dark); margin: 0 0 8px;
}
.trust-item__body {
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-on-dark-muted); margin: 0;
}

/* === PHONE LINK === */
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px;
  color: var(--navy-900); text-decoration: none;
  transition: color var(--dur-fast);
}
.phone-link:hover { color: var(--amber-600); }
.phone-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.phone-link--light { color: var(--amber-400); }
.phone-link--light:hover { color: var(--amber-300); }

/* === FORM ELEMENTS === */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-5); }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: var(--text-strong);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-ui); font-size: 15px;
  color: var(--text-strong);
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--stone-400); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(193,138,61,0.18);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c7468' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; }

/* === BEFORE/AFTER SLIDER === */
.before-after {
  position: relative; width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden; user-select: none;
  box-shadow: var(--shadow-md); cursor: ew-resize;
  touch-action: none;
}
.ba-after-panel {
  position: absolute; inset: 0;
}
.ba-after-panel img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.ba-before-clip {
  position: absolute; inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-before-panel {
  position: absolute; inset: 0;
}
.ba-before-panel img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.ba-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 12px;
  letter-spacing: 0.04em; text-align: center; padding: 0 18px;
}
.ba-placeholder--before {
  background: repeating-linear-gradient(135deg,#8c8378,#8c8378 14px,#827a6f 14px,#827a6f 28px);
  color: rgba(255,255,255,0.85);
}
.ba-placeholder--after {
  background: repeating-linear-gradient(135deg,#3a5170,#3a5170 14px,#344966 14px,#344966 28px);
  color: rgba(255,255,255,0.85);
}
.ba-label {
  position: absolute; top: 14px;
  font-family: var(--font-ui); font-weight: 600;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff;
  background: rgba(15,32,52,0.72);
  padding: 5px 11px; border-radius: var(--radius-pill);
  pointer-events: none; z-index: 3;
}
.ba-label--before { left: 14px; }
.ba-label--after { right: 14px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: var(--amber-500);
  left: 50%; transform: translateX(-1px);
  z-index: 4; pointer-events: none;
}
.ba-handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.ba-handle-knob svg { width: 22px; height: 22px; }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 13px;
  color: var(--text-muted); margin-bottom: 22px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text-accent); }
.breadcrumb svg { width: 14px; height: 14px; color: var(--stone-400); }
.breadcrumb-current { color: var(--text-strong); font-weight: 600; }

/* === SECTION HEADINGS === */
.section-heading { max-width: 640px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .rule-accent { margin-inline: auto; }
.section-heading h1,
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.02em; margin: 0 0 14px;
}
.section-heading--light h1,
.section-heading--light h2 { color: var(--text-on-dark); }

/* === HOME: HERO === */
.hero { position: relative; }

/* Full-bleed hero */
.hero--fullbleed {
  position: relative; overflow: hidden;
  min-height: 86vh; display: flex; align-items: center;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(8,15,28,0.75) 0%, rgba(8,15,28,0.45) 50%, rgba(8,15,28,0.05) 100%);
}
.hero-fullbleed-inner {
  position: relative; z-index: 2;
  padding-top: 120px; padding-bottom: 100px;
  max-width: 680px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero-actions { display: flex; flex-direction: row; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-heading--light {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.025em; color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-heading--light .accent-italic { color: var(--amber-400); }
.hero-lead--light {
  font-size: 19px; line-height: 1.6;
  color: #ffffff !important; margin: 0 0 30px; max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-trust--light .trust-item {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  flex-direction: row; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 13.5px; font-weight: 600;
}
.hero-trust--light .trust-item svg { color: var(--amber-400) !important; }
.badge--outline-light {
  border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
}
.hero-review-card--float {
  flex-shrink: 0; width: 280px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
}

/* Legacy two-col hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
  padding: var(--space-8) 0 var(--space-9);
}
.hero-eyebrow-row {
  display: inline-flex; align-items: center;
  gap: 9px; margin-bottom: 22px;
}
.hero-location {
  font-family: var(--font-ui); font-size: 13px;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 5px;
}
.hero-location svg { width: 14px; height: 14px; color: var(--amber-600); }
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.025em; color: var(--text-strong);
  margin: 0 0 20px;
}
.hero-lead {
  font-size: 19px; line-height: 1.6;
  color: var(--text-body); margin: 0 0 30px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 13.5px;
  font-weight: 600; color: var(--stone-600);
}
.hero-trust-item svg { width: 17px; height: 17px; color: var(--amber-600); }

.hero-media { position: relative; }
.hero-img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; background: #cdbfa8;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg,#cdbfa8,#cdbfa8 16px,#c3b59d 16px,#c3b59d 32px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 12.5px;
  color: var(--stone-600); letter-spacing: 0.04em;
  text-align: center; padding: 0 24px;
  aspect-ratio: 4/5;
}
.hero-float-card {
  position: absolute; bottom: 22px; left: -26px;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border-subtle); width: 268px;
}
.hero-stars { display: flex; gap: 2px; flex-shrink: 0; }
.hero-stars svg { width: 15px; height: 15px; fill: var(--amber-500); color: var(--amber-500); }
.hero-float-text { line-height: 1.35; }
.hero-float-text strong {
  font-family: var(--font-ui); font-weight: 700;
  font-size: 14px; color: var(--text-strong); display: block;
}
.hero-float-text span {
  font-family: var(--font-ui); font-size: 12.5px; color: var(--text-muted);
}

/* === HOME: SERVICES === */
.services-section { background: var(--surface-page); padding: var(--space-9) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px; margin-top: 48px;
}

/* === HOME: WHY US === */
.why-us { background: var(--navy-900); padding: var(--space-9) 0; }
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px; align-items: center;
}
.why-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.trust-item__icon { margin-bottom: var(--space-2); }

/* === HOME: GALLERY === */
.gallery-section { background: var(--surface-page); padding: var(--space-9) 0; }

/* === HOME: AREAS === */
.areas-section { background: var(--surface-panel); padding: var(--space-9) 0; }
.city-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 40px;
  max-width: 880px; margin-inline: auto;
}
.city-chip {
  font-family: var(--font-ui); font-size: 14px;
  font-weight: 600; color: var(--navy-800);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 16px; text-decoration: none;
  transition: all var(--dur-fast);
}
.city-chip:hover {
  border-color: var(--amber-300); background: var(--amber-50);
  color: var(--amber-700);
}

/* === CTA BAND === */
.cta-band { background: var(--navy-900); overflow: hidden; }
.cta-band-inner {
  padding: var(--space-9) 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 32px; justify-content: space-between;
}
.cta-band-text { max-width: 620px; }
.cta-band-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600; color: var(--text-on-dark);
  line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 12px;
}
.cta-band-text p {
  color: var(--text-on-dark-muted); font-size: 17px;
  line-height: 1.6; margin: 0;
}
.cta-band-actions {
  display: flex; flex-direction: column; gap: 14px; min-width: 230px;
}
.cta-band-actions .phone-link {
  justify-content: center; font-size: 17px;
}

/* === FOOTER === */
.site-footer { background: var(--navy-950); color: var(--text-on-dark-muted); }
.footer-inner { padding: var(--space-6) 0 var(--space-4); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo-img { height: 46px; margin-bottom: 18px; }
.footer-desc {
  font-size: 14.5px; line-height: 1.65;
  margin: 0 0 16px; max-width: 280px;
}
.footer-head {
  font-family: var(--font-ui); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 14px;
}
.footer-link {
  display: block; font-size: 14.5px;
  color: var(--text-on-dark-muted); text-decoration: none; padding: 5px 0;
}
.footer-link:hover { color: var(--amber-400); }
.footer-contact-row {
  display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px;
  color: var(--text-on-dark-muted);
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 1px; color: var(--amber-500); width: 17px; height: 17px; }
.footer-map {
  height: 120px; border-radius: var(--radius-md);
  border: 1px solid var(--border-on-dark);
  background: linear-gradient(135deg, #1b2c44, #16263d);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--text-on-dark-muted); font-size: 12.5px;
  overflow: hidden;
}
.footer-map iframe { width: 100%; height: 100%; border: 0; }
.footer-map svg { color: var(--amber-400); width: 18px; height: 18px; }
.footer-areas-row {
  border-top: 1px solid var(--border-on-dark);
  margin-top: 40px; padding-top: 22px;
}
.footer-areas-label {
  font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-on-dark-muted); margin-bottom: 12px;
}
.footer-cities {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  font-size: 13.5px; margin-bottom: 26px;
}
.footer-cities a {
  color: var(--text-on-dark-muted); text-decoration: none;
}
.footer-cities a:hover { color: var(--amber-400); }
.footer-bottom {
  border-top: 1px solid var(--border-on-dark);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 18px; justify-content: space-between;
}
.payment-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-badge {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.03em; color: var(--text-on-dark);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-xs); padding: 5px 9px;
}
.footer-insured { font-size: 12.5px; margin-left: 6px; }
.footer-copy { font-size: 12.5px; }

/* === INNER PAGE LAYOUT === */
.page-section { padding: var(--space-7) 0 var(--space-9); background: var(--surface-page); }
.page-section--panel { background: var(--surface-panel); }

/* Services overview detail cards */
.service-detail-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-card); box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-5);
}
.service-detail-row:last-child { margin-bottom: 0; }
.service-detail-img {
  background: repeating-linear-gradient(135deg,#cdbfa8,#cdbfa8 16px,#c3b59d 16px,#c3b59d 32px);
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 12.5px;
  color: var(--stone-600); letter-spacing: 0.04em; text-align: center; padding: 24px;
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content { padding: var(--space-6); display: flex; flex-direction: column; justify-content: center; }
.service-detail-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-600); margin-bottom: 16px;
}
.service-detail-icon svg { width: 24px; height: 24px; }
.service-detail-content h3 { font-size: 22px; margin: 0 0 10px; }
.service-detail-content p { font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; }

/* === SERVICES PAGE === */
.page-hero { padding: var(--space-8) 0 var(--space-7); background: var(--surface-page); }
.page-hero-content { max-width: 720px; }
.page-hero-content h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 16px; }
.page-hero-lead { font-size: 17px; line-height: 1.7; color: var(--text-body); margin: 0; max-width: 640px; }

.service-rows-section { padding: var(--space-8) 0; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: var(--space-8) 0; border-bottom: 1px solid var(--border-subtle);
}
.service-row:last-child { border-bottom: none; }
.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }
.service-row-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-row-content { display: flex; flex-direction: column; gap: 18px; }
.service-row-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-700);
}
.service-row-icon svg, .service-row-icon i { width: 22px; height: 22px; }
.service-row-content h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-strong); margin: 0; }
.service-row-content p { font-size: 15.5px; line-height: 1.7; color: var(--text-body); margin: 0; }
.service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-body); }
.service-list li svg { color: var(--amber-600); flex-shrink: 0; }

.why-summary-section { background: var(--surface-panel); padding: var(--space-9) 0; }
.why-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: var(--space-6); }
.why-summary-item {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-5);
  display: flex; flex-direction: column; gap: 10px;
}
.why-summary-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-700); flex-shrink: 0;
}
.why-summary-icon svg, .why-summary-icon i { width: 20px; height: 20px; }
.why-summary-item h3 { font-family: var(--font-heading); font-size: var(--fs-h4); font-weight: 600; color: var(--text-strong); margin: 0; }
.why-summary-item p { font-size: 14px; line-height: 1.6; color: var(--text-body); margin: 0; }

@media (max-width: 1000px) {
  .why-summary-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .service-row, .service-row--reverse { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .why-summary-grid { grid-template-columns: 1fr 1fr; }
}

/* Service detail page */
.service-page-hero {
  background: var(--navy-900);
  padding: var(--space-9) 0;
  position: relative; overflow: hidden;
}
.service-page-hero h1,
.service-page-hero p,
.service-page-hero .service-page-hero__lead { color: #ffffff; }
.service-page-hero .breadcrumb { color: rgba(255,255,255,0.65); }
.service-page-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.service-page-hero .breadcrumb a:hover { color: #ffffff; }
.service-page-hero .breadcrumb span { color: rgba(255,255,255,0.9); }
.service-page-hero svg { color: rgba(255,255,255,0.5); }
.service-page-content { padding: var(--space-9) 0; }
.service-feature-grid,
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: var(--space-7);
}
.service-feature-item,
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface-panel);
  border-radius: var(--radius-md); padding: var(--space-5);
}
.service-feature-item svg,
.feature-item svg { width: 20px; height: 20px; color: var(--amber-600); flex-shrink: 0; margin-top: 2px; }
.service-feature-item h4,
.feature-item h4 { margin: 0 0 6px; font-size: var(--fs-h4); }
.service-feature-item p,
.feature-item p { font-size: 14px; margin: 0; }
.feature-item__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: var(--radius-md); background: var(--amber-50);
  border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-700);
}
.feature-item__icon svg { width: 24px; height: 24px; color: var(--amber-700); margin-top: 0; }

/* Quote page */
.quote-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 48px; align-items: start; margin-top: 30px;
}
.quote-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.quote-form-grid .form-group--full { grid-column: 1 / -1; }
.quote-aside { display: flex; flex-direction: column; gap: 18px; }
.quote-aside-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text-on-dark-muted); margin-bottom: 12px;
}
.quote-aside-row svg { flex-shrink: 0; margin-top: 1px; color: var(--amber-500); width: 17px; height: 17px; }
.quote-success {
  display: none; text-align: center; padding: 30px 10px;
}
.quote-success.visible { display: block; }
.quote-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--amber-600); margin-bottom: 18px;
}
.quote-success-icon svg { width: 30px; height: 30px; }

/* Areas page */
.areas-grid,
.areas-card-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
}
.area-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: var(--space-4) var(--space-5);
  text-decoration: none; transition: all var(--dur-base) var(--ease-out);
}
.area-card:hover {
  border-color: var(--amber-300); box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.area-card__city {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--fs-h4); color: var(--text-strong); margin: 0 0 4px;
}
.area-card__meta { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); }
.area-card-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber-100); border-radius: var(--radius-sm); color: var(--amber-700);
}
.area-card-name {
  flex: 1; font-family: var(--font-heading); font-weight: 600;
  font-size: var(--fs-base); color: var(--text-strong);
}
.area-card-county { font-family: var(--font-ui); font-size: 12px; color: var(--text-muted); }
.area-card-arrow { flex-shrink: 0; color: var(--text-muted); transition: transform var(--dur-base) var(--ease-out); }
.area-card:hover .area-card-arrow { transform: translateX(3px); color: var(--amber-600); }

/* Gallery page */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg,#cdbfa8,#cdbfa8 16px,#c3b59d 16px,#c3b59d 32px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 12px;
  color: var(--stone-600); letter-spacing: 0.04em; text-align: center; padding: 0 18px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* === REVIEWS === */
.reviews-section { background: var(--cloud); }
.reviews-aggregate {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-top: 12px;
}
.reviews-stars { color: var(--amber-500); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-score { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--navy-900); }
.reviews-count { font-size: 14px; color: var(--text-muted); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.review-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: var(--amber-500); font-size: 1.1rem; letter-spacing: 2px; }
.review-body {
  margin: 0; font-size: 15px; line-height: 1.65;
  color: var(--text-body); font-style: italic;
  flex: 1;
}
.review-author {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 14px; border-top: 1px solid var(--border-subtle);
}
.review-author strong { color: var(--navy-900); font-size: 14px; }
.review-author span { font-size: 13px; color: var(--text-muted); }

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

/* === LIGHTBOX === */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,22,38,0.95);
  align-items: center; justify-content: center;
  gap: 16px; padding: 20px;
}
.lb-overlay.open { display: flex; }
.lb-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: min(92vw, 1100px); max-height: 90vh;
}
.lb-img {
  max-width: 100%; max-height: calc(90vh - 56px);
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.lb-caption {
  margin: 14px 0 0; color: rgba(255,255,255,0.75);
  font-family: var(--font-ui); font-size: 14px; text-align: center;
}
.lb-close {
  position: fixed; top: 18px; right: 22px;
  background: rgba(255,255,255,0.12); border: none; cursor: pointer;
  color: #fff; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-prev, .lb-next {
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: #fff; border-radius: 50%; width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.gallery-item img { transition: opacity 0.2s, transform 0.2s; }
.gallery-item:hover img { opacity: 0.88; transform: scale(1.02); }

/* FAQ */
.faq-list { max-width: 760px; margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item summary {
  font-family: var(--font-heading); font-size: var(--fs-h4);
  font-weight: 600; color: var(--text-strong);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; padding: var(--space-5) 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--amber-600); transition: transform var(--dur-base); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer { padding: 0 0 var(--space-5); color: var(--text-body); line-height: 1.65; }

/* About page */
.about-content { max-width: 760px; }
.about-stat {
  text-align: center; padding: var(--space-6);
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600; color: var(--amber-600);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
}
.about-stat-label {
  font-family: var(--font-ui); font-size: 14px;
  font-weight: 600; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: var(--space-7);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: var(--space-7);
}
.stat-card {
  text-align: center; padding: var(--space-6);
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600; color: var(--amber-600);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-ui); font-size: 14px;
  font-weight: 600; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding-top: var(--space-7);
}
.story-text { display: flex; flex-direction: column; gap: 16px; }
.story-photo { border-radius: var(--radius-lg); overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.photo-placeholder { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: var(--space-6);
}
.value-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-5);
  display: flex; flex-direction: column; gap: 10px;
}
.value-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-700);
}
.value-card h3 { font-family: var(--font-heading); font-size: var(--fs-h4); font-weight: 600; margin: 0; }
.value-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-body); margin: 0; }
.approach-inner { max-width: 760px; }
.approach-text { display: flex; flex-direction: column; gap: 16px; }
.approach-text .eyebrow { margin-bottom: 0; color: var(--amber-600) !important; }
.approach-text h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-strong); }
.approach-text p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--text-body); }
.cta-band { margin-top: 0; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.value-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-600); flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; }
.value-item h4 { margin: 0 0 6px; }
.value-item p { font-size: 14.5px; margin: 0; }

/* Contact page */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: var(--space-6);
}
.contact-info-row {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: var(--space-5);
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-600); flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-weight: 600; color: var(--text-strong); font-size: 14px; margin-bottom: 4px; }
.contact-map-embed {
  height: 260px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); overflow: hidden;
  background: linear-gradient(135deg, #e8e4dc, #ddd8cc);
  margin-top: var(--space-6);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--stone-500); font-size: 13px;
  font-family: var(--font-ui);
}
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-map-embed svg { color: var(--amber-600); width: 20px; height: 20px; }

/* City/location page */
.location-hero { background: var(--navy-900); padding: var(--space-9) 0; }
.location-hero h1,
.location-hero p { color: #ffffff; }
.location-hero .breadcrumb { color: rgba(255,255,255,0.6); }
.location-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.location-hero .breadcrumb a:hover { color: #ffffff; }
.location-hero .breadcrumb span,
.location-hero .breadcrumb-current { color: rgba(255,255,255,0.9); }
.location-hero .breadcrumb svg,
.location-hero svg { color: rgba(255,255,255,0.5); }
.eyebrow--light { color: var(--amber-400) !important; }
.location-content { padding: var(--space-9) 0; }
.location-services { margin-top: var(--space-7); }
.location-service-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: var(--space-5) 0; border-bottom: 1px solid var(--border-subtle);
}
.location-service-row:last-child { border-bottom: 0; }
.location-service-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--amber-50); border: 1px solid var(--amber-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-600); flex-shrink: 0;
}
.location-service-icon svg { width: 22px; height: 22px; }
.location-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: var(--space-5);
}
.location-trust-item {
  display: flex; gap: 10px; align-items: center;
  background: var(--surface-panel); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-ui); font-size: 14px;
  font-weight: 600; color: var(--text-strong);
}
.location-trust-item svg { width: 18px; height: 18px; color: var(--amber-600); flex-shrink: 0; }
.location-map {
  height: 240px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); overflow: hidden;
  background: linear-gradient(135deg, #e8e4dc, #ddd8cc);
  margin-top: var(--space-6);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--stone-500); font-size: 13px; font-family: var(--font-ui);
}
.location-map svg { color: var(--amber-600); width: 20px; height: 20px; }
.location-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start;
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .hero-grid, .why-grid, .location-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-items { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-float-card { left: 16px; }
  .areas-grid, .areas-card-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header-nav, .header-actions { display: none; }
  .menu-btn { display: inline-flex; }

  .hero-grid { gap: 32px; }
  .hero-float-card { display: none; }
  .hero-review-card--float { display: none; }
  .hero-fullbleed-inner { flex-direction: column; align-items: flex-start; }
  .services-grid, .why-items { grid-template-columns: 1fr; }
  .footer-grid, .quote-grid, .quote-form-grid,
  .contact-grid, .service-feature-grid, .values-grid,
  .areas-grid, .areas-card-grid, .gallery-grid, .about-stats-grid,
  .service-detail-row, .location-trust-grid,
  .location-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .cta-band-actions { width: 100%; }
  .mobile-menu-actions .btn--full { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ═══════════════════════════════════════════════
   Chat Widget
   ═══════════════════════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
#chatFrame { display: none; }

/* Bubble */
.chat-bubble {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy-900);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(15,32,52,.4);
  transition: transform .2s var(--ease-out), background .2s;
  flex-shrink: 0;
}
.chat-bubble:hover { background: var(--amber-600); transform: scale(1.07); }
.chat-bubble .icon-close { display: none; }
.chat-bubble.open .icon-chat  { display: none; }
.chat-bubble.open .icon-close { display: block; }

.chat-bubble-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-bubble-label {
  background: #fff;
  color: var(--navy-900);
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(15,32,52,.18);
  white-space: nowrap;
  animation: chat-label-in .4s var(--ease-out) .8s both;
  transition: opacity .3s, transform .3s;
}
.chat-bubble-label.hidden {
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
}
@keyframes chat-label-in {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Panel */
.chat-panel {
  width: 320px;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(15,32,52,.22);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(.94) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-panel-head {
  background: var(--navy-900);
  color: #fff;
  padding: 15px 15px 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-panel-head-inner { display: flex; align-items: center; gap: 10px; }
.chat-logo {
  display: block;
  height: 26px;
  width: auto;
  flex-shrink: 0;
}
.chat-panel-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color .15s;
  display: flex;
  align-items: center;
}
.chat-panel-close:hover { color: #fff; }

.chat-panel-body { padding: 18px 18px 20px; }
.chat-intro {
  font-size: .86rem;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.55;
}
.chat-field { margin-bottom: 10px; }
.chat-input, .chat-textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--text-primary);
  background: var(--surface);
  box-sizing: border-box;
  transition: border-color .15s;
}
.chat-input:focus, .chat-textarea:focus {
  outline: none;
  border-color: var(--navy-900);
}
.chat-textarea { resize: none; }
.chat-submit {
  width: 100%;
  margin-top: 4px;
  padding: 11px 20px;
  background: var(--amber-600);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.chat-submit:hover { background: #9a6f27; transform: translateY(-1px); }
.chat-submit:disabled { opacity: .6; cursor: default; transform: none; }

.chat-success {
  text-align: center;
  padding: 28px 16px 20px;
}
.chat-success svg { color: var(--amber-600); margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
.chat-success-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.chat-success-sub {
  font-size: .875rem;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 400px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); }
}
