/* ═══════════════════════════════════════════════════
   Caesar's Painting — Shared Design System
   caesarspainting.com
═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FAF8F4;
  --warm-tan:   #EDE9DF;
  --navy:       #1C2B3A;
  --navy-deep:  #111D27;
  --orange:     #C8602A;
  --orange-hov: #a84e22;
  --charcoal:   #262626;
  --text:       #2C2C2C;
  --muted:      #6B6B6B;
  --border:     #D8D3C8;
  --white:      #FFFFFF;
  --gold:       #F5C842;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── UTILITIES ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 16px; }
.section-intro { max-width: 640px; }
.section-intro h1, .section-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 48px); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.section-intro p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.btn-primary { display: inline-block; background: var(--orange); color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; padding: 15px 32px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.btn-primary:hover { background: var(--orange-hov); }
.btn-ghost { display: inline-block; border: 1.5px solid rgba(255,255,255,0.5); color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; padding: 14px 30px; text-decoration: none; transition: border-color 0.2s; }
.btn-ghost:hover { border-color: #fff; }
.btn-ghost-dark { display: inline-block; border: 1.5px solid var(--navy); color: var(--navy); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; padding: 14px 30px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }

/* ── TOPBAR ── */
.topbar { background: var(--navy-deep); padding: 9px 0; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-right { display: flex; gap: 28px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.topbar-badge { background: var(--orange); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 200; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 80px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; padding: 8px 14px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-phone:hover { color: var(--gold); }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px 4px; background: none; border: none; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: transform 0.28s ease, opacity 0.28s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display: none; background: var(--navy-deep); max-height: 0; overflow: hidden; transition: max-height 0.35s ease; border-top: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-menu.open { max-height: 600px; }
.nav-mobile-menu a { display: block; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 15px; font-weight: 500; padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s; }
.nav-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-mobile-menu .nav-mobile-cta { display: block; margin: 16px 20px 20px; padding: 15px; background: var(--orange); color: #fff !important; text-align: center; font-weight: 600; font-size: 14px; letter-spacing: 0.03em; border-bottom: none !important; }
.nav-mobile-menu .nav-mobile-cta:hover { background: var(--orange-hov) !important; }

/* ── PAGE HERO (interior pages) ── */
.page-hero { background: var(--navy-deep); padding: 80px 0 72px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange) 0%, transparent 100%); }
.page-hero .label { color: rgba(255,255,255,0.4); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 58px); font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.01em; max-width: 720px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-phone-inline { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; }
.hero-phone-inline:hover { color: var(--gold); }
.breadcrumb-bar { background: var(--warm-tan); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 12px; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--muted); }
.breadcrumb strong { color: var(--text); font-weight: 500; }

/* ── TRUST STRIP (social proof near top) ── */
.trust-strip { background: #fff; border-bottom: 1px solid #e8e8e8; }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid #e8e8e8; }
.trust-item:last-child { border-right: none; }
.trust-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: #1a2a3a; line-height: 1.3; }
.trust-text span { font-size: 11.5px; color: #777; }

/* ── REVIEW BAR (near top of every page) ── */
.review-bar { background: var(--navy); padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.review-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.review-bar-rating { display: flex; align-items: center; gap: 10px; }
.review-bar-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.review-bar-score { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; }
.review-bar-count { font-size: 13px; color: rgba(255,255,255,0.5); }
.review-bar-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }
.review-bar-quote { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.65); max-width: 380px; text-align: center; }
.review-bar-source { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 6px; }
.review-bar-source::before { content: 'G'; display: inline-flex; width: 18px; height: 18px; background: #4285f4; color: #fff; font-size: 10px; font-weight: 700; align-items: center; justify-content: center; border-radius: 50%; }

/* ── REVIEWS SECTION ── */
.reviews-section { background: var(--cream); padding: 100px 0; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.reviews-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--navy); max-width: 440px; line-height: 1.1; }
.reviews-meta .big-rating { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--navy); line-height: 1; }
.reviews-meta .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; display: block; margin: 4px 0 6px; }
.reviews-meta .count { font-size: 12px; color: var(--muted); }
.featured-review { background: var(--warm-tan); padding: 56px 64px; margin-bottom: 32px; position: relative; }
.featured-review::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 180px; color: rgba(28,43,58,0.06); position: absolute; top: -16px; left: 44px; line-height: 1; pointer-events: none; }
.featured-review blockquote { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.5vw, 28px); font-style: italic; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 28px; position: relative; max-width: 760px; }
.featured-review cite { display: flex; align-items: center; gap: 16px; font-style: normal; }
.cite-avatar { width: 44px; height: 44px; background: var(--navy); color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.cite-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.cite-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cite-stars { margin-left: auto; color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-bottom: 28px; }
.review-tile { background: var(--cream); padding: 32px 28px; }
.review-tile .stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.review-tile p { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.review-tile-author { display: flex; align-items: center; gap: 12px; }
.tile-avatar { width: 36px; height: 36px; background: var(--warm-tan); color: var(--navy); font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.tile-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.tile-source { font-size: 11px; color: var(--muted); margin-top: 1px; }
.reviews-cta { text-align: center; }
.reviews-cta a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.reviews-cta a:hover { color: var(--navy); border-color: var(--navy); }

/* ── SERVICES GRID ── */
.services-section { background: var(--cream); padding: 100px 0; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.services-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--navy); line-height: 1.1; max-width: 460px; }
.services-header p { font-size: 15px; color: var(--muted); max-width: 280px; text-align: right; line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.28s, box-shadow 0.28s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.service-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.service-card-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.service-card-link { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 0.06em; text-transform: uppercase; }
.service-card:hover .service-card-link { color: var(--orange-hov); }

/* ── CONTENT SECTIONS ── */
.content-section { background: var(--cream); padding: 100px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.content-grid.flipped { grid-template-columns: 400px 1fr; }
.content-body h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.content-body h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; margin-top: 32px; }
.content-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.content-body ul { margin: 0 0 20px 20px; }
.content-body ul li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.content-sidebar { position: sticky; top: 120px; }

/* ── PROCESS STEPS ── */
.process-section { background: var(--white); padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 1px solid var(--border); }
.process-step { padding: 48px 32px; border-right: 1px solid var(--border); position: relative; }
.process-step-num, .step-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--warm-tan); line-height: 1; margin-bottom: 16px; }
.process-step h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-section { background: var(--warm-tan); padding: 100px 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.faq-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q, .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); gap: 20px; user-select: none; background: none; border: none; width: 100%; text-align: left; font-family: 'Inter', sans-serif; }
.faq-q:hover, .faq-question:hover { color: var(--orange); }
.faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--muted); flex-shrink: 0; transition: all 0.2s; font-style: normal; }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-a { display: none; padding: 0 0 22px 0; font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 560px; }
.faq-item.open .faq-a { display: block; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 14px; color: var(--muted); line-height: 1.8; }
.faq-answer p { padding-bottom: 20px; margin: 0; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── FORM BOX ── */
.form-box { background: var(--navy); overflow: hidden; }
.form-box-header { padding: 28px 32px 0; }
.form-box-header h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.form-box-header p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 0; }
.sidebar-form { padding: 20px 32px 32px; display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; padding: 11px 14px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--navy); }
.form-box { background: var(--navy); padding: 40px 36px; position: sticky; top: 120px; }
.form-box h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.form-box > p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 24px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; padding: 11px 14px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); }
.form-field textarea { height: 80px; resize: none; }
.form-field select option { background: var(--navy); }
.form-submit { width: 100%; margin-top: 4px; }
.form-privacy { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; }

/* ── WHY CAESARS ── */
.why-section { background: var(--navy-deep); padding: 100px 0; }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header .label { color: rgba(255,255,255,0.4); }
.why-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 36px 28px; transition: background 0.25s, border-color 0.25s; }
.why-card:hover { background: rgba(245,200,66,0.07); border-color: rgba(245,200,66,0.3); }
.why-card-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.why-card-title { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.why-card-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── BRANDS STRIP ── */
.brands-strip { background: var(--cream); padding: 28px 0; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.brands-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.brands-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #999; }
.brand-pill { background: #fff; border: 1px solid #ddd; border-radius: 6px; padding: 7px 16px; font-size: 13px; font-weight: 700; color: #333; }

/* ── CTA BAND ── */
.cta-band { background: var(--navy-deep); padding: 80px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 480px; }
.cta-band-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.cta-band-phone { font-size: 18px; font-weight: 700; color: var(--gold); text-decoration: none; }

/* ── CITIES GRID ── */
.cities-section { background: var(--navy); padding: 80px 0; }
.cities-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cities-left .label { color: rgba(255,255,255,0.35); }
.cities-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.cities-left p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 28px; }
.cities-list { display: flex; flex-direction: column; }
.city-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); text-decoration: none; transition: padding-left 0.2s; }
.city-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.city-item:hover { padding-left: 8px; }
.city-item-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: #fff; }
.city-item-county { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }
.city-item-arrow { color: rgba(255,255,255,0.2); font-size: 14px; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: flex; align-items: stretch; }
.stat-item { flex: 1; padding: 28px 0; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.stat-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-brand img { height: 56px; width: auto; display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-contact-row a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--orange); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-hours { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.9; }
.footer-hours strong { color: rgba(255,255,255,0.65); display: block; margin-bottom: 6px; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ── FAITH STRIP ── */
.faith-strip { background: var(--cream); padding: 64px 0; text-align: center; border-top: 1px solid var(--border); }
.faith-rule { display: flex; align-items: center; gap: 20px; justify-content: center; margin-bottom: 28px; color: var(--border); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.faith-rule::before, .faith-rule::after { content: ''; flex: 1; max-width: 100px; height: 1px; background: var(--border); }
.faith-verse { font-family: 'Playfair Display', serif; font-size: clamp(17px, 2vw, 24px); font-style: italic; font-weight: 600; color: var(--navy); max-width: 680px; margin: 0 auto 12px; line-height: 1.5; }
.faith-ref { font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid, .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .content-sidebar, .form-box { position: static; }
}
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid #e8e8e8; }
  .trust-item:nth-child(4) { border-top: 1px solid #e8e8e8; border-right: none; }
  .reviews-head { flex-direction: column; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .services-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .services-header p { text-align: left; max-width: 100%; }
}
@media (max-width: 768px) {
  .topbar .wrap { flex-direction: column; gap: 6px; text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; flex-wrap: wrap; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
  .nav-inner { height: 80px; }
  .nav-logo img { height: 60px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-review { padding: 36px 24px; }
  .featured-review::before { font-size: 100px; top: -10px; left: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .review-bar-inner { gap: 20px; }
  .review-bar-divider { display: none; }
}
@media (max-width: 560px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-top: 1px solid #e8e8e8; }
  .trust-item:first-child { border-top: none; }
  .why-grid { grid-template-columns: 1fr; }
  .brands-inner { gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  section, .services-section, .reviews-section, .faq-section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .topbar { display: none; }
  .wrap { padding: 0 16px; }
  .nav-inner { height: 72px; }
  .nav-logo img { height: 50px; }
}

/* ── NAV DROPDOWNS ── */
.nav-drop-btn { background: none; border: none; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; padding: 8px 14px; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.nav-drop-btn:hover, .nav-dropdown.open .nav-drop-btn { color: #fff; }
.nav-caret { font-size: 9px; transition: transform 0.2s; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-drop-panel { display: none; position: absolute; top: calc(100% + 1px); left: 0; background: var(--navy-deep); border-top: 2px solid var(--orange); box-shadow: 0 8px 32px rgba(0,0,0,0.25); min-width: 220px; z-index: 300; }
.nav-dropdown.open .nav-drop-panel { display: block; }
.nav-drop-grid { display: grid; grid-template-columns: 1fr; padding: 8px 0; }
.nav-drop-grid--wide { grid-template-columns: 1fr 1fr; min-width: 340px; }
.nav-drop-grid a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 500; padding: 10px 20px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.nav-drop-grid a:hover, .nav-drop-grid a.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-dropdown { position: relative; }
.nav-cta-link { background: var(--orange); color: #fff !important; font-size: 13px; font-weight: 600; padding: 10px 22px !important; letter-spacing: 0.04em; transition: background 0.2s !important; }
.nav-cta-link:hover { background: var(--orange-hov) !important; color: #fff !important; }

/* ── MOBILE NAV SECTIONS ── */
.nav-mobile-section { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-heading { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 14px 20px 6px; }
.nav-mobile-menu a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s, background 0.2s; }
.nav-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-mobile-cta { display: block; margin: 16px 20px 20px; padding: 15px; background: var(--orange); color: #fff !important; text-align: center; font-weight: 600; font-size: 14px; letter-spacing: 0.03em; border-bottom: none !important; }
.nav-mobile-cta:hover { background: var(--orange-hov) !important; }

/* ── FOOTER (shared.js injected) ── */
.footer { background: var(--navy-deep); }
.footer-top { padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-top-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
.footer-brand img { height: 56px; width: auto; display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.footer-rating span:last-child { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-phone { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; display: block; transition: color 0.2s; }
.footer-phone:hover { color: var(--gold); }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-inner p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom-inner a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom-inner a:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 1024px) { .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 768px) { .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; } }
@media (max-width: 480px) { .footer-top-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ── FORM SUCCESS STATE ── */
.form-success { padding: 48px 32px; text-align: center; background: #f0faf0; border: 1px solid #b6deb6; border-radius: 2px; }
.form-success p { font-size: 16px; font-weight: 500; color: #2d6a2d; }

/* ── CITY PAGE COMPONENTS ── */
.city-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.city-service-card { background: var(--white); border: 1px solid var(--border); padding: 28px 24px; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; display: block; color: var(--text); }
.city-service-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(200,96,42,0.08); }
.city-service-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.city-service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .city-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .city-services-grid { grid-template-columns: 1fr; } }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; background: var(--warm-tan); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── REVIEWS PAGE ── */
.reviews-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card-full { background: var(--white); border: 1px solid var(--border); padding: 32px; }
.review-card-full .rc-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card-full blockquote { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.review-card-full .rc-meta { display: flex; justify-content: space-between; align-items: center; }
.review-card-full .rc-author { font-size: 13px; font-weight: 600; color: var(--navy); }
.review-card-full .rc-date { font-size: 12px; color: var(--muted); }
@media (max-width: 768px) { .reviews-full-grid { grid-template-columns: 1fr; } }

/* ── COST GUIDE TABLE ── */
.cost-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.cost-table th { background: var(--navy); color: #fff; padding: 14px 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-align: left; }
.cost-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.cost-table tr:nth-child(even) td { background: var(--warm-tan); }
.cost-table tr:last-child td { border-bottom: none; }

/* ── SERVICE AREA MAP PLACEHOLDER ── */
.area-map-placeholder { background: var(--warm-tan); border: 1px solid var(--border); height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.area-map-placeholder span { font-size: 48px; }
.area-map-placeholder p { font-size: 14px; }

/* ── BLOG LIST ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.2s; text-decoration: none; display: block; color: var(--text); }
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--warm-tan); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

