/* ==========================================================================
   FORGE — Modern CSS Reset
   Based on Josh Comeau's custom reset + Andy Bell's modern reset.
   Every rule has a reason. Nothing here is cosmetic — it's structural.
   ========================================================================== */

/* 1. Use border-box everywhere. Padding counts INSIDE the box, not outside.
      Without this, every width calculation is wrong. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Strip default margins. Every element starts at zero.
      We add spacing intentionally through the design system, not by accident. */
*  {
  margin: 0;
  padding: 0;
}

/* 3. Sensible body defaults.
      - min-height prevents white gaps below short pages.
      - line-height 1.6 is the readability sweet spot (1.5 is tight, 1.7 is loose).
      - -webkit-font-smoothing: antialiased makes fonts render crisper on macOS. */
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

/* 4. Media elements behave like blocks, not inline.
      Inline images have a mysterious 4px gap below them. This kills it.
      max-width: 100% prevents images from overflowing containers. */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5. Inputs inherit font styles from their parent.
      Without this, every <input> and <button> uses the browser default font,
      not your carefully chosen design system font. */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* 6. Text wrapping safety nets.
      - overflow-wrap prevents long URLs/words from breaking layouts.
      - text-wrap: balance makes headings wrap more evenly (2-line headings
        split roughly 50/50 instead of 90/10). */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* 7. Remove list styles on lists with role="list".
      VoiceOver strips list semantics when list-style is removed,
      so we only do it when role="list" is explicitly set. */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* 8. Anchors inherit color by default. We style them in base.css.
      This prevents the jarring default blue from breaking the palette. */
a {
  color: inherit;
  text-decoration-skip-ink: auto;
}

/* 9. Buttons reset. Remove the platform-specific appearance so we can
      style them from scratch in components/buttons.css. */
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* 10. Tables collapse borders. The default separated borders look broken. */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 11. Smooth scrolling for the whole page, but ONLY if the user hasn't
       requested reduced motion. Respecting prefers-reduced-motion is
       an accessibility requirement, not a nice-to-have. */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* 12. Reduced motion: kill all animations and transitions.
       Some users get physically sick from motion. This is non-negotiable. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 13. Focus styles. Remove the default outline ONLY when :focus-visible
       isn't matched (mouse clicks). Keyboard users still get a visible ring.
       The actual ring style is defined in base.css with design tokens. */
:focus:not(:focus-visible) {
  outline: none;
}

/* 14. Hidden attribute should always work, even on elements with display set. */
[hidden] {
  display: none !important;
}

/* 15. Prevent iOS from auto-zooming on form inputs.
       iOS zooms when font-size < 16px. We handle this in base.css by
       ensuring inputs are always >= 16px, but this is the safety net. */
@supports (-webkit-touch-callout: none) {
  input,
  textarea,
  select {
    font-size: max(16px, 1em);
  }
}
/* ==========================================================================
   FORGE — Base CSS
   Design system defaults, typography, layout, responsive breakpoints.

   Every value here is a CSS custom property default. Palette overrides
   these per-client in design-tokens.css. Wright inlines that file in
   <head> BEFORE this file loads, so the overrides always win.

   The cascade: reset.css → design-tokens.css (inlined) → base.css → sections → utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKEN DEFAULTS
   These exist so the section library renders without a client-specific
   tokens file. Palette replaces ALL of these for each build.
   -------------------------------------------------------------------------- */
:root {
  /* --- Colors (HSL for easy manipulation) --- */
  --color-primary-h: 215;
  --color-primary-s: 35%;
  --color-primary-l: 48%;
  --color-primary: hsl(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l));
  --color-primary-light: hsl(var(--color-primary-h), var(--color-primary-s), 95%);
  --color-primary-dark: hsl(var(--color-primary-h), var(--color-primary-s), 35%);

  --color-secondary-h: 180;
  --color-secondary-s: 25%;
  --color-secondary-l: 42%;
  --color-secondary: hsl(var(--color-secondary-h), var(--color-secondary-s), var(--color-secondary-l));

  --color-accent-h: 25;
  --color-accent-s: 65%;
  --color-accent-l: 52%;
  --color-accent: hsl(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l));

  /* Surfaces */
  --color-surface-warm: #FAFAF8;
  --color-surface-white: #FFFFFF;
  --color-surface-muted: #F4F4F2;
  --color-surface-dark: #1A1A2E;

  /* Text */
  --color-text-primary: #1A1A2E;
  --color-text-secondary: #4A4A5A;
  --color-text-muted: #7A7A8A;
  --color-text-inverse: #FAFAF8;
  --color-text-link: var(--color-primary);

  /* Semantic */
  --color-success: hsl(152, 45%, 42%);
  --color-warning: hsl(38, 75%, 52%);
  --color-error: hsl(0, 55%, 52%);

  /* Borders */
  --color-border: hsl(0, 0%, 88%);
  --color-border-light: hsl(0, 0%, 93%);

  /* --- Typography --- */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid type scale using clamp():
     min (mobile) → preferred (fluid) → max (desktop)
     Based on a 1.2 minor third scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.15vw, 0.8125rem);
  --text-sm:   clamp(0.8125rem, 0.78rem + 0.2vw,  0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem  + 0.2vw,  1rem);
  --text-lg:   clamp(1.0625rem, 1rem    + 0.3vw,  1.125rem);
  --text-xl:   clamp(1.1875rem, 1.1rem  + 0.4vw,  1.3125rem);
  --text-2xl:  clamp(1.375rem,  1.2rem  + 0.6vw,  1.625rem);
  --text-3xl:  clamp(1.625rem,  1.4rem  + 0.8vw,  2rem);
  --text-4xl:  clamp(2rem,      1.7rem  + 1.2vw,  2.625rem);
  --text-5xl:  clamp(2.375rem,  1.9rem  + 1.6vw,  3.25rem);

  /* Font weights — we use weight contrast, not size contrast */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-caps: 0.06em;

  /* --- Spacing Scale (8px base) --- */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* Section padding — the vertical rhythm between major content blocks */
  --section-padding-y: clamp(3rem, 2.5rem + 2.5vw, 6rem);
  --section-padding-x: var(--space-6);

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* --- Shadows (diffused, modern — low opacity, large spread) --- */
  --shadow-sm:  0 1px 3px hsla(0, 0%, 0%, 0.04), 0 1px 2px hsla(0, 0%, 0%, 0.06);
  --shadow-md:  0 4px 12px hsla(0, 0%, 0%, 0.05), 0 2px 4px hsla(0, 0%, 0%, 0.04);
  --shadow-lg:  0 8px 24px hsla(0, 0%, 0%, 0.06), 0 4px 8px hsla(0, 0%, 0%, 0.04);
  --shadow-xl:  0 16px 48px hsla(0, 0%, 0%, 0.08), 0 8px 16px hsla(0, 0%, 0%, 0.04);

  /* --- Transitions --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* --- Layout --- */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --header-height: 72px;

  /* --- Focus ring (accessibility) --- */
  --focus-ring: 0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.4);

  /* --- Z-index scale --- */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}


/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-surface-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
}

p + p {
  margin-top: var(--space-4);
}

/* Small text / captions */
small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Strong uses semibold, not bold — subtler hierarchy */
strong, b {
  font-weight: var(--weight-semibold);
}

/* Links */
a {
  color: var(--color-text-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-primary-dark);
}

/* Focus visible ring for keyboard nav */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}


/* --------------------------------------------------------------------------
   3. LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-padding-x);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

/* Section — the fundamental building block. Every visual section on the page. */
.section {
  padding-block: var(--section-padding-y);
}

/* Alternating surface colors for visual rhythm.
   Sections alternate: warm → white → warm → white
   Wright applies these classes during assembly. */
.section--surface-warm {
  background-color: var(--color-surface-warm);
}

.section--surface-white {
  background-color: var(--color-surface-white);
}

.section--surface-muted {
  background-color: var(--color-surface-muted);
}

.section--surface-dark {
  background-color: var(--color-surface-dark);
  color: var(--color-text-inverse);
}

.section--surface-dark h1,
.section--surface-dark h2,
.section--surface-dark h3,
.section--surface-dark h4,
.section--surface-dark h5,
.section--surface-dark h6 {
  color: var(--color-text-inverse);
}

.section--surface-dark a {
  color: var(--color-surface-warm);
}

/* Section headers — the heading + optional subheading above section content */
.section__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section__eyebrow {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section__title {
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}


/* --------------------------------------------------------------------------
   4. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Mobile-first. Base styles = mobile (320px+).
   Breakpoints:
   - sm:  640px  (large phone / small tablet)
   - md:  768px  (tablet portrait)
   - lg:  1024px (tablet landscape / small desktop)
   - xl:  1280px (desktop)
   - 2xl: 1440px (large desktop)

   Usage: @media (min-width: 768px) { ... }

   We don't use CSS variables for breakpoints (not supported in @media).
   These values are documented here for consistency across all files. */


/* --------------------------------------------------------------------------
   5. SCROLL OFFSET
   Account for sticky header when jumping to anchors.
   -------------------------------------------------------------------------- */

html {
  scroll-padding-top: calc(var(--header-height) + var(--space-4));
}


/* --------------------------------------------------------------------------
   6. SELECTION STYLES
   -------------------------------------------------------------------------- */

::selection {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
  color: var(--color-text-primary);
}


/* --------------------------------------------------------------------------
   7. SKIP TO CONTENT (Accessibility)
   Hidden until focused via keyboard. Required for WCAG compliance.
   -------------------------------------------------------------------------- */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-toast);
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: var(--weight-semibold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-to-content:focus {
  top: 0;
}
/* ============================================================
   WINTERSET DENTAL CARE — Design Tokens
   Generated by Palette Moreau | Forge v10

   Vibe: Established authority, warm confidence, premium approachable
   Temperature: Warm-neutral
   Font pairing: Playfair Display (headings) + Source Sans 3 (body)

   WCAG AA Contrast Validated:
   - Primary #344D67 on white: 9.2:1 ✓
   - Secondary #3A706D on white: 5.9:1 ✓
   - Accent #BF8C30 w/ dark text: 4.7:1 ✓
   - Text primary #1F2937 on white: 14.8:1 ✓
   - Text primary on surface-warm: 14.1:1 ✓
   - Inverse text on surface-dark: 13.2:1 ✓
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {

  /* ============================================================
     COLORS — Primary (Refined Navy)
     Original brand: #1B3A5C → Desaturated 20%, warmed slightly
     HSL(211, 33%, 30%) → #344D67
     Contrast on white: 9.2:1
     ============================================================ */
  --color-primary-h: 211;
  --color-primary-s: 33%;
  --color-primary-l: 30%;
  --color-primary: hsl(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l));
  --color-primary-hover: hsl(var(--color-primary-h), var(--color-primary-s), 36%);
  --color-primary-active: hsl(var(--color-primary-h), var(--color-primary-s), 26%);
  --color-primary-subtle: hsl(var(--color-primary-h), 22%, 94%);
  --color-primary-light: hsl(var(--color-primary-h), 25%, 88%);
  --color-primary-dark: hsl(var(--color-primary-h), 38%, 18%);
  --color-primary-darkest: hsl(var(--color-primary-h), 40%, 12%);

  /* ============================================================
     COLORS — Secondary (Refined Teal)
     Original brand: #2C7A7B → Desaturated 15%, warmed undertone
     HSL(177, 32%, 33%) → #3A706D
     Contrast on white: 5.9:1
     ============================================================ */
  --color-secondary-h: 177;
  --color-secondary-s: 32%;
  --color-secondary-l: 33%;
  --color-secondary: hsl(var(--color-secondary-h), var(--color-secondary-s), var(--color-secondary-l));
  --color-secondary-hover: hsl(var(--color-secondary-h), var(--color-secondary-s), 39%);
  --color-secondary-active: hsl(var(--color-secondary-h), var(--color-secondary-s), 28%);
  --color-secondary-subtle: hsl(var(--color-secondary-h), 20%, 93%);
  --color-secondary-light: hsl(var(--color-secondary-h), 24%, 86%);

  /* ============================================================
     COLORS — Accent (Refined Gold / Amber)
     Original brand: #D4A843 → Deepened for contrast, warmed
     HSL(39, 60%, 47%) → #BF8C30
     Used for CTA urgency — pair with DARK text, not white
     Dark text on accent: 4.7:1 ✓
     ============================================================ */
  --color-accent-h: 39;
  --color-accent-s: 60%;
  --color-accent-l: 47%;
  --color-accent: hsl(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l));
  --color-accent-hover: hsl(var(--color-accent-h), var(--color-accent-s), 42%);
  --color-accent-active: hsl(var(--color-accent-h), var(--color-accent-s), 38%);
  --color-accent-subtle: hsl(var(--color-accent-h), 48%, 94%);
  --color-accent-light: hsl(var(--color-accent-h), 45%, 85%);

  /* ============================================================
     COLORS — Surfaces
     Warm-neutral hierarchy, cream undertone throughout
     ============================================================ */
  --color-surface-white: #FFFFFF;
  --color-surface-warm: #FAF9F6;
  --color-surface-light: #F0EDE6;
  --color-surface-muted: #E4E0D8;
  --color-surface-dark: hsl(var(--color-primary-h), 38%, 18%);
  --color-surface-darkest: hsl(var(--color-primary-h), 40%, 12%);

  /* ============================================================
     COLORS — Text
     Never pure black. Navy-tinted darks for cohesion.
     ============================================================ */
  --color-text-primary: #1F2937;
  --color-text-secondary: #5F6B7A;
  --color-text-tertiary: #94A3B8;
  --color-text-inverse: #FAF9F6;
  --color-text-inverse-muted: hsla(40, 20%, 97%, 0.75);
  --color-text-on-primary: #FFFFFF;
  --color-text-on-accent: #1F2937;
  --color-text-link: var(--color-primary);
  --color-text-link-hover: var(--color-primary-hover);

  /* ============================================================
     COLORS — Semantic
     All muted to match warm-neutral palette temperature
     ============================================================ */
  --color-success: #3D8B6E;
  --color-success-light: #E8F5EE;
  --color-success-dark: #2D6650;
  --color-warning: #B8872E;
  --color-warning-light: #FDF6E8;
  --color-warning-dark: #8C6722;
  --color-error: #B84C4C;
  --color-error-light: #FCEAEA;
  --color-error-dark: #8C3A3A;
  --color-info: #4A7BA5;
  --color-info-light: #EAF0F7;
  --color-info-dark: #38607F;

  /* ============================================================
     COLORS — Borders & Dividers
     ============================================================ */
  --color-border: #E4E0D8;
  --color-border-light: #F0EDE6;
  --color-border-focus: var(--color-primary);
  --color-divider: hsla(var(--color-primary-h), 10%, 50%, 0.12);

  /* ============================================================
     COLORS — Overlays
     ============================================================ */
  --color-overlay: hsla(var(--color-primary-h), 30%, 12%, 0.55);
  --color-overlay-heavy: hsla(var(--color-primary-h), 30%, 12%, 0.75);

  /* ============================================================
     TYPOGRAPHY — Font Families
     Playfair Display: Prestige serif for headings
       → 38+ year specialty practice, Nobel Biocare, Northwestern
       → High-contrast transitional serif = institutional authority
     Source Sans 3: Humanist sans for body
       → Clean, readable, warm at every size
       → The "warmth in paragraphs" counterpoint to serif headings
     ============================================================ */
  --font-heading: 'Raleway', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;

  /* ============================================================
     TYPOGRAPHY — Font Weights
     ============================================================ */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --heading-weight: 700;
  --heading-weight-light: 600;

  /* ============================================================
     TYPOGRAPHY — Type Scale (fluid clamp)
     ============================================================ */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.15vw, 0.8rem);
  --text-sm:   clamp(0.8125rem, 0.75rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.2vw, 1rem);
  --text-lg:   clamp(1.0625rem, 0.975rem + 0.3vw, 1.125rem);
  --text-xl:   clamp(1.1875rem, 1.05rem + 0.45vw, 1.3125rem);
  --text-2xl:  clamp(1.375rem, 1.15rem + 0.7vw, 1.625rem);
  --text-3xl:  clamp(1.625rem, 1.3rem + 1vw, 2rem);
  --text-4xl:  clamp(2rem, 1.5rem + 1.5vw, 2.5rem);
  --text-5xl:  clamp(2.5rem, 1.75rem + 2.2vw, 3.25rem);

  /* ============================================================
     TYPOGRAPHY — Line Heights
     ============================================================ */
  --leading-tight: 1.2;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --heading-line-height: var(--leading-tight);
  --body-line-height: var(--leading-normal);

  /* ============================================================
     TYPOGRAPHY — Letter Spacing
     ============================================================ */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --heading-letter-spacing: var(--tracking-tight);

  /* ============================================================
     SHADOWS — Primary-hue-tinted, diffused
     H=211 for subtle navy cohesion. Opacity never exceeds 0.10.
     ============================================================ */
  --shadow-sm:  0 1px 3px hsla(211, 10%, 20%, 0.04),
                0 1px 2px hsla(211, 10%, 20%, 0.03);
  --shadow-md:  0 4px 12px hsla(211, 10%, 20%, 0.06),
                0 2px 4px hsla(211, 10%, 20%, 0.03);
  --shadow-lg:  0 8px 24px hsla(211, 10%, 20%, 0.08),
                0 4px 8px hsla(211, 10%, 20%, 0.03);
  --shadow-xl:  0 16px 48px hsla(211, 10%, 20%, 0.10),
                0 8px 16px hsla(211, 10%, 20%, 0.04);
  --shadow-inner: inset 0 2px 4px hsla(211, 10%, 20%, 0.04);
  --shadow-focus: 0 0 0 3px hsla(211, 33%, 30%, 0.20);
  --shadow-accent-focus: 0 0 0 3px hsla(39, 60%, 47%, 0.25);

  /* ============================================================
     BORDER RADIUS — Soft system (dental/medical default)
     Consistent 8px base. Soft corners = approachability.
     ============================================================ */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  --radius-button: var(--radius-md);
  --radius-input: var(--radius-sm);
  --radius-card: var(--radius-lg);
  --radius-container: var(--radius-lg);
  --radius-modal: var(--radius-xl);
  --radius-badge: var(--radius-full);
  --radius-avatar: var(--radius-full);

  /* ============================================================
     SPACING — 8px base, mathematical progression
     ============================================================ */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* ============================================================
     LAYOUT — Section spacing
     Minimum 80px top/bottom on desktop (vertical KB rule)
     ============================================================ */
  --section-padding-y: clamp(3rem, 2rem + 4vw, 6rem);
  --section-padding-x: clamp(1rem, 0.5rem + 2vw, 2rem);
  --container-max-width: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* ============================================================
     TRANSITIONS — Smooth, purposeful
     ============================================================ */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-color: color var(--transition-fast),
                      background-color var(--transition-fast),
                      border-color var(--transition-fast);
  --transition-shadow: box-shadow var(--transition-base);
  --transition-transform: transform var(--transition-base);

  /* ============================================================
     Z-INDEX — Layering system
     ============================================================ */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* ============================================================
   DARK SURFACE OVERRIDES
   For sections with --color-surface-dark background
   ============================================================ */
[data-theme="dark"],
.surface-dark {
  --color-text-primary: var(--color-text-inverse);
  --color-text-secondary: var(--color-text-inverse-muted);
  --color-border: hsla(40, 20%, 97%, 0.15);
  --color-divider: hsla(40, 20%, 97%, 0.10);
}
/* ==========================================================================
   FORGE — Utility Classes
   Single-purpose classes for spacing, alignment, visibility, and layout.
   Use sparingly — most styling should be in scoped section CSS.
   These exist for one-off adjustments during assembly.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TEXT ALIGNMENT
   -------------------------------------------------------------------------- */

.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

@media (min-width: 768px) {
  .md\:text-left   { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:text-right  { text-align: right; }
}


/* --------------------------------------------------------------------------
   2. SPACING — Margin
   -------------------------------------------------------------------------- */

.mt-0  { margin-top: 0; }
.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.mx-auto { margin-inline: auto; }


/* --------------------------------------------------------------------------
   3. SPACING — Padding
   -------------------------------------------------------------------------- */

.p-0  { padding: 0; }
.p-4  { padding: var(--space-4); }
.p-6  { padding: var(--space-6); }
.p-8  { padding: var(--space-8); }

.px-4 { padding-inline: var(--space-4); }
.px-6 { padding-inline: var(--space-6); }

.py-4 { padding-block: var(--space-4); }
.py-6 { padding-block: var(--space-6); }
.py-8 { padding-block: var(--space-8); }


/* --------------------------------------------------------------------------
   4. DISPLAY & VISIBILITY
   -------------------------------------------------------------------------- */

.block        { display: block; }
.inline-block { display: inline-block; }
.flex         { display: flex; }
.grid         { display: grid; }
.hidden       { display: none; }

/* Show/hide at breakpoints — mobile-first */
.show-md { display: none; }
.show-lg { display: none; }

@media (min-width: 768px) {
  .show-md    { display: block; }
  .hide-md    { display: none; }
}

@media (min-width: 1024px) {
  .show-lg    { display: block; }
  .hide-lg    { display: none; }
}


/* --------------------------------------------------------------------------
   5. FLEXBOX HELPERS
   -------------------------------------------------------------------------- */

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap { flex-wrap: wrap; }
.flex-1    { flex: 1; }

.items-start  { align-items: flex-start; }
.items-center { align-items: center; }
.items-end    { align-items: flex-end; }

.gap-2  { gap: var(--space-2); }
.gap-3  { gap: var(--space-3); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }


/* --------------------------------------------------------------------------
   6. GRID HELPERS
   -------------------------------------------------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}


/* --------------------------------------------------------------------------
   7. TEXT UTILITIES
   -------------------------------------------------------------------------- */

.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }
.text-2xl  { font-size: var(--text-2xl); }
.text-3xl  { font-size: var(--text-3xl); }

.font-normal   { font-weight: var(--weight-normal); }
.font-medium   { font-weight: var(--weight-medium); }
.font-semibold { font-weight: var(--weight-semibold); }
.font-bold     { font-weight: var(--weight-bold); }

.text-primary   { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted     { color: var(--color-text-muted); }
.text-inverse   { color: var(--color-text-inverse); }
.text-accent    { color: var(--color-primary); }

.uppercase {
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}

.leading-tight  { line-height: var(--leading-tight); }
.leading-snug   { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }


/* --------------------------------------------------------------------------
   8. WIDTH & SIZING
   -------------------------------------------------------------------------- */

.w-full { width: 100%; }
.max-w-narrow { max-width: var(--container-narrow); }
.max-w-container { max-width: var(--container-max); }


/* --------------------------------------------------------------------------
   9. BORDER & RADIUS
   -------------------------------------------------------------------------- */

.rounded-sm   { border-radius: var(--radius-sm); }
.rounded-md   { border-radius: var(--radius-md); }
.rounded-lg   { border-radius: var(--radius-lg); }
.rounded-xl   { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }


/* --------------------------------------------------------------------------
   10. SHADOWS
   -------------------------------------------------------------------------- */

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }


/* --------------------------------------------------------------------------
   11. IMAGE UTILITIES
   -------------------------------------------------------------------------- */

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-photo { aspect-ratio: 4 / 3; }


/* --------------------------------------------------------------------------
   12. SCREEN READER ONLY
   Visually hidden but accessible to screen readers.
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* --------------------------------------------------------------------------
   13. ANIMATION HELPERS
   Used by animations.js — elements start hidden and animate in
   when they enter the viewport via IntersectionObserver.
   -------------------------------------------------------------------------- */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children — each child delays slightly */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
/* ==========================================================================
   FORGE — Button Component
   Three variants: solid, outline, ghost.
   Two sizes: default, small.
   All use design tokens for instant theming.
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE BUTTON
   Every button shares these properties. Variants only change color/border.
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Micro-interaction: subtle lift on hover.
   This is the "crafted" signal — 1px translate + shadow change. */
.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  box-shadow: var(--focus-ring);
}

/* Disabled state */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Icon inside button */
.btn svg {
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   SOLID VARIANT (Primary CTA)
   High contrast. Used for "Call Now", "Request Appointment".
   -------------------------------------------------------------------------- */

.btn--solid {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.btn--solid:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--solid:active {
  box-shadow: var(--shadow-sm);
}


/* --------------------------------------------------------------------------
   OUTLINE VARIANT (Secondary CTA)
   Transparent bg with border. Used for secondary actions.
   -------------------------------------------------------------------------- */

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
}


/* --------------------------------------------------------------------------
   GHOST VARIANT
   No border, no bg. Looks like a link but behaves like a button.
   Used for tertiary actions, nav items, "Learn more →".
   -------------------------------------------------------------------------- */

.btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
  border-color: transparent;
  padding-inline: var(--space-3);
}

.btn--ghost:hover {
  background-color: var(--color-primary-light);
  transform: none;
}


/* --------------------------------------------------------------------------
   ACCENT VARIANT
   Uses the accent color for high-urgency CTAs.
   -------------------------------------------------------------------------- */

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  filter: brightness(0.9);
  box-shadow: var(--shadow-md);
}


/* --------------------------------------------------------------------------
   SIZE: SMALL
   For tight spaces — trust strips, card footers, mobile CTAs.
   -------------------------------------------------------------------------- */

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}


/* --------------------------------------------------------------------------
   SIZE: LARGE
   For hero CTAs — the one button that matters most on the page.
   -------------------------------------------------------------------------- */

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}


/* --------------------------------------------------------------------------
   FULL WIDTH
   Spans the container. Used on mobile where buttons should be tappable.
   -------------------------------------------------------------------------- */

.btn--full {
  width: 100%;
}

@media (min-width: 640px) {
  .btn--full-mobile {
    width: auto;
  }
}


/* --------------------------------------------------------------------------
   INVERSE (for dark backgrounds)
   -------------------------------------------------------------------------- */

.section--surface-dark .btn--solid {
  background-color: var(--color-surface-white);
  color: var(--color-primary);
  border-color: var(--color-surface-white);
}

.section--surface-dark .btn--solid:hover {
  background-color: var(--color-surface-warm);
  border-color: var(--color-surface-warm);
}

.section--surface-dark .btn--outline {
  color: var(--color-surface-white);
  border-color: var(--color-surface-white);
}

.section--surface-dark .btn--outline:hover {
  background-color: var(--color-surface-white);
  color: var(--color-primary);
}


/* --------------------------------------------------------------------------
   BUTTON GROUP
   Side-by-side CTAs (primary + secondary). Stack on mobile.
   -------------------------------------------------------------------------- */

.btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    gap: var(--space-4);
  }
}
/* ==========================================================================
   FORGE — Form Component
   Inputs, textareas, selects, validation states, labels, form layout.
   All styled with design tokens for instant theming.
   ========================================================================== */

/* --------------------------------------------------------------------------
   FORM LAYOUT
   -------------------------------------------------------------------------- */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

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


/* --------------------------------------------------------------------------
   FORM GROUP (label + input wrapper)
   -------------------------------------------------------------------------- */

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}


/* --------------------------------------------------------------------------
   LABELS
   -------------------------------------------------------------------------- */

.form__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
}

.form__label--required::after {
  content: " *";
  color: var(--color-error);
}


/* --------------------------------------------------------------------------
   TEXT INPUTS, TEXTAREAS, SELECTS
   -------------------------------------------------------------------------- */

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-surface-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__input:hover,
.form__textarea:hover,
.form__select:hover {
  border-color: var(--color-text-muted);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.12);
}


/* --------------------------------------------------------------------------
   TEXTAREA
   -------------------------------------------------------------------------- */

.form__textarea {
  min-height: 120px;
  resize: vertical;
}


/* --------------------------------------------------------------------------
   SELECT
   Custom dropdown arrow using inline SVG.
   -------------------------------------------------------------------------- */

.form__select {
  padding-right: var(--space-10);
  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='%237A7A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 1rem;
  cursor: pointer;
}


/* --------------------------------------------------------------------------
   VALIDATION STATES
   -------------------------------------------------------------------------- */

/* Error */
.form__input--error,
.form__textarea--error,
.form__select--error {
  border-color: var(--color-error);
}

.form__input--error:focus,
.form__textarea--error:focus,
.form__select--error:focus {
  box-shadow: 0 0 0 3px hsla(0, 55%, 52%, 0.12);
}

/* Success */
.form__input--success,
.form__textarea--success {
  border-color: var(--color-success);
}

.form__input--success:focus,
.form__textarea--success:focus {
  box-shadow: 0 0 0 3px hsla(152, 45%, 42%, 0.12);
}

/* Error message */
.form__error {
  display: none;
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-1);
}

.form__group--error .form__error {
  display: block;
}

.form__group--error .form__input,
.form__group--error .form__textarea,
.form__group--error .form__select {
  border-color: var(--color-error);
}


/* --------------------------------------------------------------------------
   CHECKBOX & RADIO
   -------------------------------------------------------------------------- */

.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form__check input[type="checkbox"],
.form__check input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15em;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form__check-label {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}


/* --------------------------------------------------------------------------
   HELP TEXT
   -------------------------------------------------------------------------- */

.form__help {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   FORM SUBMIT AREA
   -------------------------------------------------------------------------- */

.form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-2);
}

@media (min-width: 640px) {
  .form__actions {
    flex-direction: row;
    align-items: center;
  }
}

.form__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}


/* --------------------------------------------------------------------------
   FORM SUCCESS STATE
   Shown after successful submission. Form content hides, this appears.
   -------------------------------------------------------------------------- */

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.form__success.is-active {
  display: block;
}

.form__success-icon {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  color: var(--color-success);
}

.form__success-title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.form__success-message {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}


/* --------------------------------------------------------------------------
   DARK SURFACE OVERRIDES
   -------------------------------------------------------------------------- */

.section--surface-dark .form__input,
.section--surface-dark .form__textarea,
.section--surface-dark .form__select {
  background-color: hsla(0, 0%, 100%, 0.08);
  border-color: hsla(0, 0%, 100%, 0.2);
  color: var(--color-text-inverse);
}

.section--surface-dark .form__input::placeholder,
.section--surface-dark .form__textarea::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
}

.section--surface-dark .form__input:focus,
.section--surface-dark .form__textarea:focus,
.section--surface-dark .form__select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), 70%, 0.2);
}

.section--surface-dark .form__label {
  color: var(--color-text-inverse);
}
/* ==========================================================================
   FORGE — Site Header
   Sticky, blurred background, clean hierarchy.
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: hsla(0, 0%, 100%, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header--dark {
  background-color: hsla(var(--color-primary-h), 38%, 18%, 0.96);
  border-bottom-color: hsla(0, 0%, 100%, 0.08);
}

.site-header--dark .site-header__nav-link {
  color: hsla(0, 0%, 100%, 0.75);
}

.site-header--dark .site-header__nav-link:hover {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.1);
}

.site-header--dark .site-header__nav-link[aria-current="page"] {
  color: #fff;
}

.site-header--dark .site-header__phone {
  color: hsla(0, 0%, 100%, 0.75);
}

.site-header--dark .site-header__phone:hover {
  color: #fff;
}

.site-header--dark .site-header__hamburger-line {
  background-color: #fff;
}

.site-header--dark .site-header__dropdown {
  background: var(--color-surface-dark);
  border-color: hsla(0, 0%, 100%, 0.1);
}

.site-header--dark .site-header__dropdown a {
  color: hsla(0, 0%, 100%, 0.75);
}

.site-header--dark .site-header__dropdown a:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
  color: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}


/* --------------------------------------------------------------------------
   LOGO
   -------------------------------------------------------------------------- */

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}


/* --------------------------------------------------------------------------
   DESKTOP NAVIGATION
   Hidden on mobile, visible on lg+.
   -------------------------------------------------------------------------- */

.site-header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
  }
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.site-header__nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
}

.site-header__nav-link:hover {
  color: var(--color-text-primary);
  background-color: var(--color-surface-muted);
}

.site-header__nav-link[aria-current="page"] {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

/* Chevron for dropdowns */
.site-header__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.site-header__nav-link[aria-expanded="true"] .site-header__chevron {
  transform: rotate(180deg);
}


/* --------------------------------------------------------------------------
   DROPDOWN MENU
   -------------------------------------------------------------------------- */

.site-header__nav-item--has-dropdown {
  position: relative;
}

.site-header__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: var(--space-2);
  background: var(--color-surface-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              visibility var(--duration-fast);
}

.site-header__nav-item--has-dropdown:hover .site-header__dropdown,
.site-header__nav-link[aria-expanded="true"] + .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header__dropdown a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.site-header__dropdown a:hover {
  background-color: var(--color-surface-muted);
  color: var(--color-text-primary);
}


/* --------------------------------------------------------------------------
   ACTIONS (Phone + CTA)
   -------------------------------------------------------------------------- */

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.site-header__phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-header__phone:hover {
  color: var(--color-primary);
}

.site-header__phone-icon {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .site-header__phone {
    display: flex;
  }
}

/* CTA button — hidden on small mobile, visible on sm+ */
.site-header__cta {
  display: none;
}

@media (min-width: 640px) {
  .site-header__cta {
    display: inline-flex;
  }
}


/* --------------------------------------------------------------------------
   HAMBURGER (Mobile)
   Three lines → X animation. Visible below lg.
   -------------------------------------------------------------------------- */

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
  .site-header__hamburger {
    display: none;
  }
}

.site-header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 1px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

/* Hamburger → X animation */
.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ==========================================================================
   FORGE — Site Footer
   4-column grid on desktop, stacked on mobile.
   Uses --surface-dark from base.css (dark background, light text).
   ========================================================================== */

.site-footer {
  padding-block: var(--space-16) var(--space-8);
}


/* --------------------------------------------------------------------------
   GRID
   -------------------------------------------------------------------------- */

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-12);
  }
}


/* --------------------------------------------------------------------------
   ABOUT COLUMN
   -------------------------------------------------------------------------- */

.site-footer__logo {
  display: inline-block;
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.site-footer__logo img {
  height: 40px;
  width: auto;
  /* Invert/brighten logo for dark bg — Palette can override this */
  filter: brightness(0) invert(1);
}

.site-footer__about {
  font-size: var(--text-sm);
  color: hsla(0, 0%, 100%, 0.7);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}


/* --------------------------------------------------------------------------
   SOCIAL LINKS
   -------------------------------------------------------------------------- */

.site-footer__social {
  display: flex;
  gap: var(--space-3);
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: hsla(0, 0%, 100%, 0.08);
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.site-footer__social-link:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
  color: var(--color-surface-white);
}

.site-footer__social-link svg {
  width: 20px;
  height: 20px;
}


/* --------------------------------------------------------------------------
   COLUMN HEADINGS
   -------------------------------------------------------------------------- */

.site-footer__heading {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.5);
  margin-bottom: var(--space-5);
}


/* --------------------------------------------------------------------------
   LINK LISTS
   -------------------------------------------------------------------------- */

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__list a {
  font-size: var(--text-sm);
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__list a:hover {
  color: var(--color-surface-white);
}


/* --------------------------------------------------------------------------
   CONTACT INFO
   -------------------------------------------------------------------------- */

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-style: normal;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: hsla(0, 0%, 100%, 0.7);
}

.site-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: hsla(0, 0%, 100%, 0.5);
}

.site-footer__contact-item a {
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__contact-item a:hover {
  color: var(--color-surface-white);
}


/* --------------------------------------------------------------------------
   BOTTOM BAR
   -------------------------------------------------------------------------- */

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-8);
  margin-top: var(--space-10);
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  font-size: var(--text-xs);
  color: hsla(0, 0%, 100%, 0.4);
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.site-footer__bottom-links a {
  color: hsla(0, 0%, 100%, 0.4);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__bottom-links a:hover {
  color: hsla(0, 0%, 100%, 0.7);
}
/* ==========================================================================
   FORGE — Mobile Navigation
   Slide-out panel from right. Backdrop overlay. Focus trap via JS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav[hidden] {
  display: block; /* override display:none so we can animate */
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}


/* --------------------------------------------------------------------------
   BACKDROP
   -------------------------------------------------------------------------- */

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0);
  transition: background-color var(--duration-normal) var(--ease-out);
}

.mobile-nav.is-open .mobile-nav__backdrop {
  background-color: hsla(0, 0%, 0%, 0.4);
}


/* --------------------------------------------------------------------------
   PANEL
   -------------------------------------------------------------------------- */

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 380px);
  background-color: var(--color-surface-white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}


/* --------------------------------------------------------------------------
   HEADER (logo + close)
   -------------------------------------------------------------------------- */

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border-light);
  flex-shrink: 0;
}

.mobile-nav__logo {
  text-decoration: none;
}

.mobile-nav__logo img {
  height: 36px;
  width: auto;
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.mobile-nav__close:hover {
  background-color: var(--color-surface-muted);
  color: var(--color-text-primary);
}


/* --------------------------------------------------------------------------
   NAVIGATION LINKS
   -------------------------------------------------------------------------- */

.mobile-nav__nav {
  flex: 1;
  padding: var(--space-4) var(--space-2);
  overflow-y: auto;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-color var(--duration-fast) var(--ease-out);
  text-align: left;
}

.mobile-nav__link:hover {
  background-color: var(--color-surface-muted);
}

.mobile-nav__link[aria-current="page"] {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

/* Chevron for expandable items */
.mobile-nav__chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--duration-fast) var(--ease-out);
}

.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__chevron {
  transform: rotate(180deg);
}


/* --------------------------------------------------------------------------
   SUB-NAVIGATION
   -------------------------------------------------------------------------- */

.mobile-nav__sublist {
  padding-left: var(--space-4);
}

.mobile-nav__sublist[hidden] {
  display: none;
}

.mobile-nav__sublink {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.mobile-nav__sublink:hover {
  background-color: var(--color-surface-muted);
  color: var(--color-text-primary);
}


/* --------------------------------------------------------------------------
   CTA AREA
   -------------------------------------------------------------------------- */

.mobile-nav__cta {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border-light);
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   INFO (hours + address)
   -------------------------------------------------------------------------- */

.mobile-nav__info {
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-shrink: 0;
}

.mobile-nav__hours,
.mobile-nav__address {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: normal;
}

.mobile-nav__hours svg,
.mobile-nav__address svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}


/* --------------------------------------------------------------------------
   BODY SCROLL LOCK
   Applied to <body> when mobile nav is open.
   -------------------------------------------------------------------------- */

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
/* ==========================================================================
   FORGE — Sticky Mobile CTA
   Fixed phone bar at screen bottom. Mobile only. Appears on scroll.
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.sticky-cta[hidden] {
  display: block; /* override hidden so we can animate */
  transform: translateY(100%);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  /* Safe area for phones with home bars (iPhone X+) */
  padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
}

.sticky-cta__link:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
}

.sticky-cta__icon {
  flex-shrink: 0;
}

/* Hide on desktop — the header CTA is sufficient */
@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}

/* When mobile nav is open, hide the sticky CTA */
body.nav-open .sticky-cta {
  display: none;
}
/* ==========================================================================
   FORGE — Hero Overlay Section
   Full-bleed background image with dark gradient overlay and white text.
   ========================================================================== */

.section-hero-overlay {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--space-20);
}

.section-hero-overlay__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-hero-overlay__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsla(var(--color-primary-h), 38%, 12%, 0.85) 0%,
    hsla(var(--color-primary-h), 38%, 12%, 0.6) 50%,
    hsla(var(--color-primary-h), 38%, 12%, 0.3) 100%
  );
}

.section-hero-overlay__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --------------------------------------------------------------------------
   CONTENT
   -------------------------------------------------------------------------- */

.section-hero-overlay__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.section-hero-overlay__eyebrow {
  color: var(--color-accent);
}

.section-hero-overlay__title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: #fff;
  margin-bottom: var(--space-5);
}

.section-hero-overlay__subtitle {
  font-size: var(--text-lg);
  color: hsla(0, 0%, 100%, 0.85);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.section-hero-overlay__actions {
  margin-bottom: var(--space-8);
}


/* --------------------------------------------------------------------------
   TRUST BADGES
   -------------------------------------------------------------------------- */

.section-hero-overlay__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.section-hero-overlay__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: hsla(0, 0%, 100%, 0.75);
}

.section-hero-overlay__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.section-hero-overlay__trust-item strong {
  color: #fff;
}


/* --------------------------------------------------------------------------
   OUTLINE-LIGHT BUTTON (for use on dark/image backgrounds)
   -------------------------------------------------------------------------- */

.btn--outline-light {
  background-color: transparent;
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.5);
}

.btn--outline-light:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
  border-color: #fff;
}
/* FORGE — Trust Strip */
.section-trust-strip {
  padding-block: var(--space-8);
  background-color: var(--color-surface-white);
  border-bottom: 1px solid var(--color-border-light);
}

.section-trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .section-trust-strip__items {
    gap: var(--space-10);
  }
}

.section-trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: left;
}

.section-trust-strip__item svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.section-trust-strip__value {
  display: block;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

.section-trust-strip__label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-tight);
}

.section-trust-strip__divider {
  display: none;
  width: 1px;
  height: 36px;
  background-color: var(--color-border-light);
}

@media (min-width: 768px) {
  .section-trust-strip__divider {
    display: block;
  }
}
/* FORGE — Services Grid */
.section-services-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 1024px) {
  .section-services-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-services-grid__card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background-color: var(--color-surface-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.section-services-grid__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

.section-services-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.section-services-grid__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.section-services-grid__card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.section-services-grid__card-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  flex: 1;
  margin-bottom: var(--space-5);
}

.section-services-grid__card-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  transition: color var(--duration-fast) var(--ease-out);
}

.section-services-grid__card:hover .section-services-grid__card-link {
  color: var(--color-primary-dark);
}

/* FORGE — Services Detailed Grid (image cards) */
.section-services-detailed__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .section-services-detailed__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section-services-detailed__grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-services-detailed__card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.section-services-detailed__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.section-services-detailed__card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--color-surface-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.section-services-detailed__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-out);
}

.section-services-detailed__card:hover .section-services-detailed__card-image img {
  transform: scale(1.04);
}

.section-services-detailed__card-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.section-services-detailed__card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.section-services-detailed__card-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  flex: 1;
  margin-bottom: var(--space-4);
}

.section-services-detailed__card-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

/* FORGE — Why Choose Us */
.section-why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .section-why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-10);
  }
}

.section-why-choose__item {
  text-align: center;
}

.section-why-choose__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

.section-why-choose__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.section-why-choose__item-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.section-why-choose__item-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}
/* FORGE — Team Grid */
.section-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .section-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }
}

.section-team__card {
  text-align: center;
}

.section-team__photo {
  position: relative;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background-color: var(--color-surface-muted);
}

.section-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-team__name {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.section-team__role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-3);
}

.section-team__bio {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}
/* FORGE — Testimonials */
.section-testimonials__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .section-testimonials__track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-testimonials__track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-testimonials__card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background-color: var(--color-surface-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.section-testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}

.section-testimonials__quote {
  flex: 1;
  margin-bottom: var(--space-5);
}

.section-testimonials__quote p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
}

.section-testimonials__author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border-light);
}

.section-testimonials__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.section-testimonials__source {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
/* FORGE — Stats Counter */
.section-stats {
  padding-block: var(--space-12);
}

.section-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (min-width: 768px) {
  .section-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-10);
  }
}

.section-stats__number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
  color: var(--color-text-inverse);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-2);
}

.section-stats__label {
  display: block;
  font-size: var(--text-sm);
  color: hsla(0, 0%, 100%, 0.6);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
/* FORGE — CTA Banner */
.section-cta-banner {
  padding-block: var(--space-16);
}

.section-cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .section-cta-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.section-cta-banner__title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
}

.section-cta-banner__subtitle {
  font-size: var(--text-lg);
  color: hsla(0, 0%, 100%, 0.7);
  max-width: 520px;
}

.section-cta-banner__actions {
  flex-shrink: 0;
}
/* FORGE — FAQ Accordion */
.section-faq__list {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.section-faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.section-faq__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.section-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-2);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

/* Remove default marker in Firefox/Chrome */
.section-faq__question::-webkit-details-marker { display: none; }
.section-faq__question::marker { display: none; content: ""; }

.section-faq__question:hover {
  color: var(--color-primary);
}

.section-faq__chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
}

.section-faq__item[open] .section-faq__chevron {
  transform: rotate(180deg);
}

.section-faq__answer {
  padding: 0 var(--space-2) var(--space-6);
}

.section-faq__answer p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 640px;
}
/* FORGE — Contact Strip */
.section-contact-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .section-contact-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
  }
}

.section-contact-strip__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

.section-contact-strip__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  font-style: normal;
}

.section-contact-strip__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.section-contact-strip__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

.section-contact-strip__detail a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.section-contact-strip__detail a:hover {
  color: var(--color-primary);
}

.section-contact-strip__hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--text-sm);
}

.section-contact-strip__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--color-surface-muted);
}

.section-contact-strip__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
