/* =========================================================================
   COACH AUTO — SITE STYLESHEET
   =========================================================================
   Single stylesheet for every page. Organized by component, then by page.
   Update this file in one place; all 19 pages reflect the change.

   Sections (in order):
     1. Tokens (CSS custom properties: brand colors, palette)
     2. Reset + base
     3. Layout primitives (.container)
     4. Logo lockup
     5. Topbar (utility bar above header)
     6. Header + nav (with dropdown system)
     7. Buttons
     8. Breadcrumbs
     9. Hero patterns (photo-overlay + dark variants)
    10. Glance strip (4-stat trust row)
    11. Section shell + section heads
    12. Intro split (photo + copy + pullquote)
    13. Options grids
    14. Quote band (MAP-compliant pricing replacement) + financing note
    15. Pricing tier cards (dark)
    16. Gallery grid (with tall/wide variants)
   16b. Gallery page — filter pill nav + section bands (gallery.html)
    17. FAQ accordion
    18. Related services row
   18b. Hub services grid + Decision guide (shared by category hub pages)
    19. CTA band
    20. Footer
    21. Mockup banner
   21b. Recognition strip (awards/authorizations badge row)
    22. Page-specific: homepage (services, more-services, callout, testi, fleet, coverage, territory, dealers-row, area, katzkin strip, trust)
    23. Page-specific: about (story, numbers, values, shop)
    24. Page-specific: fleet (why-fleet, served, process)
    25. Page-specific: dealer (pricing-nav, pricing-section, why-dealer, onestop, contact)
    26. Page-specific: katzkin (process, options, why-katzkin, pricing-cards)
    27. Responsive (mobile + tablet)
   ========================================================================= */


/* =========================================================================
   1. TOKENS — brand colors, type, spacing
   =========================================================================
   Brand colors confirmed from official Katzkin SVG source.
   Update these values to retheme the entire site.
   ========================================================================= */
:root {
  /* Backgrounds — dark / charcoal scale */
  --charcoal: #1f1f1f;          /* Primary deep dark for hero/footer */
  --charcoal-2: #2a2a2a;        /* Slightly lighter for hover/depth */
  --brand-charcoal: #383838;    /* Brand-spec charcoal (matches logo wordmark) */

  /* Brand orange — from official logo (Katzkin SVG) */
  --orange: #f89635;
  --orange-2: #e07f1a;          /* Darker for hover/depth */
  --orange-3: #fab066;          /* Lighter for accent/text-on-dark */
  --orange-soft: rgba(248, 150, 53, 0.12); /* Translucent for backgrounds */

  /* Backgrounds — warm/light scale */
  --cream: #faf6ee;             /* Warm off-white for section alternation */
  --cream-2: #f3ede0;           /* Slightly darker cream */
  --white: #ffffff;

  /* Type colors */
  --ink: #383838;               /* Body text */
  --muted: #5a5a5a;             /* Secondary text */
  --muted-2: #969799;           /* Tertiary text + dividers (matches brand gray) */

  /* Borders + lines */
  --line: #e8e2d3;              /* Standard border on cream tones */

  /* Functional */
  --green: #2a7f4f;             /* Warranty/success indicator */
}


/* =========================================================================
   2. RESET + BASE
   ========================================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  scroll-behavior: smooth;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }


/* =========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 920px; }
.container.wide { max-width: 1320px; }


/* =========================================================================
   4. LOGO LOCKUP
   ========================================================================= */
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; height: 56px; width: auto; }
.logo.footer-logo img { height: 60px; }


/* =========================================================================
   5. TOPBAR — utility bar above the main header
   Contains hours/location info on the left, language toggle on the right.
   Hidden on mobile (under 760px).
   ========================================================================= */
.topbar { background: var(--charcoal); color: rgba(255,255,255,0.65); font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.topbar .left { display: flex; gap: 22px; }
.topbar .left span { display: flex; align-items: center; gap: 6px; }
.topbar .orange { color: var(--orange-3); }
.topbar .portal-badge { display: inline-flex; align-items: center; gap: 6px; padding: 3px 12px; border-radius: 999px; background: rgba(248,150,53,0.18); border: 1px solid rgba(248,150,53,0.5); color: var(--orange-3); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.topbar .portal-badge::before { content: "●"; color: var(--orange); font-size: 8px; }
.topbar .lang { display: flex; align-items: center; }
.topbar .lang a { padding: 4px 12px; border-radius: 999px; font-weight: 600; font-size: 11.5px; letter-spacing: 0.08em; background: rgba(248,150,53,0.15); border: 1px solid rgba(248,150,53,0.5); color: var(--orange-3); transition: all 180ms ease; }
.topbar .lang a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }


/* =========================================================================
   6. HEADER + NAV
   Sticky header. Nav items with .has-caret get hover dropdowns
   (populated by components.js). The .active state shows orange underline.
   ========================================================================= */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink); padding: 6px 0; position: relative; }
.nav a.has-caret::after { content: " ▾"; color: var(--muted-2); font-size: 11px; }
.nav a:hover { color: var(--orange-2); }
.nav a.active { color: var(--orange-2); font-weight: 600; }
.nav a.active::before { content: ""; position: absolute; left: 0; right: 0; bottom: -20px; height: 2px; background: var(--orange); }

/* Dropdown system — components.js wraps each .has-caret link in a .nav-item
   container, then appends a .dropdown panel. Hover/focus reveals the panel. */
.nav .nav-item { position: relative; }
.nav .nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  margin-top: 14px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px -12px rgba(31,31,31,0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  z-index: 100;
}
.nav .nav-item:hover .dropdown,
.nav .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .nav-item .dropdown a { display: block; padding: 10px 14px; font-size: 13.5px; font-weight: 500; color: var(--ink); border-radius: 6px; transition: background 150ms ease, color 150ms ease; }
.nav .nav-item .dropdown a:hover { background: var(--cream); color: var(--orange-2); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone { font-weight: 700; color: var(--charcoal); font-size: 15px; white-space: nowrap; }
.phone .dot { color: var(--orange); }


/* =========================================================================
   7. BUTTONS
   ========================================================================= */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease; cursor: pointer; border: 0; white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(248,150,53,0.35); }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-2); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 12.5px; }


/* =========================================================================
   8. BREADCRUMBS
   ========================================================================= */
.breadcrumbs { padding: 18px 0; background: var(--cream); border-bottom: 1px solid var(--line); }
.breadcrumbs .container { font-size: 13px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); transition: color 150ms ease; }
.breadcrumbs a:hover { color: var(--orange-2); }
.breadcrumbs span.sep { margin: 0 8px; color: var(--muted-2); }
.breadcrumbs span.current { color: var(--charcoal); font-weight: 600; }


/* =========================================================================
   9. HERO PATTERNS
   Two main hero patterns:
     .hero               — service/product: photo background with text overlay
     .hero.hero-dark     — B2B/info: solid charcoal with gradient accents
   ========================================================================= */

/* Photo-overlay hero (most service pages, homepage) */
.hero { position: relative; min-height: 520px; max-height: 820px; overflow: hidden; padding: 0; }
.hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,31,31,0.5) 0%, rgba(31,31,31,0.2) 30%, rgba(31,31,31,0.92) 100%); }
.hero .scrim-2 { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,31,31,0.6) 0%, rgba(31,31,31,0.0) 60%); }
.hero .container { position: relative; padding-top: 80px; padding-bottom: 80px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; color: white; }

.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(20,20,20,0.78); backdrop-filter: blur(8px); border: 1px solid var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-3); width: max-content; margin-bottom: 24px; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.hero h1 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -0.02em; max-width: 880px; }
.hero h1 em { font-style: italic; color: var(--orange-3); font-weight: 500; }
.hero p.lede { margin-top: 18px; max-width: 640px; font-size: 17.5px; line-height: 1.55; color: rgba(255,255,255,0.88); }
.hero p.lede strong { color: var(--orange-3); font-weight: 600; }
.hero .cta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero variant: tall (homepage) */
.hero.hero-tall { height: 86vh; min-height: 640px; max-height: 820px; }
.hero.hero-tall .container { padding-bottom: 80px; }
.hero.hero-tall h1 { font-size: clamp(40px, 5.6vw, 76px); max-width: 920px; }

/* Reviews badge in homepage hero */
.hero .reviews { position: absolute; right: 32px; bottom: 80px; padding: 14px 18px; background: rgba(255,255,255,0.96); color: var(--ink); border-radius: 12px; display: flex; gap: 12px; align-items: center; box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.hero .reviews .stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; }
.hero .reviews .meta { font-size: 12px; }
.hero .reviews .meta strong { display: block; font-size: 14px; color: var(--charcoal); }
.hero .reviews .meta span { color: var(--muted); }

/* Solid-charcoal hero (B2B pages: dealer, fleet, about) */
.hero-dark { background: var(--charcoal); color: white; padding: 100px 0 110px; position: relative; overflow: hidden; }
.hero-dark::before { content: ""; position: absolute; right: -120px; top: -100px; width: 480px; height: 480px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.18) 0%, transparent 65%); }
.hero-dark::after { content: ""; position: absolute; left: -100px; bottom: -100px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.1) 0%, transparent 65%); }
.hero-dark .container { position: relative; }
.hero-dark .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(20,20,20,0.65); border: 1px solid var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-3); width: max-content; margin-bottom: 28px; }
.hero-dark h1 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(40px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.02em; max-width: 920px; margin-bottom: 24px; }
.hero-dark h1 em { font-style: italic; color: var(--orange-3); font-weight: 500; }
.hero-dark p.lede { max-width: 660px; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.hero-dark p.lede strong { color: var(--orange-3); font-weight: 600; }
.hero-dark .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-dark .meta { display: flex; gap: 32px; margin-top: 50px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-dark .meta .stat .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 38px; color: var(--orange); line-height: 1; letter-spacing: -0.02em; }
.hero-dark .meta .stat .lbl { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }


/* =========================================================================
   10. GLANCE — 4-stat trust strip (under hero)
   ========================================================================= */
.glance { background: var(--cream); border-bottom: 1px solid var(--line); }
.glance .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 30px; padding-bottom: 30px; }
.glance .item { display: flex; gap: 14px; align-items: center; }
.glance .item .icon { width: 42px; height: 42px; border-radius: 10px; background: var(--charcoal); color: var(--orange); display: grid; place-items: center; font-size: 17px; flex-shrink: 0; font-weight: 700; }
.glance .item .text strong { display: block; color: var(--charcoal); font-size: 14.5px; font-weight: 700; line-height: 1.2; }
.glance .item .text span { font-size: 12px; color: var(--muted); }

/* Trust strip — homepage variant of glance, slightly larger icons */
.trust { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 32px; padding-bottom: 32px; }
.trust .item { display: flex; gap: 14px; align-items: center; }
.trust .item .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--charcoal); color: var(--orange); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; font-weight: 700; }
.trust .item .text strong { display: block; color: var(--charcoal); font-size: 15px; font-weight: 700; line-height: 1.2; }
.trust .item .text span { font-size: 12.5px; color: var(--muted); }


/* =========================================================================
   11. SECTION SHELL + SECTION HEADS
   Default section padding: 100px 0. Section heads centered.
   ========================================================================= */
section { padding: 100px 0; }
.section-head { display: grid; grid-template-columns: 1fr; max-width: 820px; margin: 0 auto 50px; text-align: center; }
.section-head .label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 14px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 18px; }
.section-head h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.65; }

/* Variant: section head with side-by-side label + right-side body */
.section-head.split { grid-template-columns: 1.4fr 1fr; gap: 32px; text-align: left; max-width: none; align-items: end; }
.section-head.split h2 { max-width: 720px; }
.section-head.split .right { color: var(--muted); max-width: 400px; font-size: 15.5px; align-self: end; padding-bottom: 8px; }


/* =========================================================================
   12. INTRO — split layout: copy on one side, photo on the other,
   with optional pull-quote inset.
   ========================================================================= */
.intro { background: var(--white); padding: 100px 0; }
.intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro .copy .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.intro .copy h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 22px; }
.intro .copy h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.intro .copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.intro .copy p strong { color: var(--charcoal); font-weight: 600; }
.intro .copy .pullquote { padding: 22px 28px; background: var(--cream); border-left: 4px solid var(--orange); border-radius: 4px; margin: 24px 0; }
.intro .copy .pullquote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; color: var(--charcoal); line-height: 1.4; margin: 0; }
.intro .photo { aspect-ratio: 4 / 5; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 24px 50px -20px rgba(31,31,31,0.3); }


/* =========================================================================
   13. OPTIONS — left/right detail grids with feature lists
   ========================================================================= */
.options { background: var(--cream); }
.options .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; max-width: 1100px; margin: 0 auto; }
.options .grid.single { grid-template-columns: 1fr; max-width: 800px; }
.options .col h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 24px; line-height: 1.2; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--orange); }
.options .col p.intro-text { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.options .opt-list { display: flex; flex-direction: column; gap: 0; }
.options .opt { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px dashed var(--line); gap: 18px; }
.options .opt:last-child { border-bottom: 0; }
.options .opt .name { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.options .opt .name .desc { display: block; font-size: 12.5px; font-weight: 400; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* MAP-compliant tier badges (NEVER show $ on public service pages) */
.options .opt .tier { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-2); white-space: nowrap; padding: 4px 10px; border: 1px solid var(--orange); border-radius: 999px; }
.options .opt .tier.standard { color: var(--muted-2); border-color: var(--line); }


/* =========================================================================
   14. QUOTE BAND — replaces public pricing for MAP-compliant service pages
   Dark background. Always followed by a "Get a Quote" CTA.
   ========================================================================= */
.quote-band { background: var(--charcoal); color: white; padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.quote-band::before { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.18) 0%, transparent 70%); }
.quote-band .container { position: relative; max-width: 760px; }
.quote-band .label { color: var(--orange); font-size: 11.5px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 22px; }
.quote-band h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin-bottom: 20px; }
.quote-band h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
.quote-band p { color: rgba(255,255,255,0.78); font-size: 16.5px; line-height: 1.6; margin-bottom: 32px; }
.quote-band .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
/* Financing note — small subtext below quote-band actions linking to /financing.html */
.quote-band .financing-note { margin-top: 18px; color: rgba(255,255,255,0.6); font-size: 13px; }
.quote-band .financing-note a { color: var(--orange-3); font-weight: 600; text-decoration: underline; }
.quote-band .financing-note a:hover { color: var(--orange); }
/* Pitch line — psychological framing for hidden pricing (MAP compliance) */
.quote-band .pitch { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(20px, 2.4vw, 28px); color: var(--orange-3); margin-bottom: 30px; line-height: 1.3; max-width: 680px; margin-left: auto; margin-right: auto; }


/* =========================================================================
   15. PRICING TIER CARDS — used on Katzkin (3-tier example vehicles)
   No dollar amounts shown publicly per MAP compliance.
   ========================================================================= */
.pricing { background: var(--charcoal); color: white; padding: 110px 0; position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.18) 0%, transparent 70%); }
.pricing .container { position: relative; }
.pricing .section-head h2 { color: white; }
.pricing .section-head p { color: rgba(255,255,255,0.8); }
.pricing .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.pricing .card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px 28px; text-align: center; transition: all 200ms ease; }
.pricing .card:hover { border-color: var(--orange); background: rgba(248,150,53,0.06); transform: translateY(-4px); }
.pricing .card .badge { display: inline-block; padding: 5px 12px; border-radius: 999px; background: rgba(248,150,53,0.18); border: 1px solid var(--orange); color: var(--orange-3); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.pricing .card h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 22px; color: white; line-height: 1.2; margin-bottom: 14px; }
.pricing .card .examples-lbl { font-size: 11.5px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-3); margin-bottom: 12px; }
.pricing .card .examples { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.65; font-weight: 500; }
.pricing .card .quote-cta { display: inline-block; margin-top: 22px; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--orange); color: var(--orange-3); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: all 180ms ease; }
.pricing .card:hover .quote-cta { background: var(--orange); color: var(--charcoal); }
.pricing .footnote { text-align: center; max-width: 620px; margin: 36px auto 0; color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.6; }


/* =========================================================================
   16. GALLERY — masonry grid with tall/wide variants
   ========================================================================= */
.gallery { background: var(--white); }
.gallery .grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery .tile { background-size: cover; background-position: center; border-radius: 10px; cursor: pointer; position: relative; overflow: hidden; transition: transform 200ms ease; }
.gallery .tile:hover { transform: scale(0.98); }
.gallery .tile.tall { grid-row: span 2; }
.gallery .tile.wide { grid-column: span 2; }
.gallery .tile .overlay { position: absolute; inset: 0; background: rgba(31,31,31,0); display: grid; place-items: center; transition: background 200ms ease; }
.gallery .tile:hover .overlay { background: rgba(31,31,31,0.4); }
.gallery .tile .overlay .ico { opacity: 0; color: white; font-size: 28px; transition: opacity 200ms ease; }
.gallery .tile:hover .overlay .ico { opacity: 1; }
.gallery .tile { cursor: zoom-in; }
.gallery .footer { display: flex; justify-content: center; margin-top: 40px; }

/* Lightbox — click any .gallery .tile to view the photo enlarged.
   Built and bound from components.js (initLightbox). */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6); }
.lightbox .close { position: fixed; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.1); color: white; display: grid; place-items: center; font-size: 22px; border: 0; cursor: pointer; transition: background 180ms ease; }
.lightbox .close:hover { background: var(--orange); }


/* =========================================================================
   16b. GALLERY PAGE — filter pill nav + section bands
   Used only on gallery.html (the dedicated "Our Work" page).
   Sticky pill nav for category filters + per-category section bands
   that alternate white/cream backgrounds.
   ========================================================================= */
.gallery-nav { background: var(--cream); padding: 24px 0; border-bottom: 1px solid var(--line); position: sticky; top: 79px; z-index: 40; }
.gallery-nav .container { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.gallery-nav a, .gallery-nav button { padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--charcoal); border: 1px solid var(--line); background: var(--white); transition: all 180ms ease; cursor: pointer; font-family: inherit; }
.gallery-nav a:hover, .gallery-nav a.active, .gallery-nav button:hover, .gallery-nav button.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.gallery-empty { text-align: center; padding: 60px 24px; color: var(--muted); font-size: 15px; }
/* Per-category section band — alternates cream/white via :nth-child(even) */
.gallery-section { padding: 80px 0; scroll-margin-top: 160px; }
.gallery-section:nth-child(even) { background: var(--cream); }
.gallery-section .head { text-align: center; margin-bottom: 36px; }
.gallery-section .head .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.gallery-section .head h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(28px, 3vw, 38px); color: var(--charcoal); letter-spacing: -0.01em; }
.gallery-section .head h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.gallery-section .head p { color: var(--muted); font-size: 14.5px; margin-top: 8px; max-width: 540px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .gallery-nav { position: static; } }


/* =========================================================================
   17. FAQ — accordion using <details>/<summary>
   ========================================================================= */
.faq { background: var(--cream); }
.faq .list { max-width: 880px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; transition: border-color 180ms ease; }
.faq details[open] { border-color: var(--orange); }
.faq details summary { padding: 22px 26px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--charcoal); list-style: none; display: flex; align-items: center; gap: 16px; }
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after { content: "+"; margin-left: auto; color: var(--orange); font-size: 22px; font-weight: 600; transition: transform 200ms ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details .answer { padding: 0 26px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq details .answer strong { color: var(--charcoal); }
.faq details .answer a { color: var(--orange-2); font-weight: 600; }


/* =========================================================================
   18. RELATED SERVICES — 3-card row of related links
   ========================================================================= */
.related { background: var(--white); padding: 80px 0; border-top: 1px solid var(--line); }
.related .head { text-align: center; margin-bottom: 36px; }
.related .head .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.related .head h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--charcoal); font-weight: 600; }
.related .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.related .card { padding: 22px 22px; border: 1px solid var(--line); border-radius: 12px; transition: all 180ms ease; cursor: pointer; }
.related .card:hover { border-color: var(--orange); box-shadow: 0 14px 28px -16px rgba(31,31,31,0.15); transform: translateY(-2px); }
.related .card h4 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 18px; color: var(--charcoal); margin-bottom: 6px; }
.related .card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.related .card .link { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-2); }


/* =========================================================================
   18b. HUB SERVICES GRID + DECISION GUIDE
   Shared patterns used by category hub landing pages
   (films.html, electronics.html, exterior.html, leather hub, etc.)
   --
   .hub-services — 3-card grid (or 4-card variant with .cols-4) that links
                   from a category hub to its sub-services. Reuses the
                   .service-card visual treatment from §22.
   .decision     — "if [situation] then [pick this service]" two-column
                   table used below the hub grid to help visitors self-
                   select the right service.
   ========================================================================= */
.hub-services { background: var(--white); }
/* Auto-fit responsive grid — adapts across all viewports without
   media-query breakpoints. Cards reflow based on min-width:
   - Wide desktop (~1320px container): 4 cards per row
   - Standard desktop / laptop: 3 cards per row
   - Tablet: 2 cards
   - Phone: 1 col
   Electronics (5 sub-services) renders as 4+1 or 3+2 depending on
   viewport — inherent to "5 doesn't divide cleanly." */
.hub-services .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 1320px; margin: 0 auto; }
/* Legacy .cols-4 override kept for backwards compatibility. */
.hub-services.cols-4 .grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

.decision { background: var(--cream); }
.decision .table { max-width: 980px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 8px 0; border: 1px solid var(--line); overflow: hidden; }
.decision .row { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; padding: 24px 32px; border-bottom: 1px solid var(--line); align-items: start; }
.decision .row:last-child { border-bottom: 0; }
.decision .row .if { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: 19px; color: var(--charcoal); line-height: 1.35; letter-spacing: -0.01em; }
.decision .row .then { color: var(--muted); font-size: 15px; line-height: 1.65; }
.decision .row .then strong { color: var(--orange-2); font-weight: 700; }
.decision .row .then a { color: var(--orange-2); font-weight: 600; }
@media (max-width: 760px) { .decision .row { grid-template-columns: 1fr; gap: 8px; } }


/* =========================================================================
   19. CTA BAND — split-layout call to action with primary + secondary buttons
   ========================================================================= */
.cta-band { background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%); color: white; padding: 110px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.28) 0%, rgba(248,150,53,0) 70%); }
.cta-band::after { content: ""; position: absolute; left: -80px; bottom: -80px; width: 280px; height: 280px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.18) 0%, transparent 70%); }
.cta-band .container { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.4vw, 46px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 18px; }
.cta-band h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 480px; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-band .actions .btn { justify-content: center; }
.cta-band .actions .meta { color: rgba(255,255,255,0.6); font-size: 13px; text-align: center; margin-top: 6px; }


/* =========================================================================
   20. FOOTER
   Generated by components.js. Update there to change the footer everywhere.
   ========================================================================= */
footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 70px 0 30px; font-size: 14px; }
footer .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; }
footer .col h4 { color: var(--orange); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
footer .col a { display: block; padding: 5px 0; color: rgba(255,255,255,0.7); font-size: 13.5px; }
footer .col a:hover { color: var(--orange-3); }
footer .brand p { margin-top: 16px; max-width: 320px; line-height: 1.6; color: rgba(255,255,255,0.6); }
footer .brand .tagline-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; color: var(--orange-3); margin-top: 14px; }
footer .brand .social { margin-top: 22px; display: flex; gap: 10px; }
footer .brand .social a { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.08); display: grid; place-items: center; padding: 0; }
footer .brand .social a:hover { background: var(--orange); color: var(--white); }
footer .bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px; }
footer .bottom a { color: rgba(255,255,255,0.6); }


/* =========================================================================
   21. MOCKUP BANNER — small fixed badge identifying the page during review.
   Remove for production.
   ========================================================================= */
.mockup-banner { position: fixed; bottom: 14px; right: 14px; z-index: 100; background: var(--orange); color: var(--white); padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.mockup-banner a { color: var(--white); text-decoration: underline; margin-left: 8px; }


/* =========================================================================
   21b. RECOGNITION STRIP — small badge row of awards / authorizations
   Used on homepage between Trust strip and Services. Text-based for now;
   swap to actual logo images when partner brand assets are sourced.
   ========================================================================= */
.recognition { background: var(--white); padding: 36px 0; border-bottom: 1px solid var(--line); }
.recognition .container { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.recognition .label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.recognition .badges { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; justify-content: center; }
.recognition .badge { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 15px; color: var(--charcoal); display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.recognition .badge::before { content: "★"; color: var(--orange); font-size: 12px; font-family: 'Inter', sans-serif; }


/* =========================================================================
   22. PAGE-SPECIFIC: HOMEPAGE
   Sections unique to the homepage (main.html).
   ========================================================================= */

/* Services grid (5 main category tiles) */
.services { background: var(--white); }
.services .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card { position: relative; border-radius: 16px; overflow: hidden; background: var(--charcoal); aspect-ratio: 3 / 4; cursor: pointer; transition: transform 220ms ease, box-shadow 220ms ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(31,31,31,0.45); }
.service-card .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 800ms ease; }
.service-card:hover .img { transform: scale(1.06); }
.service-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,31,31,0) 25%, rgba(31,31,31,0.95) 100%); }
.service-card .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: white; }
.service-card .tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-3); margin-bottom: 8px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 22px; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 8px; }
.service-card p { font-size: 12.5px; color: rgba(255,255,255,0.78); line-height: 1.45; }
.service-card .arrow { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.14); backdrop-filter: blur(8px); display: grid; place-items: center; color: white; font-size: 14px; transition: background 200ms ease, transform 200ms ease; }
.service-card:hover .arrow { background: var(--orange); color: var(--white); transform: rotate(-45deg); }

/* Stacked variant — image on top (square), text panel below. Use when photos
   have diverse subject positions and aspects so per-card bg-position dialing
   isn't sustainable. Keeps photos clean (no scrim, no aggressive cropping). */
.service-card-stacked { position: relative; display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--line); cursor: pointer; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.service-card-stacked:hover { transform: translateY(-4px); box-shadow: 0 18px 32px -16px rgba(31,31,31,0.22); border-color: var(--orange); }
.service-card-stacked .img { width: 100%; aspect-ratio: 1 / 1; background-size: cover; background-position: center; background-color: var(--cream); transition: transform 800ms ease; }
.service-card-stacked:hover .img { transform: scale(1.04); }
.service-card-stacked .body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card-stacked .tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-2); }
.service-card-stacked h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 20px; line-height: 1.18; letter-spacing: -0.01em; color: var(--charcoal); margin: 0; }
.service-card-stacked p { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0; }
.service-card-stacked .arrow { margin-top: auto; padding-top: 10px; color: var(--orange-2); font-weight: 600; font-size: 13px; }

/* Katzkin authorization strip */
.katzkin { background: var(--cream); padding: 90px 0; text-align: center; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); position: relative; }
.katzkin::before { content: ""; position: absolute; left: 50%; top: -1px; transform: translateX(-50%); width: 60px; height: 3px; background: var(--orange); }
.katzkin .container { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; max-width: 1100px; }
/* Official Katzkin primary mark + Coach's "Authorized Installer" caption.
   Per Katzkin brand guidelines: no enclosing shape (so no circle / no
   orange border), generous clearspace around the mark, white background.
   The caption is Coach's factual credential statement, separated from
   the Katzkin trademark by a thin divider. */
.katzkin .seal { width: 220px; background: var(--white); border-radius: 10px; padding: 26px 24px 18px; box-shadow: 0 12px 30px -10px rgba(31,31,31,0.18); flex-shrink: 0; text-align: center; }
.katzkin .seal img { display: block; width: 100%; height: auto; }
.katzkin .seal .sub { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--orange-2); text-transform: uppercase; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); }
.katzkin .body { text-align: left; }
.katzkin .label { color: var(--orange-2); font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.katzkin h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(26px, 3vw, 38px); line-height: 1.15; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 14px; }
.katzkin h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.katzkin p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 640px; }
.katzkin .facts { display: flex; gap: 28px; margin-top: 18px; flex-wrap: wrap; }
.katzkin .facts .f { font-size: 13px; color: var(--charcoal); display: flex; gap: 8px; align-items: center; }
.katzkin .facts .f::before { content: ""; width: 6px; height: 6px; background: var(--orange); border-radius: 999px; }

/* "More services" tile grid (popular individual services) */
.more-services { background: var(--cream); padding: 90px 0; }
.more-services .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.more-card { background: var(--white); border-radius: 12px; padding: 24px 20px; transition: transform 180ms ease, box-shadow 180ms ease; cursor: pointer; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; min-height: 200px; position: relative; }
.more-card:hover { transform: translateY(-3px); box-shadow: 0 16px 28px -16px rgba(31,31,31,0.18); border-color: var(--orange); }
.more-card .ico { width: 38px; height: 38px; border-radius: 8px; background: var(--orange-soft); color: var(--orange-2); display: grid; place-items: center; font-size: 17px; font-weight: 700; }
.more-card h4 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 18px; color: var(--charcoal); line-height: 1.2; letter-spacing: -0.01em; }
.more-card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.more-card .link { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-2); }
.more-card.coming-soon { opacity: 0.85; cursor: default; }
.more-card.coming-soon:hover { transform: none; box-shadow: none; border-color: var(--line); }
.more-card.coming-soon .ico { background: rgba(150,151,153,0.12); color: var(--muted); }
.more-card .badge-soon { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); padding: 4px 10px; border: 1px solid var(--orange); border-radius: 999px; align-self: flex-start; }

/* Standalone callout strip ("We're not learning on your car") */
.callout { background: var(--charcoal); color: white; padding: 130px 0; position: relative; overflow: hidden; text-align: center; }
.callout::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, var(--orange-soft) 0%, transparent 65%); }
.callout::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 80px; height: 3px; background: var(--orange); }
.callout .container { position: relative; }
.callout h2 { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(40px, 5.4vw, 76px); line-height: 1.05; letter-spacing: -0.02em; max-width: 980px; margin: 0 auto 28px; color: var(--white); }
.callout h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.callout p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 600px; margin: 0 auto; line-height: 1.55; font-style: normal; font-family: 'Inter', sans-serif; }

/* Testimonial section (rotating) */
.testi { background: var(--charcoal); color: white; position: relative; overflow: hidden; }
.testi::before { content: ""; position: absolute; right: -100px; top: -100px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, rgba(248,150,53,0.18) 0%, transparent 70%); }
.testi .container { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.testi .photo { aspect-ratio: 4 / 5; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.testi .quote .label { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.testi .quote .label .stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.testi .quote blockquote { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.35; letter-spacing: -0.01em; color: white; margin-bottom: 28px; }
.testi .quote blockquote::before { content: "\201C"; font-size: 80px; color: var(--orange); line-height: 0; vertical-align: -22px; margin-right: 4px; }
.testi .quote .who { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.testi .quote .who .avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--orange); color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: 18px; }
.testi .quote .who strong { display: block; color: white; font-size: 15px; }
.testi .quote .who span { font-size: 13px; }
.testi .controls { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.testi .controls .pager { display: flex; gap: 12px; align-items: center; }
.testi .controls .pager .btn-pager { width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: white; font-size: 14px; cursor: pointer; transition: background 200ms ease; border: 0; }
.testi .controls .pager .btn-pager:hover { background: var(--orange); }
.testi .controls .pager .count { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-left: 4px; }
.testi .controls a { color: var(--orange); font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }

/* Fleet section on homepage (split: photo + copy + checklist) */
.fleet { background: var(--cream); padding: 110px 0; }
.fleet .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.fleet .photo { aspect-ratio: 5 / 4; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 24px 50px -20px rgba(31,31,31,0.3); position: relative; }
.fleet .photo::after { content: ""; position: absolute; inset: -14px; border: 1px solid var(--orange); border-radius: 18px; transform: translate(18px, 18px); z-index: -1; }
.fleet .copy .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.fleet .copy h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 18px; }
.fleet .copy h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.fleet .copy p { font-size: 16.5px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; max-width: 480px; }
.fleet .copy ul { list-style: none; margin-bottom: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-width: 460px; }
.fleet .copy ul li { font-size: 14px; color: var(--charcoal); display: flex; gap: 10px; align-items: center; }
.fleet .copy ul li::before { content: "✓"; color: var(--orange); font-weight: 700; }

/* Coverage section (dealer territory) */
.coverage { background: var(--white); padding: 110px 0; }
.coverage .head { text-align: center; margin-bottom: 50px; }
.coverage .head .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.coverage .head h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 3.8vw, 52px); color: var(--charcoal); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; max-width: 800px; margin: 0 auto 18px; }
.coverage .head h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.coverage .head p { color: var(--muted); font-size: 16.5px; max-width: 620px; margin: 0 auto; }

/* Standard-line — positioning statement above territory map. Editorial Playfair italic for emphasis. */
.coverage .standard-line { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(20px, 2.4vw, 28px); color: var(--charcoal); text-align: center; max-width: 820px; margin: 0 auto 50px; line-height: 1.4; letter-spacing: -0.01em; }

.territory { display: grid; grid-template-columns: 1fr; max-width: 880px; margin: 0 auto 56px; padding: 32px 40px; background: var(--cream); border-radius: 16px; border: 1px solid var(--line); }
.territory .row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.territory .pin { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.territory .pin .dot { width: 14px; height: 14px; border-radius: 999px; background: var(--orange); border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--orange); }
.territory .pin strong { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--charcoal); font-weight: 600; }
.territory .pin span { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.territory .corridor { flex: 1; height: 2px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange-3) 50%, var(--orange) 100%); position: relative; }
.territory .corridor::after { content: "100+ DEALER PARTNERS"; position: absolute; left: 50%; top: -28px; transform: translateX(-50%); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--orange-2); white-space: nowrap; }

.dealers-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-bottom: 56px; }
.dealer-logo { aspect-ratio: 16 / 9; background: var(--cream); border-radius: 10px; display: grid; place-items: center; color: var(--charcoal); font-weight: 700; letter-spacing: 0.04em; font-size: 12.5px; opacity: 0.85; padding: 10px; text-align: center; line-height: 1.2; }

.area .heading { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.area .pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 820px; margin: 0 auto; }
.area .pill { padding: 7px 14px; border-radius: 999px; background: var(--cream); color: var(--charcoal); font-size: 13px; font-weight: 500; border: 1px solid var(--line); }


/* =========================================================================
   23. PAGE-SPECIFIC: ABOUT
   ========================================================================= */

/* Story section (split: copy + photo) */
.story { background: var(--white); }
.story .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story .copy .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.story .copy h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 22px; }
.story .copy h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.story .copy p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 18px; }
.story .copy p strong { color: var(--charcoal); font-weight: 600; }
.story .photo { aspect-ratio: 4 / 5; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 24px 50px -20px rgba(31,31,31,0.3); }

/* Numbers section (dark, 4 big stats) */
.numbers { background: var(--charcoal); color: white; padding: 110px 0; position: relative; overflow: hidden; }
.numbers::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, var(--orange-soft) 0%, transparent 65%); }
.numbers .container { position: relative; }
.numbers .head { text-align: center; margin-bottom: 60px; }
.numbers .head .label { color: var(--orange); font-size: 11.5px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 18px; }
.numbers .head h2 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(34px, 4vw, 52px); color: white; line-height: 1.1; letter-spacing: -0.02em; }
.numbers .head h2 em { color: var(--orange); font-style: italic; }
.numbers .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.numbers .stat { text-align: center; padding: 30px 20px; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; background: rgba(255,255,255,0.02); }
.numbers .stat .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 56px; color: var(--orange-3); line-height: 1; letter-spacing: -0.03em; margin-bottom: 12px; }
.numbers .stat .lbl { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; }
.numbers .stat .sub { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* Values section (4 cards, italicized headlines) */
.values { background: var(--cream); }
.values .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.values .card { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.values .card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(31,31,31,0.14); }
.values .card .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 16px; color: var(--orange); letter-spacing: 0.04em; margin-bottom: 16px; }
.values .card h3 { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 14px; }
.values .card h3 em { color: var(--orange); font-style: italic; }
.values .card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.values .card p strong { color: var(--charcoal); font-weight: 600; }

/* Shop / Visit section (split: photo + address card) */
.shop { background: var(--white); }
.shop .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.shop .photo { aspect-ratio: 5 / 4; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 24px 50px -20px rgba(31,31,31,0.3); position: relative; }
.shop .photo::after { content: ""; position: absolute; inset: -14px; border: 1px solid var(--orange); border-radius: 18px; transform: translate(18px, 18px); z-index: -1; }
.shop .copy .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.shop .copy h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 22px; }
.shop .copy h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.shop .copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.shop .info { background: var(--cream); border-radius: 14px; padding: 24px 26px; margin-top: 28px; border: 1px solid var(--line); }
.shop .info .row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.shop .info .row:last-child { border-bottom: 0; }
.shop .info .row .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-2); }
.shop .info .row .val { font-size: 15px; color: var(--charcoal); font-weight: 600; text-align: right; }
.shop .info .row .val a { color: var(--charcoal); }
.shop .info .row .val a:hover { color: var(--orange-2); }


/* =========================================================================
   24. PAGE-SPECIFIC: FLEET
   ========================================================================= */

/* Why Fleet (3-column card grid) */
.why { background: var(--cream); padding: 110px 0; }
.why .head { text-align: center; margin-bottom: 60px; }
.why .head .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.why .head h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 3.8vw, 50px); color: var(--charcoal); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; max-width: 800px; margin: 0 auto 18px; }
.why .head h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.why .head p { color: var(--muted); font-size: 16.5px; max-width: 580px; margin: 0 auto; }
.why .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
.why .card { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.why .card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(31,31,31,0.14); }
.why .card .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 16px; color: var(--orange); letter-spacing: 0.04em; margin-bottom: 16px; }
.why .card h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 24px; line-height: 1.2; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 12px; }
.why .card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.why .card p strong { color: var(--charcoal); font-weight: 600; }

/* Fleet services grid (6 cards on white bg) */
.fleet-services { background: var(--white); }
.fleet-services .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
.fleet-services .card { background: var(--cream); border-radius: 16px; padding: 30px 28px; border: 1px solid var(--line); transition: all 200ms ease; }
.fleet-services .card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(31,31,31,0.14); }
.fleet-services .card .ico { width: 44px; height: 44px; border-radius: 10px; background: var(--orange); color: var(--white); display: grid; place-items: center; font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.fleet-services .card h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 22px; line-height: 1.2; color: var(--charcoal); margin-bottom: 12px; letter-spacing: -0.01em; }
.fleet-services .card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.fleet-services .card p strong { color: var(--charcoal); }

/* Who We Serve (8-card grid) */
.served { background: var(--white); padding: 100px 0; border-top: 1px solid var(--line); }
.served .head { text-align: center; margin-bottom: 50px; }
.served .head .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.served .head h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.4vw, 42px); color: var(--charcoal); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.served .head h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.served .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.served .card { padding: 26px 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); transition: all 200ms ease; }
.served .card:hover { border-color: var(--orange); background: var(--white); transform: translateY(-2px); }
.served .card .ico { font-size: 22px; color: var(--orange); margin-bottom: 14px; }
.served .card h4 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 17px; color: var(--charcoal); margin-bottom: 6px; line-height: 1.2; }
.served .card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Process timeline (5 numbered steps with horizontal connector) */
.process { background: var(--cream); }
.process .timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; position: relative; }
.process .timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 28px; height: 2px; background: var(--orange-3); z-index: 0; }
.process .step { background: var(--white); border-radius: 14px; padding: 28px 22px; border: 1px solid var(--line); position: relative; z-index: 1; text-align: center; }
.process .step .num { width: 56px; height: 56px; border-radius: 999px; background: var(--orange); color: var(--white); display: grid; place-items: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; margin: 0 auto 18px; box-shadow: 0 6px 16px rgba(248,150,53,0.35); }
.process .step h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 17px; line-height: 1.25; color: var(--charcoal); letter-spacing: -0.01em; margin-bottom: 10px; }
.process .step p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.process .footer-note { text-align: center; margin-top: 50px; font-size: 14px; color: var(--muted); font-style: italic; }


/* =========================================================================
   25. PAGE-SPECIFIC: DEALER
   Pricing nav (sticky), pricing-section, why-cards, one-stop callout, contact
   ========================================================================= */

/* Sticky pricing nav (jumps to category sections) */
.pricing-nav { position: sticky; top: 79px; z-index: 40; background: var(--white); border-bottom: 1px solid var(--line); padding: 14px 0; }
.pricing-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pricing-nav .label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
.pricing-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; flex-wrap: wrap; }
.pricing-nav ul li a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink); transition: all 180ms ease; border: 1px solid transparent; }
.pricing-nav ul li a:hover { background: var(--cream); color: var(--orange-2); border-color: var(--line); }
.pricing-nav .download { font-size: 12.5px; font-weight: 600; color: var(--orange-2); display: inline-flex; align-items: center; gap: 6px; }
.pricing-nav .download:hover { color: var(--orange); }

/* Pricing section (dealer catalog) — alternates white/cream backgrounds */
.pricing-section { padding: 90px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 160px; }
.pricing-section:nth-child(even) { background: var(--cream); }
.pricing-section .head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; margin-bottom: 50px; align-items: end; }
.pricing-section .head .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; }
.pricing-section .head .label .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 14px; }
.pricing-section .head h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); }
.pricing-section .head h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.pricing-section .head .right p { color: var(--muted); font-size: 15.5px; line-height: 1.65; padding-bottom: 8px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pricing-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.price-card { background: var(--white); border-radius: 14px; padding: 28px 26px; border: 1px solid var(--line); position: relative; display: flex; flex-direction: column; gap: 14px; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.pricing-section:nth-child(even) .price-card { background: var(--white); }
.price-card:hover { border-color: var(--orange); box-shadow: 0 16px 32px -16px rgba(31,31,31,0.16); }
.price-card .badge-row { display: flex; align-items: center; gap: 8px; }
.price-card .badge { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); padding: 3px 10px; border: 1px solid var(--orange); border-radius: 999px; }
.price-card .badge.warranty { color: var(--green); border-color: var(--green); }
.price-card h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 22px; line-height: 1.15; color: var(--charcoal); letter-spacing: -0.01em; }
.price-card .price-row { display: flex; align-items: baseline; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card .price-row .dealer { display: flex; flex-direction: column; }
.price-card .price-row .dealer .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.price-card .price-row .dealer .val { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; color: var(--charcoal); letter-spacing: -0.01em; line-height: 1; }
.price-card .price-row .retail { display: flex; flex-direction: column; margin-left: auto; text-align: right; }
.price-card .price-row .retail .lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.price-card .price-row .retail .val { font-size: 17px; font-weight: 600; color: var(--muted); }
.price-card .desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.price-card details { font-size: 13px; }
.price-card details summary { cursor: pointer; color: var(--orange-2); font-weight: 600; padding: 8px 0; list-style: none; display: flex; align-items: center; gap: 6px; }
.price-card details summary::-webkit-details-marker { display: none; }
.price-card details summary::after { content: "+"; margin-left: auto; color: var(--orange); font-size: 16px; transition: transform 200ms ease; }
.price-card details[open] summary::after { transform: rotate(45deg); }
.price-card details .details-body { padding-top: 8px; padding-left: 4px; color: var(--muted); line-height: 1.7; font-size: 12.5px; }
.price-card details .details-body strong { color: var(--charcoal); display: block; margin-top: 8px; }
.price-card .footnote { font-size: 11.5px; color: var(--muted-2); font-style: italic; line-height: 1.5; }

.section-actions { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 32px; }
.section-actions .meta { font-size: 13px; color: var(--muted); margin-right: 10px; }

/* One-stop callout (dealer + fleet shared) */
.onestop { background: var(--charcoal); color: white; padding: 130px 0; position: relative; overflow: hidden; text-align: center; }
.onestop::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(248,150,53,0.15) 0%, transparent 65%); }
.onestop::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 80px; height: 3px; background: var(--orange); }
.onestop .container { position: relative; }
.onestop .label { color: var(--orange); font-size: 11.5px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 26px; }
.onestop h2 { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: clamp(36px, 5vw, 70px); line-height: 1.1; letter-spacing: -0.02em; max-width: 1000px; margin: 0 auto 26px; color: var(--white); }
.onestop h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.onestop p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 620px; margin: 0 auto; line-height: 1.55; }

/* Contact band (dealer + fleet shared) */
.contact { background: var(--cream); padding: 110px 0; }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact .copy .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.contact .copy h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 18px; }
.contact .copy h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.contact .copy p { color: var(--muted); font-size: 16.5px; line-height: 1.65; margin-bottom: 28px; max-width: 460px; }
.contact .copy .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.contact .info { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid var(--line); }
.contact .info .item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact .info .item:last-child { border-bottom: 0; }
.contact .info .item .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 6px; }
.contact .info .item .val { font-size: 16px; color: var(--charcoal); font-weight: 600; }
.contact .info .item .val a { color: var(--charcoal); transition: color 180ms ease; }
.contact .info .item .val a:hover { color: var(--orange); }
.contact .info .item .sub { font-size: 13px; color: var(--muted); margin-top: 4px; }


/* =========================================================================
   26. PAGE-SPECIFIC: KATZKIN
   Why-katzkin section (with seal)
   ========================================================================= */
.why-katzkin { background: var(--cream); }
.why-katzkin .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.why-katzkin .seal-area { text-align: center; }
/* Larger version of the brand-compliant seal — used on the katzkin service page. */
.why-katzkin .seal { width: 320px; background: var(--white); border-radius: 12px; padding: 36px 32px 24px; box-shadow: 0 18px 40px -16px rgba(31,31,31,0.2); margin: 0 auto; }
.why-katzkin .seal img { display: block; width: 100%; height: auto; }
.why-katzkin .seal .sub { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--orange-2); text-transform: uppercase; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.why-katzkin .copy .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.why-katzkin .copy h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 22px; }
.why-katzkin .copy h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.why-katzkin .copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.why-katzkin .copy p strong { color: var(--charcoal); font-weight: 600; }
.why-katzkin .facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.why-katzkin .facts .f { font-size: 14px; color: var(--charcoal); display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.why-katzkin .facts .f::before { content: "✓"; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }


/* =========================================================================
   27. RESPONSIVE — tablet (1100px) + mobile (760px)
   Mobile hides the topbar and inline nav and shows a hamburger button that
   toggles body.mobile-nav-open to reveal the nav as a drawer.
   ========================================================================= */
/* =========================================================================
   REUSABLE BANDS / SECTIONS — extracted from inline-styled mockup blocks
   so the same chrome can be dropped onto any tenant page without
   re-typing the CSS. Pattern: each component owns its eyebrow + h2 + body
   conventions; pages just supply the content.
   ========================================================================= */

/* Centered ethos / mission band — narrow container, large h2, single para.
   Used for "Our Mission" on about.html (and reusable for any tenant's
   mission / philosophy statement). */
.section-centered { background: var(--white); padding: 90px 0; text-align: center; }
.section-centered .container { max-width: 760px; }
.section-centered .label { color: var(--orange-2); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.section-centered h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(36px, 4.2vw, 54px); line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 26px; }
.section-centered h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.section-centered p { color: var(--muted); font-size: 19px; line-height: 1.7; margin: 0 0 14px; }
.section-centered p:last-child { margin-bottom: 0; }

/* Trust band — cream-bg full-width callout with top + bottom border.
   For high-trust messaging (Mag-Moss explainer, warranty pledges,
   compliance statements). Centered narrow column inside. */
.trust-band { background: var(--cream); padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-band .container { max-width: 880px; text-align: center; }
.trust-band .label { color: var(--orange-2); font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.trust-band h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.15; letter-spacing: -0.01em; color: var(--charcoal); margin-bottom: 22px; }
.trust-band h2 em { color: var(--orange); font-style: italic; font-weight: 500; }
.trust-band p { font-size: 16px; line-height: 1.7; color: var(--charcoal); margin: 0 0 14px; }
.trust-band p:last-child { margin-bottom: 0; }
.trust-band p.lede { color: var(--muted); font-size: 16.5px; }

/* Brands band — white panel with orange top-border, sits inside a parent
   section (not full-width). For "Brands We Install" / partner-list
   summaries that need to feel like a curated callout. */
.brands-band { max-width: 780px; margin: 64px auto 0; text-align: center; padding: 36px 28px; background: var(--white); border-radius: 12px; border-top: 3px solid var(--orange); }
.brands-band .label { color: var(--orange-2); font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.brands-band p { color: var(--charcoal); font-size: 16px; line-height: 1.75; margin: 0; }

/* Outbound vendor link — orange + bold, used for "Browse at [vendor] →"
   CTAs and any external partner link styled distinctly from inline
   article links. components.js auto-adds target=_blank + rel=noopener
   for any external <a> so the attrs don't need to be typed every time. */
.link-out { color: var(--orange-2); font-weight: 600; }
.link-out:hover { color: var(--orange); }

/* Leather color palette — page-specific (leather-sources.html) but the
   panel and figure shapes are reusable for any image-catalog page. */
.palette-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 1100px) { .palette-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .palette-grid { grid-template-columns: repeat(2, 1fr); } }
.palette-more-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .palette-more-grid { grid-template-columns: 1fr; } }
.palette-feature { max-width: 1080px; margin: 0 auto; background: white; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 18px 48px -22px rgba(31,31,31,0.18); }
.palette-feature img, .palette-figure img { width: 100%; height: auto; display: block; cursor: zoom-in; }
.palette-feature a, .palette-figure a { display: block; }
.palette-caption { text-align: center; margin-top: 18px; color: var(--muted-2); font-size: 13px; }
.palette-more { max-width: 1080px; margin: 60px auto 0; }
.palette-more-head { text-align: center; margin-bottom: 24px; }
.palette-more-head .label { color: var(--orange-2); font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.palette-more-head h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 24px; color: var(--charcoal); }
.palette-figure { margin: 0; background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.palette-figure figcaption { padding: 14px 18px; color: var(--charcoal); font-size: 14px; }
.palette-figure figcaption span { color: var(--muted); }

.hamburger { display: none; }
/* "View all <Category>" hub link inside each dropdown is mobile-only.
   On desktop the dropdown is hover-revealed and the parent label still
   navigates to the hub, so the redundant link gets in the way. */
.nav .dropdown a.view-all { display: none; }

@media (max-width: 1100px) {
  .nav { gap: 18px; font-size: 13.5px; }
  .services .grid { grid-template-columns: repeat(2, 1fr); }
  .more-services .grid { grid-template-columns: repeat(2, 1fr); }
  .dealers-row { grid-template-columns: repeat(3, 1fr); }
  .intro .container, .options .grid, .story .container, .shop .container, .why-katzkin .container { grid-template-columns: 1fr; gap: 50px; }
  .related .grid { grid-template-columns: 1fr; max-width: 500px; }
  .numbers .grid { grid-template-columns: repeat(2, 1fr); }
  .values .grid { grid-template-columns: 1fr; }
  .why .grid { grid-template-columns: 1fr; }
  .served .grid { grid-template-columns: repeat(2, 1fr); }
  .process .timeline { grid-template-columns: repeat(3, 1fr); }
  .process .timeline::before { display: none; }
  .pricing .grid { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-grid, .pricing-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-section .head { grid-template-columns: 1fr; gap: 20px; }
  .fleet-services .grid { grid-template-columns: repeat(2, 1fr); }
  .section-head.split { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  footer .grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* Tablet-portrait + small-tablet — single-column for service / upgrade
   grids so titles + tags read at full size instead of getting squeezed
   when packed two-per-row. */
@media (max-width: 940px) {
  .services .grid,
  .more-services .grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .nav { display: none; }
  /* Mobile drawer — opens when body.mobile-nav-open via hamburger */
  .header .container { position: relative; }
  .hamburger { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 10px 6px; margin-left: 6px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: transform 0.2s ease, opacity 0.2s ease; }
  body.mobile-nav-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 12px 24px 18px; gap: 0;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    border-top: 1px solid var(--line);
    z-index: 80;
  }
  /* Row styling lives on the direct flex children of .nav so it applies
     equally to the .nav-item wrappers (which host dropdown links) AND
     the plain <a> direct-link items. Without this the .nav-item rows
     have no padding/border and their inner <a> only spans its own text
     width, leaving the dropdown rows looking cramped against the
     direct-link rows. */
  body.mobile-nav-open .nav > a,
  body.mobile-nav-open .nav > .nav-item {
    display: block; padding: 14px 0; border-bottom: 1px solid var(--line);
    font-size: 16px; text-align: left; color: var(--ink); font-weight: 500;
  }
  body.mobile-nav-open .nav > a:last-child,
  body.mobile-nav-open .nav > .nav-item:last-child { border-bottom: 0; }
  body.mobile-nav-open .nav > .nav-item > a {
    display: block; padding: 0; border: 0; font-size: inherit;
    color: inherit; font-weight: inherit;
  }
  /* Drawer mode: caret items expand inline; tapping their label
     toggles .nav-item.expanded (handled in components.js). The "View
     all <Category>" link inside the panel routes to the hub. */
  body.mobile-nav-open .nav .dropdown {
    display: none;
    position: static; opacity: 1; visibility: visible; transform: none;
    margin: 4px 0 8px; padding: 0 0 0 14px;
    background: transparent; border: 0; box-shadow: none;
    border-left: 2px solid var(--orange-soft);
  }
  body.mobile-nav-open .nav .nav-item.expanded .dropdown { display: block; }
  body.mobile-nav-open .nav .dropdown a {
    display: block; padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14.5px; font-weight: 500; color: var(--ink);
    border-radius: 0; background: transparent;
  }
  body.mobile-nav-open .nav .dropdown a:last-child { border-bottom: 0; }
  body.mobile-nav-open .nav .dropdown a.view-all {
    color: var(--orange-2); font-weight: 600; font-size: 13px;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  /* Caret stays visible in the drawer and rotates when expanded so
     users can see the section state. */
  body.mobile-nav-open .nav a.has-caret::after {
    content: " ▾"; color: var(--muted-2); font-size: 14px;
    display: inline-block; transition: transform 180ms ease;
  }
  body.mobile-nav-open .nav .nav-item.expanded > a.has-caret::after {
    transform: rotate(180deg); color: var(--orange-2);
  }
  body.mobile-nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.mobile-nav-open .hamburger span:nth-child(2) { opacity: 0; }
  body.mobile-nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Hide phone in header at narrow widths to keep CTA + hamburger fitting */
  .header-cta .phone { display: none; }
  .header-cta { gap: 8px; }
  .glance .container, .trust .container { grid-template-columns: repeat(2, 1fr); }
  .gallery .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  footer .grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  /* Hero — relax tall variant + recenter content so the H1 is in-view */
  .hero { padding: 60px 0 70px; }
  .hero.hero-tall { height: auto; min-height: 520px; max-height: none; }
  .hero .container { justify-content: center; padding-top: 70px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(30px, 7vw, 40px); }
  .hero.hero-tall h1 { font-size: clamp(32px, 7.5vw, 44px); }
  .hero .lede { font-size: 15px; }
  .hero .reviews { display: none; }
  /* Eyebrow chip: drops max-content sizing + tightens type so the long
     "★ PORTLAND'S LOCAL RESTYLER · 20+ YEARS" / "★ LOCALLY OWNED ·
     BEAVERTON, OR · SINCE 2003" strings fit a phone viewport instead of
     getting clipped off the right edge. */
  .hero .eyebrow, .hero-dark .eyebrow {
    width: auto; max-width: 100%; white-space: normal;
    font-size: 10.5px; letter-spacing: 0.10em;
    padding: 7px 14px; line-height: 1.4;
  }
  /* Card titles wrap freely so long ones don't get clipped by the card.
     overflow-wrap: anywhere lets the browser break inside a word as a
     last resort when even single tokens are wider than the container. */
  .service-card h3, .service-card-stacked h3, .more-card h4,
  .related .card h4, .pricing .card h3, .testi blockquote, .pill {
    overflow-wrap: anywhere;
  }
  /* Tag chips on stacked service cards — wrap the long ones onto two
     lines instead of clipping. */
  .service-card .tag, .service-card-stacked .tag { white-space: normal; }
  /* "Recognized by" badge row — long brand strings can crowd at narrow
     widths. Center each on its own line if needed. */
  .recognition .badge { text-align: center; }
  .services .grid, .more-services .grid, .testi .container, .fleet .container, .cta-band .container, .contact .container, .story .container, .shop .container, .pricing-grid, .pricing-grid.cols-2, .pricing-grid.cols-4, .fleet-services .grid, .served .grid { grid-template-columns: 1fr; }
  .dealers-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-nav { position: static; }
  .pricing-nav .container { flex-direction: column; gap: 12px; }
  .process .timeline { grid-template-columns: 1fr; }
  .territory .row { flex-direction: column; gap: 30px; }
  .territory .corridor { width: 2px; height: 60px; background: linear-gradient(180deg, var(--orange) 0%, var(--orange-3) 50%, var(--orange) 100%); }
  .territory .corridor::after { transform: translateX(-50%) rotate(0); top: 50%; left: 50%; }
  .numbers .grid { grid-template-columns: 1fr; }
  .numbers .stat .num { font-size: 44px; }
  .hero-dark .meta { gap: 20px; }
  .hero-dark .meta .stat .num { font-size: 28px; }
  .hero-dark { padding: 60px 0 70px; }
}
