/* ==========================================================================
   Doyle Made. Site styles, rebuilt 2026-08-19.
   Type: Archivo Black for display (matches Interior Doctor), Inter Tight for body.
   Change the variables below and the whole site follows.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --accent: #C8462B;
  --accent-deep: #A03520;
  --accent-ink: #FFFFFF;

  --ink: #12110E;
  --ink-soft: #4A4741;
  --ink-faint: #8B867C;
  --paper: #FBFAF7;
  --paper-alt: #F2EFE8;
  --paper-warm: #EDE8DD;
  --line: #E3DFD5;
  --dark: #12110E;
  --dark-soft: #1E1C18;

  --display: "Archivo Black", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --head-h: 68px;
  --shadow: 0 1px 2px rgba(18,17,14,.04), 0 12px 32px rgba(18,17,14,.07);
  --shadow-lg: 0 2px 4px rgba(18,17,14,.05), 0 28px 70px rgba(18,17,14,.13);
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.032em;
  margin: 0 0 .44em;
}
h1 { font-size: clamp(2.3rem, 6.1vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.95rem); }
h3 {
  font-family: var(--sans); font-size: 1.06rem; font-weight: 600;
  letter-spacing: -0.005em; margin: 0 0 .5em; line-height: 1.3;
}
p { margin: 0 0 1em; }
em { font-style: italic; }
.accent { color: var(--accent); }
.italic { font-style: normal; }
.hero h1 .it, h1 .it, h2 .it { font-style: normal; color: var(--accent); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
@media (min-width: 1080px) { .wrap { padding: 0 44px; } }
.narrow { max-width: 860px; }
section { padding: 84px 0; }
@media (min-width: 900px) { section { padding: 116px 0; } }

.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); flex: none; }
.lede { font-size: clamp(1.08rem, 2.2vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; max-width: 62ch; }
.small { font-size: .86rem; color: var(--ink-faint); line-height: 1.5; }

.band-alt { background: var(--paper-alt); }
.band-warm { background: var(--paper-warm); }
.band-dark { background: var(--dark); color: #EFECE4; }
.band-dark h1, .band-dark h2 { color: #FBFAF7; }
.band-dark .lede { color: #B9B3A6; }
.band-dark .small { color: #85806F; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: 100px; border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; letter-spacing: -0.005em; cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.band-dark .btn-ghost { border-color: #3A362E; color: #EFECE4; }
.band-dark .btn-ghost:hover { border-color: #EFECE4; }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }
.btn-arrow { transition: transform .16s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* --- header --------------------------------------------------------------- */
.head {
  position: sticky; top: 0; z-index: 60; height: var(--head-h);
  background: rgba(251,250,247,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.head-in { height: var(--head-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.mark { font-family: var(--display); font-size: 1.12rem; letter-spacing: -.03em; letter-spacing: -0.02em; display: flex; align-items: center; gap: 9px; }
.mark .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.nav { display: none; gap: 30px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
@media (min-width: 940px) { .nav { display: flex; } }
.head .btn { padding: 11px 20px; font-size: .88rem; }
.burger { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 100px; background: transparent; cursor: pointer; }
@media (min-width: 940px) { .burger { display: none; } }
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink); }
.burger span::before { top: -5px; } .burger span::after { top: 5px; }
.menu { position: fixed; inset: var(--head-h) 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 22px 28px; display: none; z-index: 59; }
.menu.open { display: block; }
.menu a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; font-weight: 500; }

/* --- hero ----------------------------------------------------------------- */
.hero { padding: 62px 0 0; position: relative; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 96px 0 0; } }
.hero::after {
  content: ""; position: absolute; top: -220px; right: -180px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(200,70,43,.13), transparent 62%); pointer-events: none;
}
.hero-grid { display: grid; gap: 52px; align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 46px; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 .line2 { display: block; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .84rem; color: var(--ink-faint); font-weight: 500; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* --- marquee -------------------------------------------------------------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; padding: 17px 0; margin-top: 76px; }
.marquee-track { display: flex; gap: 44px; white-space: nowrap; width: max-content; animation: slide 34s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 1.02rem; letter-spacing: -.02em; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 44px; }
.marquee-track span::after { content: "\25CF"; font-size: .42rem; color: var(--accent); font-family: var(--sans); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* --- phone mockup --------------------------------------------------------- */
.phone {
  width: 100%; max-width: 320px; margin: 0 auto; background: #12110E; border-radius: 40px;
  padding: 10px; box-shadow: var(--shadow-lg); position: relative;
}
.phone-screen { background: #fff; border-radius: 31px; overflow: hidden; aspect-ratio: 9 / 19; display: flex; flex-direction: column; }
.phone-bar { height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; font-size: .62rem; font-weight: 600; color: #12110E; flex: none; }
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 88px; height: 22px; background: #12110E; border-radius: 0 0 14px 14px; z-index: 3; }

.ig-top { display: flex; align-items: center; gap: 9px; padding: 8px 12px; border-bottom: 1px solid #EEE; flex: none; }
.ig-av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #E8A03A); flex: none; }
.ig-name { font-size: .72rem; font-weight: 600; }
.ig-sub { font-size: .6rem; color: #999; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 2px; flex: 1; align-content: start; }
.ig-grid + .ig-foot { margin-top: auto; }
.ig-cell { aspect-ratio: 1; border-radius: 2px; position: relative; overflow: hidden; display: grid; place-items: center; }
.ig-cell span { font-family: var(--display); font-size: .58rem; color: #fff; text-align: center; line-height: 1.1; padding: 3px; }
.ig-foot { flex: none; border-top: 1px solid #EEE; padding: 9px 12px 12px; display: grid; gap: 6px; }
.ig-foot-row { display: flex; align-items: center; gap: 7px; font-size: .64rem; color: #6B665C; }
.ig-foot-row b { margin-left: auto; color: #12110E; font-size: .7rem; }
.ig-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }
.ig-cell.play::after { content: "\25B6"; position: absolute; top: 4px; right: 5px; font-size: .4rem; color: rgba(255,255,255,.9); }

/* mock imagery, generated with gradients so no photo files are needed */
.sw1 { background: linear-gradient(140deg, #2B2A26, #55514A); }
.sw2 { background: linear-gradient(140deg, var(--accent), #E27A3F); }
.sw3 { background: linear-gradient(140deg, #3C4A3F, #7C8C6E); }
.sw4 { background: linear-gradient(140deg, #6B5B4A, #A99277); }
.sw5 { background: linear-gradient(140deg, #1F2833, #4A5C6E); }
.sw6 { background: linear-gradient(140deg, #7A2E1E, #C8462B); }
.sw7 { background: linear-gradient(140deg, #45403A, #8B8175); }
.sw8 { background: linear-gradient(140deg, #2E3B2E, #5E7350); }
.sw9 { background: linear-gradient(140deg, #8A6A3B, #D6B26A); }

/* floating chips around the phone */
.phone-stage { position: relative; }
.chip {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 14px; box-shadow: var(--shadow); font-size: .78rem; font-weight: 600; line-height: 1.35;
  display: flex; align-items: center; gap: 9px; z-index: 4;
}
.chip .k { font-family: var(--display); font-size: 1.12rem; color: var(--accent); line-height: 1; }
.chip .t { font-weight: 500; color: var(--ink-soft); font-size: .74rem; }
.chip-a { top: 12%; left: -6px; }
.chip-b { bottom: 20%; right: -8px; }
.chip-c { bottom: 4%; left: 4%; }
@media (max-width: 520px) { .chip-a { left: -4px; } .chip-b { right: -4px; } .chip-c { display: none; } }

/* --- generic cards -------------------------------------------------------- */
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: 1fr; } .g3 { grid-template-columns: 1fr; } .g4 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .g2, .g4 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .g4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .n { font-family: var(--display); font-size: 1.7rem; color: var(--accent); line-height: 1; display: block; margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.band-dark .card { background: var(--dark-soft); border-color: #2C2924; color: #C9C4B8; }
.band-dark .card h3 { color: #FBFAF7; }

.pillar { display: flex; flex-direction: column; height: 100%; }
.pillar .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-alt); display: grid; place-items: center; margin-bottom: 16px; }
.pillar .ico svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.6; }

/* --- split feature -------------------------------------------------------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } .split.flip > *:first-child { order: 2; } }

/* --- WhatsApp mock -------------------------------------------------------- */
.wa { background: #0B141A; border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-lg); max-width: 400px; }
.wa-top { display: flex; align-items: center; gap: 10px; padding: 0 4px 12px; border-bottom: 1px solid #1F2C33; }
.wa-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #E8A03A); flex: none; }
.wa-name { color: #E9EDEF; font-size: .86rem; font-weight: 600; }
.wa-on { color: #8696A0; font-size: .68rem; }
.wa-body { padding: 14px 4px 4px; display: flex; flex-direction: column; gap: 9px; }
.bub { max-width: 84%; padding: 9px 12px; border-radius: 10px; font-size: .82rem; line-height: 1.45; }
.bub.them { background: #202C33; color: #E9EDEF; align-self: flex-start; border-top-left-radius: 3px; }
.bub.us { background: #005C4B; color: #E9EDEF; align-self: flex-end; border-top-right-radius: 3px; }
.bub .t { display: block; font-size: .6rem; color: #8696A0; margin-top: 4px; text-align: right; }
.bub.us .t { color: #9FCBBF; }

/* --- ads panel ------------------------------------------------------------ */
.ads { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); max-width: 440px; }
.ads-head { display: flex; align-items: center; justify-content: space-between; font-size: .74rem; font-weight: 600; color: var(--ink-faint); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.ads-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.ads-thumb { width: 44px; height: 44px; border-radius: 7px; }
.ads-lab { font-size: .82rem; font-weight: 600; }
.ads-bar { height: 5px; border-radius: 100px; background: var(--paper-alt); margin-top: 6px; overflow: hidden; }
.ads-bar i { display: block; height: 100%; background: var(--accent); border-radius: 100px; }
.ads-val { font-family: var(--display); font-size: 1rem; }
.ads-row.win .ads-val { color: var(--accent); }
.ads-row.lose { opacity: .45; }
.ads-tag { font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); }

/* --- steps ---------------------------------------------------------------- */
.steps { display: grid; gap: 0; counter-reset: s; }
.step { display: grid; gap: 6px 26px; padding: 28px 0; border-top: 1px solid var(--line); }
@media (min-width: 800px) { .step { grid-template-columns: 96px 1fr 1.15fr; align-items: start; } }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .sn { font-family: var(--display); font-size: 1.55rem; color: var(--accent); line-height: 1; }
.step h3 { font-size: 1.08rem; font-family: var(--display); font-weight: 400; letter-spacing: -.028em; }
.step p { margin: 0; color: var(--ink-soft); }

/* --- pricing -------------------------------------------------------------- */
.tiers { display: grid; gap: 16px; }
@media (min-width: 720px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .tiers { grid-template-columns: repeat(4, 1fr); } }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; position: relative;
}
.tier.feature { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.tier-flag {
  position: absolute; top: -11px; left: 22px; background: var(--accent); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
}
.tier-no { font-size: .68rem; font-weight: 700; letter-spacing: .14em; color: var(--ink-faint); }
.tier-name { font-family: var(--display); font-size: 1.32rem; letter-spacing: -.03em; margin: 4px 0 3px; letter-spacing: -.02em; }
.tier-for { font-size: .82rem; color: var(--ink-faint); min-height: 2.6em; margin-bottom: 16px; line-height: 1.35; }
.tier-price { font-family: var(--display); font-size: 2.35rem; line-height: 1; letter-spacing: -.035em; }
.tier-price sup { font-size: 1.1rem; vertical-align: super; margin-right: 1px; }
.tier-per { font-size: .8rem; color: var(--ink-faint); margin: 5px 0 4px; }
.tier-renew { font-size: .72rem; color: var(--ink-faint); padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: .875rem; display: grid; gap: 9px; }
/* Block, not grid. A grid here turns any text following a <strong> into its own
   grid cell, which stacks it one word per line. Marker is absolutely positioned. */
.tier li { position: relative; display: block; padding-left: 24px; color: var(--ink-soft); line-height: 1.45; }
.tier li::before { content: ""; position: absolute; left: 0; top: 4px; width: 13px; height: 13px; border-radius: 50%; background: var(--paper-alt); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.2l2.2 2.2 4.5-4.6' fill='none' stroke='%23C8462B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 13px; }
.tier li strong { color: var(--ink); font-weight: 600; }
.tier li.off { color: var(--ink-faint); }
.tier li.off::before { background-image: none; background: var(--paper-alt); }
.tier .btn { width: 100%; margin-top: auto; }

.tier5 { margin-top: 16px; background: var(--dark); color: #EFECE4; border-radius: var(--radius); padding: 34px; display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) { .tier5 { grid-template-columns: 1fr auto; padding: 44px; } }
.tier5 .tier-no { color: #7D786B; }
.tier5 h3 { font-family: var(--display); font-weight: 400; font-size: 1.5rem; letter-spacing: -.03em; color: #FBFAF7; letter-spacing: -.02em; margin: 4px 0 10px; }
.tier5 p { color: #B9B3A6; margin: 0; max-width: 58ch; }

/* --- comparison table ----------------------------------------------------- */
.tbl-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: .88rem; }
th, td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); }
th { font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
tr:last-child td { border-bottom: 0; }
td.you { font-family: var(--display); font-size: 1.02rem; color: var(--accent); }
td.them { color: var(--ink-faint); text-decoration: line-through; }
td.save { font-weight: 600; color: var(--ink); }

/* --- stats ---------------------------------------------------------------- */
.stats { display: grid; gap: 20px; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat .n { font-family: var(--display); font-size: clamp(1.9rem, 4.6vw, 2.7rem); line-height: 1; display: block; letter-spacing: -.03em; }
.stat .l { font-size: .86rem; color: var(--ink-soft); }
.band-dark .stat .n { color: var(--accent); }

/* --- faq ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 40px 22px 0; font-weight: 600; font-size: 1.02rem; cursor: pointer; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 19px; font-size: 1.5rem; font-weight: 400; color: var(--accent); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq .a { padding: 0 40px 22px 0; color: var(--ink-soft); max-width: 74ch; }
.faq .a p:last-child { margin-bottom: 0; }

/* --- footer --------------------------------------------------------------- */
.foot { background: var(--dark); color: #8B8577; padding: 62px 0 34px; font-size: .88rem; }
.foot-grid { display: grid; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid #29261F; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.foot .mark { color: #FBFAF7; margin-bottom: 12px; }
.foot a:hover { color: #FBFAF7; }
.foot h4 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #FBFAF7; margin: 0 0 14px; font-weight: 600; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot-bot { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .78rem; }

/* --- reveal --------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }
