/* ===================================================
   WOW HOME TRANSFORMATIONS — SHARED BRAND STYLESHEET
   Used by the ad-lander / funnel pages (google-consult, qualify-booking,
   thank-you-hold, free-design, thank-you-design). Tokens and component
   classes are copied verbatim from index.html so these pages read as
   siblings of the main site. index.html, price-estimator.html and
   thank-you.html keep their own inline <style> blocks — do not link this
   file into them, to avoid any risk of visual regression on pages already
   live in production.
   =================================================== */

:root {
  --navy:     #1A2B4A;
  --navy-deep:#0D1830;
  --navy-mid: #1E3A62;
  --gold:     #C8882E;
  --gold-h:   #A86E20;
  --brown:    #A0622A;
  --cream:    #F5EDE2;
  --sand:     #EDE4D8;
  --charcoal: #1C1C1C;
  --ink:      #3A3028;
  --stone:    #7A6E65;
  --border:   #DDD3C6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@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; }
}
body { font-family: var(--font-sans); background: var(--cream); color: var(--charcoal); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* === Buttons === */
.btn-gold { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 34px; background: var(--gold); color: #fff; font-size: 16px; font-weight: 700; border-radius: var(--radius-sm); border: none; cursor: pointer; letter-spacing: .01em; transition: background .18s, transform .15s, box-shadow .18s; }
.btn-gold:hover { background: var(--gold-h); box-shadow: 0 6px 20px rgba(200,136,46,.35); transform: translateY(-1px); }
.btn-outline-dark { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 30px; background: transparent; color: #fff; font-size: 15px; font-weight: 500; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.38); cursor: pointer; transition: background .18s; }
.btn-outline-dark:hover { background: rgba(255,255,255,.1); }
.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; background: var(--gold); color: #fff; font-size: 16px; font-weight: 700; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: background .18s; font-family: var(--font-sans); margin-top: 4px; }
.btn-submit:hover { background: var(--gold-h); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.call-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; background: var(--gold); color: #fff; font-size: 16px; font-weight: 700; border: none; border-radius: 9px; transition: background .18s; }
.call-cta-btn:hover { background: var(--gold-h); }

/* === Form inputs === */
.wow-label { display: block; font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 5px; letter-spacing: .03em; text-transform: uppercase; }
.wow-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; color: var(--charcoal); background: #fff; outline: none; transition: border-color .18s, box-shadow .18s; }
.wow-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,136,46,.12); }
.wow-input.invalid { border-color: #C0392B; }
.wow-input.invalid:focus { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.form-error { display: none; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #C0392B; background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.25); border-radius: 8px; padding: 10px 14px; }
.form-error.show { display: flex; }
.optional-tag { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; color: #9A8A78; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.photo-upload-label { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px dashed var(--border); border-radius: var(--radius-sm); cursor: pointer; background: #fff; transition: border-color .18s; }
.photo-upload-label:hover { border-color: var(--gold); }
.photo-upload-text { font-size: 13px; color: var(--stone); }
.hidden { display: none !important; }

/* Radio/select answer cards — used by quiz steps and the qualification budget field */
.card-opt { border: 2px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; transition: all .15s; background: #fff; user-select: none; }
.card-opt:hover { border-color: var(--gold); }
.card-opt.selected { border-color: var(--gold); background: rgba(200,136,46,.06); }
.card-opt-label { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.card-opt-sub { font-size: 12px; color: var(--stone); margin-top: 2px; }
.card-opt-range { font-size: 14px; font-weight: 700; color: var(--brown); white-space: nowrap; }
.card-opt-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #C8B89A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-opt.selected .card-opt-dot { border-color: var(--gold); background: var(--gold); }
.card-opt.selected .card-opt-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

/* === Eyebrow === */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brown); }
.eyebrow-dark { color: rgba(200,136,46,.85); }

/* ===================================================
   LANDER HEADER — no site nav, logo + click-to-call only, sticky
   =================================================== */
.lander-header { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navy); }
.lander-header-inner { max-width: 1100px; margin: 0 auto; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; }
.lander-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lander-logo img { height: 32px; width: auto; object-fit: contain; }
.lander-logo-text { line-height: 1.2; }
.lander-logo-name { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .02em; }
.lander-logo-sub  { font-size: 10px; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.lander-call { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; background: var(--gold); color: #fff; font-size: 13px; font-weight: 700; border-radius: 7px; transition: background .18s; white-space: nowrap; }
.lander-call:hover { background: var(--gold-h); }
.lander-call-sub { display: none; }
@media (min-width: 560px) {
  .lander-call-sub { display: inline; font-weight: 400; opacity: .85; margin-left: 4px; }
}

/* ===================================================
   LANDER HERO
   =================================================== */
.lander-hero { position: relative; background: linear-gradient(110deg, var(--navy-mid) 0%, var(--navy) 55%, var(--navy-deep) 100%); overflow: hidden; padding: 48px 5% 56px; }
.lander-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(200,136,46,.07) 31px 32px); pointer-events: none; }
.lander-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.lander-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(200,136,46,.9); }
.lander-h1 { font-family: var(--font-serif); font-size: clamp(30px,6vw,50px); font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 18px; text-wrap: pretty; }
.lander-sub { font-size: clamp(15px,2vw,18px); color: rgba(255,255,255,.78); line-height: 1.7; margin: 0 auto 28px; max-width: 560px; }

/* Offer stack card — the one signature visual element for google-consult.html */
.offer-card { background: #fff; border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: 0 24px 64px rgba(0,0,0,.28); border: 1px solid rgba(200,136,46,.15); text-align: left; max-width: 480px; margin: 0 auto 24px; }
.offer-card-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; text-align: center; }
.offer-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.offer-item:first-of-type { border-top: none; }
.offer-item-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.offer-item-title { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.offer-item-sub { font-size: 13px; color: var(--stone); line-height: 1.6; margin-top: 2px; }

.anchor-note { font-size: 12px; color: rgba(255,255,255,.55); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.anchor-note.on-light { color: var(--stone); }

/* ===================================================
   VALUE GRID / TRUST BADGES
   =================================================== */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1000px; margin: 0 auto; padding: 48px 5%; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px 22px; }
.value-icon { width: 40px; height: 40px; background: rgba(200,136,46,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--stone); line-height: 1.7; }

.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; padding: 20px 5%; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.badge-row-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--charcoal); }

/* ===================================================
   TESTIMONIALS / SOCIAL PROOF
   =================================================== */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 0 auto; padding: 8px 5% 48px; }
.rev-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px 24px; }
.stars { display: flex; gap: 2px; margin-bottom: 10px; }
.rev-text { font-size: 14px; color: var(--ink); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-avatar { width: 34px; height: 34px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.rev-role { font-size: 11px; color: var(--stone); }

.before-after-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 1000px; margin: 0 auto; padding: 0 5% 48px; }
.before-after-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; }

/* ===================================================
   SECTION HEADS / CARDS (generic content sections)
   =================================================== */
.lander-section { padding: 48px 5%; }
.lander-section.cream { background: var(--cream); }
.lander-section-inner { max-width: 720px; margin: 0 auto; }
.lander-section-inner.wide { max-width: 1000px; }
.section-h2 { font-family: var(--font-serif); font-size: clamp(26px,4vw,36px); font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 14px; text-wrap: pretty; }
.section-h2.on-dark { color: #fff; }
.section-p { font-size: 15px; color: var(--ink); line-height: 1.8; }
.section-p.on-dark { color: rgba(255,255,255,.75); }

.capacity-note { text-align: center; font-size: 13px; color: var(--stone); max-width: 480px; margin: 18px auto 0; line-height: 1.6; }

/* ===================================================
   QUIZ STEPPER (free-design.html)
   =================================================== */
.quiz-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: 0 4px 24px rgba(26,43,74,.08); border: 1px solid var(--border); max-width: 560px; margin: 0 auto; }
.quiz-progress-track { width: 100%; height: 6px; background: var(--sand); border-radius: 100px; overflow: hidden; margin-bottom: 24px; }
.quiz-progress-fill { height: 100%; background: var(--gold); border-radius: 100px; transition: width .3s ease; }
.quiz-step-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brown); margin-bottom: 8px; }
.quiz-question { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; line-height: 1.2; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.quiz-back-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--stone); }
.quiz-back-btn:hover { color: var(--ink); }

.quiz-results { text-align: center; padding: 8px 0 4px; }
.quiz-results-label { font-size: 13px; font-weight: 600; color: var(--stone); margin-bottom: 8px; }
.quiz-results-range { font-family: var(--font-serif); font-size: clamp(32px,6vw,46px); font-weight: 700; color: var(--navy); margin-bottom: 12px; }

/* ===================================================
   COST BREAKDOWN TABLE (free-design.html)
   =================================================== */
.breakdown-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; background: #fff; }
.breakdown-table th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.breakdown-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.breakdown-table tbody tr:nth-child(even) { background: var(--cream); }
.breakdown-total-row td { font-weight: 700; color: var(--navy); border-top: 2px solid var(--gold); border-bottom: none; padding-top: 16px; }

/* ===================================================
   MINIMAL FOOTER (ad landers)
   =================================================== */
.lander-footer { background: var(--navy-deep); color: rgba(255,255,255,.55); padding: 32px 5%; text-align: center; }
.lander-footer-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.lander-footer p { font-size: 12px; line-height: 1.7; }
.lander-footer a { color: rgba(255,255,255,.75); font-weight: 600; }
.lander-footer a:hover { color: #fff; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 860px) {
  .value-grid, .rev-grid, .before-after-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .quiz-card { padding: 24px 18px; }
  .offer-card { padding: 22px 18px; }

  /* Compact real table on mobile — fixed column widths so all 3
     columns always fit the viewport with no horizontal scroll;
     long item text wraps within its column instead of being cut off. */
  .breakdown-table { min-width: 0; width: 100%; table-layout: fixed; font-size: 11px; }
  .breakdown-table th, .breakdown-table td { padding: 7px 5px; word-wrap: break-word; overflow-wrap: break-word; }
  .breakdown-table th:nth-child(1), .breakdown-table td:nth-child(1) { width: 20%; }
  .breakdown-table th:nth-child(2), .breakdown-table td:nth-child(2) { width: 48%; }
  .breakdown-table th:nth-child(3), .breakdown-table td:nth-child(3) { width: 32%; }
  .breakdown-total-row td { padding-top: 12px; }
}
