/* ============================================================
   Blackstone Refinishing — styles.css
   Single shared stylesheet. Cached after first visit.
   Generated by build.py — do not edit directly.
   ============================================================ */

/* ── Self-hosted fonts (no external request, no swap CLS) ──── */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('/cormorant-400.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('/cormorant-500.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('/cormorant-600.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('/cormorant-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('/outfit-300.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('/outfit-400.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('/outfit-500.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('/outfit-600.woff2') format('woff2'); }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0f1626;
  --navy-mid:    #1a2740;
  --navy-light:  #263552;
  --gold:        #c9a96e;
  --gold-light:  #dfc28e;
  --gold-pale:   #f5edd9;
  --cream:       #faf8f3;
  --cream-dark:  #f0ece2;
  --text-dark:   #1c1c2e;
  --text-mid:    #4a4a5e;
  --text-light:  #8888a0;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Outfit', system-ui, -apple-system, sans-serif;
  --max-width:   1180px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

/* ── Typography scale ──────────────────────────────────────── */
.display-xl  { font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 5rem);   font-weight: 500; line-height: 1.05; }
.display-lg  { font-family: var(--font-serif); font-size: clamp(2rem,   4vw, 3.2rem); font-weight: 500; line-height: 1.12; }
.display-md  { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; line-height: 1.2;  }
.display-sm  { font-family: var(--font-serif); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.3;  }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #806328;
}
/* On dark sections, keep the brighter gold (passes contrast on navy) */
.page-hero .eyebrow, .faq-hero .eyebrow { color: var(--gold); }
.body-lg { font-size: 1.1rem; line-height: 1.75; }
.body-md { font-size: 1rem;   line-height: 1.8;  }
.body-sm { font-size: 0.875rem; line-height: 1.7; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.split-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 40px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;     gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.align-center { align-items: center; }

/* ── Decorative ────────────────────────────────────────────── */
.gold-rule          { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }
.gold-rule.centered { margin-left: auto; margin-right: auto; }
.section-intro      { max-width: 640px; margin: 0 auto; text-align: center; margin-bottom: 56px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

.btn-gold         { background: var(--gold);        color: var(--navy); }
.btn-gold:hover   { background: var(--gold-light);  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }

.btn-navy         { background: var(--navy);         color: var(--white); }
.btn-navy:hover   { background: var(--navy-mid);     transform: translateY(-1px); }

.btn-outline-dark  { background: transparent; color: var(--text-dark); border: 1.5px solid rgba(28,28,46,0.25); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--navy-mid); }

.btn-outline-white  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: var(--navy);
  transition: all 0.35s ease;
}
/* Offset scroll anchors so they don't land hidden under the fixed nav */
section[id], [id="contact"], #contact, #services, #reviews, #about { scroll-margin-top: 96px; }
#quoteForm { scroll-margin-top: 96px; }
.nav.scrolled { height: 64px; box-shadow: 0 2px 32px rgba(0,0,0,0.3); }
.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo         { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-mark    { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 0.92rem; font-weight: 600; letter-spacing: -0.02em; color: var(--navy); flex-shrink: 0; }
.nav-logo-text    { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name    { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--white); }
.nav-logo-tag     { font-size: 0.65rem; font-weight: 400; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links        { display: flex; align-items: center; gap: 32px; }
.nav-links a      { font-size: 0.875rem; color: rgba(255,255,255,0.8); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover  { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-hamburger    { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── Mobile menu ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-gold { margin-top: 16px; text-align: center; justify-content: center; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ── Page hero (internal pages) ────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(201,169,110,0.07) 0%, transparent 60%); }
.page-hero::after  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 70%, transparent 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero-content .eyebrow  { margin-bottom: 16px; }
.page-hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 500; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.page-hero-content h1 em { font-style: italic; color: var(--gold); }
.page-hero-content p  { font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 32px; max-width: 580px; }

/* ── Service page components ───────────────────────────────── */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.overview-content h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; color: var(--navy); margin: 20px 0; }
.overview-content p  { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 0.975rem; }
.overview-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.overview-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col-h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; color: var(--navy); margin: 20px 0; }
.two-col p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 0.975rem; }

.check-list  { display: flex; flex-direction: column; gap: 10px; }
.check-item  { display: flex; align-items: flex-start; gap: 12px; padding: 13px 15px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(28,28,46,0.06); }
.check-dot   { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.check-item span { font-size: 0.88rem; color: var(--text-dark); line-height: 1.5; }

.surfaces-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.surface-tag   { background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.3); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.875rem; color: var(--navy-mid); font-weight: 500; }

/* ── Benefit cards ─────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card  { background: var(--cream); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid rgba(28,28,46,0.06); transition: all var(--transition); }
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-icon  { width: 44px; height: 44px; background: var(--gold-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-title { font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.benefit-desc  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ── Process steps ─────────────────────────────────────────── */
.process-section { background: var(--navy); }
.process-steps   { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px); height: 1px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); }
.process-step    { text-align: center; position: relative; }
.step-num  { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; }
.step-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.step-desc  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid rgba(28,28,46,0.06); }
.faq-q    { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; line-height: 1.35; }
.faq-a    { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* ── Related services ──────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; border: 1px solid rgba(28,28,46,0.06); transition: all var(--transition); display: flex; flex-direction: column; gap: 8px; }
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.related-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.related-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); }
.related-desc  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.related-link  { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.related-card:hover .related-link { gap: 8px; }

/* ── Service cards (homepage) ──────────────────────────────── */
.service-card {
  display: block;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(28,28,46,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon  { width: 52px; height: 52px; background: var(--gold-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.service-desc  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-link  { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 10px; }

/* ── Blog cards ────────────────────────────────────────────── */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(28,28,46,0.06); transition: all var(--transition); display: flex; flex-direction: column; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.post-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.post-tag     { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.post-title   { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--navy); line-height: 1.3; }
.post-excerpt { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.post-meta    { font-size: 0.78rem; color: var(--text-light); padding-top: 12px; border-top: 1px solid rgba(28,28,46,0.07); }
.post-read-link { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.post-card:hover .post-read-link { gap: 8px; }

/* ── Blog article ──────────────────────────────────────────── */
.article-inner   { max-width: 760px; margin: 0 auto; padding: 80px 24px 96px; }
.article-tag     { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.article-title   { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 500; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.article-meta    { font-size: 0.83rem; color: var(--text-light); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(28,28,46,0.08); }
.article-body p  { color: var(--text-mid); line-height: 1.85; margin-bottom: 22px; font-size: 1rem; }
.article-body h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--navy); margin: 44px 0 16px; line-height: 1.25; }
.article-body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); margin: 32px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 22px 0; padding-left: 0; list-style: none; }
.article-body ul li, .article-body ol li { position: relative; padding-left: 20px; color: var(--text-mid); font-size: 1rem; line-height: 1.8; margin-bottom: 8px; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.article-body ol { counter-reset: ol-counter; }
.article-body ol li::before { content: counter(ol-counter); counter-increment: ol-counter; position: absolute; left: 0; top: 1px; font-weight: 600; color: var(--gold); font-size: 0.9rem; }
.article-body a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 40px 36px; margin: 48px 0; text-align: center; }
.article-cta h3  { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.article-cta p   { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 24px; }
.article-related { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(28,28,46,0.08); }
.article-related-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: 20px; }
.related-posts   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.related-post-link { background: var(--cream); border-radius: var(--radius-md); padding: 20px; border: 1px solid rgba(28,28,46,0.06); transition: all var(--transition); display: block; }
.related-post-link:hover { box-shadow: var(--shadow-sm); border-color: rgba(201,169,110,0.3); }
.related-post-tag   { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.related-post-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--navy); line-height: 1.3; }

/* ── Quote form ────────────────────────────────────────────── */
.quote-section { background: var(--white); }
.quote-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.quote-form    { background: var(--cream); border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid rgba(28,28,46,0.07); }
.form-title    { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.form-subtitle { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 28px; }
.form-group    { margin-bottom: 18px; }
.form-label    { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.03em; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(28,28,46,0.12); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.12); }
.form-textarea { height: 110px; resize: vertical; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit   { width: 100%; justify-content: center; margin-top: 8px; }
.info-points   { display: flex; flex-direction: column; gap: 18px; }
.info-point    { display: flex; gap: 16px; align-items: flex-start; }
.info-point-icon { width: 42px; height: 42px; background: var(--gold-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-point-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.info-point-title { font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.info-point-desc  { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand p    { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-col-title  { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links      { display: flex; flex-direction: column; gap: 10px; }
.footer-links a    { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom     { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy       { font-size: 0.8rem; }
.footer-copy a     { color: rgba(255,255,255,0.4); }
.footer-badges     { display: flex; gap: 16px; }
.badge-pill        { font-size: 0.72rem; font-weight: 500; color: var(--navy); background: var(--gold); padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em; }

/* ── Mobile sticky CTA ─────────────────────────────────────── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); padding: 12px 20px; z-index: 990; gap: 10px; border-top: 1px solid rgba(255,255,255,0.1); align-items: center; }
.mobile-cta-bar a { flex: 1; justify-content: center; }

/* ── Back to top button ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 995;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); }
.back-to-top svg { width: 22px; height: 22px; }
@media (max-width: 768px) {
  /* Lift above the mobile CTA bar so it doesn't overlap */
  .back-to-top { bottom: 84px; right: 18px; width: 44px; height: 44px; }
}

/* ── Review cards ──────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card  { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid rgba(28,28,46,0.06); display: flex; flex-direction: column; gap: 16px; transition: all var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.review-text  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; }
.review-author { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid rgba(28,28,46,0.07); }
.review-name   { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review-service { font-size: 0.78rem; color: var(--text-light); }

/* ── Stats bar ─────────────────────────────────────────────── */
.stats-bar   { background: var(--gold); padding: 24px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item   { text-align: center; padding: 12px 24px; border-right: 1px solid rgba(15,22,38,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 500; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #0f1626; }

/* ── Privacy policy ────────────────────────────────────────── */
.policy-layout  { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; padding: 80px 0 96px; }
.policy-toc     { position: sticky; top: 90px; }
.toc-title      { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.toc-list       { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-link       { font-size: 0.875rem; color: var(--text-mid); padding: 7px 12px; border-radius: 6px; display: block; transition: all var(--transition); border-left: 2px solid transparent; }
.toc-link:hover { color: var(--navy); background: var(--cream-dark); border-left-color: var(--gold); }
.toc-link.active { color: var(--navy); background: var(--gold-pale); border-left-color: var(--gold); font-weight: 500; }
.policy-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(28,28,46,0.07); }
.policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.policy-h2  { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.policy-body { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; }
.policy-body strong { color: var(--text-dark); font-weight: 600; }
.policy-body a  { color: var(--gold); }
.disclaimer-box { background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.35); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 48px; }
.disclaimer-box p { font-size: 0.875rem; color: var(--navy-mid); line-height: 1.75; margin: 0; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .overview-grid, .two-col, .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .split-2col { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 1fr; gap: 32px; }
  .policy-toc { position: static; background: var(--cream-dark); border-radius: var(--radius-md); padding: 20px; }
}
@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .faq-grid   { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .post-grid  { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  .page-hero { padding-bottom: 60px; }
  .form-row  { grid-template-columns: 1fr; }
  .related-posts { grid-template-columns: 1fr; }
  /* Catch-all: any inline 2- or 3-column grid collapses to one column on mobile */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(15,22,38,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .surfaces-list { grid-template-columns: 1fr; }
}
