/* ================================================
   FAST-FIX BRAND SPEC v1.0 · 2026
   Colors: Gold #A68340, Ink #0D0C09, Off-white #F7F9FA
   Fonts: Inter (UI/body/headings), Cormorant Bold Italic (accent only)
================================================ */
:root {
  --gold:       #A68340;   /* Accent, CTAs, links, active states */
  --ink:        #0D0C09;   /* Primary text & dark surfaces */
  --black:      #000000;   /* Outlines, high-contrast */
  --white:      #FFFFFF;   /* Primary background, reversed text */

  --soft:       #F7F9FA;   /* Off-white — cards, section fills */
  --espresso:   #282620;   /* Footer, dark bands */
  --taupe:      #5E5750;   /* Body text */
  --slate:      #737373;   /* Captions, meta */
  --line:       #E6E6E6;   /* Hairline borders */
  --dark-line:  #413C37;   /* Dividers on dark */
}

/* TYPE SCALE (brand spec)
   Display:    Cormorant Bold Italic 72px — hero accent, ONE per section
   H1:         Inter Medium 64px  tracking -0.06em
   H2:         Inter Medium 56px  section titles
   Accent:     Cormorant Bold Italic 48px — inline flourish
   Title:      Inter Semibold 20px
   Body Large: Inter Medium 18px
   Body:       Inter Regular 16px
   Small/UI:   Inter Medium 14px
   Eyebrow:    Inter Medium 12px UPPERCASE 0.1em tracking
*/

/* BASE TYPOGRAPHY */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
}

/* Headings — Inter by default, Cormorant italic only via em */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.04em;
}

/* Cormorant italic accent — used INSIDE headings or standalone display lines */
h1 em, h2 em, h3 em, .v3-accent, .v3-display {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

/* Eyebrow label */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/*
 * Fast-Fix TN v3 Redesign Stylesheet
 * fastfix.com visual system: Inter + Cormorant Garamond, gold #A68340
 */

/* ── TOKENS ── */
:root {
  --ink: #0D0C09;
  --paper: #FFFFFF;
  --gray-text: #6E6E6C;
  --soft: #F7F9FA;
  --gold: #A68340;
  --gold-deep: #8B6B2A;
  --line: #E6E6E6;
  --black: #121212;
}

/* ── GLOBAL BODY RESET ── */
body { font-family: 'Inter', sans-serif; }

/* ── V3 SCOPE ── */
.v3 *, .v3 *::before, .v3 *::after { box-sizing: border-box; }
.v3 { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.v3 a { color: inherit; text-decoration: none; }
.v3 .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.v3 .eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); display: block; }

/* ── PILL BUTTONS ── */
.v3 .pill, .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  font-size: 0.92rem; cursor: pointer; border: none;
  transition: transform .12s, box-shadow .12s, background .12s;
  font-family: 'Inter', sans-serif; text-decoration: none;
}
.v3 .pill-gold, .pill-gold { background: var(--gold); color: #fff !important; }
.v3 .pill-gold:hover, .pill-gold:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(139,107,42,0.3); color: #fff !important; }
.v3 .pill-outline, .pill-outline { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.v3 .pill-outline:hover, .pill-outline:hover { background: var(--ink); color: #fff; }
.v3 .pill-sm, .pill-sm { padding: 10px 18px; font-size: 0.82rem; }
.v3 .pill-ghost-light { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; background: transparent; }
.v3 .pill-ghost-light:hover { background: rgba(255,255,255,0.15); }

.v3 .arrow-circ {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold);
  color: #fff; display: flex; align-items: center; justify-content: center;
  flex: 0 0 38px; font-size: 1.1rem; font-weight: 700;
}

/* ══════════════════════════════════════
   HEADER — universal v3 header
══════════════════════════════════════ */
header.v3-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 200;
}
.v3-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1180px; margin: 0 auto;
}
.v3-ham {
  display: flex; flex-direction: column; gap: 5px; width: 22px;
  cursor: pointer; background: none; border: none; padding: 4px 0; flex-shrink: 0;
}
.v3-ham span { height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: transform .2s, opacity .2s; }
.v3-logo-center { text-align: center; line-height: 1.2; flex: 1; }
.v3-logo-center a { text-decoration: none; }
.v3-mark { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.02em; display: block; color: var(--ink); }
.v3-sub { font-size: 0.5rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-text); display: block; }
.v3-head-icons { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.v3-icon-btn { display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 1rem; text-decoration: none; width: 32px; height: 32px; }

/* Hide old theme header everywhere */
#masthead, .site-header { display: none !important; }

/* ══════════════════════════════════════
   MOBILE / DESKTOP NAV DRAWER
══════════════════════════════════════ */
.v3-nav-overlay {
  position: fixed; inset: 0; background: rgba(23,23,22,0.5);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.v3-nav-overlay.open { opacity: 1; pointer-events: all; }

.v3-nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 88vw);
  background: #fff; z-index: 400; transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.v3-nav-drawer.open { transform: translateX(0); }

.v3-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.v3-nav-logo { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.v3-nav-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--soft);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--ink); line-height: 1;
}

.v3-nav-body { padding: 24px; flex: 1; }

.v3-nav-section-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-text);
  margin: 20px 0 8px; display: block;
}
.v3-nav-section-label:first-child { margin-top: 0; }

.v3-nav-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.v3-nav-links a {
  display: block; padding: 10px 12px; border-radius: 10px;
  font-size: 0.97rem; font-weight: 500; color: var(--ink);
  text-decoration: none; transition: background .12s;
}
.v3-nav-links a:hover { background: var(--soft); }
.v3-nav-links a.gold-link { color: var(--gold-deep); font-weight: 600; }

.v3-nav-ctas { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); padding-top: 20px; }
.v3-nav-ctas .pill { justify-content: center; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.v3-hero { position: relative; overflow: hidden; }
.v3-hero-bg {
  background:
    linear-gradient(180deg, rgba(20,18,16,0.45) 0%, rgba(20,18,16,0.72) 100%),
    repeating-linear-gradient(115deg, #5a4f44 0 3px, #3f3730 3px 7px);
  min-height: 420px; display: flex; flex-direction: column; justify-content: center;
  padding: 48px 24px 36px;
}
@media (min-width: 640px) { .v3-hero-bg { min-height: 560px; padding: 60px 24px 48px; } }
.v3-hero-inner { max-width: 760px; margin: 0 auto; text-align: left; color: #fff; width: 100%; }
.v3-hero-inner .eyebrow { color: #E7D6B3; }
.v3-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; line-height: 1.15; margin: 14px 0 18px;
  font-weight: 600; color: #fff;
}
@media (min-width: 640px) { .v3-hero h1 { font-size: 3.4rem; } }
.v3-hero h1 em { font-style: italic; }
.v3-hero p.v3-lede { color: #E9E6DF; font-size: 1.02rem; max-width: 480px; margin-bottom: 0; }
.v3-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* CTA CARDS */
.v3-cta-cards {
  max-width: 900px; margin: 32px auto 0; padding: 0 24px;
  display: flex; flex-direction: column; gap: 14px;
}
@media (min-width: 760px) { .v3-cta-cards { flex-direction: row; } }
.v3-cta-card {
  flex: 1; background: #fff; border-radius: 18px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 14px 30px rgba(20,18,16,0.14);
  transition: transform .15s, box-shadow .15s; text-decoration: none;
}
.v3-cta-card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(20,18,16,0.18); }
.v3-cta-card .v3-icn { width: 40px; height: 40px; flex: 0 0 40px; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; }
.v3-cta-card .v3-txt { flex: 1; }
.v3-cta-card .v3-txt b { display: block; font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.v3-cta-card .v3-txt span { font-size: 0.8rem; color: var(--gray-text); }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.v3-section { padding: 72px 0 56px; }
.v3-section.v3-tight { padding-top: 36px; }
.v3-section-soft { background: var(--soft); }
.v3-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; line-height: 1.15; margin-top: 10px;
}
.v3-section h2 em { font-style: italic; }
.v3-section p.v3-sub { color: var(--gray-text); margin-top: 12px; max-width: 520px; }

/* BEFORE / AFTER */
.v3-ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}
@media (min-width: 640px) {
  .v3-ba-grid { grid-template-columns: repeat(3, 1fr); }
}

.v3-ba-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line, #E6E6E6);
  background: #fff;
}

.v3-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v3-ba-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.v3-ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v3-tag {
  position: absolute;
  bottom: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(20,18,16,0.6);
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}
.v3-before-tag { left: 8px; }
.v3-after-tag { right: 8px; }

.v3-ba-label {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line, #E6E6E6);
}
.v3-ba-label span { font-size: 0.8rem; color: #737373; }
.v3-ba-label b { font-size: 0.88rem; color: var(--ink, #0D0C09); font-weight: 600; }

.v3-catalog {
  border-radius: 18px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20,18,16,0.35), rgba(20,18,16,0.72)),
    repeating-linear-gradient(100deg, #4a4138 0 4px, #5e5448 4px 9px);
  padding: 64px 28px; color: #fff; text-align: center; margin: 8px 0;
}
.v3-catalog .eyebrow { color: #E7D6B3; justify-content: center; }
.v3-catalog h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: #fff; }
.v3-catalog h2 em { font-style: italic; }
.v3-catalog p { color: #E9E6DF; max-width: 440px; margin: 14px auto 24px; font-size: 0.95rem; }

/* LOCATIONS */
.v3-loc-grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: 30px; }
@media (min-width: 700px) { .v3-loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .v3-loc-grid { grid-template-columns: repeat(4, 1fr); } }
.v3-loc-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.v3-open-pill {
  align-self: flex-start; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #3D6B45; background: #E4EEDC; padding: 4px 10px; border-radius: 20px;
}
.v3-loc-card h3 { font-size: 1.02rem; font-weight: 700; margin-top: 4px; color: var(--ink); }
.v3-loc-card .v3-mall { font-size: 0.84rem; color: var(--gray-text); }
.v3-loc-card .v3-hours { font-size: 0.78rem; color: var(--gray-text); }
.v3-loc-card .v3-today-hours { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.v3-loc-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.v3-loc-actions .pill { flex: 1; justify-content: center; }

/* TESTIMONIALS */
.v3-testi { display: flex; flex-direction: column; gap: 54px; margin-top: 36px; }
.v3-testi-item { max-width: 560px; }
.v3-testi-photo {
  aspect-ratio: 4/3; border-radius: 14px; margin-bottom: 18px;
  background: repeating-linear-gradient(125deg, #cdbfa1 0 5px, #e0d3b4 5px 11px);
  overflow: hidden;
}
.v3-testi-photo img { width: 100%; height: 100%; object-fit: cover; }
.v3-testi-photo:empty { display: none; }
.v3-testi-item .v3-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; font-size: 1rem; }
.v3-testi-item blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.2rem; color: #2c2a27; line-height: 1.5;
  margin: 0; padding: 0; border: none; background: none;
}
.v3-testi-item .v3-who { margin-top: 12px; font-weight: 700; font-size: 0.86rem; color: var(--ink); }

/* FINAL CTA */
.v3-final-cta { text-align: center; padding: 64px 0; }
.v3-final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; max-width: 620px; margin: 10px auto 14px;
  font-weight: 600; line-height: 1.15;
}
.v3-final-cta h2 em { font-style: italic; }
.v3-final-cta p { color: var(--gray-text); max-width: 520px; margin: 0 auto 26px; }
.v3-final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER — v3 black footer (all pages)
══════════════════════════════════════ */
footer.v3-footer {
  background: var(--black); color: #A9A9A6;
  padding: 54px 0 26px; font-size: 0.86rem;
  font-family: 'Inter', sans-serif;
}
.v3-foot-top { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; max-width: 400px; }
.v3-foot-top .v3-mark { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.25rem; font-weight: 700; }
.v3-foot-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-bottom: 32px; }
@media (min-width: 700px) { .v3-foot-grid { grid-template-columns: repeat(4, 1fr); } }
footer.v3-footer h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7C7C79; margin-bottom: 12px;
}
footer.v3-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
footer.v3-footer a { color: #A9A9A6; text-decoration: none; }
footer.v3-footer a:hover { color: #fff; }
.v3-foot-bottom {
  border-top: 1px solid #2A2A28; padding-top: 18px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 10px; font-size: 0.76rem; color: #737373775;
}

/* Hide old theme footer/header everywhere */
body #masthead,
body .site-header,
body .footer,
body .section-sms { display: none !important; }

/* Testimonials — text-only editorial style */
.v3-testi { display: flex; flex-direction: column; gap: 48px; margin-top: 36px; max-width: 720px; }
.v3-testi-item { padding: 32px; background: var(--soft); border-radius: 16px; border-left: 3px solid var(--gold); }


/* ════════════════════════════════════════
   INNER PAGE STYLES
   Applies v3 typography to existing
   service/content page templates
════════════════════════════════════════ */

/* Wrapper & layout */
body:not(.home) #primary { max-width: 1180px; margin: 0 auto; padding: 40px 24px 72px; }
body:not(.home) #primary article { max-width: 820px; }

/* Page title */
body:not(.home) .entry-title,
body:not(.home) h1.entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; line-height: 1.15;
  color: var(--ink, #0D0C09); margin-bottom: 24px; margin-top: 0;
}

/* Body copy */
body:not(.home) .entry-content,
body:not(.home) .article-content {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; line-height: 1.7; color: #3a3a38;
}

body:not(.home) .entry-content h2,
body:not(.home) .article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; margin: 40px 0 14px; color: var(--ink, #0D0C09);
}
body:not(.home) .entry-content h3,
body:not(.home) .article-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 700; margin: 28px 0 10px; color: var(--ink, #0D0C09);
  text-transform: uppercase; letter-spacing: 0.04em;
}
body:not(.home) .entry-content p,
body:not(.home) .article-content p { margin-bottom: 16px; }

body:not(.home) .entry-content ul,
body:not(.home) .article-content ul { padding-left: 20px; margin-bottom: 16px; }
body:not(.home) .entry-content ul li,
body:not(.home) .article-content ul li { margin-bottom: 6px; }

/* Buttons inside content */
body:not(.home) .wp-block-button__link,
body:not(.home) .entry-content a.button,
body:not(.home) .article-content a.button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600;
  font-size: 0.92rem; background: var(--gold, #A68340); color: #fff;
  text-decoration: none; border: none; font-family: 'Inter', sans-serif;
  transition: background .15s, transform .12s;
}
body:not(.home) .wp-block-button__link:hover,
body:not(.home) .entry-content a.button:hover {
  background: var(--gold-deep, #8B6B2A); transform: translateY(-1px); color: #fff;
}

/* Eyeglass / service additional services sidebar */
.additional-services h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7C7C79; margin-bottom: 12px;
}
.additional-services a { color: var(--ink, #0D0C09); text-decoration: none; }
.additional-services a:hover { color: var(--gold, #A68340); }
.additional-services-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #E6E6E6; }
.additional-text { font-size: 0.88rem; font-weight: 500; }

/* Article thumbnail */
body:not(.home) .entry-thumbnail img,
body:not(.home) .entry-thumbnail .wp-post-image {
  border-radius: 14px; width: 100%; height: auto; display: block; margin-bottom: 32px;
}

/* Sub-service page links grid (inside jewelry-repair etc.) */
body:not(.home) .sub-services-grid,
body:not(.home) .services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px; margin: 24px 0;
}
body:not(.home) .sub-services-grid a,
body:not(.home) .services-grid a {
  display: block; padding: 16px; border: 1px solid #E6E6E6; border-radius: 12px;
  font-weight: 600; font-size: 0.9rem; color: var(--ink, #0D0C09);
  text-decoration: none; transition: border-color .15s, background .15s;
}
body:not(.home) .sub-services-grid a:hover,
body:not(.home) .services-grid a:hover {
  border-color: var(--gold, #A68340); background: #FBF8F3;
}

/* CTA strip at bottom of service pages */
.v3-service-cta {
  margin-top: 48px; padding: 36px; background: #F7F9FA;
  border-radius: 16px; text-align: center;
}
.v3-service-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; margin-bottom: 10px;
}
.v3-service-cta p { color: #6E6E6C; margin-bottom: 20px; font-size: 0.95rem; }

/* Breadcrumb styling */
body:not(.home) .breadcrumb,
body:not(.home) nav.woocommerce-breadcrumb {
  font-size: 0.78rem; color: #6E6E6C; margin-bottom: 24px; font-family: 'Inter', sans-serif;
}
body:not(.home) .breadcrumb a { color: #6E6E6C; text-decoration: none; }
body:not(.home) .breadcrumb a:hover { color: var(--ink, #0D0C09); }

/* Mail-in banner override */
body:not(.home) .mail-in-banner {
  background: var(--gold, #A68340); border-radius: 12px; padding: 16px 20px;
  margin-bottom: 32px;
}
body:not(.home) .mail-in-banner a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 12px; }
body:not(.home) .mail-in-banner h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin: 0; }
body:not(.home) .mail-in-banner h4 span { display: block; font-weight: 400; font-size: 0.82rem; opacity: 0.85; margin-top: 3px; }

/* Locations page */
body:not(.home) .locations-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px;
}
@media (min-width: 700px) {
  body:not(.home) .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Fix padding on .site after removing old header */
#page.site { padding-top: 0; }
.site-header + * { /* nothing — old header hidden */ }


/* ================================================
   AGGRESSIVE OVERRIDES
   Forces v3 type system over old Montserrat/Muli
================================================ */

/* Inter everywhere */
body, body *, input, button, select, textarea {
  font-family: 'Inter', sans-serif !important;
}

/* Cormorant Garamond on headings */
h1, h2, h3,
.entry-title,
.entry-header .entry-title,
.article-content h1,
.article-content h2,
.article-content h3,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: 'Cormorant Garamond', serif !important;
}

/* Keep Inter on sub-headings and UI elements */
h4, h5, h6,
.article-content h4,
.article-content h5,
.entry-content h4,
.entry-content h5,
footer h5,
.v3-nav-logo { font-family: 'Inter', sans-serif !important; }

/* Keep logo font */
.v3-mark { font-family: 'Cormorant Garamond', serif !important; }

/* INNER PAGE LAYOUT */
body:not(.home) .site-content { padding-top: 0 !important; }
body:not(.home) #primary {
  max-width: 1100px !important; margin: 0 auto !important;
  padding: 48px 24px 72px !important; float: none !important; width: 100% !important;
}
body:not(.home) #secondary { display: none !important; }

/* Page title */
body:not(.home) .entry-title,
body:not(.home) .entry-header .entry-title {
  font-size: 2.4rem !important; font-weight: 600 !important;
  line-height: 1.15 !important; color: #0D0C09 !important;
  margin-bottom: 28px !important; margin-top: 0 !important;
  letter-spacing: -0.01em !important; border-bottom: none !important;
  text-transform: none !important; padding: 0 !important;
}

/* Article content */
body:not(.home) .article-content { display: block !important; max-width: 820px; }
body:not(.home) .has-post-thumbnail .article-content,
body:not(.home) .locations .article-content { display: block !important; }
body:not(.home) .article-content .entry-thumbnail {
  float: none !important; width: 100% !important; max-width: 100% !important;
  margin-bottom: 32px !important; padding: 0 !important;
}
body:not(.home) .article-content .entry-thumbnail img {
  border-radius: 14px !important; width: 100% !important; height: auto !important;
  max-height: 420px !important; object-fit: cover !important;
}
body:not(.home) .has-post-thumbnail .article-content .entry-content,
body:not(.home) .article-content .entry-content {
  float: none !important; width: 100% !important; max-width: 100% !important;
  padding: 0 !important; font-size: 1rem !important;
  line-height: 1.75 !important; color: #3a3a38 !important;
}

/* Content headings */
body:not(.home) .entry-content h2, body:not(.home) .article-content h2 {
  font-size: 1.9rem !important; font-weight: 600 !important;
  margin: 40px 0 14px !important; color: #0D0C09 !important;
}
body:not(.home) .entry-content h3, body:not(.home) .article-content h3 {
  font-size: 1.05rem !important; font-weight: 700 !important;
  margin: 28px 0 10px !important; color: #0D0C09 !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase !important; letter-spacing: 0.05em !important;
}
body:not(.home) .entry-content p, body:not(.home) .article-content p {
  margin-bottom: 16px !important;
}

/* Buttons */
body:not(.home) .wp-block-button__link,
body:not(.home) a.wp-block-button__link {
  background: #A68340 !important; color: #fff !important;
  border-radius: 999px !important; padding: 13px 28px !important;
  font-weight: 600 !important; font-size: 0.92rem !important;
  text-transform: none !important; letter-spacing: 0 !important;
  border: none !important; box-shadow: none !important;
}
body:not(.home) .wp-block-button__link:hover,
body:not(.home) a.wp-block-button__link:hover {
  background: #8B6B2A !important; color: #fff !important;
}

/* Additional services sidebar */
.additional-services {
  background: #F7F9FA !important; border-radius: 14px !important;
  padding: 20px !important; border: none !important;
}
.additional-services h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.68rem !important; font-weight: 700 !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  color: #7C7C79 !important; margin-bottom: 16px !important;
  border-bottom: 1px solid #E6E6E6 !important; padding-bottom: 10px !important;
}
.additional-services ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.additional-services a { color: #0D0C09 !important; text-decoration: none !important; }
.additional-services a:hover { color: #A68340 !important; }
.additional-services-item {
  display: flex !important; align-items: center !important;
  gap: 10px !important; padding: 8px 0 !important;
  border-bottom: 1px solid #E6E6E6 !important;
}
.additional-text { font-size: 0.88rem !important; font-weight: 500 !important; }
.additional-icon img { width: 28px !important; height: 28px !important; opacity: 0.7; }

/* Desktop sidebar grid */
@media (min-width: 900px) {
  body:not(.home) .has-post-thumbnail .article-content {
    display: grid !important;
    grid-template-columns: 1fr 240px !important;
    gap: 32px !important; align-items: start !important;
  }
  body:not(.home) .has-post-thumbnail .article-content .entry-thumbnail {
    grid-column: 1 / -1 !important;
  }
  body:not(.home) .has-post-thumbnail .article-content .entry-content {
    grid-column: 1 !important;
  }
  .additional-services.desktop-only {
    display: block !important; grid-column: 2 !important;
    grid-row: 2 !important; position: sticky !important; top: 90px !important;
  }
}
.additional-services.desktop-only { display: none; }
@media (min-width: 900px) { .additional-services.desktop-only { display: block; } }

/* Post thumbnail */
body:not(.home) .post-thumbnail,
body:not(.home) .entry-thumbnail .post-thumbnail {
  border-radius: 14px !important; overflow: hidden !important;
}
body:not(.home) .post-thumbnail::before,
body:not(.home) .post-thumbnail::after { display: none !important; }

/* Mail-in banner */
.mail-in-banner {
  background: #A68340 !important; border-radius: 12px !important;
  padding: 18px 22px !important; margin-bottom: 32px !important; border: none !important;
}
.mail-in-banner a {
  color: #fff !important; text-decoration: none !important;
  display: flex !important; align-items: center !important; gap: 14px !important;
}
.mail-in-banner h4 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important; font-weight: 600 !important;
  color: #fff !important; margin: 0 !important;
}
.mail-in-banner h4 span {
  display: block !important; font-weight: 400 !important;
  font-size: 0.82rem !important; opacity: 0.85 !important; margin-top: 3px !important;
}
.mail-in-banner i { font-size: 1.4rem !important; color: #fff !important; }

/* Links in content */
body:not(.home) .entry-content a,
body:not(.home) .article-content a {
  color: #A68340; text-decoration-color: rgba(166,131,64,0.3);
}
body:not(.home) .entry-content a:hover { color: #8B6B2A; }

/* Hide leftover old theme UI */
.book-appt-btn, .site-quotes-hdr, .hdr-social, .main-header { display: none !important; }



/* ================================================
   V3 LOCATIONS PAGE
================================================ */

.v3-locations-page {
  font-family: 'Inter', sans-serif;
  /* Reset any inner-page constraints from the override block */
}

/* Override the body:not(.home) #primary constraint for locations archive */
body.post-type-archive-locations #primary,
body.post-type-archive-locations.locations #primary {
  max-width: 100% !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}
body.post-type-archive-locations .site-content,
body.post-type-archive-locations.locations .site-content {
  padding-top: 0 !important;
}

/* Hero */
.v3-locs-hero {
  background: var(--soft, #F7F9FA);
  padding: 64px 24px 56px;
  text-align: center;
}
.v3-locs-hero-inner { max-width: 640px; margin: 0 auto; }
.v3-locs-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.4rem, 6vw, 3.6rem) !important;
  font-weight: 600 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 8px 0 16px !important;
  line-height: 1.1 !important;
}
.v3-locs-sub {
  font-size: 1.05rem;
  color: #5E5750;
  margin: 0;
}

/* Grid section */
.v3-locs-grid-section {
  padding: 56px 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #fff;
}
.v3-locs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .v3-locs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Card */
.v3-loc-card {
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.2s;
}
.v3-loc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); }
.v3-loc-card-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}

.v3-loc-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.65rem !important;
  font-weight: 600 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.v3-loc-address {
  font-style: normal;
  font-size: 0.9rem;
  color: #5E5750;
  line-height: 1.65;
}

.v3-loc-hours { display: flex; flex-direction: column; gap: 4px; }
.v3-loc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  font-family: 'Inter', sans-serif !important;
}
.v3-loc-hours p {
  font-size: 0.88rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
  font-family: 'Inter', sans-serif !important;
}

.v3-loc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.v3-loc-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif !important;
}
.v3-loc-btn-primary {
  background: var(--gold, #A68340);
  color: #fff !important;
}
.v3-loc-btn-primary:hover { background: var(--gold-deep, #8B6B2A); color: #fff !important; }
.v3-loc-btn-ghost {
  background: transparent;
  color: var(--ink, #0D0C09) !important;
  border: 1.5px solid #D0C9B8;
}
.v3-loc-btn-ghost:hover {
  border-color: var(--gold, #A68340);
  color: var(--gold, #A68340) !important;
}

.v3-loc-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold, #A68340) !important;
  text-decoration: none !important;
  margin-top: 4px;
  font-family: 'Inter', sans-serif !important;
}
.v3-loc-directions:hover { color: var(--gold-deep, #8B6B2A) !important; }

/* Bottom CTA */
.v3-locs-cta {
  background: var(--ink, #0D0C09);
  padding: 72px 24px;
  text-align: center;
}
.v3-locs-cta-inner { max-width: 540px; margin: 0 auto; }
.v3-locs-cta h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.4rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin: 0 0 12px !important;
}
.v3-locs-cta p {
  color: rgba(255,255,255,0.7) !important;
  margin: 0 0 28px !important;
  font-size: 1rem !important;
}

/* White background for locations page body */
body.post-type-archive-locations {
  background-color: #fff !important;
}
body.post-type-archive-locations .site {
  background: #fff !important;
}

/* Kill old theme blue-gray on locations archive */
body.post-type-archive-locations,
body.post-type-archive-locations #page,
body.post-type-archive-locations #content,
body.post-type-archive-locations #primary,
body.post-type-archive-locations .site-content {
  background-color: #fff !important;
  background: #fff !important;
}

/* ================================================
   V3 SERVICE ACCORDION ICONS (scraped from fastfix.com)
================================================ */

.v3-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold, #A68340);
}
.v3-icn svg {
  width: 20px;
  height: 20px;
}

/* Toggle plus/minus */
.v3-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--ink, #0D0C09);
  position: relative;
}
.v3-toggle svg { width: 20px; height: 20px; }
.v3-ico-minus { display: none; }
.v3-acc-item.open .v3-ico-plus  { display: none; }
.v3-acc-item.open .v3-ico-minus { display: block; }

/* CTA card image icons */
.v3-icn-img {
  width: auto !important;
  height: auto !important;
  background: none !important;
  padding: 0 !important;
}
.v3-icn-img img {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  display: block !important;
}


/* ================================================
   /* V3 HEADER */
   Desktop: logo left | inline nav center | icons right
   Mobile: logo left | hamburger right (drawer slides in)
================================================ */

/* Kill old header */
.main-header, .book-appt-btn, .site-quotes-hdr, .hdr-social { display: none !important; }

.v3-hdr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #EDEAE3;
  height: 96px;
}
.v3-hdr-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  gap: 24px;
}

/* Left */
.v3-hdr-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.v3-hdr-logo img {
  display: block;
  height: 52px;
  width: auto;
}

/* Hamburger — mobile only */
.v3-ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.v3-ham span {
  display: block;
  height: 1.5px;
  background: #0D0C09;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (min-width: 900px) {
  .v3-ham { display: none; }
}

/* Center inline nav — desktop only */
.v3-hdr-nav { display: none; }
@media (min-width: 900px) {
  .v3-hdr-nav { display: block; }
}
.v3-hdr-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v3-hdr-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #0D0C09 !important;
  text-decoration: none !important;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif !important;
}
.v3-hdr-nav-list > li > a:hover {
  background: #F7F9FA;
  color: #A68340 !important;
}
.v3-hdr-nav-list > li > a svg { opacity: 0.55; transition: opacity 0.15s; }
.v3-hdr-nav-list > li > a:hover svg { opacity: 1; }

/* Services dropdown */
.v3-has-drop { position: relative; }
.v3-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  background: transparent;
  list-style: none;
  margin: 0;
  min-width: 200px;
  z-index: 950;
}
.v3-drop::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid #EDEAE3;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: -1;
}
.v3-has-drop:hover .v3-drop,
.v3-has-drop:focus-within .v3-drop { display: block; }
.v3-drop li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D0C09 !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
  font-family: 'Inter', sans-serif !important;
}
.v3-drop li a:hover { background: #F7F9FA; color: #A68340 !important; }

/* Right icons */
.v3-hdr-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.v3-hdr-loc-link {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0D0C09 !important;
  text-decoration: none !important;
  padding: 8px 16px;
  border: 1.5px solid #EDEAE3;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
  font-family: 'Inter', sans-serif !important;
}
.v3-hdr-loc-link:hover { border-color: #A68340; color: #A68340 !important; }
@media (min-width: 900px) { .v3-hdr-loc-link { display: flex; } }

.v3-hdr-search {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0D0C09;
  border-radius: 6px;
  transition: background 0.15s;
}
.v3-hdr-search:hover { background: #F7F9FA; }
@media (min-width: 900px) { .v3-hdr-search { display: flex; } }

/* Offset content below sticky header */
body.admin-bar .v3-hdr { top: 32px; }


/* ================================================
   BRAND LOGOS ROW
================================================ */
.v3-brands-section { padding-top: 0; padding-bottom: 56px; }
.v3-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-top: 24px;
}
.v3-brand-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.2s;
}
.v3-brand-logo:hover { filter: grayscale(0%) opacity(1); }

/* Hero background image */
.v3-hero-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Before/After card background images */
.v3-before, .v3-after {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Logo — black SVG on white header, no filter needed */
.v3-hdr-logo img {
  filter: none;
}

/* ── GLOBAL: white background, kill old blue-gray ── */
html, body,
#page, .site,
#content, .site-content,
#primary, .content-area,
.site-main, main {
  background-color: #fff !important;
}

/* Services page: clean up card grid layout */
body.services .services-archive-grid,
body.services .service-item,
body.services .site-main {
  background: #fff !important;
}
body.services .service-item .category-label,
body.services .service-item .sub-label {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.08em !important;
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.7) !important;
}
body.services .mail-in-banner {
  border-radius: 12px !important;
}


/* ================================================
   SERVICES HUB PAGE
================================================ */

.v3-svc-hub { background: #fff; }

/* Hero */
.v3-svc-hero {
  background: var(--soft, #F7F9FA);
  padding: 64px 24px 56px;
  text-align: center;
}
.v3-svc-hero-inner { max-width: 640px; margin: 0 auto; }
.v3-svc-hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.4rem, 6vw, 3.6rem) !important;
  font-weight: 600 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 8px 0 16px !important;
  line-height: 1.1 !important;
}
.v3-svc-hero p { font-size: 1.05rem; color: #5E5750; margin: 0; max-width: 520px; margin: 0 auto; }

/* Grid */
.v3-svc-grid-section {
  padding: 56px 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}
.v3-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) { .v3-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .v3-svc-grid { grid-template-columns: repeat(4, 1fr); } }

/* Cards */
.v3-svc-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  background: #fff;
  text-decoration: none !important;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  color: var(--ink, #0D0C09);
}
.v3-svc-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  border-color: var(--gold, #A68340);
  transform: translateY(-2px);
}

.v3-svc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #F7F9FA;
  border-radius: 12px;
  color: var(--gold, #A68340);
  flex-shrink: 0;
}

.v3-svc-card-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.v3-svc-card-body h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.97rem !important;
  font-weight: 700 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.v3-svc-card-body p {
  font-size: 0.83rem !important;
  color: #5E5750 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  flex: 1;
}
.v3-svc-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold, #A68340);
  letter-spacing: 0.01em;
  margin-top: auto;
  padding-top: 4px;
}

/* Bottom CTA */
.v3-svc-cta {
  background: var(--espresso, #282620);
  padding: 80px 24px;
  text-align: center;
}
.v3-svc-cta-inner { max-width: 580px; margin: 0 auto; }
.v3-svc-cta h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin: 0 0 14px !important;
}
.v3-svc-cta p { color: rgba(255,255,255,0.65) !important; margin: 0 0 28px !important; }
.v3-svc-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.v3-svc-cta .pill-outline { border-color: rgba(255,255,255,0.3) !important; color: #fff !important; }
.v3-svc-cta .pill-outline:hover { border-color: var(--gold, #A68340) !important; }


/* ================================================
   BEFORE/AFTER COMPARISON SLIDER
================================================ */
.v3-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.v3-sl-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.v3-sl-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.v3-sl-after {
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.v3-sl-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-sl-grip {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink, #0D0C09);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.v3-slider .v3-tag {
  position: absolute;
  bottom: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(20,18,16,0.55);
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
}
.v3-slider .v3-before-tag { left: 10px; }
.v3-slider .v3-after-tag { right: 10px; }

/* ================================================
   BRAND LOGOS MARQUEE
================================================ */
.v3-brands-hdr {
  text-align: center;
  margin-bottom: 20px;
}
.v3-brands-track-wrap {
  overflow: hidden;
  width: 100%;
}
.v3-brands-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: v3-brand-scroll 28s linear infinite;
  padding: 8px 0;
}
.v3-brands-track:hover { animation-play-state: paused; }
@keyframes v3-brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v3-brand-logo {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.2s;
  flex-shrink: 0;
}
.v3-brand-logo:hover { filter: grayscale(0%) opacity(1); }

/* ================================================
   SERVICE ACCORDION TOGGLE
================================================ */
.v3-acc-detail {
  display: none;
  padding: 0 16px 18px 56px;
  font-size: 0.9rem;
  color: #5E5750;
  line-height: 1.7;
}
.v3-acc-item.open .v3-acc-detail {
  display: block;
}
.v3-acc-row {
  cursor: pointer;
  list-style: none;
}
.v3-acc-item {
  border-bottom: 1px solid var(--line, #E6E6E6);
}
.v3-acc-item:last-child {
  border-bottom: none;
}


/* ================================================
   HOMEPAGE LOCATION CARDS
================================================ */
.v3-loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 600px) { .v3-loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .v3-loc-grid { grid-template-columns: repeat(4, 1fr); } }

.v3-loc-card {
  background: #fff;
  border: 1px solid var(--line, #E6E6E6);
  border-radius: 16px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.v3-loc-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: var(--gold, #A68340);
}
.v3-loc-card h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}
.v3-loc-addr {
  font-style: normal;
  font-size: 0.82rem;
  color: #5E5750;
  line-height: 1.5;
}
.v3-loc-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.v3-loc-hours-row,
.v3-loc-phone-row {
  font-size: 0.82rem;
  color: #5E5750;
  display: flex;
  align-items: center;
  gap: 4px;
}
.v3-loc-phone-row a {
  color: var(--gold, #A68340) !important;
  text-decoration: none !important;
  font-weight: 600;
}
.v3-loc-phone-row a:hover { text-decoration: underline !important; }
.v3-loc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  flex-shrink: 0;
}
.v3-loc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}
.pill-sm {
  font-size: 0.78rem !important;
  padding: 7px 14px !important;
}


/* ================================================
   V3 SERVICE DETAIL PAGES — split hero (image right, text left)
================================================ */
.v3-sp2-hero {
  background: var(--soft, #F7F9FA);
  padding: 0;
}
.v3-sp2-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
@media (min-width: 860px) {
  .v3-sp2-inner { grid-template-columns: 1fr 1fr; }
}
.v3-sp2-text {
  padding: 64px 48px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 859px) {
  .v3-sp2-text { padding: 48px 24px 40px; }
}
.v3-sp2-text .eyebrow { margin-bottom: 4px; }
.v3-sp2-text h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 0 !important;
  line-height: 1.1 !important;
}
.v3-sp2-text > p {
  font-size: 1rem;
  color: #5E5750;
  margin: 0;
  line-height: 1.6;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.v3-sp2-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.v3-sp2-bullet {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border: 1px solid var(--line, #E6E6E6);
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
}
.v3-sp2-bullet strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink, #0D0C09);
}
.v3-sp2-bullet span {
  font-size: 0.78rem;
  color: #737373;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.v3-sp2-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.v3-sp2-img {
  position: relative;
  min-height: 400px;
}
@media (max-width: 859px) {
  .v3-sp2-img { min-height: 280px; }
}
.v3-sp2-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ================================================
   MAIL-IN REPAIR PAGE
================================================ */
.v3-mailin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) {
  .v3-mailin-grid { grid-template-columns: repeat(2, 1fr); }
}

.v3-mailin-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line, #E6E6E6);
  border-radius: 12px;
  text-decoration: none !important;
  color: var(--ink, #0D0C09);
  background: #fff;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.v3-mailin-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border-color: var(--gold, #A68340);
  transform: translateY(-1px);
}
.v3-mailin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F7F9FA;
  border-radius: 10px;
  color: var(--gold, #A68340);
  flex-shrink: 0;
}
.v3-mailin-card > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v3-mailin-card strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink, #0D0C09);
  display: block;
}
.v3-mailin-card span {
  font-size: 0.78rem;
  color: #737373;
}
.v3-mailin-arrow {
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.v3-mailin-card:hover .v3-mailin-arrow {
  color: var(--gold, #A68340);
  transform: translateX(3px);
}

/* Process Steps */
.v3-mailin-process {
  background: var(--soft, #F7F9FA);
  padding: 64px 24px;
  margin-top: 56px;
}
.v3-mailin-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .v3-mailin-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.v3-mailin-step {
  text-align: center;
  flex: 1;
  padding: 0 16px;
}
.v3-mailin-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold, #A68340);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.v3-mailin-step h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 0 0 8px !important;
}
.v3-mailin-step p {
  font-size: 0.85rem !important;
  color: #5E5750 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.v3-mailin-step-divider {
  font-size: 1.4rem;
  color: #ccc;
  display: none;
  padding-top: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .v3-mailin-step-divider { display: block; }
}


/* ================================================
   REVIEWS PAGE - replace dark bar with v3 style
================================================ */
.reviews-box {
  border: 1px solid #E6E6E6 !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
}
.reviews-box h2 {
  background: #F7F9FA !important;
  color: #0D0C09 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid #E6E6E6 !important;
  padding: 14px 20px !important;
  margin: 0 0 20px !important;
}

/* ================================================
   ACCORDION (details/summary — no JS)
================================================ */
.v3-acc-card {
  border: 1px solid var(--line, #E6E6E6);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
details.v3-acc-item {
  border-bottom: 1px solid var(--line, #E6E6E6);
}
details.v3-acc-item:last-child {
  border-bottom: none;
}
summary.v3-acc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
summary.v3-acc-row::-webkit-details-marker { display: none; }
summary.v3-acc-row::marker { display: none; }
summary.v3-acc-row:hover {
  background: #FAFAF8;
}
summary.v3-acc-row b {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink, #0D0C09);
  font-family: 'Inter', sans-serif;
}
.v3-acc-chevron {
  color: #aaa;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] > summary .v3-acc-chevron {
  transform: rotate(180deg);
  color: var(--gold, #A68340);
}
details[open] > summary {
  background: #FAFAF8;
}
.v3-acc-detail {
  padding: 0 20px 18px 54px;
  font-size: 0.88rem;
  color: #5E5750;
  line-height: 1.6;
}
.v3-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--soft, #F7F9FA);
  color: var(--gold, #A68340);
  flex-shrink: 0;
}

/* ================================================
   SERVICES SECTION — two-column split (image left, accordion right)
================================================ */
.v3-svc-split { padding: 80px 0; background: #fff; }
.v3-svc-split-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .v3-svc-split-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.v3-svc-split-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.v3-svc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v3-svc-split-content .eyebrow { margin-bottom: 8px; }
.v3-svc-split-content h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  color: var(--ink, #0D0C09) !important;
  margin: 0 0 12px !important;
  line-height: 1.1 !important;
}
.v3-svc-split-content .v3-sub {
  color: #5E5750;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* Kill old theme text-transform on p tags inside v3 sections */
.v3-svc-split-content p,
.v3-svc-split-content .v3-sub,
.v3-section p,
.v3-section .v3-sub {
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* ================================================
   PILL BUTTON LINK COLOR OVERRIDE
   Beats a:visited / a:link / a:hover specificity
   from old theme style.css (royalblue / #1e73be)
================================================ */
a.pill-gold,
a.pill-gold:link,
a.pill-gold:visited,
a.pill-gold:hover,
a.pill-gold:focus,
a.pill-gold:active,
a.pill.pill-gold,
a.pill.pill-gold:link,
a.pill.pill-gold:visited,
a.pill.pill-gold:hover,
a.pill.pill-gold:focus,
a.pill.pill-gold:active {
  color: #fff !important;
  text-decoration: none !important;
}
a.pill-outline,
a.pill-outline:link,
a.pill-outline:visited,
a.pill.pill-outline,
a.pill.pill-outline:link,
a.pill.pill-outline:visited {
  color: var(--ink, #0D0C09) !important;
  text-decoration: none !important;
}
a.pill-outline:hover,
a.pill-outline:focus,
a.pill-outline:active,
a.pill.pill-outline:hover,
a.pill.pill-outline:focus,
a.pill.pill-outline:active {
  color: #fff !important;
}
a.pill-ghost-light,
a.pill-ghost-light:link,
a.pill-ghost-light:visited,
a.pill-ghost-light:hover,
a.pill-ghost-light:focus,
a.pill-ghost-light:active {
  color: #fff !important;
  text-decoration: none !important;
}
/* pill-sm inherits from pill-gold/pill-outline — no extra rules needed */


/* ================================================
   BRAND TYPE SCALE — applied to v3 sections
================================================ */
.v3-section h1, .v3-sp-hero h1, .v3-svc-split-content h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.06em !important;
  font-size: clamp(2.2rem, 6vw, 4rem) !important;
  line-height: 1.05 !important;
}
.v3-section h2, .v3-sp-hero h2, .v3-acc-card h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em !important;
  font-size: clamp(1.8rem, 4vw, 3.5rem) !important;
  line-height: 1.1 !important;
}
/* Cormorant italic for em inside headings */
.v3-section h1 em, .v3-section h2 em,
.v3-sp-hero h1 em, .v3-svc-split-content h2 em,
.v3-sp-hero h2 em {
  font-family: 'Cormorant', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}
/* Service page specific */
.v3-sp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}
/* Body text — taupe */
.v3-section p, .v3-sp-hero p, .v3-sp-body p,
.v3-svc-split-content p, .v3-acc-detail,
p.v3-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--taupe, #5E5750) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
/* Pill buttons — Inter Medium 14px */
.pill {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}


/* ================================================
   ACCORDION PLUS/MINUS TOGGLE ICON
================================================ */
.v3-acc-toggle {
  flex-shrink: 0;
  color: #aaa;
  transition: transform 0.2s, color 0.2s;
  margin-left: auto;
}
details[open] > summary .v3-acc-toggle {
  transform: rotate(45deg);
  color: var(--gold, #A68340);
}
details[open] > summary .v3-acc-toggle .v3-acc-vline {
  /* rotate(45deg) on parent turns + into × */
}
/* Remove old chevron styles if present */
.v3-acc-chevron { display: none !important; }

/* FAQ section layout */
.v3-faq-section { background: var(--soft, #F7F9FA); }
.v3-faq-acc { max-width: 780px; margin: 0 auto; }
.v3-faq-acc details.v3-acc-item { background: #fff; border-radius: 10px; margin-bottom: 8px; border: 1px solid var(--line, #E6E6E6); border-bottom: 1px solid var(--line, #E6E6E6) !important; }
.v3-faq-acc summary.v3-acc-row { padding: 18px 20px; font-size: 0.95rem; font-weight: 600; }

/* ================================================
   BRAND LOGO MARQUEE
================================================ */
.v3-brands {
  background: var(--soft, #F7F9FA);
  border-top: 1px solid var(--line, #E6E6E6);
  border-bottom: 1px solid var(--line, #E6E6E6);
  padding: 20px 0;
  overflow: hidden;
}
.v3-brands-track-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.v3-brands-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: v3-marquee 28s linear infinite;
  white-space: nowrap;
}
.v3-brands-track:hover { animation-play-state: paused; }
.v3-brands-track img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}
.v3-brands-track img:hover { opacity: 1; filter: grayscale(0); }
.v3-brand-sep { color: var(--line); font-size: 1.2rem; flex-shrink: 0; }
@keyframes v3-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   DROPDOWN — GOLD DOT ON HOVER
================================================ */
.v3-drop a {
  position: relative;
  padding-left: 20px;
  transition: color 0.15s, padding-left 0.15s;
}
.v3-drop a::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #A68340);
  transition: transform 0.15s;
}
.v3-drop a:hover::before {
  transform: translateY(-50%) scale(1);
}
.v3-drop a:hover {
  color: var(--gold, #A68340) !important;
  padding-left: 24px;
}

/* ================================================
   LINK PREVIEW BREADCRUMB (bottom-left)
================================================ */
#v3-link-preview {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  background: var(--ink, #0D0C09);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
  pointer-events: none;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#v3-link-preview.v3-lp-show {
  opacity: 1;
  transform: translateY(0);
}
#v3-link-preview .v3-lp-sep {
  color: var(--gold, #A68340);
  margin: 0 5px;
}


/* ================================================
   HEADER LAYOUT — logo+nav LEFT, icons RIGHT
   Matches fastfix.com: [Logo][Nav............][Icons]
================================================ */
@media (min-width: 900px) {
  .v3-hdr-left {
    flex-shrink: 0;
    margin-right: 32px;
  }
  .v3-hdr-nav {
    flex: 1;                /* nav fills remaining space */
    display: block;
  }
  .v3-hdr-nav-list {
    justify-content: flex-start; /* left-align nav items */
  }
  .v3-hdr-icons {
    flex-shrink: 0;
    margin-left: auto;      /* push icons to far right */
  }
}


/* ==============================================
   FULL-BLEED SERVICE PAGE HERO  (matches fastfix.com)
   Photo spans 100% width, text overlaid bottom-left
   ============================================== */
.v3-fsvc-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.v3-fsvc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.25) 100%);
}
.v3-fsvc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px;
  width: 100%;
}
.v3-fsvc-hero-inner .eyebrow {
  color: var(--gold, #A68340);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.v3-fsvc-hero-inner h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: 640px;
}
.v3-fsvc-hero-inner h1 em {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 700;
}
.v3-fsvc-hero-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 0 28px;
}
.v3-fsvc-hero-inner .pill-gold { margin-top: 4px; }

/* Service cards grid */
.v3-fsvc-services {
  background: var(--soft, #F7F9FA);
  padding: 72px 0;
}
.v3-fsvc-services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.v3-fsvc-services-inner > h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  color: var(--ink, #0D0C09);
  text-align: center;
}
.v3-fsvc-services-inner > h2 em {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 700;
}
.v3-fsvc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.v3-fsvc-card {
  background: #fff;
  border: 1px solid var(--line, #E6E6E6);
  border-radius: 12px;
  padding: 28px 24px;
}
.v3-fsvc-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink, #0D0C09);
  margin: 0 0 8px;
}
.v3-fsvc-card p {
  font-size: 0.9rem;
  color: var(--taupe, #5E5750);
  line-height: 1.55;
  margin: 0;
}

/* Trust pillars */
.v3-fsvc-trust {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--line, #E6E6E6);
}
.v3-fsvc-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.v3-fsvc-trust-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink, #0D0C09);
  margin-bottom: 6px;
}
.v3-fsvc-trust-item p {
  font-size: 0.9rem;
  color: var(--taupe, #5E5750);
  line-height: 1.55;
  margin: 0;
}


/* Full-bleed breakout — hero escapes any max-width container */
.v3-fsvc-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 560px;
}
