/* ==========================================================================
   INNOVATIVE SIGNS - MASTER STYLESHEET
   Generated: 2026-09-02
   PART 1: Global system + all inner pages (now includes Contact page)
   PART 2: Homepage (final)
   ========================================================================== */

/* ======================= PART 1 - GLOBAL + INNER PAGES ==================== */

/*
================================================================
  INNOVATIVE SIGNS — COMPLETE STYLESHEET
  Paste this entire block into:
  WordPress → Appearance → Customize → Additional CSS
================================================================
  Covers all pages:
    Homepage, About, Meet Our Team
    Memorial Plaques, All 13 Product Pages
    Bronze Plaques Hub, Digital Plaques
    Cost & Pricing, Our Process, Project Gallery, Contact
================================================================
*/


/* ================================================================
   SECTION 1: GLOBAL — VARIABLES, RESET, SHARED COMPONENTS
   (Header, footer, buttons, typography, breadcrumbs, testimonials)
================================================================ */

/* ============================================================
   INNOVATIVE SIGNS — GLOBAL STYLESHEET
   Single paste into: Appearance → Customize → Additional CSS
   Covers: Homepage, About, Meet Our Team
   Version: 1.0 — Unified / Conflict-Resolved
   ============================================================ */


/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bronze:        #8B6914;
  --bronze-light:  #C4972A;
  --bronze-pale:   #F8EFD8;
  --bronze-border: #D4AA50;
  --charcoal:      #252018;
  --charcoal-mid:  #332E22;
  --warm-white:    #FDFAF4;
  --off-white:     #F5F0E6;
  --text-body:     #3D3828;
  --text-muted:    #7D7260;
  --border-light:  #E6DDC8;
  --shadow-card:   0 4px 32px rgba(37,32,24,0.12);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Source Sans 3', sans-serif;
  --max-w:         1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }


/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}


/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-bronze { background: var(--bronze); color: #fff; padding: 12px 28px; }
.btn-bronze:hover { background: var(--bronze-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,105,20,0.35); color: #fff; }
.btn-outline { background: transparent; color: var(--bronze-light); border: 1.5px solid var(--bronze-border); padding: 11px 24px; }
.btn-outline:hover { background: rgba(196,151,42,0.08); }
.btn-lg { font-size: 15px; padding: 16px 36px; }
.btn-xl { font-size: 16px; padding: 18px 44px; }


/* ── SHARED SECTION UTILITIES ───────────────────────────────── */
/* section-eyebrow: always bronze, always uppercase, never centered by default */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  display: block;
}
/* section-title: base heading — font size scales with page context */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
/* section-desc: body intro text — no max-width by default, set per-context */
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
/* divider: short bronze rule — margin set per context via inline style */
.divider {
  width: 48px;
  height: 3px;
  background: var(--bronze);
  margin: 0 auto 24px;
  border: none;
  display: block;
}


/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(196,151,42,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.site-logo-text em { font-style: normal; color: var(--bronze-light); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.header-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.active { color: var(--bronze-light); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--bronze-light);
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--bronze-light); }


/* ── PROOF STRIP (homepage) ─────────────────────────────────── */
.proof-strip {
  background: var(--charcoal-mid);
  border-bottom: 1px solid rgba(196,151,42,0.2);
  padding: 0;
  overflow: hidden;
}
.proof-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
}
.proof-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid rgba(196,151,42,0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
.proof-item:last-child { border-right: none; }
.proof-item:hover { background: rgba(196,151,42,0.06); color: #fff; }
.proof-icon { font-size: 16px; flex-shrink: 0; }


/* ── HERO (homepage) ─────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(196,151,42,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(196,151,42,0.05) 0%, transparent 50%),
    linear-gradient(rgba(196,151,42,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,151,42,0.02) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--bronze-light);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--bronze-light); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(196,151,42,0.15);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.trust-icon { color: var(--bronze-light); font-size: 14px; }
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,42,0.2);
  border-radius: 10px;
  padding: 40px;
}
.hero-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 20px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.3;
}
.hero-card-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.hero-card-item { display: flex; align-items: center; gap: 12px; }
.hci-icon {
  width: 40px; height: 40px;
  background: rgba(196,151,42,0.1);
  border: 1px solid rgba(196,151,42,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hci-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.hci-text strong { color: #fff; font-weight: 600; }
.hero-card-cta { width: 100%; justify-content: center; font-size: 15px; padding: 15px; }
.hero-card-sub {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}


/* ── PRODUCT CARDS (homepage) ────────────────────────────────── */
.products-section { padding: 100px 0; background: var(--warm-white); }
.products-header { text-align: center; margin-bottom: 64px; }
.products-header .section-desc { margin: 0 auto; max-width: 600px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: #fff; border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.product-card:hover { border-color: var(--bronze-border); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.product-photo { position: relative; width: 100%; aspect-ratio: 4/3; background: var(--off-white); overflow: hidden; flex-shrink: 0; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.product-card:hover .product-photo img { transform: scale(1.04); }
.product-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--off-white); border-bottom: 1px solid var(--border-light); }
.ph-icon { font-size: 40px; opacity: 0.35; }
.ph-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); opacity: 0.7; }
.product-photo-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze); background: var(--bronze-pale); border: 1px solid var(--bronze-border); padding: 4px 10px; border-radius: 2px; }
.product-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.product-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.3; }
.product-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; font-weight: 300; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-light); }
.product-link { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bronze); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; text-decoration: none; white-space: nowrap; }
.product-link:hover { gap: 10px; color: var(--bronze); }
.product-link::after { content: '→'; }
.product-examples-link { font-size: 12px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.product-examples-link:hover { color: var(--bronze); }


/* ── PROCESS SECTION ─────────────────────────────────────────── */
.process-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,151,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,151,42,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.process-inner { position: relative; z-index: 1; }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-title { color: #fff; }
.process-header .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto; max-width: 560px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-border), var(--bronze-border), transparent);
  z-index: 0;
}
/* 3-step variant used on About page */
.process-steps--three {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.process-steps--three::before { display: none; }
.process-steps--three .process-step { flex: 1 1 220px; max-width: 260px; }
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--bronze-border);
  border-radius: 50%;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.step-number span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bronze-light);
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}


/* ── CTA STRIP ───────────────────────────────────────────────── */
.cta-strip {
  background: var(--charcoal);
  padding: 64px 0;
  border-top: 1px solid rgba(196,151,42,0.2);
  border-bottom: 1px solid rgba(196,151,42,0.2);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; margin: 0; }
.cta-strip-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }


/* ── WHO WE SERVE ────────────────────────────────────────────── */
.serve-section { padding: 100px 0; background: var(--warm-white); }
.serve-header { text-align: center; margin-bottom: 64px; }
.serve-header .section-desc { margin: 0 auto; max-width: 600px; }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.serve-card { background: #fff; border: 1px solid var(--border-light); border-radius: 6px; padding: 36px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.serve-card:hover { border-color: var(--bronze-border); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.serve-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.serve-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; }
.serve-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; margin: 0; }


/* ── SDVOSB SECTION ──────────────────────────────────────────── */
/* Homepage version: off-white, 2 columns with stat cards */
.sdvosb-section {
  padding: 100px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}
.sdvosb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* About page version: dark background, centered — uses inline overrides */
.sdvosb-section.sdvosb-dark {
  background: var(--charcoal);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.sdvosb-section.sdvosb-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(196,151,42,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(196,151,42,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.sdvosb-inner-centered {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.sdvosb-badge-large { font-size: 52px; margin-bottom: 28px; display: block; }
.sdvosb-body p { font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }
.sdvosb-benefits { list-style: none; padding: 0; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.sdvosb-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-body); line-height: 1.55; }
.sdvosb-benefits li::before { content: '✓'; width: 22px; height: 22px; background: var(--bronze); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.sdvosb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: #fff; border: 1px solid var(--border-light); border-radius: 6px; padding: 32px 28px; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--bronze); }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--bronze); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 400; line-height: 1.5; margin: 0; }


/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--bronze-pale);
  border-top: 1px solid var(--bronze-border);
  border-bottom: 1px solid var(--bronze-border);
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .divider { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: #fff; border: 1px solid var(--border-light); border-radius: 6px; padding: 36px; position: relative; }
.testimonial-card::before { content: none; }
.testimonial-card blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--bronze-border);
  line-height: 0.8;
  position: absolute;
  top: 24px;
  left: 28px;
  pointer-events: none;
  font-style: normal;
}
.testimonial-text { font-size: 15px; color: var(--text-body); line-height: 1.7; margin: 0 0 24px; padding-top: 52px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.author-initial { width: 40px; height: 40px; background: var(--charcoal); color: var(--bronze-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 600; flex-shrink: 0; }
.author-name { font-size: 13.5px; font-weight: 600; color: var(--charcoal); margin: 0; }
.author-org { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }

/* ── TESTIMONIAL CARD — Blockquote reset ─────────────────────────────────── */
/* Kadence applies its own blockquote styles (border-left, background, margin) */
/* These rules override them inside our testimonial cards                      */
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  border-left: none;
  background: none;
  font-style: normal;
  color: inherit;
  quotes: none;
}
.testimonial-card blockquote::after {
  content: none;
}
.testimonial-card blockquote p {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-style: italic;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 300;
}

/* Also reset any theme interference on the card itself */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 36px;
  position: relative;
  box-shadow: none;
}

/* The large decorative opening quote mark */




/* ── FEATURED PROJECTS (homepage) ────────────────────────────── */
.projects-section { padding: 100px 0; background: #fff; }
.projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.projects-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.project-item { background: var(--off-white); border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.project-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.project-item.featured { grid-row: 1 / 3; min-height: 460px; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37,32,24,0.85) 0%, rgba(37,32,24,0.2) 55%, transparent 100%); pointer-events: none; }
.project-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: 0.08; }
.project-content { position: relative; z-index: 2; }
.project-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 6px; }
.project-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; line-height: 1.3; margin: 0 0 4px; }
.project-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }


/* ── FINAL CTA (homepage) ────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before { content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(196,151,42,0.12) 0%, transparent 65%); pointer-events: none; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .section-title { color: #fff; margin: 0 auto 20px; max-width: 640px; }
.final-cta .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto 48px; max-width: 560px; }
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze-light);
  border: 1px solid rgba(196,151,42,0.35);
  background: rgba(196,151,42,0.07);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.guarantee-badge:hover { border-color: rgba(196,151,42,0.6); background: rgba(196,151,42,0.12); color: var(--bronze-light); }
.contact-options { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.contact-option { display: flex; align-items: center; gap: 10px; }
.contact-option-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border: 1px solid rgba(196,151,42,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-option-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0; }
.contact-option-value { font-size: 15px; font-weight: 600; color: #fff; margin: 0; }
.contact-option-value a { color: #fff; text-decoration: none; }
.contact-option-value a:hover { color: var(--bronze-light); }


/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: #111; padding: 80px 0 36px; border-top: 1px solid rgba(196,151,42,0.15); }
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.footer-sdvosb { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-light); display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-contact-list li { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-list a:hover { color: rgba(255,255,255,0.9); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.25); margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--charcoal); border-top: 1px solid rgba(196,151,42,0.3); padding: 12px 16px; gap: 10px; }


/* ── BREADCRUMB BAR ──────────────────────────────────────────── */
.page-intro { background: var(--off-white); border-bottom: 1px solid var(--border-light); padding: 14px 0; }
.breadcrumb { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--bronze); }
.breadcrumb span { color: var(--bronze); font-weight: 600; }


/* ── ABOUT PAGE — HEART SECTION ──────────────────────────────── */
.heart-section { padding: 100px 0; background: var(--warm-white); }
.heart-body { max-width: 780px; margin: 0 auto; }
.heart-body p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 22px; font-weight: 300; }
.heart-body p:last-child { margin-bottom: 0; }
.heart-body strong { font-weight: 600; color: var(--charcoal); }
.heart-pull { font-family: var(--font-display); font-size: 21px; font-style: italic; color: var(--charcoal); line-height: 1.55; border-left: 3px solid var(--bronze); padding: 20px 0 20px 28px; margin: 36px 0; }


/* ── ABOUT PAGE — VALUES ─────────────────────────────────────── */
.values-section { padding: 100px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.values-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(196,151,42,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(196,151,42,0.03) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.values-inner { position: relative; z-index: 1; }
.values-header { text-align: center; margin-bottom: 64px; }
.values-header .section-title { color: #fff; }
.values-header .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto; max-width: 580px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,151,42,0.15); border-radius: 8px; padding: 36px; transition: border-color 0.2s, background 0.2s; }
.value-card:hover { border-color: rgba(196,151,42,0.4); background: rgba(255,255,255,0.06); }
.value-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.value-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; margin: 0; }


/* ── ABOUT PAGE — HISTORY & TIMELINE ─────────────────────────── */
.history-section { padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.history-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.history-body p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.history-body strong { font-weight: 600; color: var(--charcoal); }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 0; width: 1.5px; background: var(--bronze-border); }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -25px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--bronze-pale); border: 2px solid var(--bronze); }
.timeline-year { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze); margin-bottom: 5px; }
.timeline-title { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.timeline-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; margin: 0; }
.timeline-label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze); margin-bottom: 28px; }


/* ── ABOUT PAGE — GUARANTEE ──────────────────────────────────── */
.guarantee-section { padding: 100px 0; background: var(--bronze-pale); border-top: 1px solid var(--bronze-border); border-bottom: 1px solid var(--bronze-border); }
.guarantee-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.guarantee-badge-wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; position: sticky; top: 84px; }
.guarantee-seal { width: 180px; height: 180px; border-radius: 50%; background: var(--charcoal); border: 4px solid var(--bronze-border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; padding: 20px; }
.guarantee-pct { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--bronze-light); line-height: 1; }
.guarantee-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.guarantee-sub { font-size: 12px; color: rgba(255,255,255,0.45); }
.guarantee-tagline { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--charcoal); text-align: center; max-width: 260px; line-height: 1.55; }
.guarantee-body p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.guarantee-body strong { font-weight: 600; color: var(--charcoal); }
.guarantee-items { list-style: none; padding: 0; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.guarantee-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-body); line-height: 1.55; }
.guarantee-items li::before { content: '→'; color: var(--bronze); flex-shrink: 0; font-weight: 700; }


/* ── ABOUT PAGE — FINAL CTA ──────────────────────────────────── */
.about-cta { padding: 100px 0; background: var(--charcoal); text-align: center; border-top: 1px solid rgba(196,151,42,0.15); }
.about-cta-inner { position: relative; z-index: 1; }
.about-cta .section-title { color: #fff; margin: 0 auto 20px; max-width: 580px; }
.about-cta .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto 48px; max-width: 520px; }
.about-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }


/* ── MEET OUR TEAM PAGE ──────────────────────────────────────── */
.mot-header { background: var(--charcoal); padding: 72px 0 64px; text-align: center; position: relative; overflow: hidden; }
.mot-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 20% 50%, rgba(196,151,42,0.07) 0%, transparent 55%), radial-gradient(ellipse at 80% 30%, rgba(196,151,42,0.05) 0%, transparent 50%); pointer-events: none; }
.mot-header-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.mot-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 16px; display: block; }
.mot-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.15; color: #fff; letter-spacing: -0.02em; margin-bottom: 20px; }
.mot-title em { font-style: normal; color: var(--bronze-light); }
.mot-desc { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0; }

.mot-owner { padding: 90px 0; background: var(--warm-white); }
.mot-owner-inner { display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: start; max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.mot-owner-card { background: #fff; border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; position: sticky; top: 84px; }
.mot-avatar-owner { width: 100%; aspect-ratio: 1/1; background: var(--charcoal); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 72px; font-weight: 700; color: var(--bronze-light); border-bottom: 3px solid var(--bronze-border); }
.mot-owner-card-info { padding: 24px; }
.mot-owner-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.mot-owner-role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze); margin-bottom: 14px; }
.mot-credentials { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.mot-credentials li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.mot-credentials li::before { content: '→'; color: var(--bronze); flex-shrink: 0; font-weight: 700; }
.mot-owner-body p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.mot-owner-body strong { font-weight: 600; color: var(--charcoal); }
.mot-owner-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 14px; display: block; }
.mot-owner-title { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 20px; }
.mot-owner-divider { width: 48px; height: 3px; background: var(--bronze); margin-bottom: 24px; border: none; }
.mot-pull { font-family: var(--font-display); font-size: 19px; font-style: italic; color: var(--charcoal); line-height: 1.55; border-left: 3px solid var(--bronze); padding: 18px 0 18px 28px; margin: 32px 0; }

.mot-call-strip { padding: 64px 0; background: var(--bronze-pale); border-top: 1px solid var(--bronze-border); border-bottom: 1px solid var(--bronze-border); text-align: center; }
.mot-call-strip-inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.mot-call-title { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.25; }
.mot-call-desc { font-size: 16px; color: var(--text-muted); font-weight: 300; margin-bottom: 32px; line-height: 1.7; }
.mot-call-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.mot-call-note { font-size: 13px; color: var(--text-muted); font-style: italic; margin: 0; }
.mot-btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; border-radius: 6px; transition: all 0.2s; text-decoration: none; border: none; padding: 14px 32px; }
.mot-btn-bronze { background: var(--bronze); color: #fff; }
.mot-btn-bronze:hover { background: var(--bronze-light); transform: translateY(-1px); color: #fff; }
.mot-btn-outline { background: transparent; color: var(--bronze-light); border: 1.5px solid var(--bronze-border); }
.mot-btn-outline:hover { background: rgba(196,151,42,0.08); }

.mot-designers { padding: 90px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.mot-designers-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.mot-designers-header { text-align: center; margin-bottom: 60px; }
.mot-designers-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 16px; }
.mot-designers-desc { font-size: 17px; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 560px; margin: 0 auto; }
.mot-divider { width: 48px; height: 3px; background: var(--bronze); margin: 0 auto 24px; border: none; }
.mot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mot-card { background: #fff; border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.mot-card:hover { border-color: var(--bronze-border); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.mot-avatar { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--bronze-light); background: var(--charcoal); border-bottom: 3px solid var(--bronze-border); }
.mot-card-info { padding: 28px; }
.mot-card-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.mot-card-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze); margin-bottom: 16px; }
.mot-card-bio { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; padding-top: 16px; border-top: 1px solid var(--border-light); }
.mot-bio-placeholder { font-size: 13px; color: #C8BFA8; font-style: italic; padding: 14px; background: var(--off-white); border-radius: 4px; border: 1px dashed var(--border-light); }

.mot-final-cta { padding: 90px 0; background: var(--charcoal); text-align: center; position: relative; overflow: hidden; }
.mot-final-cta::before { content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: radial-gradient(ellipse, rgba(196,151,42,0.12) 0%, transparent 65%); pointer-events: none; }
.mot-final-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; padding: 0 24px; }
.mot-cta-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.mot-cta-desc { font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 36px; line-height: 1.7; }
.mot-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 520px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .process-steps--three { gap: 32px; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .sdvosb-inner { grid-template-columns: 1fr; gap: 56px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-item.featured { grid-row: auto; min-height: 280px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .history-inner { grid-template-columns: 1fr; gap: 56px; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 56px; }
  .guarantee-badge-wrap { position: static; max-width: 400px; }
  .mot-owner-inner { grid-template-columns: 1fr; gap: 48px; max-width: 680px; }
  .mot-owner-card { position: static; max-width: 300px; }
  .mot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps--three { flex-direction: column; align-items: center; max-width: 420px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .serve-grid { grid-template-columns: 1fr; }
  .sdvosb-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-options { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .mobile-cta-bar { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; }
  .about-cta-actions .btn { width: 100%; justify-content: center; }
  .mot-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .mot-call-actions { flex-direction: column; width: 100%; }
  .mot-call-actions .mot-btn { width: 100%; }
  .mot-cta-actions { flex-direction: column; width: 100%; }
  .mot-cta-actions .mot-btn { width: 100%; }
  .final-cta { padding: 80px 0; }
  .about-cta { padding: 64px 0; }
  .mot-owner, .mot-designers, .mot-final-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .sdvosb-stats { grid-template-columns: 1fr; }
}



/* ── PRICING TABLES — GLOBAL ──────────────────────────────────────────────── */
/* Shared by all product pages, memorial page, cost page, and hub             */

/* Base table */
.mp-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.mp-price-table caption {
  display: none;
}
.mp-price-caption {
  display: none;
}
.mp-price-table thead th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  background: var(--bronze-pale);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--bronze-border);
  white-space: nowrap;
}
.mp-price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 14px;
  vertical-align: top;
  line-height: 1.5;
}
.mp-price-table tbody tr:last-child td {
  border-bottom: none;
}
.mp-price-table tbody tr:hover td {
  background: var(--bronze-pale);
}

/* Highlighted row (most popular size) */
.mp-row-highlight td {
  background: var(--off-white);
  font-weight: 500;
}
.mp-row-highlight td:first-child::before {
  content: "Most common";
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 3px;
}

/* Price range cell */
.mp-price-range {
  white-space: nowrap;
}
.mp-price-range span:first-child {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
}
.mp-price-plus {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Quote on request (dynamic pricing) */
.is-price-quote {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
}

/* Hub combined table (gold + silver side by side) */
.hub-price-combined tbody tr td:nth-child(2),
.hub-price-combined tbody tr td:nth-child(3) {
  white-space: nowrap;
}
.hub-price-combined tbody tr td:nth-child(2) span:first-child,
.hub-price-combined tbody tr td:nth-child(3) span:first-child {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.hub-price-combined tbody tr td:nth-child(2) .mp-price-plus,
.hub-price-combined tbody tr td:nth-child(3) .mp-price-plus {
  color: rgba(255,255,255,0.4);
}

/* Responsive: scroll on small screens */
@media (max-width: 640px) {
  .mp-price-table {
    font-size: 13px;
  }
  .mp-price-table thead th,
  .mp-price-table td {
    padding: 10px 12px;
  }
  .mp-price-range span:first-child {
    font-size: 14px;
  }
}


/* ================================================================
   SECTION 2: MEMORIAL PLAQUES PAGE
   (/memorial-plaques/)
================================================================ */

/* ============================================================
   MEMORIAL PLAQUES PAGE — Simplified
   ============================================================ */

/* HERO */
.mp-hero { background: var(--charcoal); padding: 80px 0 72px; position: relative; overflow: hidden; }
.mp-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 8% 65%, rgba(196,151,42,0.08) 0%, transparent 50%), radial-gradient(ellipse at 88% 15%, rgba(196,151,42,0.05) 0%, transparent 45%); pointer-events: none; }
.mp-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 460px; gap: 72px; align-items: center; }
.mp-hero-title { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: #fff; margin-bottom: 24px; }
.mp-hero-title em { font-style: normal; color: var(--bronze-light); }
.mp-hero-lead { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; margin-bottom: 18px; max-width: 500px; }
.mp-hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; margin-bottom: 16px; }
.mp-hero-note { font-size: 13px; color: rgba(255,255,255,0.35); font-style: italic; }
.mp-hero-photo { border-radius: 8px; overflow: hidden; margin-bottom: 16px; background: var(--charcoal-mid); border: 1px solid rgba(196,151,42,0.2); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; }
.mp-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp-hero-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; padding: 40px; text-align: center; }
.mp-ph-icon { font-size: 52px; opacity: 0.2; }
.mp-ph-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.mp-hero-pills { display: flex; flex-direction: column; gap: 8px; }
.mp-pill { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(196,151,42,0.18); border-radius: 6px; padding: 10px 14px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); }

/* WE UNDERSTAND */
.mp-understand { padding: 100px 0; background: var(--warm-white); }
.mp-understand-inner { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.mp-understand-body p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.mp-understand-body strong { font-weight: 600; color: var(--charcoal); }
.mp-need-card { background: var(--charcoal); border-radius: 8px; padding: 32px; margin-bottom: 16px; }
.mp-need-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.mp-need-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.mp-need-list li { display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.mp-need-icon { font-size: 20px; flex-shrink: 0; }
.mp-need-list strong { color: #fff; font-weight: 600; display: block; margin-bottom: 3px; }
.mp-need-cta { display: block; font-size: 14px; font-weight: 600; color: var(--bronze-light); padding-top: 20px; border-top: 1px solid rgba(196,151,42,0.2); text-decoration: none; transition: color 0.2s; }
.mp-need-cta:hover { color: #fff; }
.mp-guide-card { background: #fff; border: 1px solid var(--border-light); border-radius: 8px; padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.mp-guide-icon { font-size: 28px; flex-shrink: 0; }
.mp-guide-title { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.mp-guide-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; font-weight: 300; }
.mp-guide-link { font-size: 13px; font-weight: 700; color: var(--bronze); text-decoration: none; letter-spacing: 0.04em; }
.mp-guide-link:hover { color: var(--bronze-light); }

/* GALLERY */
.mp-gallery { padding: 100px 0; background: var(--charcoal); }
.mp-gallery-header { text-align: center; margin-bottom: 56px; }
.mp-gallery-header .section-title { color: #fff; }
.mp-gallery-header .section-desc { color: rgba(255,255,255,0.5); }
.mp-gallery-header .section-eyebrow { color: var(--bronze-light); }
.mp-gallery-header .divider { background: var(--bronze-light); }
.mp-gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 560px; }
.mp-gal-item { position: relative; border-radius: 6px; overflow: hidden; background: var(--charcoal-mid); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.mp-gal-item:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.mp-gal-featured { grid-row: 1 / 3; }
.mp-gal-photo { width: 100%; height: 100%; }
.mp-gal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp-gal-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; height: 100%; opacity: 0.25; }
.mp-gal-ph-icon { font-size: 36px; }
.mp-gal-ph-text { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-align: center; padding: 0 16px; }
.mp-gal-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(37,32,24,0.88)); padding: 24px 18px 16px; }
.mp-gal-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-light); display: block; margin-bottom: 4px; }
.mp-gal-caption { font-size: 12.5px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.5; }

/* TYPES */
.mp-types { padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.mp-types-header { text-align: center; margin-bottom: 60px; }
.mp-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; }
.mp-type { background: #fff; padding: 36px 32px; transition: background 0.2s; }
.mp-type:hover { background: var(--bronze-pale); }
.mp-type-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.mp-type-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.mp-type-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; margin: 0; }

/* SIMPLE INFO */
.mp-simple-info { padding: 80px 0; background: var(--warm-white); border-top: 1px solid var(--border-light); }
.mp-simple-info-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: start; }
.mp-info-block p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.mp-info-block strong { font-weight: 600; color: var(--charcoal); }
.mp-info-link { font-size: 13px; font-weight: 700; color: var(--bronze); letter-spacing: 0.04em; text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.mp-info-link:hover { color: var(--bronze-light); }
.mp-info-divider { width: 1px; background: var(--border-light); align-self: stretch; margin-top: 44px; }

/* FINAL CTA */
.mp-final-cta { padding: 100px 0; background: var(--charcoal); text-align: center; border-top: 1px solid rgba(196,151,42,0.15); }
.mp-final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.mp-cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.mp-guarantee-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--bronze-light); border: 1px solid rgba(196,151,42,0.35); background: rgba(196,151,42,0.07); padding: 8px 18px; border-radius: 100px; text-decoration: none; transition: all 0.2s; }
.mp-guarantee-badge:hover { border-color: rgba(196,151,42,0.6); background: rgba(196,151,42,0.12); color: var(--bronze-light); }

/* RELATED */
.mp-related { background: var(--off-white); border-top: 1px solid var(--border-light); padding: 36px 0; }
.mp-related-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.mp-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.mp-related-link { font-size: 13.5px; font-weight: 500; color: var(--text-muted); background: #fff; border: 1px solid var(--border-light); padding: 8px 16px; border-radius: 100px; transition: all 0.2s; text-decoration: none; }
.mp-related-link:hover { border-color: var(--bronze-border); color: var(--bronze); background: var(--bronze-pale); }

/* FEATURED EXAMPLES */
.mp-examples { padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.mp-examples-header { text-align: center; margin-bottom: 72px; }
.mp-examples-list { display: flex; flex-direction: column; gap: 80px; }

.mp-example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}
.mp-example:last-child { border-bottom: none; padding-bottom: 0; }
.mp-example-reverse { direction: rtl; }
.mp-example-reverse > * { direction: ltr; }

.mp-example-photo { position: relative; }
.mp-example-photo img { width: 100%; border-radius: 6px; display: block; border: 1px solid var(--border-light); }
.mp-ex-ph {
  aspect-ratio: 4/3;
  background: var(--charcoal-mid);
  border-radius: 6px;
  border: 1px solid rgba(196,151,42,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mp-ex-ph-icon { font-size: 44px; opacity: 0.25; }
.mp-ex-ph-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding: 0 24px;
}
.mp-example-detail {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--warm-white);
  box-shadow: 0 4px 20px rgba(37,32,24,0.2);
  background: var(--charcoal-mid);
}
.mp-example-detail img { width: 100%; height: 100%; object-fit: cover; }
.mp-ex-detail-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 8px;
  line-height: 1.5;
}

.mp-example-content { padding-top: 8px; }
.mp-example-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.mp-example-story {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Spec table */
.mp-example-specs { margin-bottom: 28px; }
.mp-spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mp-spec-table th {
  text-align: left;
  font-weight: 600;
  color: var(--charcoal);
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--border-light);
  width: 38%;
  vertical-align: top;
  white-space: nowrap;
}
.mp-spec-table td {
  padding: 10px 0 10px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.mp-spec-table tr:last-child th,
.mp-spec-table tr:last-child td { border-bottom: none; }

/* Designer note */
.mp-example-designer-note {
  background: var(--charcoal);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 0;
}
.mp-example-designer-note p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  font-weight: 300;
}
.mp-example-designer-note p::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--bronze-light);
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .mp-hero-inner, .mp-understand-inner { grid-template-columns: 1fr; gap: 48px; }
  .mp-example, .mp-example-reverse { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
  .mp-example-detail { bottom: -12px; right: -12px; width: 100px; height: 100px; }
  .mp-hero-inner { grid-template-columns: 1fr; }
  .mp-hero-right { max-width: 480px; }
  .mp-gallery-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mp-gal-featured { grid-row: auto; }
  .mp-types-grid { grid-template-columns: 1fr 1fr; }
  .mp-simple-info-inner { grid-template-columns: 1fr; gap: 48px; }
  .mp-info-divider { display: none; }
}
@media (max-width: 768px) {
  .mp-hero, .mp-understand, .mp-gallery, .mp-types, .mp-final-cta { padding: 64px 0; }
  .mp-gallery-grid { grid-template-columns: 1fr; height: auto; }
  .mp-gallery-grid .mp-gal-item { min-height: 200px; }
  .mp-types-grid { grid-template-columns: 1fr; }
  .mp-hero-ctas, .mp-cta-actions { flex-direction: column; }
  .mp-hero-ctas .btn, .mp-cta-actions .btn { width: 100%; justify-content: center; }
}


/* ================================================================
   SECTION 3: PRODUCT CATEGORY PAGES
   Used by all 13 product pages:
   /law-office-plaques/ /military-veteran-plaques/
   /professional-office-plaques/ /educational-institution-plaques/
   /government-facility-plaques/ /architectural-bronze-plaques/
   /bronze-dedication-plaques/ /custom-bronze-plaques/
   /restaurant-bronze-plaques/ /historic-home-plaques/
   /wedding-bronze-plaques/ /ada-bronze-plaques/
   (wedding-venue-plaques is superseded by wedding-bronze-plaques)
================================================================ */

/* ── Product Pages — Pricing, Planning & FAQ additions ── */

/* PRICING SECTION */
.pp-pricing-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; margin-bottom: 8px; }
.pp-pricing-note { background: #fff; border: 1px solid var(--border-light); border-radius: 6px; padding: 20px; display: flex; gap: 14px; }
.pp-note-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pp-pricing-note strong { font-size: 14px; font-weight: 600; color: var(--charcoal); display: block; margin-bottom: 6px; }
.pp-pricing-note p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; font-weight: 300; }

/* PRICING SECTION (continued) */
.pp-pricing { padding: 100px 0; background: var(--warm-white); border-top: 1px solid var(--border-light); }
.pp-pricing-header { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.pp-toggle-wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.pp-toggle { display: flex; border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; max-width: 480px; width: 100%; }
.pp-toggle-btn { flex: 1; padding: 13px 20px; font-family: var(--font-body); font-size: 14px; font-weight: 600; border: none; cursor: pointer; background: #fff; color: var(--text-muted); transition: all 0.2s; }
.pp-toggle-btn:first-child { border-right: 1px solid var(--border-light); }
.pp-toggle-active { background: var(--charcoal) !important; color: var(--bronze-light) !important; }
.pp-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.pp-pricing-note { font-size: 13px; color: var(--text-muted); font-style: italic; text-align: center; margin-top: 16px; }

/* PLANNING SECTION */
.pp-planning { padding: 100px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.pp-planning::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(196,151,42,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(196,151,42,0.03) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.pp-planning-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.pp-plan-tips { display: flex; flex-direction: column; gap: 20px; }
.pp-plan-tip { display: flex; gap: 16px; align-items: flex-start; }
.pp-plan-icon { font-size: 24px; flex-shrink: 0; }
.pp-plan-tip strong { font-size: 15px; color: #fff; font-weight: 600; display: block; margin-bottom: 5px; }
.pp-plan-tip p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; font-weight: 300; }
.pp-timeline-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,151,42,0.2); border-radius: 8px; padding: 32px; position: sticky; top: 84px; }
.pp-tl-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 28px; }
.pp-tl-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.pp-tl-item {}
.pp-tl-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 7px; }
.pp-tl-bar { background: rgba(255,255,255,0.08); border-radius: 3px; height: 6px; margin-bottom: 5px; overflow: hidden; }
.pp-tl-fill { height: 100%; background: var(--bronze); border-radius: 3px; transition: width 0.6s ease; }
.pp-tl-fill-rush { background: var(--bronze-light); }
.pp-tl-rush .pp-tl-label { color: var(--bronze-light); }
.pp-tl-time { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.pp-tl-note { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; line-height: 1.6; border-top: 1px solid rgba(196,151,42,0.15); padding-top: 16px; margin-top: 4px; }
.pp-tl-link { display: block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--bronze-light); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.pp-tl-link:hover { color: #fff; }

/* FAQ SECTION */
.pp-faq { padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.pp-faq-header { text-align: center; margin-bottom: 56px; }
.pp-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pp-faq-item { background: #fff; border: 1px solid var(--border-light); border-radius: 8px; padding: 28px 32px; transition: border-color 0.2s, box-shadow 0.2s; }
.pp-faq-item:hover { border-color: var(--bronze-border); box-shadow: var(--shadow-card); }
.pp-faq-q { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; line-height: 1.35; }
.pp-faq-a { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pp-planning-inner { grid-template-columns: 1fr; gap: 48px; }
  .pp-timeline-card { position: static; }
  .pp-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pp-pricing, .pp-planning, .pp-faq { padding: 64px 0; }
  .pp-toggle { max-width: 100%; }
}



/* ── CUSTOM BRONZE PAGE — Plaque Type Cards ──────────────────────────────── */
.mp-plaque-types { display: flex; flex-direction: column; gap: 24px; margin: 32px 0 24px; }
.mp-type-card { background: var(--off-white); border: 1px solid var(--border-light); border-radius: 8px; padding: 24px 28px; }
.mp-type-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.mp-type-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.mp-type-desc { font-size: 14.5px; color: var(--text-body); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
.mp-type-uses { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.mp-type-uses li { font-size: 13px; color: var(--text-muted); padding-left: 16px; position: relative; font-weight: 300; }
.mp-type-uses li::before { content: "→"; position: absolute; left: 0; color: var(--bronze); font-weight: 700; }
.mp-type-timeline { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bronze); }
.mp-type-note { background: var(--bronze-pale); border: 1px solid var(--bronze-border); border-radius: 6px; padding: 16px 20px; margin-top: 24px; }
.mp-type-note p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin: 0; font-weight: 300; }


/* ── TIER PRICING CARDS (product pages) ─────────────────────────────────── */
.pp-pricing-tiers { background: var(--off-white); }
.pp-tier-grid { display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 20px; margin-bottom: 56px; align-items: start; }
.pp-tier { background: #fff; border: 1px solid var(--border-light); border-radius: 10px; padding: 28px; position: relative; display: flex; flex-direction: column; gap: 20px; transition: box-shadow 0.2s; }
.pp-tier:hover { box-shadow: var(--shadow-card); }
.pp-tier-featured { border: 2px solid var(--bronze); box-shadow: 0 8px 32px rgba(139,105,20,0.12); transform: translateY(-6px); }
.pp-tier-featured:hover { box-shadow: 0 12px 40px rgba(139,105,20,0.18); }
.pp-tier-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--bronze); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.pp-tier-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }
.pp-tier-featured .pp-tier-label { color: var(--bronze); }
.pp-tier-name { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 8px; }
.pp-tier-name em { font-style: normal; color: var(--bronze); }
.pp-tier-tagline { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; font-weight: 300; margin: 0; }
.pp-tier-price { padding: 16px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.pp-tier-price-from { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); display: block; margin-bottom: 2px; }
.pp-tier-price-val { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--charcoal); line-height: 1; display: block; margin-bottom: 4px; }
.pp-tier-featured .pp-tier-price-val { color: var(--bronze); }
.pp-tier-price-note { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.pp-tier-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pp-tier-feature { font-size: 13.5px; color: var(--text-body); line-height: 1.4; font-weight: 300; }
.pp-tier-feature:first-child { color: var(--charcoal); font-weight: 500; }
.pp-tier-no { color: var(--text-muted); opacity: 0.65; }
.pp-tier-featured .pp-tier-feature { color: var(--charcoal); }
.pp-tier-featured .pp-tier-feature:first-child { font-weight: 600; }
.pp-tier-cta { margin-top: auto; }
.btn-sm { padding: 10px 20px; font-size: 13px; width: 100%; justify-content: center; text-align: center; }
.pp-tier-note { font-size: 12px; color: var(--text-muted); font-style: italic; line-height: 1.55; margin: 0; border-top: 1px solid var(--border-light); padding-top: 14px; }
.pp-tier-table-intro { text-align: center; margin-bottom: 28px; }
.pp-tier-table-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.pp-tier-table-desc { font-size: 14px; color: var(--text-muted); font-weight: 300; max-width: 520px; margin: 0 auto; }
@media (max-width: 1024px) { .pp-tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } .pp-tier-featured { transform: none; } }
@media (max-width: 640px) { .pp-tier-grid { max-width: 100%; } }

/* ================================================================
   SECTION 4: DIGITAL BRONZE PLAQUES PAGE
   Additional styles for /digital-bronze-plaques/
   (builds on Section 3 above)
================================================================ */

/* Digital page concept styles */
.mp-ex-ph--concept { min-height: 280px; background: linear-gradient(135deg, rgba(37,32,24,0.95) 0%, rgba(58,46,20,0.9) 100%); border: 1px solid rgba(196,151,42,0.3); }
.mp-ex-ph--concept .mp-ex-ph-icon { font-size: 52px; opacity: 0.6; }
.mp-ex-ph--concept .mp-ex-ph-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(196,151,42,0.7); }
.mp-ex-ph-sub { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; padding: 0 24px; font-style: italic; margin-top: 4px; }
.mp-concept-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze); background: var(--bronze-pale); border: 1px solid var(--bronze-border); padding: 3px 10px; border-radius: 2px; margin-bottom: 14px; }
.mp-concept-callout { background: var(--off-white); border-left: 3px solid var(--bronze); border-radius: 0 6px 6px 0; padding: 16px 20px; margin-top: 20px; }
.mp-concept-callout p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin: 0; font-weight: 300; }
.mp-concept-callout strong { color: var(--charcoal); font-weight: 600; }
.mp-concept-interest { background: var(--charcoal); border-radius: 8px; padding: 48px; text-align: center; margin-top: 64px; }
.mp-concept-interest-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em; }
.mp-concept-interest p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; line-height: 1.7; font-weight: 300; }


/* ================================================================
   SECTION 5: BRONZE PLAQUES HUB PAGE
   (/bronze-plaques/)
================================================================ */

/* HUB PAGE */
.hub-hero{background:var(--charcoal);padding:80px 0 72px;position:relative;overflow:hidden}
.hub-hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(ellipse at 5% 70%,rgba(196,151,42,.09) 0%,transparent 50%),radial-gradient(ellipse at 90% 15%,rgba(196,151,42,.05) 0%,transparent 45%);pointer-events:none}
.hub-hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 400px;gap:72px;align-items:center}
.hub-hero-title{font-family:var(--font-display);font-size:clamp(32px,4vw,54px);font-weight:700;line-height:1.1;letter-spacing:-.025em;color:#fff;margin-bottom:24px}
.hub-hero-title em{font-style:normal;color:var(--bronze-light)}
.hub-hero-lead{font-size:17px;color:rgba(255,255,255,.65);line-height:1.8;font-weight:300;margin-bottom:36px;max-width:520px}
.hub-hero-ctas{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:16px}
.hub-hero-note{font-size:13px;color:rgba(255,255,255,.35);font-style:italic}
.hub-trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px;background:rgba(196,151,42,.2);border-radius:8px;overflow:hidden;margin-bottom:16px}
.hub-trust-item{background:rgba(255,255,255,.04);padding:20px;display:flex;flex-direction:column;gap:4px}
.hub-trust-num{font-family:var(--font-display);font-size:32px;font-weight:700;color:var(--bronze-light);line-height:1}
.hub-trust-label{font-size:13px;font-weight:600;color:#fff}
.hub-trust-sub{font-size:11px;color:rgba(255,255,255,.4);font-weight:300}
.hub-hero-pills{display:flex;flex-direction:column;gap:8px}
.hub-categories{padding:100px 0;background:var(--warm-white)}
.hub-categories-header{text-align:center;margin-bottom:56px}
.hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.hub-card{background:#fff;border:1px solid var(--border-light);border-radius:8px;overflow:hidden;transition:border-color .2s,box-shadow .2s,transform .2s}
.hub-card:hover{border-color:var(--bronze-border);box-shadow:var(--shadow-card);transform:translateY(-3px)}
.hub-card-link{display:flex;flex-direction:column;text-decoration:none;height:100%}
.hub-card-photo{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--charcoal-mid)}
.hub-card-photo img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.hub-card:hover .hub-card-photo img{transform:scale(1.04)}
.hub-card-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.hub-card-icon{font-size:36px;opacity:.3}
.hub-card-body{padding:22px 24px;flex:1;display:flex;flex-direction:column}
.hub-card-title{font-family:var(--font-display);font-size:18px;font-weight:600;color:var(--charcoal);margin-bottom:8px;line-height:1.3}
.hub-card-desc{font-size:13.5px;color:var(--text-muted);line-height:1.65;font-weight:300;flex:1;margin-bottom:16px}
.hub-card-cta{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--bronze);margin-top:auto}
.hub-card:hover .hub-card-cta{color:var(--bronze-light)}
.hub-about{padding:100px 0;background:var(--off-white);border-top:1px solid var(--border-light)}
.hub-about-inner{display:grid;grid-template-columns:1fr 400px;gap:72px;align-items:start}
.hub-about-text p{font-size:16px;color:var(--text-body);line-height:1.85;margin-bottom:20px;font-weight:300}
.hub-about-ctas{display:flex;gap:14px;margin-top:32px}
.hub-guarantee{background:var(--charcoal);border-radius:8px;padding:32px;margin-bottom:20px}
.hub-guarantee-icon{width:48px;height:48px;background:rgba(196,151,42,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--bronze-light)}
.hub-guarantee-title{font-family:var(--font-display);font-size:18px;font-weight:600;color:#fff;margin-bottom:12px;line-height:1.35}
.hub-guarantee-desc{font-size:14px;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:16px;font-weight:300}
.hub-guarantee-link{font-size:13px;font-weight:700;color:var(--bronze-light);text-decoration:none;letter-spacing:.04em}
.hub-guarantee-link:hover{color:#fff}
.hub-process-card{background:#fff;border:1px solid var(--border-light);border-radius:8px;padding:28px}
.hub-process-title{font-family:var(--font-display);font-size:18px;font-weight:600;color:var(--charcoal);margin-bottom:20px}
.hub-process-steps{list-style:none;padding:0;display:flex;flex-direction:column;gap:16px}
.hub-process-steps li{display:flex;gap:14px;align-items:flex-start;font-size:14px;color:var(--text-body);line-height:1.6}
.hub-step-num{width:26px;height:26px;background:var(--charcoal);color:var(--bronze-light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0;margin-top:1px}
.hub-process-steps strong{color:var(--charcoal);font-weight:600;display:block;margin-bottom:2px}
.hub-guide{padding:100px 0;background:var(--warm-white);border-top:1px solid var(--border-light)}
.hub-guide-header{text-align:center;margin-bottom:64px}
.hub-guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:48px}
.hub-guide-item{background:#fff;border:1px solid var(--border-light);border-radius:8px;padding:28px;transition:border-color .2s,box-shadow .2s}
.hub-guide-item:hover{border-color:var(--bronze-border);box-shadow:var(--shadow-card)}
.hub-guide-num{font-family:var(--font-display);font-size:42px;font-weight:700;color:var(--bronze-pale);line-height:1;display:block;margin-bottom:10px}
.hub-guide-title{font-family:var(--font-display);font-size:18px;font-weight:600;color:var(--charcoal);margin-bottom:10px}
.hub-guide-desc{font-size:14px;color:var(--text-muted);line-height:1.7;margin:0;font-weight:300}
.hub-guide-download{background:var(--charcoal);border-radius:8px;padding:36px 48px;display:flex;align-items:center;justify-content:space-between;gap:40px}
.hub-guide-download-text h3{font-family:var(--font-display);font-size:21px;font-weight:600;color:#fff;margin-bottom:8px}
.hub-guide-download-text p{font-size:14.5px;color:rgba(255,255,255,.55);line-height:1.6;margin:0;font-weight:300;max-width:480px}
.hub-materials{padding:100px 0;background:var(--off-white);border-top:1px solid var(--border-light)}
.hub-materials-header{text-align:center;margin-bottom:56px}
.hub-materials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border-light);border:1px solid var(--border-light);border-radius:8px;overflow:hidden}
.hub-material{background:#fff;padding:32px 28px;transition:background .2s}
.hub-material:hover{background:var(--bronze-pale)}
.hub-material-title{font-family:var(--font-display);font-size:18px;font-weight:600;color:var(--charcoal);margin-bottom:12px}
.hub-material-desc{font-size:14px;color:var(--text-muted);line-height:1.7;font-weight:300;margin:0}
.hub-pricing{padding:100px 0;background:var(--charcoal);position:relative;overflow:hidden}
.hub-pricing::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(196,151,42,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(196,151,42,.03) 1px,transparent 1px);background-size:48px 48px;pointer-events:none}
.hub-pricing-header{text-align:center;position:relative;z-index:1}
.hub-price-table-wrap{overflow-x:auto;position:relative;z-index:1}
.hub-price-table{background:rgba(255,255,255,.03)}
.hub-price-table thead th{background:rgba(196,151,42,.15);color:var(--bronze-light)}
.hub-price-table td{color:rgba(255,255,255,.7);border-color:rgba(196,151,42,.12)}
.hub-price-table .mp-row-highlight td{background:rgba(196,151,42,.07)}
.hub-price-dims{display:block;font-size:12px;color:rgba(255,255,255,.35);font-weight:300;margin-top:3px}
.hub-price-cell{white-space:nowrap}
.hub-price-range{font-family:var(--font-display);font-size:16px;font-weight:700;color:#fff;display:block}
.hub-pricing-note{font-size:13px;color:rgba(255,255,255,.35);font-style:italic;text-align:center;margin-top:20px;position:relative;z-index:1}
.hub-faq{padding:100px 0;background:var(--off-white);border-top:1px solid var(--border-light)}
.hub-faq-header{text-align:center;margin-bottom:56px}
.hub-faq-cols{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.hub-faq-col{display:flex;flex-direction:column}
.hub-faq-group-title{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--bronze);margin:0;padding-bottom:10px;border-bottom:2px solid var(--bronze-border)}
.hub-faq-item{padding:16px 0;border-bottom:1px solid var(--border-light)}
.hub-faq-item:last-child{border-bottom:none}
.hub-faq-q{font-family:var(--font-display);font-size:15.5px;font-weight:600;color:var(--charcoal);margin-bottom:6px;line-height:1.35}
.hub-faq-a{font-size:13.5px;color:var(--text-muted);line-height:1.7;font-weight:300;margin:0}
@media(max-width:1200px){.hub-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:1024px){
  .hub-hero-inner,.hub-about-inner{grid-template-columns:1fr;gap:48px}
  .hub-guide-grid{grid-template-columns:repeat(2,1fr)}
  .hub-faq-cols{grid-template-columns:1fr}
}
@media(max-width:768px){
  .hub-hero,.hub-categories,.hub-about,.hub-guide,.hub-materials,.hub-pricing,.hub-faq{padding:64px 0}
  .hub-grid{grid-template-columns:1fr}
  .hub-trust-grid{grid-template-columns:repeat(2,1fr)}
  .hub-materials-grid{grid-template-columns:1fr}
  .hub-guide-grid{grid-template-columns:1fr}
  .hub-guide-download{flex-direction:column;text-align:center}
  .hub-hero-ctas,.mp-cta-actions{flex-direction:column}
  .hub-hero-ctas .btn,.mp-cta-actions .btn{width:100%;justify-content:center}
}


/* ================================================================
   SECTION 6: COST, PROCESS, GALLERY & CONTACT PAGES
   Used by:
   /bronze-plaque-cost/ /our-process/
   /project-gallery/ /contact/
================================================================ */

/* ── FINAL PAGES SHARED ── */
.fp-page-title { font-family:var(--font-display); font-size:clamp(34px,4.5vw,58px); font-weight:700; line-height:1.1; letter-spacing:-.025em; color:#fff; margin-bottom:24px; }
.fp-page-title em { font-style:normal; color:var(--bronze-light); }
.fp-page-lead { font-size:17px; color:rgba(255,255,255,.65); line-height:1.8; font-weight:300; margin-bottom:18px; max-width:540px; }
.fp-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }

/* COST PAGE */
.fp-cost-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-cost-hero-inner { display:grid; grid-template-columns:1fr 380px; gap:64px; align-items:start; padding-top:0; }
.fp-cost-summary { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:28px; }
.fp-cost-summary-title { font-family:var(--font-display); font-size:18px; font-weight:600; color:#fff; margin-bottom:20px; }
.fp-cost-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(196,151,42,.12); font-size:14px; color:rgba(255,255,255,.65); }
.fp-cost-row:last-of-type { border-bottom:none; }
.fp-cost-row-hl { color:#fff; }
.fp-cost-val { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--bronze-light); white-space:nowrap; }
.fp-cost-summary-note { font-size:12px; color:rgba(255,255,255,.35); margin-top:16px; font-style:italic; line-height:1.6; }
.fp-cost-factors { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-factors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.fp-factor { background:#fff; border:1px solid var(--border-light); border-radius:8px; padding:28px; }
.fp-factor-num { font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--bronze-pale); line-height:1; display:block; margin-bottom:10px; }
.fp-factor-title { font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--charcoal); margin-bottom:10px; }
.fp-factor-desc { font-size:14px; color:var(--text-muted); line-height:1.7; font-weight:300; margin:0; }
.fp-cost-tables { padding:100px 0; background:var(--off-white); border-top:1px solid var(--border-light); }
.fp-cost-notes { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:32px; }
.fp-cost-note { background:#fff; border:1px solid var(--border-light); border-radius:6px; padding:20px; display:flex; gap:14px; }
.fp-note-icon { font-size:22px; flex-shrink:0; }
.fp-cost-note strong { font-size:14px; font-weight:600; color:var(--charcoal); display:block; margin-bottom:6px; }
.fp-cost-note p { font-size:13px; color:var(--text-muted); line-height:1.6; margin:0; font-weight:300; }
.fp-cost-value { padding:100px 0; background:var(--charcoal); position:relative; overflow:hidden; }
.fp-cost-value::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(196,151,42,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(196,151,42,.03) 1px,transparent 1px); background-size:48px 48px; pointer-events:none; }
.fp-cost-value-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 360px; gap:72px; align-items:start; }
.fp-value-examples { display:flex; gap:24px; margin-top:32px; flex-wrap:wrap; }
.fp-value-ex { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:24px; flex:1; min-width:180px; }
.fp-value-price { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--bronze-light); display:block; margin-bottom:8px; }
.fp-value-label { font-size:13px; color:rgba(255,255,255,.55); display:block; margin-bottom:12px; line-height:1.5; }
.fp-value-math { font-size:13.5px; color:rgba(255,255,255,.75); }
.fp-value-math strong { color:#fff; }
.fp-cost-faq { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:28px; }
.fp-cost-faq-title { font-family:var(--font-display); font-size:19px; font-weight:600; color:#fff; margin-bottom:20px; }
.fp-cost-faq-item { padding:14px 0; border-bottom:1px solid rgba(196,151,42,.12); }
.fp-cost-faq-item:last-child { border-bottom:none; }
.fp-cost-faq-item h4 { font-size:14.5px; font-weight:600; color:#fff; margin-bottom:6px; }
.fp-cost-faq-item p { font-size:13.5px; color:rgba(255,255,255,.55); line-height:1.6; margin:0; font-weight:300; }

/* PROCESS PAGE */
.fp-process-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-process-pills { display:flex; flex-direction:column; gap:10px; }
.fp-steps { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-step-list { display:flex; flex-direction:column; gap:72px; }
.fp-step { display:grid; grid-template-columns:80px 1fr 380px; gap:40px; align-items:start; }
.fp-step-reverse { direction:rtl; }
.fp-step-reverse > * { direction:ltr; }
.fp-step-num-col { display:flex; flex-direction:column; align-items:center; padding-top:8px; }
.fp-step-circle { width:52px; height:52px; background:var(--charcoal); color:var(--bronze-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:22px; font-weight:700; flex-shrink:0; }
.fp-step-circle-final { background:var(--bronze); color:#fff; }
.fp-step-line { width:2px; flex:1; background:var(--border-light); margin:12px 0; min-height:60px; }
.fp-step-title { font-family:var(--font-display); font-size:clamp(20px,2.2vw,26px); font-weight:700; color:var(--charcoal); margin-bottom:16px; letter-spacing:-.02em; }
.fp-step-desc { font-size:15.5px; color:var(--text-body); line-height:1.8; font-weight:300; margin-bottom:16px; }
.fp-step-tip { background:var(--bronze-pale); border:1px solid var(--bronze-border); border-radius:6px; padding:14px 18px; display:flex; gap:12px; margin-top:8px; }
.fp-step-tip-icon { font-size:18px; flex-shrink:0; }
.fp-step-tip p { font-size:13.5px; color:var(--text-body); line-height:1.6; margin:0; font-weight:300; }
.fp-step-photo { border-radius:8px; overflow:hidden; }
.fp-step-photo img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
.fp-step-ph { background:var(--charcoal-mid); border:1px solid rgba(196,151,42,.15); border-radius:8px; aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
.fp-step-ph-icon { font-size:40px; opacity:.25; }
.fp-step-ph-label { font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.2); text-align:center; padding:0 16px; }
.fp-process-guarantee { padding:100px 0; background:var(--charcoal); }
.fp-proc-guarantee-inner { display:grid; grid-template-columns:1fr 340px; gap:72px; align-items:center; }
.fp-proc-guarantee-card { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.25); border-radius:8px; padding:36px; }
.fp-proc-guarantee-icon { width:64px; height:64px; background:rgba(196,151,42,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--bronze-light); margin-bottom:20px; }
.fp-proc-guarantee-card h3 { font-family:var(--font-display); font-size:22px; font-weight:600; color:#fff; margin-bottom:14px; }
.fp-proc-guarantee-card p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:16px; font-weight:300; }
.fp-guarantee-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.fp-guarantee-list li { font-size:14px; color:rgba(255,255,255,.75); padding-left:20px; position:relative; }
.fp-guarantee-list li::before { content:"✓"; position:absolute; left:0; color:var(--bronze-light); font-weight:700; }

/* GALLERY PAGE */
.fp-gal-hero { background:var(--charcoal); padding:72px 0 56px; }
.fp-gallery-section { padding:60px 0 100px; background:var(--warm-white); }
.gal-filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.gal-filter-btn { font-family:var(--font-body); font-size:13px; font-weight:600; padding:8px 16px; border:1px solid var(--border-light); border-radius:100px; background:#fff; color:var(--text-muted); cursor:pointer; transition:all .2s; }
.gal-filter-btn:hover { border-color:var(--bronze-border); color:var(--bronze); background:var(--bronze-pale); }
.gal-filter-active { background:var(--charcoal) !important; color:var(--bronze-light) !important; border-color:var(--charcoal) !important; }
.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gal-card { background:#fff; border:1px solid var(--border-light); border-radius:8px; overflow:hidden; transition:border-color .2s,box-shadow .2s,transform .2s; }
.gal-card:hover { border-color:var(--bronze-border); box-shadow:var(--shadow-card); transform:translateY(-2px); }
.gal-card-photo { aspect-ratio:4/3; overflow:hidden; }
.gal-card-photo img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.gal-card:hover .gal-card-photo img { transform:scale(1.04); }
.gal-card-ph { background:var(--charcoal-mid); display:flex; align-items:center; justify-content:center; }
.gal-card-icon { font-size:40px; opacity:.25; }
.gal-card-body { padding:20px; }
.gal-card-cat { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--bronze); display:block; margin-bottom:8px; }
.gal-card-title { font-family:var(--font-display); font-size:16px; font-weight:600; color:var(--charcoal); margin-bottom:6px; line-height:1.3; }
.gal-card-desc { font-size:13px; color:var(--text-muted); line-height:1.6; margin:0; font-weight:300; }
.gal-cta-strip { background:var(--charcoal); border-radius:8px; padding:32px 40px; display:flex; align-items:center; justify-content:space-between; gap:40px; margin-top:48px; }
.gal-cta-strip p { font-size:15px; color:rgba(255,255,255,.65); font-weight:300; max-width:540px; margin:0; }
.gal-no-results { text-align:center; padding:80px 24px; color:var(--text-muted); font-size:16px; }
.gal-no-results a { color:var(--bronze); font-weight:600; }

/* CONTACT PAGE */
.fp-contact-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-contact-hero-inner { display:grid; grid-template-columns:1fr 480px; gap:64px; align-items:start; }
.fp-contact-direct { display:flex; flex-direction:column; gap:12px; margin:32px 0; }
.fp-contact-option { display:flex; align-items:center; gap:16px; background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.18); border-radius:8px; padding:16px 20px; text-decoration:none; transition:border-color .2s,background .2s; }
.fp-contact-option:hover { border-color:rgba(196,151,42,.4); background:rgba(255,255,255,.07); }
.fp-contact-fax { cursor: default; }
.fp-contact-fax:hover { border-color: rgba(196,151,42,.18); background: rgba(255,255,255,.04); }
.fp-contact-icon { font-size:22px; flex-shrink:0; }
.fp-contact-type { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); display:block; margin-bottom:3px; }
.fp-contact-value { font-size:16px; font-weight:600; color:#fff; display:block; }
.fp-contact-phone .fp-contact-value { font-size:20px; color:var(--bronze-light); }
.fp-contact-hours { margin-top:28px; padding-top:24px; border-top:1px solid rgba(196,151,42,.15); }
.fp-contact-hours-title { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.fp-contact-hours p { font-size:15px; color:rgba(255,255,255,.7); margin-bottom:4px; font-weight:300; }
.fp-contact-address { margin-top:24px; }
.fp-contact-addr-title { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.fp-contact-address address { font-style:normal; font-size:14px; color:rgba(255,255,255,.55) !important; line-height:1.8; font-weight:300; }
.fp-form-card { background:#fff; border:1px solid var(--border-light); border-radius:8px; padding:36px; }
.fp-form-title { font-family:var(--font-display); font-size:24px; font-weight:600; color:var(--charcoal); margin-bottom:8px; }
.fp-form-sub { font-size:14px; color:var(--text-muted); margin-bottom:28px; font-weight:300; line-height:1.6; }
.fp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fp-form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.fp-form-group label { font-size:13px; font-weight:600; color:var(--charcoal); }
.fp-form-group input, .fp-form-group select, .fp-form-group textarea { font-family:var(--font-body); font-size:14px; color:var(--charcoal); background:#fff; border:1px solid var(--border-light); border-radius:6px; padding:10px 14px; transition:border-color .2s,box-shadow .2s; width:100%; box-sizing:border-box; }
.fp-form-group input:focus, .fp-form-group select:focus, .fp-form-group textarea:focus { outline:none; border-color:var(--bronze); box-shadow:0 0 0 3px rgba(139,105,20,.12); }
.fp-form-group textarea { resize:vertical; min-height:120px; }
.fp-form-privacy { font-size:12px; color:var(--text-muted); text-align:center; margin-top:14px; font-weight:300; }
.fp-contact-next { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-next-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:40px; }
.fp-next-step { text-align:center; padding:0 8px; }
.fp-next-num { width:44px; height:44px; background:var(--charcoal); color:var(--bronze-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:18px; font-weight:700; margin:0 auto 16px; }
.fp-next-step h3 { font-family:var(--font-display); font-size:17px; font-weight:600; color:var(--charcoal); margin-bottom:10px; }
.fp-next-step p { font-size:14px; color:var(--text-muted); line-height:1.65; font-weight:300; margin:0; }
.fp-contact-no-salespeople { background:var(--charcoal); border-radius:8px; padding:32px 40px; display:flex; gap:24px; align-items:flex-start; }
.fp-no-sp-icon { font-size:28px; flex-shrink:0; margin-top:4px; }
.fp-contact-no-salespeople h3 { font-family:var(--font-display); font-size:20px; font-weight:600; color:#fff; margin-bottom:10px; }
.fp-contact-no-salespeople p { font-size:14.5px; color:rgba(255,255,255,.6); line-height:1.7; margin:0; font-weight:300; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .fp-cost-hero-inner,.fp-cost-value-inner,.fp-proc-guarantee-inner,.fp-contact-hero-inner { grid-template-columns:1fr; gap:48px; }
  .fp-factors-grid { grid-template-columns:1fr 1fr; }
  .fp-cost-notes { grid-template-columns:1fr 1fr; }
  .fp-step { grid-template-columns:60px 1fr; gap:24px; }
  .fp-step-photo { display:none; }
  .fp-step-reverse { direction:ltr; }
  .gal-grid { grid-template-columns:1fr 1fr; }
  .fp-next-steps { grid-template-columns:1fr 1fr; }
  .fp-hero-inner { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .fp-factors-grid,.fp-cost-notes { grid-template-columns:1fr; }
  .fp-form-row { grid-template-columns:1fr; }
  .gal-grid { grid-template-columns:1fr; }
  .fp-next-steps { grid-template-columns:1fr; }
  .gal-cta-strip,.fp-contact-no-salespeople { flex-direction:column; }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ── HORMOZI CHANGES — GLOBAL ──────────────────────────────────────────────── */

/* Proof authority strip */
.is-proof-strip{background:var(--charcoal);border-top:1px solid rgba(196,151,42,0.15);border-bottom:1px solid rgba(196,151,42,0.15);padding:12px 0;overflow:hidden}
.is-proof-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:10px 16px}
.is-proof-label{font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:var(--bronze-light);white-space:nowrap}
.is-proof-item{font-size:12.5px;color:rgba(255,255,255,0.55);font-weight:400;white-space:nowrap}
.is-proof-sep{color:rgba(196,151,42,0.25);font-size:10px}

/* Offer statement */
.is-offer-statement{margin-top:20px;padding:14px 18px;background:rgba(196,151,42,0.06);border:1px solid rgba(196,151,42,0.2);border-radius:6px}
.is-offer-row{display:flex;flex-wrap:wrap;align-items:center;gap:6px 16px;font-size:13px;color:rgba(255,255,255,0.7);font-weight:300;line-height:1.5}
.is-offer-row strong{color:#fff;font-weight:600}
.is-offer-sep{color:rgba(196,151,42,0.3);font-size:11px}

/* Lead magnet block */
.is-lead-magnet{background:var(--bronze-pale);border:1px solid var(--bronze-border);border-radius:8px;padding:20px 24px;margin:28px 0}
.is-lead-magnet-inner{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.is-lead-magnet-icon{font-size:28px;flex-shrink:0}
.is-lead-magnet-text{flex:1;display:flex;flex-direction:column;gap:3px;min-width:200px}
.is-lead-magnet-text strong{font-size:14px;font-weight:700;color:var(--charcoal)}
.is-lead-magnet-text span{font-size:13px;color:var(--text-muted);line-height:1.5;font-weight:300}
.is-lead-magnet-btn{white-space:nowrap;flex-shrink:0}

/* Urgency block */
.is-urgency-block{display:flex;align-items:center;gap:14px;background:var(--off-white);border:1px solid var(--border-light);border-left:3px solid var(--bronze);border-radius:6px;padding:14px 18px;margin-top:20px;flex-wrap:wrap}
.is-urgency-icon{font-size:20px;flex-shrink:0}
.is-urgency-block>div{flex:1;display:flex;flex-direction:column;gap:2px;min-width:160px}
.is-urgency-block strong{font-size:13.5px;color:var(--charcoal);font-weight:700}
.is-urgency-block span{font-size:13px;color:var(--text-muted);font-weight:300;line-height:1.5}

/* Guarantee amplified */
.mp-guarantee-amplified{margin-top:32px;padding:20px 24px;background:rgba(196,151,42,0.08);border:1px solid rgba(196,151,42,0.25);border-radius:8px;text-align:center;max-width:560px;margin-left:auto;margin-right:auto}
.mp-guarantee-amplified-title{font-family:var(--font-display);font-size:17px;font-weight:600;color:var(--bronze-light);margin-bottom:6px}
.mp-guarantee-amplified-body{font-size:13px;color:rgba(255,255,255,0.55);line-height:1.6;font-weight:300}

@media(max-width:768px){
  .is-offer-sep{display:none}
  .is-offer-row{flex-direction:column;align-items:flex-start;gap:4px}
  .is-proof-sep{display:none}
}


/* ── DESIGNER CALLOUT (product page sidebars) ────────────────────────────── */
.is-designer-callout {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 24px;
  margin-top: 20px;
}
.is-dc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.is-dc-icon { font-size: 18px; flex-shrink: 0; }
.is-dc-header strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.is-designer-callout p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  margin: 0 0 14px;
}
.is-dc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.is-dc-list li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
  font-weight: 300;
}
.is-dc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze-light);
  font-weight: 700;
  font-size: 11px;
}
.is-dc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.is-dc-link:hover { color: #fff; }


/* ── ABOUT — The Innovative Difference ──────────────────────────────────── */
.about-difference{background:var(--off-white);padding:80px 0}
.about-diff-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.about-diff-text p{font-size:15px;color:var(--text-body);line-height:1.85;font-weight:300;margin-bottom:16px}
.about-diff-points{display:flex;flex-direction:column;gap:28px}
.about-diff-point{display:flex;gap:20px;align-items:flex-start}
.about-diff-num{font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--bronze);line-height:1;flex-shrink:0;width:40px;margin-top:2px}
.about-diff-point strong{font-size:15px;font-weight:700;color:var(--charcoal);display:block;margin-bottom:6px;line-height:1.3}
.about-diff-point p{font-size:13.5px;color:var(--text-body);line-height:1.75;font-weight:300;margin:0}

/* ── PROCESS PAGE — Designer Model ──────────────────────────────────────── */
.pp-designer-model{background:var(--off-white);padding:80px 0}
.pp-dm-header{text-align:center;margin-bottom:56px}
.pp-dm-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;margin-bottom:48px}
.pp-dm-col{border-radius:8px;padding:32px;display:flex;flex-direction:column;gap:28px}
.pp-dm-ours{background:#fff;border:1px solid var(--border-light)}
.pp-dm-theirs{background:#FAF8F5;border:1px solid #E0D8C8}
.pp-dm-col-label{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:6px 14px;border-radius:100px;display:inline-block;margin-bottom:4px;align-self:flex-start}
.pp-dm-label-good{background:rgba(45,90,39,.1);color:#2D5A27}
.pp-dm-label-bad{background:rgba(192,57,43,.08);color:#922B21}
.pp-dm-item{display:flex;gap:16px;align-items:flex-start}
.pp-dm-icon{font-size:22px;flex-shrink:0;margin-top:2px;width:32px;text-align:center}
.pp-dm-icon-bad{opacity:.5}
.pp-dm-item strong{font-size:14px;font-weight:700;color:var(--charcoal);display:block;margin-bottom:5px}
.pp-dm-item p{font-size:13.5px;color:var(--text-body);line-height:1.7;font-weight:300;margin:0}
.pp-dm-item-bad strong{color:#666}
.pp-dm-item-bad p{color:#888}
.pp-dm-quote{background:var(--charcoal);border-radius:8px;padding:32px 40px;max-width:800px;margin:0 auto;text-align:center}
.pp-dm-quote p{font-family:var(--font-display);font-size:18px;font-style:italic;color:rgba(255,255,255,.85);line-height:1.7;margin:0 0 14px;font-weight:400}
.pp-dm-quote cite{font-size:13px;color:var(--bronze-light);font-style:normal;font-weight:400}
.pp-quality{background:#fff;padding:80px 0;border-top:1px solid var(--border-light)}
.pp-quality-inner{display:grid;grid-template-columns:1fr 400px;gap:64px;align-items:start}
.pp-quality-text p{font-size:15px;color:var(--text-body);line-height:1.8;font-weight:300;margin-bottom:16px}
.pp-quality-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:16px;margin:0}
.pp-quality-list li{font-size:14px;color:var(--text-body);line-height:1.7;font-weight:300;padding-left:20px;position:relative}
.pp-quality-list li::before{content:"→";position:absolute;left:0;color:var(--bronze);font-weight:700}
.pp-quality-list li strong{color:var(--charcoal);font-weight:600}
.pp-quality-standards{background:var(--charcoal);border-radius:8px;padding:32px}
.pp-quality-standards-title{font-family:var(--font-display);font-size:18px;font-weight:600;color:#fff;margin-bottom:24px;padding-bottom:16px;border-bottom:1px solid rgba(196,151,42,.2)}
.pp-qs-item{display:flex;gap:14px;align-items:flex-start;margin-bottom:24px}
.pp-qs-item:last-child{margin-bottom:0}
.pp-qs-icon{font-size:20px;flex-shrink:0;margin-top:2px}
.pp-qs-item strong{font-size:13.5px;font-weight:700;color:var(--bronze-light);display:block;margin-bottom:5px}
.pp-qs-item p{font-size:13px;color:rgba(255,255,255,.5);line-height:1.65;font-weight:300;margin:0}
@media(max-width:1024px){.pp-dm-grid{grid-template-columns:1fr}.pp-quality-inner{grid-template-columns:1fr}.about-diff-inner{grid-template-columns:1fr;gap:40px}}
@media(max-width:640px){.pp-dm-col{padding:24px 20px}.pp-dm-quote{padding:24px}.pp-dm-quote p{font-size:16px}}

/* ============================================================
   FOOTER (is-footer-* — matches live site markup)
   ============================================================ */
.is-footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(196,151,42,0.15);
}
.is-footer-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

/* Brand column */
.is-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
}
.is-footer-logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.is-footer-logo-text em {
  font-style: normal;
  color: var(--bronze-light);
}
.is-footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 16px;
}
.is-footer-sdvosb {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bronze-light);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.is-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.is-footer-contact li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.5;
}
.is-footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 200ms var(--ease-out, ease);
}
.is-footer-contact a:hover { color: var(--bronze-light); }

/* Link columns */
.is-footer-col h3 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin: 0 0 18px;
}
.is-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.is-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 200ms var(--ease-out, ease);
}
.is-footer-col ul li a:hover { color: #fff; }

/* Bottom bar (optional — remove the HTML block if you don't want it) */
.is-footer-bottom {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 20px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.is-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.is-footer-legal {
  display: flex;
  gap: 20px;
}
.is-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}
.is-footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Responsive */
@media (max-width: 900px) {
  .is-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 560px) {
  .is-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .is-footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ── TESTIMONIALS (dark card variant, used on homepage + about page) ────── */
.ts-grid { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 24px; }
.ts-card {
  flex: 1 1 300px; max-width: 340px;
  background: var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(196,151,42,0.12);
  transition: transform 250ms var(--ease-out, ease), border-color 250ms var(--ease-out, ease);
}
.ts-card-body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ts-card-quote {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.75; font-weight: 400;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 18px; margin-bottom: 16px;
  flex: 1;
}
.ts-card-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.ts-card-sub {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--bronze-light) 0%, #E8C468 50%, var(--bronze-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .ts-card:hover { transform: translateY(-4px); border-color: rgba(196,151,42,0.35); }
}
@media (max-width: 720px) {
  .ts-grid { gap: 16px; }
  .ts-card { flex: 1 1 260px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MEET THE TEAM PAGE — complete component set (previously undefined)
   ══════════════════════════════════════════════════════════════════════════ */

/* PAGE HEADER */
.page-header { background: var(--charcoal); padding: 90px 0 72px; text-align: center; }
.page-header-inner { max-width: 680px; margin: 0 auto; }
.page-header-eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 18px; }
.page-header-title { font-family: var(--font-display); font-size: clamp(30px,4vw,46px); font-weight: 700; line-height: 1.2; color: #fff; margin-bottom: 20px; letter-spacing: -0.02em; }
.page-header-title em { font-style: normal; color: var(--bronze-light); }
.page-header-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; max-width: 560px; margin: 0 auto; }

/* OWNER SECTION */
.owner-section { padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.owner-inner { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.owner-card { background: #fff; border: 1px solid var(--border-light); border-radius: 8px; padding: 36px 28px; text-align: center; position: sticky; top: 100px; }
.owner-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--charcoal); color: var(--bronze-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 32px; font-weight: 700; margin: 0 auto 20px; }
.owner-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.owner-title { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bronze); margin-bottom: 22px; }
.owner-credentials { list-style: none; padding: 18px 0 0; margin: 0; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 12px; text-align: left; }
.owner-credentials li { font-size: 13px; color: var(--text-body); line-height: 1.55; padding-left: 18px; position: relative; }
.owner-credentials li::before { content: '\2713'; position: absolute; left: 0; color: var(--bronze); font-weight: 700; font-size: 12px; }
.owner-body p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.owner-body strong { font-weight: 600; color: var(--charcoal); }
.owner-pull { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--charcoal); line-height: 1.55; border-left: 3px solid var(--bronze); padding: 18px 0 18px 26px; margin: 32px 0; }

/* CALL STRIP */
.call-strip { background: var(--charcoal); padding: 56px 0; text-align: center; }
.call-strip-title { font-family: var(--font-display); font-size: clamp(20px,2.2vw,26px); font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; }
.call-strip-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; max-width: 620px; margin: 0 auto 28px; }
.call-strip-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.call-strip-note { font-size: 12.5px; color: rgba(255,255,255,0.4); }

/* DESIGNERS SECTION */
.designers-section { padding: 100px 0; background: var(--warm-white); border-top: 1px solid var(--border-light); }
.designers-header { text-align: center; margin-bottom: 56px; }
.designers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.designer-card { background: #fff; border: 1px solid var(--border-light); border-radius: 8px; padding: 32px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.designer-card:hover { border-color: var(--bronze-border); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.designer-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--charcoal); color: var(--bronze-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 26px; font-weight: 700; margin: 0 auto 18px; }
.designer-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.designer-title { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bronze); margin-bottom: 18px; }
.designer-bio { border-top: 1px solid var(--border-light); padding-top: 16px; text-align: left; }
.designer-bio-placeholder { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; font-style: italic; margin: 0; }

/* TEAM FINAL CTA — matches the flat, gradient-free treatment used on about-cta / mp-final-cta */
.team-final-cta { padding: 100px 0; background: var(--charcoal); text-align: center; border-top: 1px solid rgba(196,151,42,0.15); }
.team-final-cta-inner { max-width: 600px; margin: 0 auto; }
.team-final-cta .section-title { color: #fff; margin-bottom: 20px; }
.team-final-cta .section-desc { color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.team-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .owner-inner { grid-template-columns: 1fr; gap: 48px; }
  .owner-card { position: static; max-width: 340px; margin: 0 auto; }
  .designers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .designers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .call-strip-actions { flex-direction: column; }
  .call-strip-actions .btn { width: 100%; justify-content: center; }
  .team-cta-actions { flex-direction: column; }
  .team-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── PROJECT GALLERY & CASE STUDIES — moved from a page-local <style> tag
   to master.css for reliability (in-content <style> tags can be stripped
   by some security plugins or Custom HTML block configurations) ── */
/* Case study cards -- merged from case-studies.html */
/* CASE STUDY CARDS */
.cs-list {padding:64px 0}
@media (max-width: 900px) {
  .cs-item, .cs-item-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cs-item-reverse .cs-item-photo,
  .cs-item-reverse .cs-item-content,
  .cs-item .cs-item-photo,
  .cs-item .cs-item-content {
    order: unset;
  }
  .cs-item .cs-item-photo,
  .cs-item-reverse .cs-item-photo {
    order: -1;
  }
  .cs-item-img, .cs-item-ph {
    height: 260px;
  }
  .cs-specs-grid {
    grid-template-columns: 1fr;
  }
}
.cs-item {display:grid;grid-template-columns:420px 1fr;gap:56px;align-items:start;margin-bottom:72px;padding-bottom:72px;border-bottom:1px solid var(--bronze-border)}
.cs-item:last-child {border-bottom:none;margin-bottom:0;padding-bottom:0}
.cs-item .cs-item-photo {order:1}
.cs-item .cs-item-content {order:2}
.cs-item-reverse {grid-template-columns:420px 1fr}
.cs-item-reverse .cs-item-photo {order:1}
.cs-item-reverse .cs-item-content {order:2}
.cs-item-photo {position:relative}
.cs-item-img {width:100%;height:340px;object-fit:cover;border-radius:6px;display:block}
.cs-item-ph {width:100%;height:340px;background:var(--charcoal);border-radius:6px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:12px}
.cs-item-ph-icon {font-size:48px;opacity:.15}
.cs-item-ph-label {font-size:11px;color:rgba(255,255,255,.2);text-align:center;padding:0 20px;font-weight:300}
.cs-item-tag {display:inline-block;background:var(--bronze-pale);border:1px solid var(--bronze-border);color:var(--bronze);font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:4px 12px;border-radius:100px;margin-bottom:14px}
.cs-item-content h2 {font-family:var(--font-display);font-size:26px;font-weight:700;color:var(--charcoal);line-height:1.2;margin-bottom:8px;letter-spacing:-.02em}
.cs-item-client {font-size:13px;color:var(--bronze);font-weight:600;margin-bottom:16px;display:block}
.cs-item-content p {font-size:15px;color:var(--text-body);line-height:1.8;font-weight:300;margin-bottom:14px}
.cs-item-content p:last-of-type {margin-bottom:20px}
.cs-specs {background:var(--off-white);border:1px solid var(--bronze-border);border-radius:6px;padding:18px 20px;margin-bottom:20px}
.cs-specs-title {font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--bronze);margin-bottom:10px;display:block}
.cs-specs-grid {display:grid;grid-template-columns:1fr 1fr;gap:8px 20px}
.cs-spec-item {font-size:13px}
.cs-spec-label {color:var(--text-muted);font-weight:400;display:block;font-size:11px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:2px}
.cs-spec-val {color:var(--charcoal);font-weight:600}
.cs-quote {border-left:3px solid var(--bronze-light);padding:14px 18px;background:var(--off-white);border-radius:0 4px 4px 0;margin-top:16px}
.cs-quote p {font-size:14px;font-style:italic;color:var(--text);line-height:1.7;margin:0 0 6px;font-weight:300}
.cs-quote cite {font-size:12px;color:var(--text-muted);font-style:normal;font-weight:600}
.cs-item,.cs-item-reverse {grid-template-columns:1fr}
.cs-item-reverse .cs-item-photo,.cs-item-reverse .cs-item-content {order:unset}
.cs-item-ph,.cs-item-img {height:240px}
.cs-specs-grid {grid-template-columns:1fr}

/* ── FINAL PAGES SHARED ── */
.fp-page-title { font-family:var(--font-display); font-size:clamp(34px,4.5vw,58px); font-weight:700; line-height:1.1; letter-spacing:-.025em; color:#fff; margin-bottom:24px; }
.fp-page-title em { font-style:normal; color:var(--bronze-light); }
.fp-page-lead { font-size:17px; color:rgba(255,255,255,.65); line-height:1.8; font-weight:300; margin-bottom:18px; max-width:540px; }
.fp-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }

/* COST PAGE */
.fp-cost-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-cost-hero-inner { display:grid; grid-template-columns:1fr 380px; gap:64px; align-items:start; padding-top:0; }
.fp-cost-summary { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:28px; }
.fp-cost-summary-title { font-family:var(--font-display); font-size:18px; font-weight:600; color:#fff; margin-bottom:20px; }
.fp-cost-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(196,151,42,.12); font-size:14px; color:rgba(255,255,255,.65); }
.fp-cost-row:last-of-type { border-bottom:none; }
.fp-cost-row-hl { color:#fff; }
.fp-cost-val { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--bronze-light); white-space:nowrap; }
.fp-cost-summary-note { font-size:12px; color:rgba(255,255,255,.35); margin-top:16px; font-style:italic; line-height:1.6; }
.fp-cost-factors { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-factors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.fp-factor { background:#fff; border:1px solid var(--border-light); border-radius:8px; padding:28px; }
.fp-factor-num { font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--bronze-pale); line-height:1; display:block; margin-bottom:10px; }
.fp-factor-title { font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--charcoal); margin-bottom:10px; }
.fp-factor-desc { font-size:14px; color:var(--text-muted); line-height:1.7; font-weight:300; margin:0; }
.fp-cost-tables { padding:100px 0; background:var(--off-white); border-top:1px solid var(--border-light); }
.fp-cost-notes { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:32px; }
.fp-cost-note { background:#fff; border:1px solid var(--border-light); border-radius:6px; padding:20px; display:flex; gap:14px; }
.fp-note-icon { font-size:22px; flex-shrink:0; }
.fp-cost-note strong { font-size:14px; font-weight:600; color:var(--charcoal); display:block; margin-bottom:6px; }
.fp-cost-note p { font-size:13px; color:var(--text-muted); line-height:1.6; margin:0; font-weight:300; }
.fp-cost-value { padding:100px 0; background:var(--charcoal); position:relative; overflow:hidden; }
.fp-cost-value::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(196,151,42,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(196,151,42,.03) 1px,transparent 1px); background-size:48px 48px; pointer-events:none; }
.fp-cost-value-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 360px; gap:72px; align-items:start; }
.fp-value-examples { display:flex; gap:24px; margin-top:32px; flex-wrap:wrap; }
.fp-value-ex { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:24px; flex:1; min-width:180px; }
.fp-value-price { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--bronze-light); display:block; margin-bottom:8px; }
.fp-value-label { font-size:13px; color:rgba(255,255,255,.55); display:block; margin-bottom:12px; line-height:1.5; }
.fp-value-math { font-size:13.5px; color:rgba(255,255,255,.75); }
.fp-value-math strong { color:#fff; }
.fp-cost-faq { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:28px; }
.fp-cost-faq-title { font-family:var(--font-display); font-size:19px; font-weight:600; color:#fff; margin-bottom:20px; }
.fp-cost-faq-item { padding:14px 0; border-bottom:1px solid rgba(196,151,42,.12); }
.fp-cost-faq-item:last-child { border-bottom:none; }
.fp-cost-faq-item h4 { font-size:14.5px; font-weight:600; color:#fff; margin-bottom:6px; }
.fp-cost-faq-item p { font-size:13.5px; color:rgba(255,255,255,.55); line-height:1.6; margin:0; font-weight:300; }

/* PROCESS PAGE */
.fp-process-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-process-pills { display:flex; flex-direction:column; gap:10px; }
.fp-steps { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-step-list { display:flex; flex-direction:column; gap:72px; }
.fp-step { display:grid; grid-template-columns:80px 1fr 380px; gap:40px; align-items:start; }
.fp-step-reverse { direction:rtl; }
.fp-step-reverse > * { direction:ltr; }
.fp-step-num-col { display:flex; flex-direction:column; align-items:center; padding-top:8px; }
.fp-step-circle { width:52px; height:52px; background:var(--charcoal); color:var(--bronze-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:22px; font-weight:700; flex-shrink:0; }
.fp-step-circle-final { background:var(--bronze); color:#fff; }
.fp-step-line { width:2px; flex:1; background:var(--border-light); margin:12px 0; min-height:60px; }
.fp-step-title { font-family:var(--font-display); font-size:clamp(20px,2.2vw,26px); font-weight:700; color:var(--charcoal); margin-bottom:16px; letter-spacing:-.02em; }
.fp-step-desc { font-size:15.5px; color:var(--text-body); line-height:1.8; font-weight:300; margin-bottom:16px; }
.fp-step-tip { background:var(--bronze-pale); border:1px solid var(--bronze-border); border-radius:6px; padding:14px 18px; display:flex; gap:12px; margin-top:8px; }
.fp-step-tip-icon { font-size:18px; flex-shrink:0; }
.fp-step-tip p { font-size:13.5px; color:var(--text-body); line-height:1.6; margin:0; font-weight:300; }
.fp-step-photo { border-radius:8px; overflow:hidden; }
.fp-step-photo img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
.fp-step-ph { background:var(--charcoal-mid); border:1px solid rgba(196,151,42,.15); border-radius:8px; aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
.fp-step-ph-icon { font-size:40px; opacity:.25; }
.fp-step-ph-label { font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.2); text-align:center; padding:0 16px; }
.fp-process-guarantee { padding:100px 0; background:var(--charcoal); }
.fp-proc-guarantee-inner { display:grid; grid-template-columns:1fr 340px; gap:72px; align-items:center; }
.fp-proc-guarantee-card { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.25); border-radius:8px; padding:36px; }
.fp-proc-guarantee-icon { width:64px; height:64px; background:rgba(196,151,42,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--bronze-light); margin-bottom:20px; }
.fp-proc-guarantee-card h3 { font-family:var(--font-display); font-size:22px; font-weight:600; color:#fff; margin-bottom:14px; }
.fp-proc-guarantee-card p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:16px; font-weight:300; }
.fp-guarantee-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.fp-guarantee-list li { font-size:14px; color:rgba(255,255,255,.75); padding-left:20px; position:relative; }
.fp-guarantee-list li::before { content:""; position:absolute; left:0; color:var(--bronze-light); font-weight:700; }

/* GALLERY PAGE */
.fp-gal-hero { background:var(--charcoal); padding:72px 0 56px; }
.fp-gallery-section { padding:60px 0 100px; background:var(--warm-white); }
.gal-filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.gal-filter-btn { font-family:var(--font-body); font-size:13px; font-weight:600; padding:8px 16px; border:1px solid var(--border-light); border-radius:100px; background:#fff; color:var(--text-muted); cursor:pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.gal-filter-btn:hover { border-color:var(--bronze-border); color:var(--bronze); background:var(--bronze-pale); }
.gal-filter-active { background:var(--charcoal) !important; color:var(--bronze-light) !important; border-color:var(--charcoal) !important; }
.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gal-card { background:#fff; border:1px solid var(--border-light); border-radius:8px; overflow:hidden; transition:border-color .2s,box-shadow .2s,transform .2s; }
.gal-card:hover { border-color:var(--bronze-border); box-shadow:var(--shadow-card); transform:translateY(-2px); }
.gal-card-photo { aspect-ratio:4/3; overflow:hidden; }
.gal-card-photo img { width:100%; height:100%; object-fit:cover; }

.gal-card-ph { background:var(--charcoal-mid); display:flex; align-items:center; justify-content:center; }
.gal-card-icon { font-size:40px; opacity:.25; }
.gal-card-body { padding:20px; }
.gal-card-cat { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--bronze); display:block; margin-bottom:8px; }
.gal-card-title { font-family:var(--font-display); font-size:16px; font-weight:600; color:var(--charcoal); margin-bottom:6px; line-height:1.3; }
.gal-card-desc { font-size:13px; color:var(--text-muted); line-height:1.6; margin:0; font-weight:300; }
.gal-cta-strip { background:var(--charcoal); border-radius:8px; padding:32px 40px; display:flex; align-items:center; justify-content:space-between; gap:40px; margin-top:48px; }
.gal-cta-strip p { font-size:15px; color:rgba(255,255,255,.65); font-weight:300; max-width:540px; margin:0; }
.gal-no-results { text-align:center; padding:80px 24px; color:var(--text-muted); font-size:16px; }
.gal-no-results a { color:var(--bronze); font-weight:600; }

/* CONTACT PAGE */
.fp-contact-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-contact-hero-inner { display:grid; grid-template-columns:1fr 480px; gap:64px; align-items:start; }
.fp-contact-direct { display:flex; flex-direction:column; gap:12px; margin:32px 0; }
.fp-contact-option { display:flex; align-items:center; gap:16px; background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.18); border-radius:8px; padding:16px 20px; text-decoration:none; transition:border-color .2s,background .2s; }
.fp-contact-option:hover { border-color:rgba(196,151,42,.4); background:rgba(255,255,255,.07); }
.fp-contact-icon { font-size:22px; flex-shrink:0; }
.fp-contact-type { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); display:block; margin-bottom:3px; }
.fp-contact-value { font-size:16px; font-weight:600; color:#fff; display:block; }
.fp-contact-phone .fp-contact-value { font-size:20px; color:var(--bronze-light); }
.fp-contact-hours { margin-top:28px; padding-top:24px; border-top:1px solid rgba(196,151,42,.15); }
.fp-contact-hours-title { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.fp-contact-hours p { font-size:15px; color:rgba(255,255,255,.7); margin-bottom:4px; font-weight:300; }
.fp-contact-address { margin-top:24px; }
.fp-contact-addr-title { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.fp-contact-address address { font-style:normal; font-size:14px; color:rgba(255,255,255,.55) !important; line-height:1.8; font-weight:300; }
.fp-form-card { background:#fff; border:1px solid var(--border-light); border-radius:8px; padding:36px; }
.fp-form-title { font-family:var(--font-display); font-size:24px; font-weight:600; color:var(--charcoal); margin-bottom:8px; }
.fp-form-sub { font-size:14px; color:var(--text-muted); margin-bottom:28px; font-weight:300; line-height:1.6; }
.fp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fp-form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.fp-form-group label { font-size:13px; font-weight:600; color:var(--charcoal); }
.fp-form-group input, .fp-form-group select, .fp-form-group textarea { font-family:var(--font-body); font-size:14px; color:var(--charcoal); background:#fff; border:1px solid var(--border-light); border-radius:6px; padding:10px 14px; transition:border-color .2s,box-shadow .2s; width:100%; box-sizing:border-box; }
.fp-form-group input:focus, .fp-form-group select:focus, .fp-form-group textarea:focus { outline:none; border-color:var(--bronze); box-shadow:0 0 0 3px rgba(139,105,20,.12); }
.fp-form-group textarea { resize:vertical; min-height:120px; }
.fp-form-privacy { font-size:12px; color:var(--text-muted); text-align:center; margin-top:14px; font-weight:300; }
.fp-contact-next { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-next-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:40px; }
.fp-next-step { text-align:center; padding:0 8px; }
.fp-next-num { width:44px; height:44px; background:var(--charcoal); color:var(--bronze-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:18px; font-weight:700; margin:0 auto 16px; }
.fp-next-step h3 { font-family:var(--font-display); font-size:17px; font-weight:600; color:var(--charcoal); margin-bottom:10px; }
.fp-next-step p { font-size:14px; color:var(--text-muted); line-height:1.65; font-weight:300; margin:0; }
.fp-contact-no-salespeople { background:var(--charcoal); border-radius:8px; padding:32px 40px; display:flex; gap:24px; align-items:flex-start; }
.fp-no-sp-icon { font-size:28px; flex-shrink:0; margin-top:4px; }
.fp-contact-no-salespeople h3 { font-family:var(--font-display); font-size:20px; font-weight:600; color:#fff; margin-bottom:10px; }
.fp-contact-no-salespeople p { font-size:14.5px; color:rgba(255,255,255,.6); line-height:1.7; margin:0; font-weight:300; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .fp-cost-hero-inner,.fp-cost-value-inner,.fp-proc-guarantee-inner,.fp-contact-hero-inner { grid-template-columns:1fr; gap:48px; }
  .fp-factors-grid { grid-template-columns:1fr 1fr; }
  .fp-cost-notes { grid-template-columns:1fr 1fr; }
  .fp-step { grid-template-columns:60px 1fr; gap:24px; }
  .fp-step-photo { display:none; }
  .fp-step-reverse { direction:ltr; }
  .gal-grid { grid-template-columns:1fr 1fr; }
  .fp-next-steps { grid-template-columns:1fr 1fr; }
  .fp-hero-inner { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .fp-factors-grid,.fp-cost-notes { grid-template-columns:1fr; }
  .fp-form-row { grid-template-columns:1fr; }
  .gal-grid { grid-template-columns:1fr; }
  .fp-next-steps { grid-template-columns:1fr; }
  .gal-cta-strip,.fp-contact-no-salespeople { flex-direction:column; }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── CONTACT PAGE — moved from a page-local <style> tag to master.css
   per request: no more separate page-specific CSS to paste ── */
/* ── FINAL PAGES SHARED ── */
.fp-page-title { font-family:var(--font-display); font-size:clamp(34px,4.5vw,58px); font-weight:700; line-height:1.1; letter-spacing:-.025em; color:#fff; margin-bottom:24px; }
.fp-page-title em { font-style:normal; color:var(--bronze-light); }
.fp-page-lead { font-size:17px; color:rgba(255,255,255,.65); line-height:1.8; font-weight:300; margin-bottom:18px; max-width:540px; }
.fp-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }

/* COST PAGE */
.fp-cost-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-cost-hero-inner { display:grid; grid-template-columns:1fr 380px; gap:64px; align-items:start; padding-top:0; }
.fp-cost-summary { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:28px; }
.fp-cost-summary-title { font-family:var(--font-display); font-size:18px; font-weight:600; color:#fff; margin-bottom:20px; }
.fp-cost-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(196,151,42,.12); font-size:14px; color:rgba(255,255,255,.65); }
.fp-cost-row:last-of-type { border-bottom:none; }
.fp-cost-row-hl { color:#fff; }
.fp-cost-val { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--bronze-light); white-space:nowrap; }
.fp-cost-summary-note { font-size:12px; color:rgba(255,255,255,.35); margin-top:16px; font-style:italic; line-height:1.6; }
.fp-cost-factors { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-factors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.fp-factor { background:#fff; border:1px solid var(--border-light); border-radius:8px; padding:28px; }
.fp-factor-num { font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--bronze-pale); line-height:1; display:block; margin-bottom:10px; }
.fp-factor-title { font-family:var(--font-display); font-size:19px; font-weight:600; color:var(--charcoal); margin-bottom:10px; }
.fp-factor-desc { font-size:14px; color:var(--text-muted); line-height:1.7; font-weight:300; margin:0; }
.fp-cost-tables { padding:100px 0; background:var(--off-white); border-top:1px solid var(--border-light); }
.fp-cost-notes { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:32px; }
.fp-cost-note { background:#fff; border:1px solid var(--border-light); border-radius:6px; padding:20px; display:flex; gap:14px; }
.fp-note-icon { font-size:22px; flex-shrink:0; }
.fp-cost-note strong { font-size:14px; font-weight:600; color:var(--charcoal); display:block; margin-bottom:6px; }
.fp-cost-note p { font-size:13px; color:var(--text-muted); line-height:1.6; margin:0; font-weight:300; }
.fp-cost-value { padding:100px 0; background:var(--charcoal); position:relative; overflow:hidden; }
.fp-cost-value::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(196,151,42,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(196,151,42,.03) 1px,transparent 1px); background-size:48px 48px; pointer-events:none; }
.fp-cost-value-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 360px; gap:72px; align-items:start; }
.fp-value-examples { display:flex; gap:24px; margin-top:32px; flex-wrap:wrap; }
.fp-value-ex { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:24px; flex:1; min-width:180px; }
.fp-value-price { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--bronze-light); display:block; margin-bottom:8px; }
.fp-value-label { font-size:13px; color:rgba(255,255,255,.55); display:block; margin-bottom:12px; line-height:1.5; }
.fp-value-math { font-size:13.5px; color:rgba(255,255,255,.75); }
.fp-value-math strong { color:#fff; }
.fp-cost-faq { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.2); border-radius:8px; padding:28px; }
.fp-cost-faq-title { font-family:var(--font-display); font-size:19px; font-weight:600; color:#fff; margin-bottom:20px; }
.fp-cost-faq-item { padding:14px 0; border-bottom:1px solid rgba(196,151,42,.12); }
.fp-cost-faq-item:last-child { border-bottom:none; }
.fp-cost-faq-item h4 { font-size:14.5px; font-weight:600; color:#fff; margin-bottom:6px; }
.fp-cost-faq-item p { font-size:13.5px; color:rgba(255,255,255,.55); line-height:1.6; margin:0; font-weight:300; }

/* PROCESS PAGE */
.fp-process-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-process-pills { display:flex; flex-direction:column; gap:10px; }
.fp-steps { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-step-list { display:flex; flex-direction:column; gap:72px; }
.fp-step { display:grid; grid-template-columns:80px 1fr 380px; gap:40px; align-items:start; }
.fp-step-reverse { direction:rtl; }
.fp-step-reverse > * { direction:ltr; }
.fp-step-num-col { display:flex; flex-direction:column; align-items:center; padding-top:8px; }
.fp-step-circle { width:52px; height:52px; background:var(--charcoal); color:var(--bronze-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:22px; font-weight:700; flex-shrink:0; }
.fp-step-circle-final { background:var(--bronze); color:#fff; }
.fp-step-line { width:2px; flex:1; background:var(--border-light); margin:12px 0; min-height:60px; }
.fp-step-title { font-family:var(--font-display); font-size:clamp(20px,2.2vw,26px); font-weight:700; color:var(--charcoal); margin-bottom:16px; letter-spacing:-.02em; }
.fp-step-desc { font-size:15.5px; color:var(--text-body); line-height:1.8; font-weight:300; margin-bottom:16px; }
.fp-step-tip { background:var(--bronze-pale); border:1px solid var(--bronze-border); border-radius:6px; padding:14px 18px; display:flex; gap:12px; margin-top:8px; }
.fp-step-tip-icon { font-size:18px; flex-shrink:0; }
.fp-step-tip p { font-size:13.5px; color:var(--text-body); line-height:1.6; margin:0; font-weight:300; }
.fp-step-photo { border-radius:8px; overflow:hidden; }
.fp-step-photo img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
.fp-step-ph { background:var(--charcoal-mid); border:1px solid rgba(196,151,42,.15); border-radius:8px; aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
.fp-step-ph-icon { font-size:40px; opacity:.25; }
.fp-step-ph-label { font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.2); text-align:center; padding:0 16px; }
.fp-process-guarantee { padding:100px 0; background:var(--charcoal); }
.fp-proc-guarantee-inner { display:grid; grid-template-columns:1fr 340px; gap:72px; align-items:center; }
.fp-proc-guarantee-card { background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.25); border-radius:8px; padding:36px; }
.fp-proc-guarantee-icon { width:64px; height:64px; background:rgba(196,151,42,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--bronze-light); margin-bottom:20px; }
.fp-proc-guarantee-card h3 { font-family:var(--font-display); font-size:22px; font-weight:600; color:#fff; margin-bottom:14px; }
.fp-proc-guarantee-card p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:16px; font-weight:300; }
.fp-guarantee-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.fp-guarantee-list li { font-size:14px; color:rgba(255,255,255,.75); padding-left:20px; position:relative; }
.fp-guarantee-list li::before { content:""; position:absolute; left:0; color:var(--bronze-light); font-weight:700; }

/* GALLERY PAGE */
.fp-gal-hero { background:var(--charcoal); padding:72px 0 56px; }
.fp-gallery-section { padding:60px 0 100px; background:var(--warm-white); }
.gal-filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.gal-filter-btn { font-family:var(--font-body); font-size:13px; font-weight:600; padding:8px 16px; border:1px solid var(--border-light); border-radius:100px; background:#fff; color:var(--text-muted); cursor:pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.gal-filter-btn:hover { border-color:var(--bronze-border); color:var(--bronze); background:var(--bronze-pale); }
.gal-filter-active { background:var(--charcoal) !important; color:var(--bronze-light) !important; border-color:var(--charcoal) !important; }
.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gal-card { background:#fff; border:1px solid var(--border-light); border-radius:8px; overflow:hidden; transition:border-color .2s,box-shadow .2s,transform .2s; }
.gal-card:hover { border-color:var(--bronze-border); box-shadow:var(--shadow-card); transform:translateY(-2px); }
.gal-card-photo { aspect-ratio:4/3; overflow:hidden; }
.gal-card-photo img { width:100%; height:100%; object-fit:cover; }

.gal-card-ph { background:var(--charcoal-mid); display:flex; align-items:center; justify-content:center; }
.gal-card-icon { font-size:40px; opacity:.25; }
.gal-card-body { padding:20px; }
.gal-card-cat { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--bronze); display:block; margin-bottom:8px; }
.gal-card-title { font-family:var(--font-display); font-size:16px; font-weight:600; color:var(--charcoal); margin-bottom:6px; line-height:1.3; }
.gal-card-desc { font-size:13px; color:var(--text-muted); line-height:1.6; margin:0; font-weight:300; }
.gal-cta-strip { background:var(--charcoal); border-radius:8px; padding:32px 40px; display:flex; align-items:center; justify-content:space-between; gap:40px; margin-top:48px; }
.gal-cta-strip p { font-size:15px; color:rgba(255,255,255,.65); font-weight:300; max-width:540px; margin:0; }
.gal-no-results { text-align:center; padding:80px 24px; color:var(--text-muted); font-size:16px; }
.gal-no-results a { color:var(--bronze); font-weight:600; }

/* CONTACT PAGE */
.fp-contact-hero { background:var(--charcoal); padding:80px 0 72px; }
.fp-contact-hero-inner { display:grid; grid-template-columns:1fr 480px; gap:64px; align-items:start; }
.fp-contact-direct { display:flex; flex-direction:column; gap:12px; margin:32px 0; }
.fp-contact-option { display:flex; align-items:center; gap:16px; background:rgba(255,255,255,.04); border:1px solid rgba(196,151,42,.18); border-radius:8px; padding:16px 20px; text-decoration:none; transition:border-color .2s,background .2s; }
.fp-contact-option:hover { border-color:rgba(196,151,42,.4); background:rgba(255,255,255,.07); }
.fp-contact-icon { font-size:22px; flex-shrink:0; }
.fp-contact-type { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); display:block; margin-bottom:3px; }
.fp-contact-value { font-size:16px; font-weight:600; color:#fff; display:block; }
.fp-contact-phone .fp-contact-value { font-size:20px; color:var(--bronze-light); }
.fp-contact-hours { margin-top:28px; padding-top:24px; border-top:1px solid rgba(196,151,42,.15); }
.fp-contact-hours-title { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
.fp-contact-hours p { font-size:15px; color:rgba(255,255,255,.7); margin-bottom:4px; font-weight:300; }
.fp-contact-address { margin-top:24px; }
.fp-contact-addr-title { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:8px; }
address { font-style:normal; font-size:14px; color:rgba(255,255,255,.55); line-height:1.8; font-weight:300; }
.fp-form-card { background:#fff; border:1px solid var(--border-light); border-radius:8px; padding:36px; }
.fp-form-title { font-family:var(--font-display); font-size:24px; font-weight:600; color:var(--charcoal); margin-bottom:8px; }
.fp-form-sub { font-size:14px; color:var(--text-muted); margin-bottom:28px; font-weight:300; line-height:1.6; }
.fp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fp-form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.fp-form-group label { font-size:13px; font-weight:600; color:var(--charcoal); }
.fp-form-group input, .fp-form-group select, .fp-form-group textarea { font-family:var(--font-body); font-size:14px; color:var(--charcoal); background:#fff; border:1px solid var(--border-light); border-radius:6px; padding:10px 14px; transition:border-color .2s,box-shadow .2s; width:100%; box-sizing:border-box; }
.fp-form-group input:focus, .fp-form-group select:focus, .fp-form-group textarea:focus { outline:none; border-color:var(--bronze); box-shadow:0 0 0 3px rgba(139,105,20,.12); }
.fp-form-group textarea { resize:vertical; min-height:120px; }
.fp-form-privacy { font-size:12px; color:var(--text-muted); text-align:center; margin-top:14px; font-weight:300; }
.fp-contact-next { padding:100px 0; background:var(--warm-white); border-top:1px solid var(--border-light); }
.fp-next-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:40px; }
.fp-next-step { text-align:center; padding:0 8px; }
.fp-next-num { width:44px; height:44px; background:var(--charcoal); color:var(--bronze-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:18px; font-weight:700; margin:0 auto 16px; }
.fp-next-step h3 { font-family:var(--font-display); font-size:17px; font-weight:600; color:var(--charcoal); margin-bottom:10px; }
.fp-next-step p { font-size:14px; color:var(--text-muted); line-height:1.65; font-weight:300; margin:0; }
.fp-contact-no-salespeople { background:var(--charcoal); border-radius:8px; padding:32px 40px; display:flex; gap:24px; align-items:flex-start; }
.fp-no-sp-icon { font-size:28px; flex-shrink:0; margin-top:4px; }
.fp-contact-no-salespeople h3 { font-family:var(--font-display); font-size:20px; font-weight:600; color:#fff; margin-bottom:10px; }
.fp-contact-no-salespeople p { font-size:14.5px; color:rgba(255,255,255,.6); line-height:1.7; margin:0; font-weight:300; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .fp-cost-hero-inner,.fp-cost-value-inner,.fp-proc-guarantee-inner,.fp-contact-hero-inner { grid-template-columns:1fr; gap:48px; }
  .fp-factors-grid { grid-template-columns:1fr 1fr; }
  .fp-cost-notes { grid-template-columns:1fr 1fr; }
  .fp-step { grid-template-columns:60px 1fr; gap:24px; }
  .fp-step-photo { display:none; }
  .fp-step-reverse { direction:ltr; }
  .gal-grid { grid-template-columns:1fr 1fr; }
  .fp-next-steps { grid-template-columns:1fr 1fr; }
  .fp-hero-inner { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .fp-factors-grid,.fp-cost-notes { grid-template-columns:1fr; }
  .fp-form-row { grid-template-columns:1fr; }
  .gal-grid { grid-template-columns:1fr; }
  .fp-next-steps { grid-template-columns:1fr; }
  .gal-cta-strip,.fp-contact-no-salespeople { flex-direction:column; }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* Contact — no-form layout: single column, narrowed width */
.fp-contact-single-col {
  grid-template-columns: 1fr !important;
  max-width: 700px;
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Contact page: no form -- phone and email emphasized as the primary
   way to reach out, single-column layout */
.fp-contact-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 20px;
}
.fp-contact-primary-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bronze);
  border-radius: 8px;
  padding: 22px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.fp-contact-primary-card:hover {
  background: var(--bronze-light);
  transform: translateY(-2px);
}
.fp-contact-primary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.fp-contact-primary-value {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  word-break: break-word;
}
.fp-contact-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(196,151,42,0.15);
}
.fp-contact-secondary-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
}
.fp-contact-secondary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.fp-contact-secondary-row a,
.fp-contact-secondary-row span:not(.fp-contact-secondary-label) {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.fp-contact-secondary-row a:hover { color: #fff; }
@media (max-width: 560px) {
  .fp-contact-primary { grid-template-columns: 1fr; }
}

/* ======================= PART 2 - HOMEPAGE (FINAL) ======================== */

/* ── HOMEPAGE — COMPLETE REWRITE ── */

/* HERO */
.hp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hp-hero-bg-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1408 0%, #2E2E30 50%, #1e1a10 100%);
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,4,0.85) 0%, rgba(10,8,4,0.4) 50%, rgba(10,8,4,0.2) 100%);
  z-index: 1;
}
.hp-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: flex-end;
}
.hp-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-light);
  display: block;
  margin-bottom: 20px;
}
.hp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hp-hero-title em { font-style: normal; color: var(--bronze-light); }
.hp-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 36px;
}
.hp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
  background: rgba(196,151,42,0.08);
}
.hp-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(196,151,42,0.2);
  border-radius: 8px;
  overflow: hidden;
  min-width: 240px;
  align-self: flex-end;
}
.hp-stat {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hp-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--bronze-light);
  line-height: 1;
}
.hp-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.3;
}

/* LANDMARK PROJECTS */
.hp-projects { padding: 56px 0 0; background: var(--charcoal); }
.hp-projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.hp-projects-header .section-title { color: #fff; margin-bottom: 0; }
.hp-projects-header .divider { background: var(--bronze-light); }
.hp-projects-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 4px;
}
.hp-proj {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.hp-proj-featured {
  grid-row: 1 / 3;
}
.hp-proj-photo {
  position: absolute;
  inset: 0;
}
.hp-proj-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.hp-proj:hover .hp-proj-overlay { background: linear-gradient(to top, rgba(15,10,2,0.92) 0%, rgba(15,10,2,0.35) 55%, rgba(15,10,2,0.12) 100%); }
.hp-proj:hover .hp-proj-tag { color: var(--bronze-light); }
.hp-proj-ph {
  width: 100%;
  height: 100%;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-proj-ph-icon { font-size: 48px; opacity: 0.15; }
.hp-proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.hp-proj-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.hp-proj-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
  display: block;
  margin-bottom: 6px;
}
.hp-proj-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0;
}
.hp-proj-featured .hp-proj-title { font-size: 26px; }
.hp-proj-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.4;
}

/* PRODUCT CATEGORIES */
.hp-categories { padding: 96px 0; background: var(--warm-white); }
.hp-categories-header { text-align: center; margin-bottom: 48px; }
.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.hp-cat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hp-cat-card:hover {
  border-color: var(--bronze-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.hp-cat-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hp-cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.hp-cat-card:hover { border-color: var(--bronze-border); }
.hp-cat-card:hover .hp-cat-arrow { transform: translateX(4px); color: var(--bronze); }
.hp-cat-ph {
  width: 100%;
  height: 100%;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-cat-ph-icon { font-size: 28px; opacity: 0.2; }
.hp-cat-body {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hp-cat-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.hp-cat-arrow {
  font-size: 14px;
  color: var(--bronze);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hp-cat-card:hover .hp-cat-arrow { transform: translateX(3px); }
/* "See All" card */
.hp-cat-card-all {
  background: var(--charcoal);
  border-color: var(--charcoal);
  justify-content: center;
}
.hp-cat-body-all {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
  flex: 1;
}
.hp-cat-title-all {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--bronze-light);
  line-height: 1.4;
  display: block;
  margin-bottom: 10px;
}
.hp-cat-arrow-all {
  font-size: 20px;
  color: var(--bronze-light);
}
.hp-cat-card-all:hover {
  background: #1a1408;
  border-color: var(--bronze);
  transform: translateY(-3px);
}

/* LEGACY */
.hp-legacy {
  padding: 128px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.hp-legacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(196,151,42,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(196,151,42,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hp-legacy-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}
.hp-legacy-video-caption { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; text-align: center; line-height: 1.6; }
@media (max-width: 900px) { .hp-legacy-inner { grid-template-columns: 1fr; gap: 40px; } .hp-video-vertical { max-width: 340px; } }

/* Dedicated video sections -- large, standalone, not squeezed into side columns */
.hp-video-section { padding: 90px 0; text-align: center; }
.hp-news { background: var(--charcoal); padding: 128px 0; }
.hp-video-section-header { max-width: 640px; margin: 0 auto 44px; }
.hp-video-news { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; background: var(--charcoal-mid); box-shadow: 0 24px 60px rgba(0,0,0,0.25); }
.hp-video-news iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.hp-video-vertical { position: relative; width: 100%; max-width: 420px; margin: 0 auto; padding-bottom: 177.78%; height: 0; overflow: hidden; border-radius: 14px; background: var(--charcoal-mid); box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.hp-video-vertical iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.hp-video-cta { margin-top: 32px; }
.hp-legacy-body {
  font-size: 16px;
  color: rgba(255,255,255,0.76);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.hp-legacy-certs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.hp-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
}
.hp-cert-icon { font-size: 16px; }
.hp-legacy-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,42,0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hp-legacy-ph-icon { font-size: 40px; opacity: 0.2; }
.hp-legacy-ph-label {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding: 0 16px;
  font-weight: 300;
}
/* PROCESS */
.hp-process { padding: 96px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.hp-process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.hp-process-step { text-align: center; padding: 0 20px; }
.hp-process-num {
  width: 52px;
  height: 52px;
  background: var(--charcoal);
  color: var(--bronze-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.hp-process-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.hp-process-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.hp-process-divider {
  font-size: 24px;
  color: var(--bronze-border);
  padding: 0 8px;
  padding-top: 0;
  margin-top: -32px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hp-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hp-hero-content { grid-template-columns: 1fr; }
  .hp-hero-stats { grid-template-columns: repeat(4, 1fr); min-width: 0; }
  .hp-projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
  }
  .hp-proj-featured { grid-row: auto; }
  
  .hp-process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 32px;
  }
  .hp-process-divider { transform: rotate(90deg); }
}
@media (max-width: 768px) {
  .hp-hero { min-height: 100svh; padding-bottom: 48px; }
  .hp-hero-title { font-size: clamp(36px,8vw,52px); }
  .hp-hero-actions { flex-direction: column; }
  .hp-hero-actions .btn { width: 100%; justify-content: center; }
  .hp-hero-stats { grid-template-columns: 1fr 1fr; }
  .hp-projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hp-proj { min-height: 260px; }
  .hp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* VALUE BAR */
.hp-value-bar{background:var(--charcoal);border-bottom:1px solid rgba(196,151,42,0.2);padding:10px 0}
.hp-value-bar-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap}
.hp-value-item{font-size:12.5px;color:rgba(255,255,255,0.65);font-weight:300;line-height:1.4}
.hp-value-item strong{color:var(--bronze-light);font-weight:600}
.hp-value-sep{color:rgba(196,151,42,0.3);font-size:10px}

/* HERO PRECTA */
.hp-hero-precta{margin-bottom:20px}
.hp-hero-precta-link{display:inline-flex;align-items:center;gap:8px;background:rgba(196,151,42,0.15);border:1px solid rgba(196,151,42,0.4);border-radius:100px;padding:8px 18px 8px 12px;color:var(--bronze-light);text-decoration:none;font-size:14px;font-weight:400;transition:background 0.2s,border-color 0.2s}
.hp-hero-precta-link:hover{background:rgba(196,151,42,0.25);border-color:var(--bronze-light)}
.hp-hero-precta-link strong{font-weight:700}
.hp-hero-precta-icon{font-size:16px}

/* HERO QUESTION */
.hp-hero-question{margin-top:28px;padding-top:24px;border-top:1px solid rgba(255,255,255,0.1)}
.hp-hero-question-label{display:block;font-size:12px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.4);margin-bottom:10px}
.hp-hero-question-options{display:flex;flex-wrap:wrap;gap:8px}
.hp-hero-q-opt{padding:7px 16px;border:1px solid rgba(255,255,255,0.2);border-radius:100px;font-size:13.5px;color:rgba(255,255,255,0.75);text-decoration:none;transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out), transform 0.15s var(--ease-out);white-space:nowrap}
.hp-hero-q-opt:hover{border-color:var(--bronze-light);color:var(--bronze-light);background:rgba(196,151,42,0.08)}
.hp-hero-q-opt-more{color:var(--bronze-light);border-color:rgba(196,151,42,0.4)}

/* HERO PILLARS */
.hp-hero-pillars{display:flex;flex-direction:column;gap:2px;background:rgba(196,151,42,0.15);border-radius:10px;overflow:hidden;min-width:280px;max-width:320px;align-self:center;backdrop-filter:blur(8px)}
.hp-pillar{background:rgba(0,0,0,0.35);padding:16px 20px;display:flex;align-items:flex-start;gap:14px}
.hp-pillar:last-child{background:rgba(139,105,20,0.18)}
.hp-pillar-icon{font-size:20px;flex-shrink:0;margin-top:2px}
.hp-pillar-text{display:flex;flex-direction:column;gap:3px}
.hp-pillar-text strong{font-size:13.5px;font-weight:700;color:#fff;line-height:1.2}
.hp-pillar-text span{font-size:12px;color:rgba(255,255,255,0.68);line-height:1.4;font-weight:300}

@media(max-width:768px){
  .hp-value-sep{display:none}
  .hp-value-item:not(:first-child){display:none}
  .hp-hero-pillars{max-width:100%;min-width:0}
  .hp-hero-question-options{gap:6px}
  .hp-hero-q-opt{font-size:13px;padding:6px 12px}
}


/* Pillars — title-only mode */
.hp-pillar { padding: 14px 18px; }
.hp-pillar-text strong { font-size: 14px; }
.hp-pillar-text span { display: none; }


/* ── FROM THE BLOG ───────────────────────────────────────────────────────── */
.hp-blog { padding: 112px 0; background: var(--warm-white); border-top: 1px solid var(--border-light); }
.hp-blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 24px; }
.hp-blog-header-text h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--charcoal); letter-spacing: -.02em; line-height: 1.15; }
.hp-blog-header-text p { font-size: 15px; color: var(--text-muted); font-weight: 300; margin-top: 6px; }
.hp-blog-all { font-size: 13.5px; font-weight: 700; color: var(--bronze); text-decoration: none; white-space: nowrap; letter-spacing: .03em; display: flex; align-items: center; gap: 6px; }
.hp-blog-all:hover { color: var(--charcoal); }
.hp-blog-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 20px; }
.hp-blog-featured { display: flex; flex-direction: column; border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; text-decoration: none; background: #fff; transition: box-shadow .25s, transform .25s; }
.hp-blog-featured:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.hp-blog-featured-img { background: var(--charcoal); height: 220px; display: flex; align-items: center; justify-content: center; font-size: 48px; opacity: .3; position: relative; overflow: hidden; }
.hp-blog-featured-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(139,105,20,.12) 0%, transparent 70%); }
.hp-blog-featured-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.hp-blog-tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); display: block; margin-bottom: 8px; }
.hp-blog-featured-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--charcoal); line-height: 1.3; margin-bottom: 10px; letter-spacing: -.01em; }
.hp-blog-featured-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; margin-bottom: 16px; flex: 1; }
.hp-blog-read { font-size: 13px; font-weight: 700; color: var(--bronze); letter-spacing: .03em; }
.hp-blog-card { display: flex; flex-direction: column; border: 1px solid var(--border-light); border-top: 3px solid var(--bronze); border-radius: 8px; padding: 22px 22px 20px; text-decoration: none; background: #fff; transition: box-shadow .25s, transform .25s; }
.hp-blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.hp-blog-card-icon { font-size: 26px; margin-bottom: 12px; }
.hp-blog-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--charcoal); line-height: 1.35; margin-bottom: 8px; letter-spacing: -.01em; }
.hp-blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; margin-bottom: 14px; flex: 1; }
.hp-blog-card-meta { font-size: 11.5px; color: var(--text-muted); font-weight: 300; margin-bottom: 12px; }
.hp-blog-card-link { font-size: 12.5px; font-weight: 700; color: var(--bronze); letter-spacing: .03em; }
@media(max-width:960px) { .hp-blog-grid { grid-template-columns: 1fr 1fr; } .hp-blog-featured { grid-column: 1 / -1; } .hp-blog-featured-img { height: 180px; } }
@media(max-width:580px) { .hp-blog-grid { grid-template-columns: 1fr; } .hp-blog-header { flex-direction: column; align-items: flex-start; } }


/* ═══ DESIGN QUALITY LAYER (skill-applied) ═══════════════════════════════ */

/* Easing tokens — emil-design-eng custom curves */
:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html { scroll-behavior: smooth; }

/* Balanced headings, no orphans */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* Focus rings — keyboard a11y */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Press feedback — every interactive element */
.btn:active, .hp-cat-card:active, .hp-proj:active,
.hp-blog-card:active, .hp-blog-featured:active {
  transform: scale(0.98);
  transition: transform 120ms var(--ease-out);
}

/* Button micro-interaction */
.btn {
  transition: background-color 200ms var(--ease-out),
              border-color 200ms var(--ease-out),
              color 200ms var(--ease-out),
              transform 200ms var(--ease-out),
              box-shadow 200ms var(--ease-out);
}

/* Hover states gated to true pointers — no sticky mobile hover */
@media (hover: hover) and (pointer: fine) {
  .btn-bronze:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,105,20,0.32); }
  .hp-cat-card:hover,
  .hp-blog-card:hover,
  .hp-blog-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--bronze-border); }
  .hp-proj:hover { transform: translateY(-2px); }
}

/* Card/arrow transitions — specific properties, custom curve */
.hp-cat-card, .hp-blog-card, .hp-blog-featured, .hp-proj {
  transition: transform 250ms var(--ease-out),
              box-shadow 250ms var(--ease-out),
              border-color 250ms var(--ease-out);
}
.hp-cat-arrow, .hp-blog-read, .hp-blog-card-link {
  transition: transform 200ms var(--ease-out), color 200ms var(--ease-out);
}
.hp-proj-overlay { transition: background 300ms var(--ease-out); }
.hp-proj-tag { transition: color 300ms var(--ease-out); }

/* Reduced motion — impeccable: not optional */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ── HORMOZI LAYER ───────────────────────────────────────────────────────── */
.hp-hero-timeline { font-size: 13.5px; color: rgba(255,255,255,0.72); font-weight: 400; margin-top: 18px; letter-spacing: .01em; }
.hp-urgency-line { font-size: 14.5px; color: rgba(255,255,255,0.78); font-weight: 400; text-align: center; margin: 26px auto 0; }
.hp-guarantee-named { max-width: 560px; margin: 14px auto 0; border: 1px solid rgba(196,151,42,0.35); background: rgba(196,151,42,0.07); border-radius: 6px; padding: 18px 24px; text-align: center; }
.hp-gn-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--bronze-light); display: block; margin-bottom: 6px; }
.hp-guarantee-named p a { color: var(--bronze-light); text-decoration: underline; text-underline-offset: 3px; }
.hp-guarantee-named p { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.65; font-weight: 300; margin: 0; }
.hp-lead-magnet-line { font-size: 13.5px; color: rgba(255,255,255,0.6); font-weight: 300; text-align: center; margin-top: 16px; }
.hp-lead-magnet-line a { color: var(--bronze-light); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.hp-lead-magnet-line a:hover { color: #fff; }


.hp-hero-guide { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 400; margin-top: 18px; }
.hp-hero-guide a { color: var(--bronze-light); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.hp-hero-guide a:hover { color: #fff; }


/* ── TRUSTED-BY MARQUEE ──────────────────────────────────────────────────── */
.hp-trusted { background: var(--charcoal); border-top: 1px solid rgba(196,151,42,0.15); border-bottom: 1px solid rgba(196,151,42,0.15); padding: 34px 0; overflow: hidden; }
.hp-trusted-inner { display: flex; align-items: center; gap: 24px; max-width: var(--max-w, 1200px); margin: 0 auto; padding: 0 32px; }
.hp-trusted-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-light); white-space: nowrap; flex-shrink: 0; }
.hp-marquee { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.hp-marquee-track { display: inline-flex; align-items: center; gap: 72px; white-space: nowrap; animation: hp-scroll 125s linear infinite; will-change: transform; }
.hp-logo-slot { display: inline-flex; align-items: center; flex-shrink: 0; }
.hp-logo-slot img { height: 68px; width: auto; max-width: 200px; object-fit: contain; display: block; opacity: 0.9; transition: opacity 200ms var(--ease-out); }
.hp-logo-slot:hover img { opacity: 1; }
.hp-logo-fallback { display: none; font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 500; white-space: nowrap; letter-spacing: 0.01em; }

.hp-marquee:hover .hp-marquee-track { animation-play-state: paused; }
@keyframes hp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hp-marquee-track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
  .hp-marquee { mask-image: none; -webkit-mask-image: none; }
}
@media (max-width: 640px) {
  .hp-trusted-inner { flex-direction: column; gap: 10px; padding: 0 20px; }
}


/* ── CREDENTIALS STRIP ───────────────────────────────────────────────────── */


/* ── TESTIMONIALS — dark card grid ───────────────────────────────────────── */
.testimonials-section { padding: 96px 0; background: var(--off-white); border-top: 1px solid var(--border-light); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.ts-grid { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 24px; }
.ts-card {
  flex: 1 1 300px; max-width: 340px;
  background: var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(196,151,42,0.12);
}
.ts-card-body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ts-card-quote {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.75; font-weight: 400;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 18px; margin-bottom: 16px;
  flex: 1;
}
.ts-card-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.ts-card-sub {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--bronze-light) 0%, #E8C468 50%, var(--bronze-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0;
}
.ts-card { transition: transform 250ms var(--ease-out), border-color 250ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .ts-card:hover { transform: translateY(-4px); border-color: rgba(196,151,42,0.35); }
}
@media (max-width: 720px) {
  .ts-grid { gap: 16px; }
  .ts-card { flex: 1 1 260px; }
}


.hp-trusted-label-group { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.hp-trusted-meta { font-size: 11px; font-weight: 400; letter-spacing: 0.03em; color: rgba(255,255,255,0.35); white-space: nowrap; }
@media (max-width: 640px) { .hp-trusted-label-group { align-items: center; } }

/* Responsive 16:9 video embed used inside example cards */
.mp-example-video { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; margin: 16px 0; background: var(--charcoal-mid); }
.mp-example-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Customer Spotlight -- vertical (9:16) video embed */