/* ==========================================================
   CleanFix Repairs — design tokens
   ========================================================== */
:root {
  /* warm workshop palette */
  --paper:        #F4ECD9;
  --paper-deep:   #ECE0C4;
  --paper-edge:   #DDC9A1;
  --ink:          #15233E;
  --ink-soft:     #3A4A6B;
  --ink-mute:     #6B7791;
  --accent:       #E07A1F;     /* workshop orange */
  --accent-deep:  #B85F12;
  --accent-soft:  rgba(224,122,31,0.12);
  --blue-deep:    #185A92;
  --green-wa:     #25D366;
  --green-wa-deep:#1aa552;
  --cream:        #FFFBF1;

  /* type */
  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* metrics */
  --container: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* density (compact baked in per design handoff) */
  --section-py: 72px;
  --gap-md: 14px;

  --shadow-sm: 0 1px 2px rgba(21,35,62,0.08), 0 2px 6px rgba(21,35,62,0.06);
  --shadow-md: 0 6px 14px rgba(21,35,62,0.10), 0 18px 40px -10px rgba(21,35,62,0.18);
  --shadow-lg: 0 14px 30px -8px rgba(21,35,62,0.18), 0 40px 80px -20px rgba(21,35,62,0.30);
}

/* ==========================================================
   Reset
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","cv11";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }

/* ==========================================================
   Atmosphere — paper grain + soft accents
   ========================================================== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.13 0 0 0 0 0.20 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 600px at 90% -10%, var(--accent-soft), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(34,115,181,0.08), transparent 60%);
}
.site-header, main, .site-footer, .sticky-bar { position: relative; z-index: 2; }
.site-header:has(.site-nav.open) { z-index: 60; }

/* ==========================================================
   Skip link
   ========================================================== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 10px 14px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 28px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--paper-edge);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-block;
}
.brand-mark img {
  position: absolute;
  width: 86%;
  height: 86%;
  top: 50%;
  left: 50%;
  transform: translate(-49%, -50%);
  object-fit: contain;
  display: block;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  letter-spacing: -0.015em;
}
.brand-name b { font-weight: 900; }
.brand-sub {
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  color: var(--ink-soft);
  transition: color .18s ease;
  position: relative;
}
.site-nav a:hover { color: var(--accent-deep); }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--accent-deep); color: var(--cream) !important;
  transform: translateY(-1px);
}

/* mobile menu */
.menu-btn { display: none; }
@media (max-width: 880px) {
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--cream);
    border: 1.5px solid var(--paper-edge);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    z-index: 50;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--paper-edge);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: 6px; text-align: center; }
  .menu-btn {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px;
    border: 1.5px solid var(--paper-edge);
    border-radius: var(--r-sm);
    background: var(--cream);
    color: var(--ink);
  }
  .site-header { position: relative; padding: 16px 16px; }
  .site-header .brand-mark { width: 54px; height: 54px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 10px; }
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-sm);
  background: var(--cream);
  color: var(--ink);
  border-color: var(--paper-edge);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); line-height: 1;
}
.btn-value { display: block; margin-top: 4px; font-size: 17px; font-weight: 700; line-height: 1; }
.btn-whatsapp { background: var(--green-wa); color: #062b13; border-color: var(--green-wa-deep); }
.btn-whatsapp .btn-label { color: rgba(6,43,19,0.55); }
.btn-whatsapp:hover { background: #1eb858; }
.btn-ghost { background: transparent; }
.btn svg { flex-shrink: 0; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  max-width: var(--container);
  margin: 12px auto 0;
  padding: 32px 28px 92px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  padding: 8px 14px;
  background: rgba(255,251,241,0.6);
  border: 1px solid var(--paper-edge);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50%     { box-shadow: 0 0 0 8px rgba(224,122,31,0.04); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--ink);
}
.hero h1 em {
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent-deep);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.14em;
  background: var(--accent);
  opacity: 0.22;
  border-radius: 2px;
  transform: skewX(-6deg);
}
.hero-line-2, .hero-line-3 { display: block; margin-top: 4px; }
.hero-line-3 { color: var(--ink); }

.hero-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 28px;
  text-wrap: pretty;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-flag {
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(255, 251, 241, 0.6);
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.hero-flag-tag {
  display: inline-block;
  padding: 3px 12px;
  margin-right: 8px;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  letter-spacing: 0.01em;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
  vertical-align: 1px;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}

.hero-secondary {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-mute);
}
.hero-secondary a {
  color: var(--blue-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(24, 90, 146, 0.35);
  transition: color .2s ease, text-decoration-color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-secondary a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}
.hs-stars {
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 13px;
  text-decoration: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 44px;
  padding: 24px 26px;
  background: rgba(255,251,241,0.55);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-lg);
  position: relative;
}
.hero-stats::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px dashed rgba(21,35,62,0.12);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}
.hero-stats li { text-align: center; position: relative; }
.hero-stats li + li::before {
  content: ""; position: absolute;
  left: 0; top: 14%; bottom: 14%;
  width: 1px; background: var(--paper-edge);
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num .pct {
  font-size: 0.6em; vertical-align: 0.2em;
  color: var(--accent-deep); margin-left: 0.05em;
}
.stat-lbl {
  display: block; margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-mute);
}

/* ----- workshop ticket card ----- */
.hero-card { position: relative; perspective: 1200px; }
.receipt {
  position: relative;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 28px,
      rgba(21,35,62,0.05) 28px,
      rgba(21,35,62,0.05) 29px
    ),
    var(--cream);
  padding: 28px 30px 130px;
  border-radius: 4px 4px 12px 12px;
  border: 1.5px solid var(--paper-edge);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.2deg);
  transition: transform .4s ease;
}
.receipt:hover { transform: rotate(0deg) translateY(-4px); }
/* torn top edge */
.receipt::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 10px;
  background:
    radial-gradient(circle at 5px 10px, var(--paper) 4px, transparent 4.5px) repeat-x;
  background-size: 10px 10px;
  background-position: 0 0;
}
/* punched holes */
.receipt::after {
  content: "";
  position: absolute;
  bottom: -1px; left: -1px; right: -1px; height: 10px;
  background:
    radial-gradient(circle at 5px 0px, var(--paper) 4px, transparent 4.5px) repeat-x;
  background-size: 10px 10px;
}
.receipt-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--paper-edge);
  margin-bottom: 16px;
}
.receipt-no {
  font-family: var(--display);
  font-weight: 900; font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.receipt-tag {
  font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 700;
}
.receipt-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--ink);
}
.receipt-title em {
  color: var(--accent-deep);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.receipt-steps {
  display: flex; flex-direction: column;
  gap: 16px;
}
.receipt-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}
.receipt-steps li > span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.receipt-steps li strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.receipt-steps li p {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.receipt-stamp {
  position: absolute;
  bottom: 28px; right: 26px;
  transform: rotate(-8deg);
  border: 2.5px solid var(--accent-deep);
  color: var(--accent-deep);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 900; letter-spacing: 0.02em;
  font-size: 16px; text-align: center;
  opacity: 0.85;
  background: rgba(224,122,31,0.04);
  box-shadow: inset 0 0 0 4px rgba(224,122,31,0.08);
}
.receipt-stamp-sub {
  font-family: var(--body);
  font-size: 8px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
  opacity: 0.85;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 16px 16px 72px; }
  .hero h1 { font-size: clamp(38px, 11vw, 64px); }
  .hero-stats { padding: 18px 14px; }
  .stat-lbl { font-size: 10px; letter-spacing: 0.1em; }
  .btn { padding: 14px 18px; flex: 1 1 calc(50% - 8px); }
  .btn-value { font-size: 15px; }
  .hero-ctas { gap: 10px; }
}

/* ==========================================================
   Section heads (shared)
   ========================================================== */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 700;
  padding-bottom: 12px; position: relative;
}
.section-eyebrow::after {
  content: ""; position: absolute;
  left: 0; bottom: 4px;
  width: 28px; height: 2px;
  background: var(--accent);
}
.section-head {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 28px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--ink);
  max-width: 22ch;
  margin-top: 12px;
  text-wrap: balance;
}
.section-head h2 em {
  font-weight: 500;
  color: var(--accent-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-lede {
  margin-top: 18px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}
.section-head-light .section-eyebrow { color: #FFB570; }
.section-head-light .section-eyebrow::after { background: var(--accent); }
.section-head-light h2 { color: var(--cream); }
.section-head-light h2 em { color: #FFB570; }
.section-head-light .section-lede { color: rgba(255,251,241,0.78); }

/* ==========================================================
   How it works (£20 fallback promise)
   ========================================================== */
.promise {
  background:
    radial-gradient(600px 200px at 80% 50%, var(--accent-soft), transparent 70%),
    var(--paper-deep);
  border-top: 1.5px solid var(--paper-edge);
  border-bottom: 1.5px solid var(--paper-edge);
  padding: 80px 28px;
}
.promise-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.promise-tail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.promise-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 10px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-wrap: balance;
}
.promise-copy h2 em {
  font-weight: 500;
  color: var(--accent-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.promise-copy p {
  margin-top: 16px;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}
.fineprint {
  margin-top: 14px !important;
  font-size: 13px !important;
  color: var(--ink-mute) !important;
  border-left: 2px solid var(--paper-edge);
  padding-left: 14px;
}

.promise-badge {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  text-align: center;
  position: relative;
  box-shadow:
    inset 0 0 0 4px var(--cream),
    inset 0 0 0 6px var(--accent),
    0 12px 30px -10px rgba(184,95,18,0.45);
  transform: rotate(-6deg);
  flex-shrink: 0;
  transition: transform .4s ease;
}
.promise-badge:hover { transform: rotate(-2deg) scale(1.02); }
.badge-pence {
  font-family: var(--display);
  font-size: 30px; font-weight: 700;
  line-height: 1; margin-top: 4px;
}
.badge-num {
  font-family: var(--display);
  font-size: 78px; font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.badge-sub {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 760px) {
  .promise { padding: 56px 16px; }
  .promise-tail { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .promise-badge { margin: 0; width: 156px; height: 156px; }
  .badge-num { font-size: 64px; }
  .badge-pence { font-size: 24px; }
}

/* ==========================================================
   Services
   ========================================================== */
.services {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-py) 28px 60px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
}
.service-card {
  position: relative;
  background: var(--cream);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 30%, transparent 30%);
  opacity: 0.7;
  transition: background .25s ease, opacity .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card:hover::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 1;
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(224,122,31,0.2);
}
.service-num {
  position: absolute;
  top: 24px; right: 26px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 60, "SOFT" 40;
  color: var(--ink);
}
.service-card p {
  margin-top: 10px;
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft);
}

/* ==========================================================
   Reviews
   ========================================================== */
.reviews {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-py) 28px 60px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap-md);
}
.review-card {
  background: var(--cream);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card-feature {
  background:
    linear-gradient(135deg, var(--accent-soft), rgba(34,115,181,0.05)),
    var(--cream);
  border-color: var(--accent);
}
.review-card .quote-mark {
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 70px;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 17px;
  margin-bottom: 16px;
}
.review-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 80;
  flex-grow: 1;
  text-wrap: pretty;
}
.review-card-feature .review-quote { font-size: 20px; }
.review-meta {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.review-meta::before {
  content: ""; width: 22px; height: 1px; background: var(--paper-edge);
}
.reviews-cta {
  margin-top: 36px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
}
.reviews-cta a {
  color: var(--blue-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 600;
}
.reviews-cta a:hover { color: var(--accent-deep); }

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--section-py) 28px 60px;
}
.faq-list {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-top: -24px;
}
.faq-item {
  background: var(--cream);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  position: relative;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.faq-item summary em {
  color: var(--accent-deep);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: var(--accent-deep);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 26px 24px;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
}
.faq-item p a {
  color: var(--blue-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.faq-item p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 600px) {
  .faq-item summary { padding: 18px 20px; font-size: 17px; }
  .faq-item p { padding: 0 20px 20px; font-size: 15px; }
}

/* ==========================================================
   Contact (dark band)
   ========================================================== */
.contact {
  margin-top: 60px;
  padding: 90px 28px;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(224,122,31,0.18), transparent 60%),
    var(--ink);
  color: var(--cream);
}
.contact-inner { max-width: var(--container); margin: 0 auto; }
.contact .section-head { padding: 0; margin-bottom: 48px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: rgba(255,251,241,0.15);
  border: 1.5px solid rgba(255,251,241,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.contact-grid li {
  background: var(--ink);
  padding: 26px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s ease;
}
.contact-grid li:hover { background: #1c2d4f; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,251,241,0.55);
  font-weight: 700;
}
.contact-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--cream);
  font-variation-settings: "opsz" 60, "SOFT" 40;
  text-decoration: none;
  overflow-wrap: anywhere;
  hyphens: none;
  transition: color .2s ease;
}
.contact-value-email {
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: -0.01em;
}
a.contact-value:hover { color: #FFB570; }
.contact-note {
  font-size: 13px;
  color: rgba(255,251,241,0.6);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .contact { padding: 64px 16px; }
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  padding: 50px 28px 60px;
  background: var(--paper-deep);
  border-top: 1.5px solid var(--paper-edge);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; line-height: 1.4;
}
.footer-brand .brand-mark {
  width: 52px;
  height: 52px;
}
.footer-brand strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.footer-meta {
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}
.footer-links {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: right;
}
.footer-links a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { color: var(--accent-deep); }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-meta, .footer-links { text-align: left; }
}

/* ==========================================================
   Sticky mobile contact bar
   ========================================================== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(244, 236, 217, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1.5px solid var(--paper-edge);
  box-shadow: 0 -8px 24px rgba(21,35,62,0.15);
  gap: 8px;
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s ease;
}
.sticky-bar a:active { transform: scale(0.97); }
.sticky-bar .sb-wa   { background: var(--green-wa); color: #062b13; }
.sticky-bar .sb-email{ background: var(--cream); color: var(--ink); border-color: var(--paper-edge); }

@media (max-width: 760px) {
  body[data-sticky="on"] .sticky-bar { display: flex; }
  body[data-sticky="on"] { padding-bottom: 76px; }
}

/* ==========================================================
   Print
   ========================================================== */
@media print {
  .grain, body::before, .nav-cta, .hero-ctas, .skip-link, .sticky-bar, .menu-btn { display: none !important; }
  body { background: white; color: black; }
}

/* ==========================================================
   Reveal-on-load
   ========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { opacity: 0; transform: translateY(12px); animation: rise .7s ease forwards; }
  .hero-copy > .eyebrow    { animation-delay: .05s; }
  .hero-copy > h1          { animation-delay: .15s; }
  .hero-copy > .hero-lede  { animation-delay: .30s; }
  .hero-copy > .hero-ctas  { animation-delay: .45s; }
  .hero-copy > .hero-stats { animation-delay: .60s; }
  .hero-card { opacity: 0; transform: translateY(12px) rotate(2.2deg); animation: riseRot .8s ease .5s forwards; }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes riseRot { to { opacity: 1; transform: translateY(0) rotate(2.2deg); } }
