/* ==========================================================================
   How Can I Relieve Stress? — site stylesheet
   One file, no build step, no framework. Edit the tokens below to restyle.
   ========================================================================== */

:root {
  /* Palette */
  --cream:        #FBF8F3;
  --cream-deep:   #F4EEE4;
  --paper:        #FFFFFF;
  --sage:         #7C9885;
  --sage-deep:    #5A7563;
  --sage-tint:    #EAF0EB;
  --blue:         #6B8CAE;
  --blue-tint:    #E7EDF3;
  --lavender:     #9B93B8;
  --lavender-tint:#EEEBF3;
  --clay:         #C08B72;
  --clay-tint:    #F6EAE3;
  --ink:          #2F3437;
  --ink-soft:     #5A6266;
  --ink-faint:    #838C90;
  --line:         #E5DFD4;

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

  /* Space + shape */
  --gutter: 1.25rem;
  --maxw: 1140px;
  --maxw-prose: 44rem;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow: 0 1px 2px rgba(47,52,55,.04), 0 8px 24px -12px rgba(47,52,55,.14);
  --shadow-lift: 0 2px 4px rgba(47,52,55,.05), 0 14px 34px -14px rgba(47,52,55,.20);
}

@media (min-width: 48rem) { :root { --gutter: 2rem; } }
@media (min-width: 72rem) { :root { --gutter: 2.5rem; } }

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); font-variation-settings: "SOFT" 40, "WONK" 1; }
h2 { font-size: clamp(1.5rem, 1.24rem + 1.1vw, 2rem); margin-top: 2.2em; }
h3 { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.35rem); margin-top: 1.8em; }
p, ul, ol { margin: 0 0 1.15em; }
a { color: var(--sage-deep); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
::selection { background: var(--sage-tint); }

/* ------------------------------------------------------------- layout --- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-prose { width: 100%; max-width: var(--maxw-prose); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--tint { background: var(--cream-deep); }
.section--paper { background: var(--paper); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.section-head { margin-bottom: 1.75rem; }
.section-head h2 { margin-top: 0; margin-bottom: .3em; }
.section-head p { color: var(--ink-soft); margin: 0; max-width: 46rem; }
.eyebrow {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--sage-deep);
  margin: 0 0 .6rem;
}

/* -------------------------------------------------------------- header -- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60;
}
.header-bar { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand:hover { color: var(--ink); }
.brand-mark { flex: none; width: 34px; height: 34px; }
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; line-height: 1.15; letter-spacing: -0.02em; }
.brand-text span { display: block; font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--ink-faint); letter-spacing: .02em; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem .95rem; font-size: .9rem; font-weight: 500; cursor: pointer;
  min-height: 44px;
}
.nav-toggle:hover { border-color: var(--sage); }
.nav-toggle-search { padding: .55rem; width: 44px; justify-content: center; }

.site-nav { display: none; }
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul { width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: .5rem var(--gutter) 1.5rem; border-top: 1px solid var(--line); }
.site-nav a { display: block; padding: .7rem 0; text-decoration: none; color: var(--ink); font-weight: 500; }
.site-nav a:hover { color: var(--sage-deep); }
.nav-group > span {
  display: block; padding: 1rem 0 .35rem; font-size: .76rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint);
}
.nav-group ul a { padding: .5rem 0 .5rem .9rem; font-weight: 400; color: var(--ink-soft); border-left: 2px solid var(--line); }
.nav-group ul a:hover { border-left-color: var(--sage); color: var(--ink); }

@media (min-width: 62rem) {
  .nav-toggle:not(.nav-toggle-search) { display: none; }
  .site-nav { display: block !important; position: static; }
  .site-nav > ul { display: flex; flex-wrap: wrap; gap: .35rem; border-top: 0;
    padding: .35rem var(--gutter) .5rem; }
  .site-nav > ul > li { position: relative; }
  .site-nav > ul > li > a,
  .nav-group > span {
    padding: .5rem .7rem; font-size: .93rem; text-transform: none; letter-spacing: 0;
    color: var(--ink); font-weight: 500; border-radius: var(--r-sm); cursor: pointer;
  }
  .nav-group > span::after { content: ""; display: inline-block; width: .38em; height: .38em; margin-left: .45em; vertical-align: .12em; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-.1em); opacity: .55; }
  .nav-group:hover > span, .site-nav > ul > li > a:hover { background: var(--sage-tint); color: var(--sage-deep); }
  .nav-group ul {
    position: absolute; top: 100%; left: 0; min-width: 15rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
    box-shadow: var(--shadow-lift); padding: .5rem; margin-top: .25rem;
    opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .14s, transform .14s, visibility .14s;
  }
  .nav-group:hover ul, .nav-group:focus-within ul { opacity: 1; visibility: visible; transform: none; }
  .nav-group ul a { padding: .5rem .7rem; border-left: 0; border-radius: var(--r-sm); color: var(--ink); }
  .nav-group ul a:hover { background: var(--sage-tint); }
}

/* --------------------------------------------------------------- hero --- */
.hero { position: relative; background: var(--cream-deep); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(251,248,243,.97) 0%, rgba(251,248,243,.93) 38%, rgba(251,248,243,.55) 62%, rgba(251,248,243,.2) 100%);
}
.hero-inner { position: relative; padding-block: clamp(2.5rem, 7vw, 5.5rem); max-width: 38rem; }
.hero h1 { margin-bottom: .35em; }
.hero-sub { font-size: 1.14rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2rem; }

/* ------------------------------------------------------------ buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .75rem 1.4rem;
  border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .97rem; text-decoration: none; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage-deep); color: #fff; }
.btn-primary:hover { background: #4A6353; color: #fff; }
.btn-secondary { background: var(--paper); border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { border-color: var(--sage); color: var(--sage-deep); }
.btn-ghost { background: transparent; border-color: var(--sage); color: var(--sage-deep); }
.btn-ghost:hover { background: var(--sage-tint); }
.btn-block { width: 100%; }
.btn[aria-disabled="true"], .btn:disabled { background: var(--cream-deep); color: var(--ink-faint); border-color: var(--line); cursor: not-allowed; pointer-events: none; }

/* -------------------------------------------------------------- search -- */
.searchbox { position: relative; max-width: 30rem; }
.searchbox input {
  width: 100%; min-height: 52px; padding: .85rem 3.2rem .85rem 1.15rem;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 1rem;
}
.searchbox input:hover { border-color: var(--sage); }
.searchbox input::placeholder { color: var(--ink-faint); }
.searchbox button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 999px; border: 0;
  background: var(--sage-deep); color: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.searchbox button:hover { background: #4A6353; }

/* --------------------------------------------------------------- grid --- */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid-2[data-products] { grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 13rem), 1fr)); }
.grid-tiles { grid-template-columns: repeat(auto-fill, minmax(min(50% - .55rem, 10rem), 1fr)); }

/* -------------------------------------------------------------- cards --- */
.card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow);
  transition: box-shadow .18s, border-color .18s, transform .18s;
}
a.card, .card a.card-link { text-decoration: none; color: inherit; }
a.card:hover, .card:focus-within { box-shadow: var(--shadow-lift); border-color: #D9D0C0; transform: translateY(-2px); }
.card-body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card-body > :last-child { margin-bottom: 0; }
.card h3 { margin: 0 0 .4rem; font-size: 1.12rem; }
.card p { color: var(--ink-soft); font-size: .95rem; margin: 0 0 .9rem; }
.card-foot { margin-top: auto; padding-top: .4rem; }
.card-media { aspect-ratio: 3 / 2; background: var(--cream-deep); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* Tile card (situation / time) */
.tile {
  display: flex; flex-direction: column; gap: .55rem; align-items: flex-start;
  padding: 1.15rem 1.15rem 1.25rem; min-height: 100%;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: inherit; box-shadow: var(--shadow);
  transition: box-shadow .18s, border-color .18s, transform .18s, background-color .18s;
}
.tile:hover { background: var(--sage-tint); border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-lift); color: inherit; }
.tile-icon { width: 34px; height: 34px; color: var(--sage-deep); flex: none; }
.tile strong { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; letter-spacing: -.01em; }
.tile span { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }

.tag {
  display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--sage-deep); background: var(--sage-tint);
  padding: .28rem .6rem; border-radius: 999px; margin-bottom: .65rem;
}
.tag--muted { color: var(--ink-faint); background: var(--cream-deep); }

/* ---------------------------------------------------- printable covers -- */
.pcover-photo { aspect-ratio: 4 / 5; background: var(--cream-deep); overflow: hidden; }
.pcover-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.pcover {
  aspect-ratio: 4 / 5; display: grid; place-items: center; padding: 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.pcover-sage     { background: linear-gradient(160deg, #E3EBE4 0%, #CBD9CE 100%); }
.pcover-blue     { background: linear-gradient(160deg, #E4EBF2 0%, #C8D6E4 100%); }
.pcover-lavender { background: linear-gradient(160deg, #EDEAF3 0%, #D8D2E6 100%); }
.pcover-cream    { background: linear-gradient(160deg, #F7F1E6 0%, #EADFCB 100%); }
.pcover-clay     { background: linear-gradient(160deg, #F6E7DF 0%, #E7CDBE 100%); }
.pcover-inner {
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-sm); padding: 1.1rem .9rem; width: 100%;
  backdrop-filter: blur(2px);
}
.pcover-inner span {
  display: block; font-size: .66rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: .5rem;
}
.pcover-inner strong {
  display: block; font-family: var(--font-display); font-size: 1.02rem;
  font-weight: 600; line-height: 1.25; color: var(--ink);
}
.pcover-inner em { display: block; margin-top: .55rem; font-size: .74rem; font-style: normal; color: var(--ink-faint); }

.price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.price-free { color: var(--sage-deep); }
.card-price-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .9rem; }

/* ------------------------------------------------------------ product --- */
.product-card { flex-direction: row; align-items: stretch; }
.product-media {
  flex: none; width: 116px; background: var(--cream-deep);
  display: grid; place-items: center; color: var(--ink-faint);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media svg { width: 34px; height: 34px; opacity: .45; }
.product-body { padding: 1rem 1.15rem; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.product-body h3 { font-size: 1.02rem; margin: 0 0 .3rem; }
.product-body p { font-size: .9rem; margin: 0 0 .5rem; }
.why {
  font-size: .88rem; color: var(--ink-soft); background: var(--cream);
  border-left: 3px solid var(--sage); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .55rem .8rem; margin: 0 0 .8rem;
}
.why strong { color: var(--ink); font-weight: 600; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.product-foot .price { font-size: .95rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 500; }
@media (max-width: 34rem) {
  .product-card { flex-direction: column; }
  .product-media { width: 100%; aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------- disclosure --- */
.disclosure {
  font-size: .84rem; line-height: 1.6; color: var(--ink-soft);
  background: var(--cream-deep); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: .75rem 1rem; margin: 0 0 1.5rem;
}
.disclosure strong { color: var(--ink); }
.notice {
  font-size: .9rem; line-height: 1.65; color: var(--ink-soft);
  background: var(--blue-tint); border: 1px solid #D3DFEA;
  border-radius: var(--r); padding: 1rem 1.15rem; margin: 2rem 0;
}
.notice strong { color: var(--ink); display: block; margin-bottom: .2rem; }
.notice :last-child { margin-bottom: 0; }
.placeholder-note {
  font-size: .84rem; color: var(--clay); background: var(--clay-tint);
  border: 1px dashed #DDB9A5; border-radius: var(--r-sm); padding: .6rem .85rem;
  margin: 0 0 1rem;
}

/* --------------------------------------------------------- email form --- */
.optin { background: var(--sage-tint); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.75rem); }
.optin-grid { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 54rem) { .optin-grid { grid-template-columns: 1.15fr 1fr; gap: 2.5rem; } }
.optin h2 { margin-top: 0; }
.optin p { color: var(--ink-soft); }
.optin-form { background: var(--paper); border-radius: var(--r); padding: 1.25rem; box-shadow: var(--shadow); }
.field { margin-bottom: .85rem; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: .3rem; }
.field input {
  width: 100%; min-height: 48px; padding: .7rem .95rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--cream);
}
.field input:hover { border-color: var(--sage); }
.form-note { font-size: .8rem; color: var(--ink-faint); margin: .8rem 0 0; }
.form-status { font-size: .9rem; margin: .85rem 0 0; padding: .7rem .9rem; border-radius: var(--r-sm); display: none; }
.form-status.is-shown { display: block; }
.form-status.is-ok { background: var(--sage-tint); color: var(--sage-deep); }
.form-status.is-warn { background: var(--clay-tint); color: #8A5A41; }

/* ------------------------------------------------------------ article --- */
.breadcrumbs { font-size: .85rem; color: var(--ink-faint); padding-block: 1rem .25rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--ink-soft); }

.article-head { padding-block: 1rem 1.5rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .85rem; color: var(--ink-faint); margin-top: .9rem; }
.lede { font-size: 1.16rem; line-height: 1.65; color: var(--ink-soft); }

.quick-answer {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--sage);
  border-radius: var(--r-sm); padding: 1.1rem 1.25rem; margin: 1.75rem 0;
  box-shadow: var(--shadow);
}
.quick-answer h2 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--sage-deep); margin: 0 0 .5rem; }
.quick-answer p { margin: 0; }

.toc { background: var(--cream-deep); border-radius: var(--r); padding: 1.1rem 1.35rem; margin: 1.75rem 0 2.25rem; }
.toc h2 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 .6rem; }
.toc ol { margin: 0; padding-left: 1.15rem; font-size: .95rem; }
.toc li { margin-bottom: .3rem; }
.toc a { color: var(--ink-soft); }
.toc a:hover { color: var(--sage-deep); }

.prose h2 { scroll-margin-top: 90px; }
.prose h3 { scroll-margin-top: 90px; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--sage); }
.prose blockquote {
  margin: 1.75rem 0; padding: .3rem 0 .3rem 1.25rem;
  border-left: 3px solid var(--sage); color: var(--ink-soft); font-style: italic;
}
.prose img { border-radius: var(--r); margin-block: 1.75rem; }

.takeaways { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.35rem 1.5rem; margin: 2.25rem 0; box-shadow: var(--shadow); }
.takeaways h2 { margin-top: 0; font-size: 1.2rem; }
.takeaways ul { list-style: none; padding: 0; margin: 0; }
.takeaways li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: .55rem; height: .3rem; border-left: 2px solid var(--sage-deep);
  border-bottom: 2px solid var(--sage-deep); transform: rotate(-45deg);
}

.faq details {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); margin-bottom: .6rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: .9rem 1.1rem; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sage-deep); font-size: 1.3rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-a { padding: .9rem 1.1rem; color: var(--ink-soft); }
.faq .faq-a p:last-child { margin-bottom: 0; }

.next-step {
  background: var(--cream-deep); border-radius: var(--r-lg);
  padding: clamp(1.35rem, 4vw, 2rem); margin: 2.5rem 0; text-align: center;
}
.next-step h2 { margin-top: 0; font-size: 1.35rem; }
.next-step p { color: var(--ink-soft); max-width: 34rem; margin-inline: auto; }

.byline { display: flex; gap: .9rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.25rem; margin: 2.5rem 0 0; }
.byline-mark { flex: none; width: 42px; height: 42px; }
.byline p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.byline strong { display: block; color: var(--ink); font-size: .95rem; }

/* --------------------------------------------------------------- misc --- */
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.pill {
  display: inline-flex; align-items: center; min-height: 40px; padding: .4rem 1rem;
  border-radius: 999px; background: var(--paper); border: 1px solid var(--line);
  font-size: .9rem; font-weight: 500; text-decoration: none; color: var(--ink);
}
.pill:hover, .pill[aria-current="page"] { background: var(--sage-tint); border-color: var(--sage); color: var(--sage-deep); }

.soon-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); }
.soon-list li {
  background: var(--cream-deep); border: 1px dashed var(--line); border-radius: var(--r-sm);
  padding: .7rem .95rem; font-size: .92rem; color: var(--ink-soft);
}
.soon-list li span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-top: .2rem; }

.empty-state { background: var(--cream-deep); border: 1px dashed var(--line); border-radius: var(--r); padding: 1.5rem; color: var(--ink-soft); text-align: center; }

/* -------------------------------------------------------------- footer -- */
.site-footer { background: var(--ink); color: #C6CBCD; padding-block: 3rem 2rem; margin-top: 3rem; }
.site-footer h2 { color: #fff; font-size: .82rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .09em; text-transform: uppercase; margin: 0 0 .9rem; }
.site-footer a { color: #C6CBCD; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; font-size: .92rem; }
.footer-grid li { margin-bottom: .5rem; }
.footer-about p { font-size: .92rem; line-height: 1.65; }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; color: #fff; }
.footer-brand .brand-text { color: #fff; }
.footer-bottom { border-top: 1px solid #454B4E; margin-top: 2.5rem; padding-top: 1.5rem; font-size: .84rem; line-height: 1.65; display: grid; gap: .9rem; }
.footer-bottom p { margin: 0; }

/* ------------------------------------------------------------- search --- */
.search-result { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.search-result:last-child { border-bottom: 0; }
.search-result h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.search-result a { text-decoration: none; }
.search-result a:hover { text-decoration: underline; }
.search-result p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.search-result .kind { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); }

/* -------------------------------------------------------------- print --- */
@media print {
  .site-header, .site-footer, .next-step, .optin, .searchbox, .toc { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; color: #666; }
}

/* Unfilled owner details on policy pages — deliberately visible, never hidden. */
.todo-chip {
  background: var(--clay-tint); color: #8A5A41; border: 1px dashed #DDB9A5;
  border-radius: 6px; padding: .05em .45em; font-size: .9em; font-weight: 500;
  font-style: normal; white-space: normal;
}
