/* ============================================================
   SiteReady homepage - direction v2 (proof build, 2026-05-31)
   Warm editorial. Bricolage Grotesque + Hanken Grotesk.
   Paper + warm ink, single locked orange accent (brand equity).
   Scoped to index.html only (home-v2.css). Other pages keep styles.css.
   ============================================================ */

:root {
  /* canvas */
  --paper:    #FBF8F2;
  --paper-2:  #F4EEE2;
  --paper-3:  #EDE5D6;
  --paper-card:#FFFFFF;

  /* ink (warm near-black, distinct from any default espresso hex) */
  --ink:      #211C18;
  --ink-soft: #423A32;
  --muted:    #847A6C;
  --line:     #E4DBCB;
  --line-2:   #D7CCB8;

  /* single accent - locked brand orange */
  --accent:      #E85D17;
  --accent-deep: #C44E10;
  --accent-tint: #FBE6D6;

  /* legacy aliases: interior pages carry inline styles referencing the old
     variable names. Map them onto the v2 system so nothing breaks on migration.
     NOTE: do NOT redefine --paper here; v2 owns it as the warm canvas. Legacy
     card surfaces use --paper-card (white) via the rules below. */
  --bone:         #FBF8F2;
  --bone-deep:    #F4EEE2;
  --border:       #E4DBCB;
  --text-muted:   #847A6C;
  --text-subdued: #423A32;
  --font-sans:'Hanken Grotesk',system-ui,sans-serif;
  --font-serif:'Bricolage Grotesque',Georgia,serif;

  --display:'Bricolage Grotesque','Hanken Grotesk',system-ui,sans-serif;
  --body:'Hanken Grotesk',system-ui,sans-serif;

  --max: 1180px;
  --pad: 24px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Emil: strong custom curves, not the weak CSS defaults */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --shadow-sm: 0 2px 10px rgba(33,28,24,.05);
  --shadow:    0 24px 60px -22px rgba(33,28,24,.26);
  --shadow-accent: 0 20px 50px -18px rgba(232,93,23,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

h1, h2, h3 { font-family: var(--display); color: var(--ink); letter-spacing: -0.02em; line-height: 1.04; font-weight: 700; margin: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 92px 0; }

/* focus visibility (a11y guardrail) */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow-accent);
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }
.btn .arrow { transition: transform 220ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-2); box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-cream { background: var(--paper); color: var(--ink); box-shadow: 0 18px 40px -16px rgba(0,0,0,.35); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(251,248,242,.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(33,28,24,.5); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand img { height: 27px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-soft); font-size: 15px; font-weight: 500; position: relative; transition: color 160ms var(--ease-out); }
.nav a:not(.cta-pill)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.nav a:not(.cta-pill):hover { color: var(--ink); }
.nav a:not(.cta-pill):hover::after { transform: scaleX(1); }
.cta-pill {
  background: var(--accent); color: #fff !important; padding: 9px 18px; border-radius: 999px;
  font-weight: 600; box-shadow: var(--shadow-accent);
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.cta-pill:hover { background: var(--accent-deep); transform: translateY(-2px); }
.cta-pill:active { transform: scale(0.97); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: none; border: 1px solid var(--line-2);
  border-radius: 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 250ms var(--ease-out), opacity 160ms var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 76px 0 84px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(640px 380px at 82% 6%, rgba(232,93,23,.18), transparent 62%),
    radial-gradient(560px 440px at 4% 78%, rgba(232,93,23,.08), transparent 60%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate3d(-16px, 14px, 0) scale(1.04); } }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6.6vw, 78px); font-weight: 800; }
.hero h1 .turn { display: block; color: var(--accent); font-style: italic; font-weight: 700; }
.hero .lead { max-width: 480px; margin: 26px 0 0; font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); }
.hero .ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* hero screenshot stack - real screenshots in browser chrome */
.hero-stage { position: relative; justify-self: center; width: 100%; max-width: 520px; height: 420px; }
.shot {
  position: absolute; border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.shot .bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.shot .bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.shot .bar i:nth-child(1){ background:#ff5f56; } .shot .bar i:nth-child(2){ background:#ffbd2e; } .shot .bar i:nth-child(3){ background:#27c93f; }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.shot-1 { width: 340px; top: 0; right: 0; z-index: 3; transform: rotate(2deg); }
.shot-1 img { height: 230px; }
.shot-2 { width: 290px; left: 0; top: 120px; z-index: 2; transform: rotate(-3deg); }
.shot-2 img { height: 195px; }
.shot-3 { width: 230px; left: 80px; bottom: -6px; z-index: 4; transform: rotate(4deg); }
.shot-3 img { height: 150px; }
.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-12px) rotate(2deg); } }
.ship-tag {
  position: absolute; bottom: 6px; right: 4px; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper); font-size: 13px; font-weight: 600;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow);
}
.ship-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #27c93f; box-shadow: 0 0 0 3px rgba(39,201,63,.25); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(39,201,63,0); } }

/* ---------- section heads ---------- */
.head { max-width: 720px; margin-bottom: 44px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; }
.head p { margin: 14px 0 0; color: var(--muted); font-size: 17px; max-width: 56ch; }
.head .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--ink); font-weight: 600; font-size: 15px; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.head .more:hover { color: var(--accent-deep); }

/* ---------- examples (featured + trio) ---------- */
.ex-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 22px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.ex-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ex-featured .thumb { position: relative; overflow: hidden; min-height: 320px; background: var(--paper-2); }
.ex-featured .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 600ms var(--ease-out); }
.ex-featured:hover .thumb img { transform: scale(1.04); }
.ex-featured .body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.ex-featured h3 { font-size: 28px; margin-bottom: 6px; }
.tier-badge { position: absolute; top: 14px; right: 14px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; color: #fff; }
.tier-badge.standard { background: var(--ink); }
.tier-badge.starter { background: var(--accent); }
.brand-pill { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.ex-meta { font-size: 13px; color: var(--accent-deep); font-weight: 600; letter-spacing: .02em; margin-bottom: 12px; }
.ex-card p, .ex-featured p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.ex-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); font-size: 14px; }
.ex-link:hover { color: var(--accent-deep); }
.ex-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ex-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out); }
.ex-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ex-card .thumb { position: relative; overflow: hidden; height: 180px; background: var(--paper-2); }
.ex-card .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 600ms var(--ease-out); }
.ex-card:hover .thumb img { transform: scale(1.05); }
.ex-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ex-card h3 { font-size: 19px; margin-bottom: 5px; }

/* ---------- how it works (the dark moment) ---------- */
.process { background: var(--ink); color: var(--paper); border-radius: 28px; margin: 0 16px; padding: 86px 0; position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; top: -40%; right: -10%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(232,93,23,.22), transparent 65%); pointer-events: none; }
.process .head h2 { color: var(--paper); }
.process .head p { color: #C7BEB0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.step { padding: 30px 26px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.step .num { font-family: var(--display); font-weight: 800; font-size: 46px; color: transparent; -webkit-text-stroke: 1.5px var(--accent); line-height: 1; margin-bottom: 16px; }
.step h3 { color: var(--paper); font-size: 21px; margin-bottom: 9px; }
.step p { color: #C7BEB0; font-size: 15px; margin: 0; }
.process .after { margin-top: 26px; font-size: 14px; color: #C7BEB0; position: relative; z-index: 1; }
.process .after a { color: var(--paper); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; position: relative;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier.featured { border: 1.5px solid var(--accent); box-shadow: var(--shadow-accent); transform: scale(1.03); }
.tier.featured:hover { transform: scale(1.03) translateY(-4px); }
.tier .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-accent); }
.tier .tname { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 6px; }
.tier .price { font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--ink); letter-spacing: -.03em; }
.tier .care { font-size: 14px; color: var(--muted); margin-top: 4px; }
.tier .care strong { color: var(--ink); }
.tier hr { border: none; border-top: 1px solid var(--line); margin: 20px 0; }
.tier .desc { font-size: 15px; color: var(--ink-soft); margin: 0; }
.tier .self-ref { margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--accent-deep); }
.pricing-note { margin-top: 26px; font-size: 13px; color: var(--muted); }
.pricing-note a { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* ---------- care plan (icon grid, hairline separation) ---------- */
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 40px; }
.care-item { padding: 26px 0; border-top: 1px solid var(--line); }
.care-item .ico { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--accent-tint); color: var(--accent-deep); margin-bottom: 14px; }
.care-item .ico svg { width: 21px; height: 21px; }
.care-item h3 { font-size: 17px; margin-bottom: 7px; }
.care-item p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- about split ---------- */
.about-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.about-split .portrait { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-split .portrait img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-split h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.about-split p { color: var(--ink-soft); margin: 0 0 14px; max-width: 56ch; }
.about-split .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; color: var(--ink); font-weight: 600; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 22px 0;
  font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); transition: color 160ms var(--ease-out); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-mark { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--accent); border-radius: 2px; transition: transform 250ms var(--ease-out), opacity 200ms var(--ease-out); }
.faq-mark::before { width: 12px; height: 2.5px; }
.faq-mark::after { width: 2.5px; height: 12px; }
.faq-item[open] .faq-mark::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-a { overflow: hidden; }
.faq-a p { margin: 0 0 22px; color: var(--muted); font-size: 15px; max-width: 52ch; }

/* ---------- final CTA (orange band) ---------- */
.final { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; text-align: center; padding: 86px 0; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"); pointer-events: none; }
.final h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); position: relative; }
.final p { color: rgba(255,255,255,.92); max-width: 50ch; margin: 16px auto 30px; font-size: 18px; position: relative; }
.final .btn-cream { position: relative; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: 60px 0 30px; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cols .brand img { height: 26px; }
.footer-cols .tagline { margin-top: 14px; color: #ABA294; font-size: 15px; max-width: 280px; }
.footer-cols h4 { font-family: var(--display); color: var(--paper); font-size: 14px; margin: 0 0 14px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { color: #C7BEB0; font-size: 15px; transition: color 160ms var(--ease-out); }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; color: #8B8276; font-size: 13px; }
.footer-bottom .site-credit a { color: #C7BEB0; }
.footer-bottom .site-credit a:hover { color: var(--accent); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- hero orchestrated load ---------- */
.hero .load { opacity: 0; transform: translateY(18px); animation: loadIn .8s var(--ease-out) forwards; }
.hero .load.d1 { animation-delay: .05s; } .hero .load.d2 { animation-delay: .15s; }
.hero .load.d3 { animation-delay: .27s; } .hero .load.d4 { animation-delay: .4s; }
@keyframes loadIn { to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage { order: 2; max-width: 460px; height: 360px; }
  .ex-featured { grid-template-columns: 1fr; }
  .ex-featured .thumb { min-height: 220px; }
  .ex-trio { grid-template-columns: 1fr 1fr; }
  .steps, .tiers { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .about-split { grid-template-columns: 1fr; gap: 28px; }
  .about-split .portrait { max-width: 360px; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--paper); padding: 18px 24px 24px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: flex; animation: navIn .3s var(--ease-out); }
  @keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .nav a:not(.cta-pill) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav a:not(.cta-pill)::after { display: none; }
  .cta-pill { margin-top: 10px; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-stage { height: 320px; max-width: 380px; }
  .shot-1 { width: 250px; } .shot-1 img { height: 170px; }
  .shot-2 { width: 215px; top: 95px; } .shot-2 img { height: 145px; }
  .shot-3 { width: 170px; left: 50px; } .shot-3 img { height: 112px; }
  .ex-trio { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .process { margin: 0 12px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .load { opacity: 1; transform: none; }
  .float { animation: none; }
}

/* hover only on real pointers */
@media (hover: none) {
  .ex-card:hover, .ex-featured:hover, .tier:hover { transform: none; }
}

/* ============================================================
   Interior pages (how-it-works, about, pricing, examples,
   contact, forms, legal, christmas-lights). Migrated onto the
   v2 warm-editorial system. Loaded site-wide as site-v2.
   ============================================================ */

/* generic interior section rhythm */
section { padding: 80px 0; }
section.tinted { background: var(--paper-2); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head .right a { font-size: 15px; }

/* interior body type */
section h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; margin: 0 0 18px; }
section h3 { font-size: 18px; font-weight: 700; line-height: 1.3; margin: 0; }
section p { margin: 0 0 14px; }
.lead { color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 19px); max-width: 60ch; }
.cta-text { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 2px; transition: color 160ms var(--ease-out); }
.cta-text:hover { color: var(--accent-deep); }

/* legacy hero structure (.hero > .wrap, used on landing pages like
   christmas-lights). The homepage uses .hero > .hero-inner instead, which the
   grid rule above targets; this keeps the simpler centered variant sane. */
.hero > .wrap { position: relative; z-index: 2; padding-top: 8px; padding-bottom: 8px; }
.hero > .wrap h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 70px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; margin: 0 0 8px; }
.hero > .wrap .lead { max-width: 56ch; margin-top: 22px; }
.hero > .wrap .ctas { display: flex; gap: 14px; margin-top: 30px; align-items: center; flex-wrap: wrap; }

/* block kicker line: the second line of a two-part headline */
.kicker { display: block; color: var(--accent); font-style: italic; font-weight: 700; }

/* interior page hero */
.page-hero { padding: 76px 0 30px; position: relative; }
.page-hero h1 { font-family: var(--display); font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.03; margin: 0 0 18px; color: var(--ink); }
.page-hero .kicker { display: block; color: var(--accent); font-style: italic; font-weight: 700; }
.page-hero .lead { font-size: clamp(17px, 1.7vw, 20px); max-width: 58ch; }

/* eyebrow: only the inline category labels still use it; tone it down so it
   reads as a quiet functional tag rather than a templated section eyebrow */
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent-deep); letter-spacing: 0.02em; text-transform: none; margin: 0 0 14px; }

/* two-column rows (how-it-works, about) */
.row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.row-split.flip > .row-text { order: 2; }
.row-split.flip > .row-art { order: 1; }
.row-text h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.row-text p { font-size: 16px; color: var(--ink-soft); }
.row-art { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); min-height: 240px; display: flex; align-items: center; justify-content: center; padding: 32px; color: var(--muted); font-size: 13px; letter-spacing: 0.04em; text-align: center; box-shadow: var(--shadow-sm); }

/* about story */
.about-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: start; }
.about-story img { border-radius: var(--radius-lg); border: 1px solid var(--line); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; box-shadow: var(--shadow); }
.about-story p { font-size: 16px; color: var(--ink-soft); }

/* split (about teaser, generic) */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.split.flip { grid-template-columns: 1.15fr .85fr; }
.split img { border-radius: var(--radius-lg); border: 1px solid var(--line); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; box-shadow: var(--shadow); }
.split .text p { font-size: 16px; color: var(--ink-soft); }

/* don't-list */
.dont-list { padding: 0; list-style: none; margin: 0; }
.dont-list li { padding: 16px 0; border-top: 1px solid var(--line); font-size: 16px; color: var(--ink); }
.dont-list li:first-child { border-top: 0; }

/* tinted statement section gets warm card tone */
section.tinted .lead, section.tinted p { color: var(--ink-soft); }

/* legacy pricing tiers (pricing.html uses ul lists + tier-cta) */
.tier ul { padding: 0; margin: 14px 0 0; list-style: none; }
.tier ul li { font-size: 15px; line-height: 1.5; padding-left: 24px; position: relative; margin-bottom: 9px; color: var(--ink-soft); }
.tier ul li::before { content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--accent-tint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23C44E10' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 10px; background-repeat: no-repeat; background-position: center; }
.tier .tier-name { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.tier .builds-on { font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase; margin: 18px 0 0; padding-top: 14px; border-top: 1px dashed var(--line); }
.tier .for-whom { font-size: 13px; color: var(--muted); margin-top: 16px; font-style: italic; }
.tier .tier-cta { display: block; text-align: center; margin-top: auto; padding: 13px 18px; background: var(--ink); color: var(--paper); border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; transition: background 160ms var(--ease-out), transform 160ms var(--ease-out); }
.tier .tier-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.tier.featured .tier-cta { background: var(--accent); }
.tier.featured .tier-cta:hover { background: var(--accent-deep); }
.tier { display: flex; flex-direction: column; }

/* legacy care item with check glyph (pricing/how-it-works) */
.care-item h3 { display: flex; align-items: center; gap: 10px; font-size: 16px; margin-bottom: 7px; }
.care-item .check { color: var(--accent-deep); font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: var(--accent-tint); border-radius: 50%; flex: 0 0 20px; }

/* legacy examples grid (examples.html, 2-up cards) */
.examples-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.example-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out); }
.example-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.example-thumb { height: 188px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 22px; background: var(--paper-2); }
.example-thumb.has-screenshot { padding: 0; }
.example-screenshot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 600ms var(--ease-out); }
.example-card:hover .example-screenshot { transform: scale(1.05); }
.example-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.example-body h3 { margin-bottom: 6px; font-size: 18px; }
.example-meta { font-size: 13px; color: var(--accent-deep); font-weight: 600; margin-bottom: 10px; }
.example-body p { font-size: 14px; margin: 0 0 14px; line-height: 1.55; color: var(--muted); }
.example-status { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 10px; }
.example-status.live { color: var(--accent-deep); }
.example-link { font-size: 14px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; }
.example-link:hover { color: var(--accent-deep); }
.example-card .tier-badge { position: absolute; top: 12px; right: 12px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; border: none; z-index: 2; }
.example-card .tier-badge.starter { background: var(--accent); }
.example-card .tier-badge.standard { background: var(--ink); }
.example-card .tier-badge.premium { background: var(--accent-deep); }

/* legacy featured trio + placeholders */
.tier-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 18px; }
.tier-trio .example-card.is-featured { border: 1.5px solid var(--accent); }
.tier-trio .example-card.placeholder { background: transparent; border: 1px dashed var(--line-2); }
.tier-trio .example-card.placeholder .example-thumb { background: var(--paper-2); color: var(--muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.premium-self-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.premium-self-inner img { width: 56px; height: auto; }
.premium-self-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); }

/* mini-mocks keep their own per-brand palettes (intentionally off-system) */
.mock { width: 100%; height: 100%; border-radius: 6px; padding: 18px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.mock .mock-eyebrow { font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; opacity: .85; }
.mock .mock-h { font-size: 17px; line-height: 1.05; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.02em; }
.mock .mock-sub { font-size: 9.5px; line-height: 1.4; opacity: .75; margin: 0 0 10px; }
.mock .mock-cta { display: inline-block; font-size: 8.5px; font-weight: 600; padding: 5px 9px; border-radius: 4px; align-self: flex-start; }
.mock-ccs { background: #1A1D21; color: #fff; } .mock-ccs .mock-eyebrow { color: #F5A623; } .mock-ccs .mock-cta { background: #F5A623; color: #1A1D21; }
.mock-garcia { background: #0A0A0A; color: #fff; } .mock-garcia .mock-eyebrow { color: #7FE83E; } .mock-garcia .mock-cta { background: #7FE83E; color: #0A0A0A; }
.mock-mini { background: #F5E5D3; color: #2A1F15; } .mock-mini .mock-eyebrow { color: #B07738; } .mock-mini .mock-h { font-style: italic; font-weight: 400; font-size: 19px; } .mock-mini .mock-cta { background: #B07738; color: #F5E5D3; }
.mock-bee { background: #FFFBE6; color: #1F1F1F; } .mock-bee .mock-eyebrow { color: #1F1F1F; } .mock-bee .mock-cta { background: #1F1F1F; color: #FFFBE6; }

/* legacy FAQ markup (faq-q / plus) used on pricing */
.faq-item { border-top: 1px solid var(--line); padding: 0; }
.faq-q { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin: 0; padding: 20px 0 8px; }
.faq-q h3 { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--ink); }
.faq-q .plus { color: var(--accent); font-size: 18px; font-weight: 400; }
.faq-a { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; padding: 0 0 20px; max-width: none; }
.faq-a p { margin: 0; }

/* contact paths / cards */
.contact-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 8px; }
.path-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out); }
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.path-card h2 { font-size: 22px; margin: 6px 0 12px; }
.path-card p { font-size: 15px; line-height: 1.55; flex: 1; margin-bottom: 18px; color: var(--ink-soft); }
.path-card .cta-pill, .path-card .cta-text { align-self: flex-start; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 52px; }
.contact-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 16px; margin-bottom: 12px; }
.contact-card .row { font-size: 15px; margin-bottom: 10px; color: var(--ink-soft); }
.contact-card .row strong { color: var(--ink); font-weight: 600; }

/* forms */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; background: var(--paper-card); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; font-family: var(--body); font-size: 15px; color: var(--ink); transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23211C18' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row .field { margin-bottom: 18px; }
.form-section { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 28px 20px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.form-section h3 { font-size: 18px; margin: 0 0 6px; }
.form-section .form-section-intro { font-size: 14px; color: var(--muted); margin: 0 0 22px; }
.file-input { display: block; width: 100%; font-family: var(--body); font-size: 14px; color: var(--ink-soft); padding: 10px 0; }
.file-input::file-selector-button { background: var(--paper-card); border: 1px solid var(--line); border-radius: 8px; padding: 9px 15px; font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; margin-right: 12px; transition: background 160ms var(--ease-out); }
.file-input::file-selector-button:hover { background: var(--paper-2); }
.radio-list, .checkbox-list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 0; }
.radio-list label, .checkbox-list label { display: block; position: relative; font-size: 15px; color: var(--ink); cursor: pointer; padding: 12px 16px 12px 40px; background: var(--paper-card); border: 1.5px solid var(--line); border-radius: 11px; line-height: 1.5; transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out); }
.radio-list label:has(input:checked), .checkbox-list label:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.radio-list input, .checkbox-list input { position: absolute; left: 15px; top: 15px; width: auto; margin: 0; accent-color: var(--accent); }
.success-msg { display: none; padding: 15px 18px; background: var(--accent-tint); border: 1px solid var(--accent); border-radius: 11px; color: var(--ink); font-size: 14px; margin-top: 14px; }
.success-msg.show { display: block; }
.error-msg { padding: 15px 18px; background: #FDECEC; border: 1px solid #b00020; border-radius: 11px; color: #b00020; font-size: 14px; margin-top: 14px; }

/* numbered list */
.numbered-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.numbered-list .item { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.numbered-list .num { font-family: var(--display); font-size: 28px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.2px var(--accent); margin-bottom: 12px; }
.numbered-list p { font-size: 15px; margin: 0; color: var(--ink-soft); }

/* examples filter bar */
.filter-bar-section { padding: 14px 0 10px; border-bottom: 1px solid var(--line); }
.filter-toggle > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); padding: 9px 16px; background: var(--paper-card); border: 1px solid var(--line); border-radius: 999px; transition: border-color 160ms var(--ease-out), color 160ms var(--ease-out); }
.filter-toggle > summary::-webkit-details-marker { display: none; }
.filter-toggle > summary:hover { border-color: var(--accent); color: var(--accent-deep); }
.filter-toggle-caret { font-size: 10px; transition: transform 200ms var(--ease-out); display: inline-block; }
.filter-toggle[open] > summary .filter-toggle-caret { transform: rotate(180deg); }
.filter-toggle[open] > summary { border-color: var(--accent); color: var(--accent-deep); }
.filter-bar { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.filter-label { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); min-width: 72px; }
.chip { font-family: inherit; font-size: 14px; font-weight: 600; padding: 7px 14px; background: var(--paper-card); color: var(--ink); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out), color 160ms var(--ease-out); }
.chip:hover { border-color: var(--accent); color: var(--accent-deep); }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip.active:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.filter-empty { font-size: 15px; color: var(--muted); margin: 12px 0 0; }

/* legacy final-cta (interior pages) reuses the orange band treatment */
.final-cta { text-align: center; padding: 86px 0; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-radius: 28px; margin: 0 16px 80px; }
.final-cta h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); max-width: 640px; margin: 0 auto 14px; line-height: 1.12; }
.final-cta p { color: rgba(255,255,255,.92); max-width: 540px; margin: 0 auto 26px; font-size: 17px; }
.final-cta .cta-pill { background: var(--paper); color: var(--ink) !important; box-shadow: 0 18px 40px -16px rgba(0,0,0,.35); }
.final-cta .cta-pill:hover { background: #fff; }

.kv-two { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }

/* interior responsive */
@media (max-width: 940px) {
  section { padding: 60px 0; }
  .page-hero { padding: 52px 0 24px; }
  .examples-grid, .numbered-list, .tier-trio { grid-template-columns: 1fr; }
  .row-split, .row-split.flip, .about-story, .split, .split.flip, .contact-grid, .contact-paths, .kv-two { grid-template-columns: 1fr; gap: 32px; }
  .row-split.flip > .row-text, .row-split.flip > .row-art { order: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-story img, .split img { max-width: 420px; }
}
@media (max-width: 680px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .final-cta { margin: 0 12px 60px; }
}
