/* Daisy Fields Rattery — design tokens & shared layout
   Palette pulled from the brand mark: sage circle, cream ground, coral rat, gold daisy centers. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Jost:wght@400;500;600&display=swap');

:root {
  --cream: #FBF5E8;
  --cream-deep: #F1E7D2;
  --paper: #FFFDF8;
  --sage: #7E9A80;
  --sage-deep: #4F6B54;
  --sage-pale: #E3EBDE;
  --coral: #E08B6C;
  --coral-deep: #C1633F;
  --gold: #D4A02E;
  --ink: #322F27;
  --ink-soft: #5B5748;

  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Jost', 'Century Gothic', sans-serif;

  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1em; }

a { color: var(--coral-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-block;
  margin-bottom: 0.9em;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  color: var(--ink);
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--sage);
}

.brand-text { line-height: 1.1; }
.brand-text strong { display: block; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand-text span { display: block; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-soft);
  padding: 0.4rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--sage-deep);
  border-color: var(--coral);
  text-decoration: none;
}

.nav-cta {
  background: var(--coral-deep);
  color: var(--paper) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--sage-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 1140px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.4rem;
    border-bottom: 1px solid var(--cream-deep);
    display: none;
    gap: 0.9rem;
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-top: 0.3rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--sage-deep);
  color: var(--sage-deep);
  background: transparent;
  cursor: pointer;
}
.btn:hover { background: var(--sage-deep); color: var(--paper); text-decoration: none; }
.btn.solid { background: var(--coral-deep); border-color: var(--coral-deep); color: var(--paper); }
.btn.solid:hover { background: var(--sage-deep); border-color: var(--sage-deep); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

.hero-art {
  position: relative;
  justify-self: center;
}

.hero-art .blob {
  width: min(420px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(79, 107, 84, 0.35);
}

.hero-art img {
  width: 82%;
  border-radius: 50%;
}

.hero-art .ring {
  position: absolute;
  inset: -18px;
  border: 1.5px dashed var(--sage);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.hero-badge svg { width: 16px; height: 16px; flex: none; }

/* ---------- Values statement ---------- */
.statement {
  background: var(--sage-deep);
  color: var(--cream);
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}
.statement .wrap { max-width: 900px; }
.statement h2 { color: var(--cream); }
.statement p { color: #E7EEE1; font-size: 1.08rem; }
.statement p:last-child { margin-bottom: 0; }
.statement .divider-line { border-color: rgba(255,255,255,0.25); }

/* ---------- Generic section ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section.tight { padding: clamp(2rem, 5vw, 3.4rem) 0; }
.section-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .section-inner { grid-template-columns: 1fr; } }

.section-head { position: sticky; top: 100px; }
.section.alt { background: var(--paper); }

.pullquote {
  background: var(--cream-deep);
  border-left: 3px solid var(--coral);
  padding: 1.2rem 1.4rem;
  border-radius: 4px 16px 16px 4px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-deep);
  font-size: 1.15rem;
  margin: 1.4rem 0;
}

/* ---------- Daisy divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 1.6rem 0;
}
.divider .line { flex: 1; max-width: 220px; height: 1px; background: var(--cream-deep); }
.divider svg { width: 26px; height: 26px; flex: none; color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #D9D4C4;
  padding: clamp(2.6rem, 5vw, 3.6rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer a { color: #E8E4D6; }
.site-footer .brand-text strong { color: var(--paper); }
.site-footer .brand-text span { color: var(--sage); }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }

.pledge-badge {
  margin-top: 1.1rem;
  display: inline-block;
  border: 1px solid rgba(216, 199, 148, 0.4);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #C7C2B0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: #9A9584;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
  padding: clamp(2.6rem, 6vw, 4rem) 0 clamp(1.6rem, 4vw, 2.4rem);
  text-align: left;
}
.page-hero .lede { max-width: 62ch; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Lines grid ---------- */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.line-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--cream-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -30px rgba(79, 107, 84, 0.5);
}

.line-card__title {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}
.line-card__title h3 { color: var(--paper); margin: 0; font-size: 1.35rem; }
.line-card__index { font-family: var(--font-body); font-size: 0.78rem; color: var(--sage-pale); letter-spacing: 0.1em; }

.line-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }

.line-field dt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.25rem;
}
.line-field dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.line-field dd.placeholder { font-style: italic; color: #A6A192; }

.line-card__bubbles {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.bubble {
  background: var(--cream-deep);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  font-size: 0.88rem;
}
.bubble .bubble-label {
  display: block;
  font-weight: 600;
  color: var(--sage-deep);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.bubble.gold { background: #F6E9C6; }
.bubble p { margin: 0; color: var(--ink-soft); font-style: italic; }

/* ---------- Ethics page ---------- */
.notice-bar {
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.notice-bar svg { width: 30px; height: 30px; flex: none; color: var(--sage-deep); margin-top: 0.2rem; }
.notice-bar h3 { margin-bottom: 0.35rem; }
.notice-bar p { margin: 0; color: var(--ink-soft); }

.breeder-note {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--cream-deep);
  position: relative;
}
.breeder-note::before {
  content: "";
  position: absolute;
  top: -1px; left: 2rem;
  width: 44px; height: 4px;
  background: var(--coral);
  border-radius: 0 0 4px 4px;
}
.breeder-note p:last-child { margin-bottom: 0; }

.ethics-list {
  display: grid;
  gap: 2.2rem;
  counter-reset: ethic;
}
.ethics-item { display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; }
@media (max-width: 640px) { .ethics-item { grid-template-columns: 40px 1fr; } }
.ethics-item .num {
  counter-increment: ethic;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.ethics-item .num::before { content: counter(ethic); }
@media (max-width: 640px) {
  .ethics-item .num { width: 40px; height: 40px; font-size: 1rem; }
}
.ethics-item p:last-child { margin-bottom: 0; }

.mission-banner {
  background: linear-gradient(135deg, var(--coral-deep), var(--gold));
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  margin-top: 1rem;
}
.mission-banner h2, .mission-banner h3 { color: var(--paper); }
.mission-banner p { color: #FFF3E4; margin: 0; }

/* ---------- Adoption process ---------- */
.step-flow {
  display: grid;
  gap: 1.6rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: flex-start;
}
.step .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.5rem;
  position: relative;
}
.step:not(:last-child) .dot::after {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  width: 2px; height: calc(100% + 2.2rem);
  background: var(--sage-pale);
  transform: translateX(-50%);
}
.step p { margin: 0 0 0.5em; }
.step p:last-child { margin: 0; }

.infographics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.infographic-card {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.infographic-card figure { margin: 0; }
.infographic-card img { width: 100%; cursor: zoom-in; }
.infographic-card figcaption {
  padding: 1rem 1.3rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.infographic-card figcaption strong { font-family: var(--font-display); color: var(--sage-deep); font-size: 1.05rem; }
.infographic-card figcaption span { font-size: 0.8rem; color: var(--ink-soft); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(50, 47, 39, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  background: var(--paper); border: none; border-radius: 50%;
  width: 42px; height: 42px; font-size: 1.4rem; cursor: pointer; color: var(--ink);
}

/* ---------- Rat room ---------- */
.video-frame {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 0.6rem;
  box-shadow: 0 30px 60px -25px rgba(50, 47, 39, 0.5);
}
.video-frame .aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-fallback { text-align: center; margin-top: 1.2rem; color: var(--ink-soft); font-size: 0.95rem; }

.rat-room-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (max-width: 860px) { .rat-room-grid { grid-template-columns: 1fr; } }

.fact-cards { display: grid; gap: 1rem; }
.fact-card {
  background: var(--sage-pale);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
}
.fact-card h4 { color: var(--sage-deep); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; }
.fact-card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Rat roster cards (bucks / does / available) ---------- */
.roster-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.roster-count {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-pale);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.rat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.3rem;
}

.rat-card {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 1.25rem 1.35rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.rat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -22px rgba(79, 107, 84, 0.55);
}
.rat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sage);
}
.rat-card.buck::before { background: var(--sage); }
.rat-card.doe::before { background: var(--coral); }
.rat-card.available::before { background: var(--gold); }

.rat-card__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.rat-card__head h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}
.rat-sex {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--sage-pale);
  color: var(--sage-deep);
}
.rat-card.doe .rat-sex { background: #F8E3D8; color: var(--coral-deep); }
.rat-card.available .rat-sex { background: #F6E9C6; color: #96701A; }

.rat-card dl { margin: 0; display: grid; gap: 0.7rem; }
.rat-card dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.1rem;
}
.rat-card dd {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.rat-card dd.placeholder { font-style: italic; color: #A6A192; }

/* ---------- Nursery: litter cards ---------- */
.litter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.8rem;
}

.litter-card {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px -30px rgba(79, 107, 84, 0.5);
  display: flex;
  flex-direction: column;
}
.litter-card__head {
  background: var(--cream-deep);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.litter-card__head h3 { margin: 0; font-size: 1.2rem; }
.litter-tag {
  flex: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage-deep);
  color: var(--cream);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.litter-card__body { padding: 1.3rem 1.4rem 1.5rem; display: grid; gap: 0.95rem; }
.litter-card dl { margin: 0; display: grid; gap: 0.95rem; }
.litter-card dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.15rem;
}
.litter-card dd { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.litter-card dd.placeholder { font-style: italic; color: #A6A192; }

.litter-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  background: var(--sage-pale);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.litter-dates dt { color: var(--sage-deep); }

/* ---------- Empty state ---------- */
.empty-state {
  border: 1.5px dashed var(--sage);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--ink-soft);
}
.empty-state svg { width: 42px; height: 42px; color: var(--gold); margin: 0 auto 0.9rem; }
.empty-state h3 { margin-bottom: 0.4rem; }
.empty-state p { margin: 0 auto; max-width: 44ch; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.4rem;
}

.faq-card {
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: 20px;
  padding: 1.4rem 1.5rem 1.5rem;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -22px rgba(79, 107, 84, 0.5);
}
.faq-card::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-pale);
}

.faq-row { display: grid; grid-template-columns: 34px 1fr; gap: 0.85rem; }
.faq-row + .faq-row { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-deep); }

.faq-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  flex: none;
}
.faq-mark.q { background: var(--sage-deep); color: var(--cream); }
.faq-mark.a { background: #F6E9C6; color: #96701A; }

.faq-text { padding-top: 0.15rem; }
.faq-text h3 { margin: 0; font-size: 1.08rem; line-height: 1.4; color: var(--sage-deep); }
.faq-text p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.faq-text p.placeholder { font-style: italic; color: #A6A192; }
