/* ==========================================================================
   Our Little Place — website styles
   A warm, private visual system for index / support / privacy / terms / 404.
   The restrained editorial structure shares a family resemblance with
   kevser.app; the softer type, paired shapes and plum/petal palette belong to
   Our Little Place. No frameworks, scripts, remote fonts or runtime requests.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --night-950: #170d12;
  --night-900: #24131b;
  --plum-850: #321925;
  --plum-800: #442334;
  --plum-700: #603449;

  --paper-50: #fffaf7;
  --paper-100: #fdf1ed;
  --paper-150: #f9e8e4;
  --paper-200: #f3dad7;
  --petal-300: #e9b9c0;
  --petal-400: #e08a9d;
  --petal-500: #cb5f7e;
  --berry-600: #a72e57;
  --berry-700: #852041;

  --ink: #2c1821;
  --ink-soft: #6b505a;
  --line: #e6c8ca;
  --line-strong: #d8aaaf;

  --font-display: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: "Avenir Next", Avenir, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.75rem);
  --band-pad: clamp(4.5rem, 8vw, 7.5rem);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-card: 0 20px 55px rgba(68, 35, 52, 0.08);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}

body {
  margin: 0;
  background: var(--paper-100);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
::selection { background: var(--petal-300); color: var(--ink); }

/* --------------------------------------------------------------------------
   3. Accessibility helpers
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--paper-50);
  color: var(--berry-700);
  font: 700 0.84rem/1 var(--font-ui);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--petal-400);
  outline-offset: 4px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band {
  position: relative;
  padding-block: var(--band-pad);
}
.band--blush { background: var(--paper-100); }
.band--sand { background: var(--paper-200); }

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  color: var(--berry-600);
  font: 700 0.7rem/1.4 var(--font-ui);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::after {
  content: "";
  width: 4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.48;
}
.section-head--centered .eyebrow { justify-content: center; }
.section-head--centered .eyebrow::before,
.section-head--centered .eyebrow::after {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

h2.section-title {
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  line-height: 1.03;
}
h3 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }

/* --------------------------------------------------------------------------
   5. Site header
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 5;
  background: var(--night-900);
  color: var(--paper-200);
  border-bottom: 1px solid rgba(233, 185, 192, 0.14);
}
.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  min-height: 78px;
  padding-block: 0.75rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 46px;
  color: var(--paper-50);
  text-decoration: none;
}
.wordmark img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 250, 247, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(8, 3, 6, 0.25);
}
.wordmark__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.wordmark__text span {
  display: block;
  margin-top: 0.35rem;
  color: var(--petal-400);
  font: 700 0.58rem/1 var(--font-ui);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.site-header__actions,
.site-nav ul {
  display: flex;
  align-items: center;
}
.site-nav ul {
  flex-wrap: wrap;
  gap: 0.25rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid transparent;
  color: rgba(253, 241, 237, 0.8);
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--petal-400);
  color: var(--paper-50);
}

/* --------------------------------------------------------------------------
   6. Store badges and buttons
   -------------------------------------------------------------------------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(233, 185, 192, 0.38);
  border-radius: 14px;
  background: rgba(255, 250, 247, 0.055);
  color: var(--paper-50);
  cursor: default;
  user-select: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.store-badge svg { width: 22px; height: 22px; flex: none; }
.store-badge b {
  display: block;
  color: rgba(253, 241, 237, 0.62);
  font: 700 0.59rem/1.4 var(--font-ui);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.store-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.05;
}
.availability {
  margin: 1.15rem 0 0;
  color: rgba(253, 241, 237, 0.66);
  font-size: 0.84rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--petal-300);
  border-radius: 999px;
  background: transparent;
  color: var(--berry-700);
  font: 700 0.9rem/1 var(--font-ui);
  text-decoration: none;
}
.btn:hover { background: rgba(167, 46, 87, 0.07); }
.btn--primary {
  border-color: var(--berry-700);
  background: var(--berry-700);
  color: var(--paper-50);
}
.btn--primary:hover { background: var(--berry-600); }
.hero .btn { color: var(--paper-50); }
.hero .btn:hover { background: rgba(255, 250, 247, 0.08); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 15%, rgba(203, 95, 126, 0.2), transparent 34%),
    radial-gradient(circle at 68% 110%, rgba(96, 52, 73, 0.42), transparent 39%),
    var(--night-900);
  color: var(--paper-200);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(233, 185, 192, 0.22) 1px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 65%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 65%, #000);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9rem;
  bottom: -19rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(233, 185, 192, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(233, 185, 192, 0.025), 0 0 0 10rem rgba(233, 185, 192, 0.018);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
  min-height: 680px;
  padding-block: clamp(4.5rem, 8vw, 7.25rem);
}
.hero .eyebrow { color: var(--petal-400); }
.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  color: var(--paper-50);
  font-size: clamp(3.1rem, 6.2vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.hero h1 em { color: var(--petal-400); font-weight: 400; }
.hero__lede {
  max-width: 45ch;
  margin-bottom: 2rem;
  color: rgba(253, 241, 237, 0.84);
  font-size: clamp(1.03rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}
.hero__promise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: rgba(253, 241, 237, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}
.hero__promise li { display: flex; align-items: center; gap: 0.5rem; }
.hero__promise li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--petal-400);
  box-shadow: 0 0 0 4px rgba(224, 138, 157, 0.1);
}
.hero__media { display: flex; justify-content: center; }
.niche {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1.08;
}
.niche::before,
.niche::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(233, 185, 192, 0.16);
  border-radius: 42% 42% 20% 42%;
  pointer-events: none;
}
.niche::before { inset: 8% -4% 2% 18%; transform: rotate(4deg); }
.niche::after { inset: 17% 17% -4% -3%; transform: rotate(-5deg); }
.niche__bubble {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  color: var(--petal-400);
  filter: drop-shadow(0 25px 55px rgba(7, 2, 5, 0.15));
}
.hero__phone {
  position: relative;
  z-index: 1;
  width: 58%;
  max-width: 280px;
  border: 1px solid rgba(255, 250, 247, 0.18);
  border-radius: 28px;
  filter: drop-shadow(0 28px 32px rgba(8, 3, 6, 0.42));
}

/* --------------------------------------------------------------------------
   8. Feature cards
   -------------------------------------------------------------------------- */
#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: clamp(2rem, 5vw, 4rem);
  background: var(--line-strong);
}
.cards {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}
@media (min-width: 780px) {
  .cards--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 247, 0.72);
  box-shadow: var(--shadow-card);
}
.card:nth-child(2), .card:nth-child(3) { background: rgba(249, 232, 228, 0.86); }
.card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.35rem;
  padding: 11px;
  border: 1px solid var(--petal-300);
  border-radius: 50%;
  background: var(--paper-50);
  color: var(--berry-600);
}
.card h3 { position: relative; z-index: 1; margin-bottom: 0.7rem; }
.card p {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   9. Document pages (privacy / terms)
   -------------------------------------------------------------------------- */
.doc-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: radial-gradient(circle at 82% 15%, rgba(203, 95, 126, 0.18), transparent 31%), var(--night-900);
  color: var(--paper-200);
}
.doc-hero::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 8vw, 9rem);
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(233, 185, 192, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(233, 185, 192, 0.025);
}
.doc-hero > .shell { position: relative; z-index: 1; }
.doc-hero .eyebrow { color: var(--petal-400); }
.doc-hero h1 {
  max-width: 18ch;
  color: var(--paper-50);
  font-size: clamp(2.8rem, 5.5vw, 4.7rem);
}
.doc-hero p {
  max-width: 62ch;
  margin-top: 1rem;
  color: rgba(253, 241, 237, 0.8);
}
.doc-hero .note {
  max-width: 65ch;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(233, 185, 192, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 247, 0.055);
  color: var(--paper-100);
  font-weight: 600;
}
.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: rgba(253, 241, 237, 0.62);
  font-size: 0.8rem;
  font-weight: 600;
  list-style: none;
}
.doc {
  display: grid;
  grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
  padding-block: var(--band-pad);
}
.toc {
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 247, 0.72);
  box-shadow: var(--shadow-card);
}
.toc h2 {
  margin-bottom: 0.85rem;
  color: var(--berry-600);
  font: 700 0.66rem/1.4 var(--font-ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  gap: 0.2rem;
  padding: 0.36rem 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  text-decoration: none;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--berry-600);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}
.toc a:hover { color: var(--berry-700); }
.prose { max-width: 70ch; }
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.08;
}
.prose > .callout:first-child + h2,
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a {
  color: var(--berry-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.prose a:hover { color: var(--berry-600); }
.callout {
  margin-bottom: 2.5rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper-200);
}
.callout h3 { margin-top: 0; color: var(--berry-700); }
.callout p:last-child { margin-bottom: 0; }
.prose address { color: var(--ink-soft); font-style: normal; line-height: 1.8; }

/* --------------------------------------------------------------------------
   10. Support
   -------------------------------------------------------------------------- */
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}
.support-card { min-height: 100%; }
.support-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.support-card p, .support-card li { color: var(--ink-soft); }
.support-card .btn { margin-top: 0.65rem; }
.support-email {
  margin-top: 1rem;
  color: var(--berry-700);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.support-checklist { margin-top: 1.4rem; }
.support-checklist li { margin-bottom: 0.55rem; }
.support-note {
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
.support-faq { max-width: 900px; }
.support-faq .section-title { max-width: 12ch; }
.faq {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-strong);
}
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  padding: 1.3rem 3rem 1.3rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.2;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  color: var(--berry-600);
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 400;
  transform: translateY(-50%);
}
.faq details[open] summary::after { content: "−"; }
.faq details > div {
  max-width: 68ch;
  padding: 0 3rem 1.4rem 0;
  color: var(--ink-soft);
}
.faq details > div p { margin: 0; }
.faq a { color: var(--berry-700); text-underline-offset: 3px; }

.flow { display: grid; gap: 1rem; margin: 1.5rem 0 2rem; padding: 0; }
.flow > div {
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 247, 0.72);
}
.flow dt {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}
.flow dd {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem;
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.flow dd:last-child { margin-bottom: 0; }
.flow dd b {
  color: var(--berry-600);
  font: 700 0.62rem/1.8 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 2.25rem;
  background: var(--night-950);
  color: rgba(253, 241, 237, 0.7);
  font-size: 0.86rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: 2.5rem clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(233, 185, 192, 0.14);
}
.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--petal-400);
  font: 700 0.65rem/1.4 var(--font-ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 0.25rem; }
.site-footer a, .site-footer .soon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.site-footer a {
  border-bottom: 1px solid transparent;
  color: rgba(253, 241, 237, 0.8);
  text-decoration: none;
}
.site-footer a:hover { border-bottom-color: var(--petal-400); color: var(--paper-50); }
.site-footer .soon { color: rgba(253, 241, 237, 0.52); }
.site-footer__mark { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.site-footer__mark img { width: 44px; height: 44px; border-radius: 13px; }
.site-footer__mark span {
  color: var(--paper-50);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.footer-summary { max-width: 34ch; }
.site-footer__legal {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  color: rgba(253, 241, 237, 0.48);
  font-size: 0.75rem;
  line-height: 1.65;
}
.site-footer__legal p { max-width: 100ch; margin: 0; }

/* --------------------------------------------------------------------------
   12. Motion and responsive behavior
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@media (max-width: 1000px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-bottom: 2.5rem;
  }
  .hero h1 { max-width: 13ch; }
  .hero__media { margin-top: 0.5rem; }
  .niche { max-width: 470px; }
  .doc { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; }
  .support-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  :root { --gutter: 1.2rem; }
  .site-header__inner { min-height: 70px; gap: 0.45rem 1rem; }
  .wordmark__text { font-size: 1.12rem; }
  .wordmark__text span { font-size: 0.52rem; }
  .site-nav ul { gap: 0.2rem 1rem; }
  .site-nav a { font-size: 0.82rem; }
  .hero__inner { gap: 2rem; padding-top: 3.8rem; }
  .hero h1 { max-width: none; font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero__lede { font-size: 1rem; }
  .hero__promise { display: grid; }
  .niche { width: min(100%, 390px); }
  .hero__phone { width: 62%; }
  .section-head--centered { text-align: left; }
  .section-head--centered .eyebrow { justify-content: flex-start; }
  .section-head--centered .eyebrow::before { display: none; }
  .card { min-height: 0; }
  .doc-hero::after { opacity: 0.55; }
  .toc { padding: 1.25rem; }
  .flow dd { grid-template-columns: minmax(0, 1fr); gap: 0.1rem; }
  .site-footer__top { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 390px) {
  .site-header__inner { align-items: flex-start; }
  .site-nav ul { gap: 0 0.8rem; }
  .site-nav a { min-height: 38px; }
  .store-badge { width: 100%; }
}

@media print {
  .site-header, .site-footer, .toc, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  .doc { display: block; padding-block: 0; }
  .prose { max-width: none; }
}
