/* ============================================================
   Colton Curtner — design system
   Muted red / white / blue. Fraunces (display) + Inter (body).
   ============================================================ */

:root {
  /* Brand palette — muted patriotic */
  --navy:        #26344C;
  --navy-deep:   #1B2638;
  --red:         #C8473D;
  --red-dark:    #9E342A;
  --red-tint:    #F4D9D3;
  --blue:        #4E79A6;
  --blue-tint:   #D8E3F0;
  --bone:        #F5F1E9;
  --bone-2:      #EFEADD;
  --ink:         #1C232B;
  --ink-soft:    #4A535E;
  --muted:       #6B7280;
  --white:       #FFFFFF;
  --line:        rgba(38, 52, 76, 0.12);
  --line-strong: rgba(38, 52, 76, 0.22);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1140px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(27, 38, 56, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(27, 38, 56, 0.28);
  --shadow-lg: 0 40px 80px -28px rgba(27, 38, 56, 0.40);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
.accent { color: var(--red); }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: 800px; }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-tint { background: var(--bone-2); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(192, 94, 77, 0.85);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(154, 63, 48, 0.9); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(38,52,76,0.04); transform: translateY(-1px); }

.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 241, 233, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--navy); color: var(--bone);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  border-radius: 11px; letter-spacing: 0.02em;
}
.brand-name { font-weight: 600; font-size: 18px; color: var(--navy); letter-spacing: -0.01em; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 500; font-size: 16px; color: var(--ink-soft);
  position: relative; transition: color .18s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; }

/* mobile nav */
.mobile-nav { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(91,114,144,0.18), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(192,94,77,0.10), transparent 55%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--red-dark);
  background: var(--red-tint);
  padding: 7px 14px; border-radius: 999px;
  margin: 0 0 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.lede {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 30px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.trust-strip {
  list-style: none; margin: 0; padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-size: 15px; color: var(--ink-soft);
}
.trust-strip strong { color: var(--navy); font-weight: 600; }

/* hero visual — abstract brand graphic */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-art { width: 100%; max-width: 440px; height: auto; display: block; }

/* ============================================================
   Logo bar
   ============================================================ */
.logobar { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bone); }
.logobar-label {
  text-align: center; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.logobar-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
}
.logobar-list li {
  font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--navy);
  opacity: 0.72;
}

/* ============================================================
   Section headers
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red-dark); margin: 0 0 14px;
}
.kicker.light { color: var(--blue-tint); }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); letter-spacing: -0.02em; }
.section-sub { font-size: 19px; color: var(--ink-soft); margin-top: 16px; }
.section-sub.light { color: rgba(245,241,233,0.78); }

/* ============================================================
   Cards (why)
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--blue-tint); border-radius: 14px; color: var(--navy); margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 34px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card.featured { border: 2px solid var(--red); box-shadow: var(--shadow-md); }
.badge {
  position: absolute; top: -13px; left: 34px;
  background: var(--red); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 14px; border-radius: 999px;
}
.service-card h3 { font-size: 27px; margin-bottom: 8px; }
.service-lead { color: var(--ink-soft); font-size: 17px; margin-bottom: 22px; }

.ticks { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; font-size: 16.5px; color: var(--ink); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; display: grid; place-items: center;
  background: var(--blue-tint); color: var(--navy);
  border-radius: 50%; font-size: 12px; font-weight: 700;
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

.services-note {
  margin: 34px auto 0; max-width: 760px; text-align: center;
  font-size: 18px; color: var(--ink-soft);
}
.services-note strong { color: var(--navy); }

/* ============================================================
   Stats / testimonial
   ============================================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.stat-box {
  text-align: center; padding: 30px 18px;
  background: var(--bone-2); border-radius: var(--radius);
}
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4.5vw, 48px); color: var(--navy); line-height: 1;
}
.stat-box:nth-child(2) .stat-num { color: var(--red); }
.stat-label { display: block; margin-top: 10px; font-size: 15px; color: var(--ink-soft); }

.testimonial {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 38px 40px; box-shadow: var(--shadow-sm);
  max-width: 860px; margin-inline: auto;
}
.testimonial blockquote {
  margin: 0 0 22px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(21px, 2.6vw, 27px); line-height: 1.4; color: var(--navy);
}
.testimonial figcaption { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--bone);
  display: grid; place-items: center; font-weight: 600; font-size: 15px;
}

/* ============================================================
   Dark sections
   ============================================================ */
.section-dark { background: var(--navy-deep); color: var(--bone); }
.section-dark h2, .section-dark h3 { color: var(--bone); }

.process {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.process li {
  padding: 28px 24px; border-radius: var(--radius);
  background: rgba(245,241,233,0.04);
  border: 1px solid rgba(245,241,233,0.10);
}
.step-num {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--red); display: block; margin-bottom: 16px;
}
.process h3 { font-size: 21px; margin-bottom: 8px; }
.process p { color: rgba(245,241,233,0.72); font-size: 16px; margin: 0; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--red); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.price-card.featured:hover { transform: translateY(-10px); }
.price-card h3 { font-size: 23px; margin-bottom: 6px; }
.price { font-family: var(--font-display); margin: 6px 0 2px; }
.price span { font-weight: 600; font-size: 42px; color: var(--navy); }
.price small { font-size: 17px; color: var(--muted); font-family: var(--font-sans); }
.price-card.featured .price span { color: var(--red); }
.price-sub { font-size: 15px; color: var(--muted); margin-bottom: 22px; }

/* ============================================================
   Teardown
   ============================================================ */
.teardown {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--navy); color: var(--bone);
  border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px);
  box-shadow: var(--shadow-md);
}
.teardown .kicker { color: var(--red-tint); }
.teardown h2 { color: var(--bone); font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.teardown-copy p { color: rgba(245,241,233,0.80); font-size: 18px; margin: 0; }

.teardown-form { display: grid; gap: 8px; }
.teardown-form label { font-size: 14px; font-weight: 600; color: var(--bone); margin-top: 8px; }
.teardown-form input[type="url"],
.teardown-form input[type="email"] {
  width: 100%; padding: 15px 18px; font-size: 16px; font-family: var(--font-sans);
  border-radius: 12px; border: 1.5px solid rgba(245,241,233,0.25);
  background: rgba(245,241,233,0.06); color: var(--bone);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.teardown-form input::placeholder { color: rgba(245,241,233,0.5); }
.teardown-form input:focus {
  outline: none; border-color: var(--red);
  background: rgba(245,241,233,0.10);
}
.teardown-form .btn { margin-top: 14px; }
.form-fine { font-size: 13px; color: rgba(245,241,233,0.6); margin: 10px 0 0; }
.hp { position: absolute; left: -9999px; }

/* ============================================================
   Booking placeholder
   ============================================================ */
.book-inner { max-width: 860px; margin-inline: auto; }
.booking-embed {
  background: #fff; border-radius: var(--radius-lg);
  padding: 10px; box-shadow: var(--shadow-md); overflow: hidden;
}
.booking-fallback { text-align: center; margin: 16px 0 0; font-size: 15px; color: rgba(245,241,233,0.7); }
.booking-fallback a { color: var(--red-tint); text-decoration: underline; }
.booking-placeholder {
  text-align: center; background: rgba(245,241,233,0.05);
  border: 1px dashed rgba(245,241,233,0.25); border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.booking-placeholder p { color: rgba(245,241,233,0.85); font-size: 19px; }
.booking-placeholder .muted { color: rgba(245,241,233,0.55); font-size: 15px; }
.booking-placeholder code {
  background: rgba(245,241,233,0.12); padding: 2px 7px; border-radius: 6px;
  font-size: 0.9em;
}
.booking-placeholder .btn { margin-top: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-sans); font-weight: 400; font-size: 28px; color: var(--red);
  transition: transform .2s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  margin: 0 0 24px; color: var(--ink-soft); font-size: 17px; max-width: 64ch;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-deep); color: var(--bone); padding-top: 64px; }
.footer-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(245,241,233,0.12);
}
.footer-brand .brand-name { color: var(--bone); }
.footer-brand .brand-mark { background: var(--red); color: #fff; }
.footer-brand p { color: rgba(245,241,233,0.7); margin: 16px 0 22px; max-width: 34ch; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-nav h4 {
  color: var(--bone); font-family: var(--font-sans); font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-nav a { display: block; color: rgba(245,241,233,0.72); padding: 5px 0; font-size: 16px; transition: color .15s var(--ease); }
.footer-nav a:hover { color: var(--red-tint); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 24px 0; font-size: 14px; color: rgba(245,241,233,0.55);
}
.footer-bottom p { margin: 0; }
.footer-bottom .muted { color: rgba(245,241,233,0.4); }

/* ============================================================
   Work showcase (horizontal scroll + lightbox)
   ============================================================ */
.showcase { position: relative; }
.showcase-track {
  list-style: none; margin: 0; padding: 4px 2px 16px;
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.showcase-track li { flex: 0 0 auto; scroll-snap-align: start; }
.showcase-card {
  width: 300px; text-align: left; cursor: pointer; padding: 0;
  font-family: inherit; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.showcase-thumb { display: block; height: 188px; position: relative; }
.thumb-1 { background: linear-gradient(135deg, #4E79A6, #26344C); }
.thumb-2 { background: linear-gradient(135deg, #C8473D, #9E342A); }
.thumb-3 { background: linear-gradient(135deg, #5B7290, #4E79A6); }
.thumb-4 { background: linear-gradient(135deg, #26344C, #4E79A6); }
.showcase-thumb::after {
  content: ""; position: absolute; left: 22px; right: 22px; top: 28px; height: 13px;
  border-radius: 6px; background: rgba(255,255,255,0.9);
  box-shadow: 0 26px 0 -1px rgba(255,255,255,0.55), 0 44px 0 -3px rgba(255,255,255,0.38);
}
.showcase-meta { display: flex; flex-direction: column; gap: 2px; padding: 14px 18px 16px; }
.showcase-meta strong { font-size: 16px; color: var(--navy); }
.showcase-meta span { font-size: 13px; color: var(--muted); }
.showcase-hint { font-size: 14px; margin: 4px 0 0; }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(24,28,34,0.72); }
.lightbox-panel {
  position: relative; z-index: 1; width: min(900px, 100%); max-height: 86vh;
  background: #fff; border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  animation: lb-in .2s var(--ease);
}
@keyframes lb-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
.lightbox-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.92); color: var(--navy); font-size: 24px; line-height: 1;
  box-shadow: var(--shadow-sm);
}
.lightbox-close:hover { background: #fff; }
.lightbox-body { flex: 1; overflow: auto; min-height: 320px; background: var(--bone-2); }
.lightbox-body img { width: 100%; display: block; }
.lightbox-ph {
  min-height: 360px; display: grid; place-items: center; text-align: center;
  gap: 8px; padding: 40px; color: var(--navy);
  background: linear-gradient(135deg, var(--blue-tint), var(--red-tint));
}
.lightbox-ph strong { font-family: var(--font-display); font-size: 24px; }
.lightbox-caption {
  display: flex; align-items: baseline; gap: 10px;
  padding: 16px 22px; border-top: 1px solid var(--line);
}
.lightbox-caption strong { font-size: 17px; color: var(--navy); }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 56px); align-items: center;
}
.about-photo-frame { width: 100%; }
.about-photo {
  width: 100%; display: block; aspect-ratio: 4 / 5; object-fit: cover;
  object-position: center top; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-photo--placeholder {
  display: flex; flex-direction: column; object-fit: initial;
  align-items: center; justify-content: center; gap: 12px;
  background: #fff; border: 1px dashed var(--line-strong); color: var(--blue);
  box-shadow: none;
}
.about-photo--placeholder svg { width: 60px; height: 60px; }
.about-photo--placeholder span { font-size: 14px; color: var(--muted); }
.about-copy p { color: var(--ink-soft); }
.about-copy .btn { margin-top: 12px; }

/* pricing: small price text for non-numeric tier */
.price .price-text { font-size: 30px; }

/* ============================================================
   Conversion extras: reassurance, comparison, guarantee, scarcity, sticky CTA
   ============================================================ */
.cta-reassure { font-size: 14px; color: var(--muted); margin: -20px 0 28px; }

.compare-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch;
}
.compare-table { width: 100%; min-width: 600px; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td {
  padding: 16px 20px; text-align: left; font-size: 16px; border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  color: var(--navy); background: var(--bone-2);
}
.compare-table tbody th { font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.compare-table td { color: var(--ink-soft); }
.compare-table .col-me { background: var(--red-tint); color: var(--red-dark); font-weight: 500; }
.compare-table thead .col-me { background: var(--red); color: #fff; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.guarantee {
  display: flex; align-items: center; gap: 16px;
  max-width: 760px; margin: 40px auto 0; padding: 18px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.guarantee-icon {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--blue-tint); color: var(--navy);
}
.guarantee-icon svg { width: 24px; height: 24px; }
.guarantee p { margin: 0; font-size: 16px; color: var(--ink-soft); }
.guarantee strong { color: var(--navy); }

.scarcity {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 18px auto 0; padding: 8px 16px; border-radius: 999px;
  background: rgba(245,241,233,0.08); border: 1px solid rgba(245,241,233,0.16);
  font-size: 14px; color: rgba(245,241,233,0.85);
}
.scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,71,61,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(200,71,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,71,61,0); }
}
@media (prefers-reduced-motion: reduce) { .scarcity-dot { animation: none; } }

.mobile-cta { display: none; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; margin-top: 30px; }
  .hero-art { max-width: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 340px; margin-inline: auto; }
  .about-photo--placeholder { aspect-ratio: 3 / 2; }
  .teardown { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav, .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 10px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: grid; gap: 4px; padding: 8px 24px 22px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 12px 0; font-weight: 500; font-size: 18px; color: var(--navy); border-bottom: 1px solid var(--line); }
  .mobile-nav a.btn { border: none; color: #fff; justify-content: center; margin-top: 12px; }

  .cards-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .showcase-card { width: 264px; }

  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(245, 241, 233, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-top: 1px solid var(--line);
    transform: translateY(120%); transition: transform .3s var(--ease);
  }
  .mobile-cta.show { transform: none; }
  .mobile-cta .btn { width: 100%; box-shadow: 0 8px 22px -6px rgba(200, 71, 61, 0.65); }
}

@media (max-width: 460px) {
  body { font-size: 17px; }
  .process { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .hero { padding-top: 30px; }
  .hero h1 { font-size: 38px; }
  .lede { margin-bottom: 22px; }
}
