/* ============================================================
   Sydney Duco Doctors — Production stylesheet
   Static recreation of the Claude Design handoff bundle.
   Order: fonts · tokens (colors/type/spacing) · base · components · site/layout · responsive
   Heritage scheme: Navy #003049 + Red #D62828. Default theme: dark (navy-dominant).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ------------------------------------------------------------
   COLOR TOKENS
   ------------------------------------------------------------ */
:root {
  /* Navy — signature deep brand colour (stored under carbon-* so components re-skin) */
  --carbon-900: #001E2D;
  --carbon-800: #003049; /* brand navy */
  --carbon-700: #0B3E57;
  --carbon-600: #15506C;
  --carbon-500: #25627E;

  /* Light — clean off-whites */
  --light-000: #FFFFFF;
  --light-050: #F8F9FA;
  --chrome-100: #F1F3F5;
  --chrome-200: #E9ECEF;

  /* Neutral greys */
  --platinum-200: #DEE2E6;
  --platinum-300: #CED4DA;
  --slate-400: #ADB5BD;
  --slate-500: #6C757D;
  --slate-600: #495057;
  --slate-700: #343A40;

  /* Ink — strongest text & deepest fills (stored under steel-*) */
  --steel-900: #16191C;
  --steel-800: #212529;
  --steel-700: #2B3035;

  /* Red — high-priority accent only */
  --red-600: #B91E1E;
  --red-500: #D62828;
  --red-400: #E14444;
  --red-soft: rgba(214, 40, 40, 0.12);

  /* Support semantics */
  --green-500: #2A9D5C;
  --amber-500: #E8A317;

  /* ---- Semantic aliases ---- */
  --surface-base: var(--light-050);
  --surface-card: var(--light-000);
  --surface-grid: var(--chrome-100);
  --surface-dark: var(--carbon-800);
  --surface-dark-raised: var(--carbon-700);
  --surface-dark-elevated: var(--carbon-600);
  --surface-ink: var(--steel-800);

  --accent-2: var(--carbon-800);
  --accent-2-hover: var(--carbon-700);

  --fill-strong: var(--carbon-800);
  --fill-strong-fg: var(--light-050);

  --btn2-bg: var(--carbon-800);
  --btn2-bg-hover: var(--carbon-700);
  --btn2-fg: var(--light-050);

  --hover-surface: var(--chrome-100);

  --text-strong: var(--carbon-800);
  --text-body: var(--slate-700);
  --text-muted: var(--slate-500);
  --text-faint: var(--slate-400);

  --text-on-dark: var(--light-050);
  --text-on-dark-muted: rgba(255, 255, 255, 0.66);

  --accent: var(--red-500);
  --accent-hover: var(--red-600);
  --accent-contrast: var(--light-000);
  --accent-wash: var(--red-soft);

  --border-light: var(--platinum-200);
  --border-light-strong: var(--platinum-300);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-dark-strong: rgba(255, 255, 255, 0.22);

  --label-color: var(--slate-500);
  --focus-ring: rgba(214, 40, 40, 0.45);

  /* Glass */
  --glass-light: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(0, 48, 73, 0.62);
  --glass-blur: 14px;

  /* ---- Typography ---- */
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --leading-tight: 1.04;
  --leading-snug: 1.18;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --tracking-display: -0.02em;
  --tracking-heading: -0.01em;
  --tracking-label: 0.14em;
  --tracking-wide: 0.04em;

  /* ---- Spacing / radii ---- */
  --gutter: 32px;
  --container-max: 1200px;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --border-hairline: 1px;
  --border-medium: 1.5px;
  --tap-min: 48px;

  /* ---- Shadows ---- */
  --shadow-none: none;
  --shadow-sm: 0 1px 2px rgba(0, 30, 45, 0.06);
  --shadow-card: 0 1px 3px rgba(0, 30, 45, 0.06), 0 8px 24px rgba(0, 30, 45, 0.05);
  --shadow-lift: 0 12px 40px rgba(0, 30, 45, 0.13);
  --shadow-accent: 0 8px 24px rgba(214, 40, 40, 0.28);

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

/* ------------------------------------------------------------
   DARK THEME (navy-dominant) — default. Only semantic aliases flip.
   ------------------------------------------------------------ */
[data-theme="dark"] {
  --surface-base: #002235;
  --surface-card: #073A52;
  --surface-grid: #00283C;
  --surface-dark: #00141F;
  --surface-dark-raised: #0B3E57;
  --surface-dark-elevated: #15506C;

  --text-strong: #FFFFFF;
  --text-body: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.60);
  --text-faint: rgba(255, 255, 255, 0.42);
  --label-color: rgba(255, 255, 255, 0.60);

  --border-light: rgba(255, 255, 255, 0.14);
  --border-light-strong: rgba(255, 255, 255, 0.24);

  --chrome-100: rgba(255, 255, 255, 0.08);
  --hover-surface: rgba(255, 255, 255, 0.10);
  --glass-light: rgba(0, 26, 41, 0.74);

  --fill-strong: #00141F;
  --fill-strong-fg: #FFFFFF;

  --btn2-bg: #F8F9FA;
  --btn2-bg-hover: #FFFFFF;
  --btn2-fg: var(--carbon-800);
}

/* ------------------------------------------------------------
   BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-snug);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; }

:focus-visible { outline: none; }

/* Mono eyebrow / data label */
.dd-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--label-color);
}

/* Grid backgrounds */
.dd-grid-bg {
  background-color: var(--surface-grid);
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}
.dd-grid-bg-dark {
  background-color: var(--surface-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}

/* ============================================================
   COMPONENTS  (ported 1:1 from the design-system bundle)
   ============================================================ */

/* ---- Button ---- */
.dd-btn {
  --_h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--_h); min-height: var(--_h); padding: 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1;
  border: var(--border-medium) solid transparent;
  cursor: pointer; white-space: nowrap; user-select: none;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.dd-btn:focus-visible { box-shadow: 0 0 0 4px var(--focus-ring); }
.dd-btn:active { transform: translateY(1px) scale(0.985); }
.dd-btn[disabled], .dd-btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.dd-btn svg, .dd-btn i { width: 18px; height: 18px; }
.dd-btn--sm { --_h: 40px; padding: 0 18px; font-size: 14px; }
.dd-btn--lg { --_h: 56px; padding: 0 34px; font-size: 18px; }
.dd-btn--primary { background: var(--accent); color: var(--accent-contrast); }
.dd-btn--primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-accent); transform: translateY(-1px); }
.dd-btn--secondary { background: var(--btn2-bg); color: var(--btn2-fg); }
.dd-btn--secondary:hover { background: var(--btn2-bg-hover); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.dd-btn--outline { background: transparent; color: var(--text-strong); border-color: var(--border-light-strong); }
.dd-btn--outline:hover { border-color: var(--text-strong); background: var(--hover-surface); }
.dd-btn--ghost { background: transparent; color: var(--text-strong); }
.dd-btn--ghost:hover { background: var(--hover-surface); }
.dd-btn--on-dark { background: transparent; color: var(--text-on-dark); border-color: var(--border-dark-strong); }
.dd-btn--on-dark:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.dd-btn--block { width: 100%; }

/* ---- IconButton ---- */
.dd-iconbtn {
  --_s: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--_s); height: var(--_s);
  border-radius: var(--radius-pill);
  border: var(--border-medium) solid transparent;
  cursor: pointer; padding: 0;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.dd-iconbtn:focus-visible { box-shadow: 0 0 0 4px var(--focus-ring); }
.dd-iconbtn:active { transform: scale(0.92); }
.dd-iconbtn svg, .dd-iconbtn i { width: 20px; height: 20px; }
.dd-iconbtn--sm { --_s: 40px; }
.dd-iconbtn--lg { --_s: 56px; }
.dd-iconbtn--primary { background: var(--accent); color: var(--accent-contrast); }
.dd-iconbtn--primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-accent); }
.dd-iconbtn--outline { background: var(--surface-card); color: var(--text-strong); border-color: var(--border-light-strong); }
.dd-iconbtn--outline:hover { border-color: var(--text-strong); }
.dd-iconbtn--ghost { background: transparent; color: var(--text-body); }
.dd-iconbtn--ghost:hover { background: var(--hover-surface); }
.dd-iconbtn--on-dark { background: rgba(255,255,255,0.06); color: var(--text-on-dark); border-color: var(--border-dark-strong); }
.dd-iconbtn--on-dark:hover { background: rgba(255,255,255,0.12); }

/* ---- Badge ---- */
.dd-badge {
  display: inline-flex; align-items: center; gap: 7px;
  height: 26px; padding: 0 11px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  border: var(--border-hairline) solid transparent;
  white-space: nowrap; line-height: 1;
}
.dd-badge svg, .dd-badge i { width: 13px; height: 13px; }
.dd-badge--dot::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: currentColor; flex: none; }
.dd-badge--neutral { background: var(--chrome-100); color: var(--slate-600); border-color: var(--border-light); }
.dd-badge--accent  { background: var(--accent-wash); color: var(--red-600); }
.dd-badge--success { background: rgba(22,163,74,0.10); color: var(--green-500); }
.dd-badge--dark    { background: var(--carbon-700); color: var(--text-on-dark); border-color: var(--border-dark); }
.dd-badge--outline { background: transparent; color: var(--text-body); border-color: var(--border-light-strong); }
.dd-badge--live    { background: rgba(22,163,74,0.10); color: var(--green-500); }
.dd-badge--live::before {
  content: ''; width: 7px; height: 7px; border-radius: 999px; background: currentColor; flex: none;
  box-shadow: 0 0 0 0 currentColor; animation: dd-pulse 1.8s var(--ease-out) infinite;
}
@keyframes dd-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ---- Card ---- */
.dd-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: var(--border-hairline) solid var(--border-light);
  background: var(--surface-card);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.dd-card--dark { background: var(--surface-dark-raised); border-color: var(--border-dark); color: var(--text-on-dark); }
.dd-card--dark h1, .dd-card--dark h2, .dd-card--dark h3, .dd-card--dark h4 { color: var(--text-on-dark); }
.dd-card--glass {
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border-color: rgba(255,255,255,0.6);
}
.dd-card--flush { padding: 0; overflow: hidden; }
.dd-card--interactive { cursor: pointer; }
.dd-card--interactive:hover { transform: translateY(-4px); border-color: var(--border-light-strong); box-shadow: var(--shadow-lift); }
.dd-card--dark.dd-card--interactive:hover { border-color: var(--border-dark-strong); }

/* ---- Stat ---- */
.dd-stat { display: flex; flex-direction: column; gap: 6px; }
.dd-stat__value {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  color: var(--text-strong); font-size: 52px;
  display: flex; align-items: baseline; gap: 4px;
}
.dd-stat__suffix { font-size: 0.5em; color: var(--accent); font-weight: 600; }
.dd-stat__label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--label-color);
}
.dd-stat--dark .dd-stat__value { color: var(--text-on-dark); }
.dd-stat--sm .dd-stat__value { font-size: 36px; }
.dd-stat--lg .dd-stat__value { font-size: 68px; }

/* ---- ProcessStep ---- */
.dd-step { display: flex; flex-direction: column; gap: 16px; position: relative; }
.dd-step__head { display: flex; align-items: center; gap: 14px; }
.dd-step__num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--accent);
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: var(--border-medium) solid var(--accent); border-radius: var(--radius-pill);
  background: var(--accent-wash);
}
.dd-step__icon {
  width: 44px; height: 44px; flex: none; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fill-strong); color: var(--fill-strong-fg);
}
.dd-step__icon svg, .dd-step__icon i { width: 20px; height: 20px; }
.dd-step__title { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--text-strong); letter-spacing: -0.01em; }
.dd-step__body { font-size: 16px; color: var(--text-body); line-height: 1.6; margin: 0; }
.dd-step--dark .dd-step__title { color: var(--text-on-dark); }
.dd-step--dark .dd-step__body { color: var(--text-on-dark-muted); }
.dd-step--dark .dd-step__icon { background: var(--light-050); color: var(--carbon-800); }

/* ---- ServiceCard ---- */
.dd-service {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px; border-radius: var(--radius-lg);
  border: var(--border-hairline) solid var(--border-light);
  background: var(--surface-card); cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.dd-service:hover { transform: translateY(-4px); border-color: var(--border-light-strong); box-shadow: var(--shadow-lift); }
.dd-service__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fill-strong); color: var(--fill-strong-fg); flex: none;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.dd-service:hover .dd-service__icon { background: var(--accent); color: #fff; }
.dd-service__icon svg, .dd-service__icon i { width: 24px; height: 24px; }
.dd-service__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-strong); letter-spacing: -0.01em; }
.dd-service__body { font-size: 15.5px; color: var(--text-body); line-height: 1.6; flex: 1; margin: 0; }
.dd-service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  transition: gap var(--dur-base) var(--ease-out);
}
.dd-service:hover .dd-service__link { gap: 14px; }
.dd-service__link svg, .dd-service__link i { width: 15px; height: 15px; }
.dd-service__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted); }

/* ---- ReviewCard ---- */
.dd-review {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px; border-radius: var(--radius-lg);
  border: var(--border-hairline) solid var(--border-light);
  background: var(--surface-card);
}
.dd-review__stars { display: inline-flex; gap: 3px; color: var(--accent); }
.dd-review__stars svg { width: 18px; height: 18px; }
.dd-review__stars .is-empty { color: var(--platinum-300); }
.dd-review__quote { font-size: 18px; line-height: 1.6; color: var(--text-strong); font-weight: 500; flex: 1; margin: 0; }
.dd-review__quote::before { content: '\201C'; }
.dd-review__quote::after { content: '\201D'; }
.dd-review__foot { display: flex; align-items: center; gap: 12px; border-top: var(--border-hairline) solid var(--border-light); padding-top: 18px; }
.dd-review__avatar {
  width: 40px; height: 40px; border-radius: var(--radius-pill); flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fill-strong); color: var(--fill-strong-fg);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
}
.dd-review__who { display: flex; flex-direction: column; gap: 1px; }
.dd-review__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-strong); }
.dd-review__loc { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ---- StatusBar ---- */
.dd-statusbar {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px 22px;
  padding: 12px 18px; border-radius: var(--radius-pill);
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: var(--border-hairline) solid var(--border-light);
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--text-body); width: fit-content; max-width: 100%;
}
.dd-statusbar__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.dd-statusbar__item svg, .dd-statusbar__item i { width: 14px; height: 14px; color: var(--text-muted); }
.dd-statusbar__sep { width: 1px; height: 16px; background: var(--border-light); }
.dd-statusbar__live { display: inline-flex; align-items: center; gap: 8px; color: var(--green-500); font-weight: 600; }
.dd-statusbar__live::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px; background: currentColor;
  animation: dd-pulse 1.8s var(--ease-out) infinite;
}
.dd-statusbar__strong { color: var(--text-strong); font-weight: 600; }

/* ---- Form fields ---- */
.dd-field { display: flex; flex-direction: column; gap: 8px; }
.dd-field__label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--label-color);
}
.dd-field__req { color: var(--accent); margin-left: 2px; }
.dd-field__hint { font-size: 13px; color: var(--text-muted); }
.dd-field__hint--error { color: var(--accent); }
.dd-control {
  width: 100%; min-height: 48px; padding: 12px 16px;
  font-family: var(--font-body); font-size: 16px; color: var(--text-strong);
  background: var(--surface-card);
  border: var(--border-medium) solid var(--border-light-strong);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.dd-control::placeholder { color: var(--text-faint); }
.dd-control:hover { border-color: var(--slate-400); }
.dd-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--focus-ring); }
.dd-control:disabled { background: var(--chrome-100); color: var(--text-faint); cursor: not-allowed; }
.dd-control--error { border-color: var(--accent); }
textarea.dd-control { resize: vertical; min-height: 120px; line-height: 1.55; }
.dd-select-wrap { position: relative; display: block; }
.dd-select-wrap select.dd-control { appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer; }
.dd-select-wrap::after {
  content: ''; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--slate-500); border-bottom: 2px solid var(--slate-500);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}

/* ============================================================
   SITE / LAYOUT
   ============================================================ */

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

/* Eyebrow (mono label) */
.eyebrow {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow--muted { color: var(--text-muted); }
[data-theme="dark"] .eyebrow--muted { color: var(--slate-400); }

/* Section header block */
.section-header { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.section-header--center { margin: 0 auto; text-align: center; align-items: center; }
.section-header h2 {
  font-size: clamp(30px, 4vw, 40px); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.08; color: var(--text-strong); margin: 0;
}
.section-header .sub { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--text-muted); margin: 0; letter-spacing: -0.01em; }
.section-header .lede { font-size: 17px; line-height: 1.6; color: var(--text-body); margin: 0; }
.section-header--ondark h2 { color: var(--text-on-dark); }
.section-header--ondark .sub { color: var(--slate-400); }
.section-header--ondark .lede { color: var(--text-on-dark-muted); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.is-scrolled {
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; background: none; border: none; cursor: pointer; padding: 0; }
.brand img { width: 40px; height: 40px; }
.logo-dark { display: none; }
[data-theme="light"] .logo-light { display: none; }
[data-theme="light"] .logo-dark { display: inline; }
.brand__text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--text-strong); }
.brand__tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  padding: 9px 16px; border-radius: var(--radius-pill); transition: all .2s;
}
.nav__link:hover { color: var(--text-strong); background: var(--hover-surface); }
.nav__link.is-active { font-weight: 600; color: var(--text-strong); background: var(--hover-surface); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-strong); display: flex; align-items: center; gap: 7px; }
.nav__phone i { color: var(--accent); width: 15px; height: 15px; }

/* Mobile nav toggle + drawer */
.nav__toggle { display: none; }
.mobile-drawer { display: none; }

/* ---- Hero ---- */
.dd-hero { position: relative; overflow: hidden; }
.dd-hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(130% 90% at 12% -10%, rgba(255,255,255,0.14), transparent 52%),
    linear-gradient(122deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 42%);
}

/* ---- Image placeholder frames (stand-ins for Craig's photos) ---- */
.photo-frame {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; text-align: center;
  background-color: var(--surface-grid);
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 28px 28px; background-position: -1px -1px;
  border: var(--border-hairline) solid var(--border-light);
  color: var(--text-muted); overflow: hidden;
}
.photo-frame > i { width: 30px; height: 30px; color: var(--text-faint); }
.photo-frame__cap {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint); max-width: 80%;
}
.photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Generic grids ---- */
.grid { display: grid; }
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Footer ---- */
.footer { color: var(--text-on-dark); padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark); }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer__brand img { width: 44px; height: 44px; }
.footer__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--light-050); }
.footer__tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate-400); margin-top: 4px; }
.footer__blurb { color: var(--text-on-dark-muted); font-size: 14.5px; line-height: 1.65; max-width: 340px; }
.footer__heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: var(--text-on-dark-muted); font-size: 14.5px; font-family: var(--font-body); }
.footer__links a:hover { color: var(--light-050); }
.footer__contact { display: flex; flex-direction: column; gap: 13px; font-size: 14.5px; color: var(--text-on-dark-muted); }
.footer__contact a, .footer__contact span { display: flex; align-items: center; gap: 9px; }
.footer__contact i { color: var(--accent); width: 15px; height: 15px; flex: none; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--slate-400); flex-wrap: wrap; }

/* ---- Mobile CTA bumper bar ---- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  padding: 12px; gap: 10px; background: var(--glass-light);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-light);
}
.mobile-cta a { flex: 1; }

/* ---- FAQ accordion ---- */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left;
}
.faq-q__text { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text-strong); }
.faq-q__icon {
  flex: none; width: 32px; height: 32px; border-radius: 999px;
  border: 1.5px solid var(--border-light-strong);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  transition: transform .25s;
}
.faq-q__icon i { width: 16px; height: 16px; }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a { max-width: 680px; }
.faq-a p { margin: 0 0 22px; font-size: 15.5px; line-height: 1.65; color: var(--text-body); }

/* ---- Gallery filters ---- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-chip {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-pill); cursor: pointer;
  border: 1.5px solid var(--border-light-strong); background: transparent;
  color: var(--text-muted); transition: all .2s;
}
.filter-chip:hover { color: var(--text-strong); border-color: var(--text-strong); }
.filter-chip.is-active { border-color: var(--text-strong); background: var(--fill-strong); color: var(--fill-strong-fg); }
.gallery-card-meta { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.gallery-card-meta__label { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--text-strong); }
.gallery-card-meta__loc { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ---- Contact: stepper + photo drop ---- */
.stepper { display: flex; gap: 8px; margin-bottom: 28px; }
.stepper__col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.stepper__bar { height: 4px; border-radius: 999px; background: var(--border-light-strong); transition: background .3s; }
.stepper__col.is-done .stepper__bar, .stepper__col.is-active .stepper__bar { background: var(--accent); }
.stepper__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.stepper__col.is-active .stepper__label { color: var(--accent); }
.step-panel { display: none; flex-direction: column; gap: 18px; }
.step-panel.is-active { display: flex; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo-drop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.photo-drop {
  position: relative; height: 110px; border-radius: 12px;
  border: var(--border-medium) dashed var(--border-light-strong);
  background: var(--chrome-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; color: var(--text-muted); transition: border-color .2s, background .2s;
  overflow: hidden;
}
.photo-drop:hover { border-color: var(--accent); }
.photo-drop.is-filled { border-style: solid; }
.photo-drop i { width: 20px; height: 20px; color: var(--text-faint); }
.photo-drop span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.photo-drop img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-light); }
.form-status { font-size: 14.5px; margin-top: 16px; }
.form-status--ok { color: var(--green-500); }
.form-status--err { color: var(--accent); }

/* Page-enter animation */
.page-enter { animation: page-fade .45s var(--ease-out) both; }
@keyframes page-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .kit-hero, .kit-contact, .grid2 { grid-template-columns: 1fr !important; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .container { padding: 0 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .grid3, .grid4 { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  /* leave room for the fixed mobile bumper bar */
  body { padding-bottom: 76px; }

  /* Mobile drawer */
  .mobile-drawer {
    display: block; position: fixed; inset: 76px 0 0; z-index: 49;
    background: var(--surface-base);
    padding: 24px 22px 40px;
    transform: translateX(100%); transition: transform .3s var(--ease-out);
    overflow-y: auto;
  }
  .mobile-drawer.is-open { transform: translateX(0); }
  .mobile-drawer a, .mobile-drawer button.nav__link {
    display: block; width: 100%; text-align: left;
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    color: var(--text-strong); padding: 16px 0; border-bottom: 1px solid var(--border-light);
    background: none; border-left: none; border-right: none; border-top: none; cursor: pointer;
    border-radius: 0;
  }
  .mobile-drawer .drawer-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Brand strip */
.brand-strip { padding: 26px 0 30px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-strip__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 20px; }
.brand-strip__logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.brand-strip__logos img { height: 34px; width: auto; filter: grayscale(1); opacity: 0.28; transition: opacity 0.2s ease; }
[data-theme="light"] .brand-strip__logos img { opacity: 0.18; }
.brand-strip__logos img:hover { opacity: 0.55; }

@media (max-width: 560px) {
  .brand-strip__logos { gap: 24px; }
  .brand-strip__logos img { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .page-enter { animation: none; }
}
