/* ==========================================================================
   Anna Shelters — Jyothi Animal Welfare
   annashelters.com
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #1c1a16;
  --ink-2:      #3d382f;
  --muted:      #6f6857;
  --muted-2:    #8e8672;
  --line:       #e6ddcc;
  --line-soft:  #f0e9dc;

  --cream:      #fcf9f3;
  --cream-2:    #f6efe3;
  --surface:    #ffffff;

  --marigold:   #e08c1e;
  --marigold-d: #b06a08;
  --marigold-l: #fdf1dc;

  --clay:       #bf4d2a;
  --clay-l:     #fbeae4;

  --forest:     #1f5a4c;
  --forest-l:   #e6f0ec;

  --indigo:     #2c3e63;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(28,26,22,.05), 0 2px 8px rgba(28,26,22,.04);
  --shadow:     0 2px 4px rgba(28,26,22,.05), 0 12px 32px rgba(28,26,22,.08);
  --shadow-lg:  0 4px 8px rgba(28,26,22,.05), 0 24px 60px rgba(28,26,22,.12);

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.15; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-variation-settings: "SOFT" 0, "WONK" 1; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); line-height: 1.25; }
h4 { font-size: 1.06rem; line-height: 1.35; }
p  { text-wrap: pretty; }
::selection { background: var(--marigold); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 760px; }
.wrap-mid { max-width: 940px; }
section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(40px, 5vw, 64px); }
.bg-cream2 { background: var(--cream-2); }
.bg-white  { background: var(--surface); }
.bg-ink    { background: var(--ink); color: #ded8cb; }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-forest { background: var(--forest); color: #cfe0da; }
.bg-forest h2, .bg-forest h3 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--marigold-d);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--marigold); flex: none; }
.bg-ink .eyebrow, .bg-forest .eyebrow { color: var(--marigold); }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.6; color: var(--ink-2); }
.bg-ink .lede, .bg-forest .lede { color: #cdc6b8; }
.small { font-size: .88rem; color: var(--muted); }
.tiny  { font-size: .8rem; color: var(--muted-2); line-height: 1.55; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.mt-s{margin-top:12px}.mt-m{margin-top:24px}.mt-l{margin-top:40px}.mt-xl{margin-top:60px}
.prose p + p, .prose p + ul, .prose ul + p, .prose p + h3, .prose ul + h3, .prose blockquote + p { margin-top: 1.1em; }
.prose h3 { margin-top: 2em; }
.prose ul { padding-left: 1.15em; }
.prose li + li { margin-top: .5em; }
.prose a { color: var(--marigold-d); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--clay); }

blockquote {
  border-left: 3px solid var(--marigold);
  padding: 4px 0 4px 22px;
  font-family: var(--serif); font-size: 1.18rem; line-height: 1.5;
  color: var(--ink); font-style: normal;
}
blockquote cite { display:block; margin-top: 10px; font-family: var(--sans); font-size: .82rem; font-style: normal; color: var(--muted); letter-spacing: .02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px;
  font-size: .95rem; font-weight: 600; letter-spacing: .005em;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 4px 14px rgba(191,77,42,.28); }
.btn-primary:hover { background: #a83f20; box-shadow: 0 8px 22px rgba(191,77,42,.34); }
.btn-gold { background: var(--marigold); color: #241a08; box-shadow: 0 4px 14px rgba(224,140,30,.3); }
.btn-gold:hover { background: #cf7d13; }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.bg-ink .btn-ghost, .bg-forest .btn-ghost,
.hero .btn-ghost, .page-head .btn-ghost, .cta-band .btn-ghost {
  border-color: rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.04);
}
.bg-ink .btn-ghost:hover, .bg-forest .btn-ghost:hover,
.hero .btn-ghost:hover, .page-head .btn-ghost:hover, .cta-band .btn-ghost:hover {
  background: #fff; color: var(--ink); border-color: #fff;
}
.btn-sm { padding: 9px 18px; font-size: .86rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,249,243,.9);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-in { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; }
.brand-sub  { font-size: .63rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; font-weight: 600; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; font-size: .89rem; font-weight: 500; color: var(--ink-2);
  padding: 8px 10px; border-radius: 8px; transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav a:hover { background: var(--cream-2); color: var(--ink); }
.nav a.active { color: var(--clay); font-weight: 600; }
.nav a.btn { margin-left: 10px; }
.nav a.btn-primary { color: #fff; background: var(--clay); }
.nav a.btn-primary:hover { background: #a83f20; color: #fff; }

.burger { margin-left: auto; display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }
.burger span { display: block; width: 18px; height: 1.8px; background: var(--ink); position: relative; transition: .2s; }
.burger span::before, .burger span::after { content:""; position: absolute; left: 0; width: 18px; height: 1.8px; background: var(--ink); transition: .2s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1040px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 26px; gap: 2px; margin: 0;
    transform: translateY(-140%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    max-height: calc(100dvh - 72px); overflow-y: auto; box-shadow: var(--shadow);
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a { padding: 13px 12px; font-size: 1rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav a.btn { margin: 18px 0 0; padding: 15px 24px; justify-content: center; border-bottom: none; border-radius: 100px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #e6e0d3; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,18,14,.95) 0%, rgba(20,18,14,.82) 42%, rgba(20,18,14,.35) 100%);
}
.hero-in { position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 140px); max-width: 780px; }
.hero h1 { color: #fff; }
.hero .lede { color: #d6cfc0; margin-top: 22px; max-width: 620px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,140,30,.16); border: 1px solid rgba(224,140,30,.4);
  color: #f2c476; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 26px;
}
.hero .btn-row { margin-top: 34px; }
.hero-foot { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.13); padding-block: 22px; }
.hero-foot-in { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; font-size: .84rem; color: #b6ae9e; }
.hero-foot-in strong { color: #fff; font-weight: 600; }

/* ---------- Page header (interior) ---------- */
.page-head { background: var(--ink); color: #cec7b8; padding-block: clamp(52px, 8vw, 92px); position: relative; overflow: hidden; }
.page-head::before {
  content:""; position:absolute; right:-120px; top:-120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,140,30,.22), transparent 65%);
}
.page-head h1 { color:#fff; max-width: 15ch; }
.page-head .lede { color: #b9b1a1; margin-top: 20px; max-width: 620px; }
.page-head .eyebrow { color: var(--marigold); }
.crumbs { font-size: .8rem; color: #8c8474; margin-bottom: 26px; }
.crumbs a { text-decoration: none; color: #8c8474; }
.crumbs a:hover { color: var(--marigold); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line); }
.grid > .card { display: flex; flex-direction: column; }
.grid > .card > .btn { align-self: flex-start; }
.grid > .card > .btn.mt-m { margin-top: auto; }
.grid > .card > *:has(+ .btn.mt-m) { margin-bottom: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--muted); }
.card-num { font-family: var(--serif); font-size: 2.4rem; color: var(--marigold); line-height: 1; margin-bottom: 12px; display:block; }
.icon-badge {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--marigold-l); color: var(--marigold-d); margin-bottom: 18px;
}
.icon-badge.clay { background: var(--clay-l); color: var(--clay); }
.icon-badge.forest { background: var(--forest-l); color: var(--forest); }
.icon-badge svg { width: 23px; height: 23px; }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--surface); padding: 26px 22px; }
.bg-ink .stats, .bg-forest .stats { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }
.bg-ink .stat { background: var(--ink); }
.bg-forest .stat { background: var(--forest); }
.stat-num { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--ink); line-height: 1; }
.bg-ink .stat-num, .bg-forest .stat-num { color: var(--marigold); }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: 9px; line-height: 1.4; }
.bg-ink .stat-label, .bg-forest .stat-label { color: #a9a192; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.split-media.tall img { aspect-ratio: 4/5; }
.split-media.wide img { aspect-ratio: 4/3; }

/* ---------- Pillars (numbered list) ---------- */
.pillar { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar-n { font-family: var(--serif); font-size: 1.5rem; color: var(--marigold); line-height: 1.1; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: .97rem; }
@media (max-width: 560px) { .pillar { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Video / story cards ---------- */
.story-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.story {
  display: block; text-decoration: none; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.story:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.story-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.story:hover .story-thumb img { transform: scale(1.05); }
.story-thumb::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,.55), transparent 55%);
}
.play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.93);
  display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,.28); transition: transform .2s;
}
.story:hover .play { transform: translate(-50%,-50%) scale(1.09); }
.play svg { width: 17px; height: 17px; margin-left: 3px; color: var(--clay); }
.story-body { padding: 16px 18px 20px; }
.story-body h4 { font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.story-body .tiny { margin-top: 7px; }

.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed.vertical { aspect-ratio: 9/16; max-width: 340px; }

/* ---------- Photo grid ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }
.photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content:""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item::before {
  content:""; position: absolute; left: -34px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--marigold);
}
.tl-item.key::before { background: var(--marigold); }
.tl-date { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--marigold-d); margin-bottom: 6px; }
.tl-item h4 { margin-bottom: 7px; }
.tl-item p { font-size: .94rem; color: var(--muted); }
.bg-ink .timeline::before { background: rgba(255,255,255,.16); }
.bg-ink .tl-item::before { background: var(--ink); }
.bg-ink .tl-item p { color: #a9a192; }

/* ---------- Callout ---------- */
.callout {
  border-radius: var(--radius); padding: 24px 26px; border: 1px solid var(--line);
  background: var(--surface); border-left: 4px solid var(--marigold);
}
.callout.warn { border-left-color: var(--clay); background: var(--clay-l); border-color: #f3d9d0; }
.callout.good { border-left-color: var(--forest); background: var(--forest-l); border-color: #d3e5df; }
.callout h4 { margin-bottom: 8px; }
.callout p { font-size: .94rem; color: var(--ink-2); }
.callout p + p { margin-top: .8em; }

/* ---------- Documents ---------- */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 22px; }
.doc {
  display: block; text-decoration: none; background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.doc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.doc-img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream-2); border-bottom: 1px solid var(--line-soft); }
.doc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc-cap { padding: 14px 16px 18px; }
.doc-cap h4 { font-family: var(--sans); font-size: .9rem; font-weight: 600; }
.doc-cap .tiny { margin-top: 5px; }

/* ---------- Data table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 460px; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line-soft); }
th { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; background: var(--cream-2); }
tbody tr:last-child td { border-bottom: none; }
td strong { color: var(--ink); }

/* ---------- Donate ---------- */
.donate-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--shadow);
}
.qr-box { text-align: center; }
.qr-box img { width: 100%; max-width: 260px; margin-inline: auto; border-radius: 12px; border: 1px solid var(--line); background:#fff; padding: 8px; }
.upi-id {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  background: var(--cream-2); border: 1px dashed var(--line); border-radius: 10px;
  padding: 10px 14px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .95rem; color: var(--ink); font-weight: 600;
}
.copy-btn { background: var(--ink); color: #fff; border: none; border-radius: 7px; padding: 5px 11px; font-size: .74rem; font-weight: 600; cursor: pointer; letter-spacing: .04em; }
.copy-btn:hover { background: var(--clay); }

.amounts { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 14px; }
.amount {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; background: var(--surface);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.amount:hover { border-color: var(--marigold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.amount .amt { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); line-height: 1; }
.amount p { font-size: .87rem; color: var(--muted); margin-top: 8px; }

.bank-list { list-style: none; padding: 0; }
.bank-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .93rem; }
.bank-list li:last-child { border-bottom: none; }
.bank-list span:first-child { color: var(--muted); }
.bank-list span:last-child { font-weight: 600; color: var(--ink); text-align: right; }

/* ---------- FAQ / accordion ---------- */
details.faq { border-bottom: 1px solid var(--line); padding: 4px 0; }
details.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
  font-weight: 600; color: var(--ink); font-size: 1.02rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--marigold); font-weight: 400; transition: transform .2s;
}
details.faq[open] summary::after { content: "−"; }
details.faq .faq-body { padding: 0 10px 20px 0; font-size: .96rem; color: var(--muted); }
details.faq .faq-body p + p { margin-top: .9em; }

/* ---------- Pledge / checklist ---------- */
.check { list-style: none; padding: 0; }
.check li { position: relative; padding-left: 32px; margin-bottom: 14px; font-size: .97rem; }
.check li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--forest-l); border: 1px solid #c3ddd4;
}
.check li::after {
  content: ""; position: absolute; left: 6.5px; top: 9px; width: 5px; height: 9px;
  border: solid var(--forest); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.check.cross li::before { background: var(--clay-l); border-color: #f0cfc4; }
.check.cross li::after { border: none; left: 5px; top: 7px; width: 9px; height: 9px;
  background: linear-gradient(45deg, transparent 44%, var(--clay) 44%, var(--clay) 56%, transparent 56%),
              linear-gradient(-45deg, transparent 44%, var(--clay) 44%, var(--clay) 56%, transparent 56%);
  transform: none; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, #1f1d18 0%, #302b22 100%); color: #ded8cb; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; right:-80px; bottom:-100px; width: 320px; height: 320px; border-radius:50%; background: radial-gradient(circle, rgba(224,140,30,.25), transparent 66%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b8b0a0; margin-top: 14px; max-width: 56ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a29a8a; padding-block: 60px 30px; font-size: .9rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.11); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.site-footer a { color: #a29a8a; text-decoration: none; }
.site-footer a:hover { color: var(--marigold); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #7d7666; }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: .88rem; line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: .18s; }
.socials a:hover { background: var(--marigold); border-color: var(--marigold); color: var(--ink); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: .8rem; color: #7d7666; }

/* ---------- Emergency bar ---------- */
.alert-bar { background: var(--clay); color: #fff; font-size: .85rem; }
.alert-bar .wrap { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; justify-content: center; padding-block: 9px; text-align: center; }
.alert-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); font-size: .95rem; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--marigold); box-shadow: 0 0 0 3px var(--marigold-l);
}
.field textarea { min-height: 130px; resize: vertical; }

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

/* ---------- Misc ---------- */
.pill { display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.pill-gold { background: var(--marigold-l); color: var(--marigold-d); }
.pill-forest { background: var(--forest-l); color: var(--forest); }
.pill-clay { background: var(--clay-l); color: var(--clay); }
hr.rule { border: none; border-top: 1px solid var(--line); margin-block: clamp(34px,5vw,56px); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 8px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
