/* ============================================================
   GILDED — Website prototype stylesheet
   Palette: warm paper, ink black, muted old-gold accent.
   Optional green = successful operational state.
   Optional amber = warning / exception state.
   No metallic gold. No healthcare blue. Restrained throughout.
   ============================================================ */

:root {
  /* Colour variables */
  --paper: #faf6ef;          /* warm paper background */
  --paper-deep: #f3ecdf;     /* slightly deeper paper for alternating sections */
  --ink: #1c1a16;            /* near-black text */
  --ink-soft: #4c4740;       /* secondary text */
  --gold: #9a7b3f;           /* restrained old-gold / ochre accent */
  --gold-deep: #7c6231;      /* darker gold for hover / borders on paper */
  --gold-wash: #f0e6d2;      /* very light gold wash for highlights */
  --green: #3f6f4f;          /* operational success */
  --green-wash: #e6efe8;
  --amber: #a3641c;          /* warnings / exceptions */
  --amber-wash: #f6e8d4;
  --line: #e0d7c6;           /* hairline borders */
  --white: #fffdf9;

  /* Spacing scale */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2.5rem;
  --s5: 4rem;
  --s6: 6rem;

  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1080px;
  --maxw-text: 46rem;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;               /* 17px body — above 16px minimum */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 var(--s2);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.125rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 var(--s2); }
p.lede { font-size: 1.1875rem; color: var(--ink-soft); }

/* Optional serif for the single hero line only (warmth) */
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

a { color: var(--gold-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* Visible focus for keyboard users — WCAG */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--s3);
}
.section { padding: var(--s5) 0; }
.section--deep { background: var(--paper-deep); }
.section--ink  { background: var(--ink); color: var(--paper); }
.section--ink h2 { color: var(--paper); }
.narrow { max-width: var(--maxw-text); }

.kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s1);
}
.section--ink .kicker { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, color 120ms ease;
  min-height: 48px;                    /* large tap target */
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--gold-deep); color: var(--white); }

.btn--gold {
  background: var(--gold-deep);
  color: var(--white);
}
.btn--gold:hover { background: var(--ink); color: var(--paper); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--call {
  background: var(--green);
  color: var(--white);
}
.btn--call:hover { background: var(--ink); }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: 0.85rem var(--s3);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand .brand-dot { color: var(--gold-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0.15rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--gold);
}
.nav .btn { padding: 0.6rem 1.1rem; min-height: 44px; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  min-height: 44px;
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: var(--s2) var(--s3) var(--s3);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.9rem 0.25rem; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .btn {
    margin-top: var(--s2);
    text-align: center;
    border: none;
  }
}

/* ---------- Hero ---------- */
.hero { padding: var(--s5) 0 var(--s5); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s4);
  align-items: center;
}
.hero .sub {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--s2);
}
.hero .support {
  color: var(--ink-soft);
  max-width: 34rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s3); }

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* Honest photo placeholder — replaced with real photography later */
.photo-ph {
  background: repeating-linear-gradient(
    -45deg, var(--paper-deep), var(--paper-deep) 12px,
    var(--gold-wash) 12px, var(--gold-wash) 24px);
  border: 2px dashed var(--gold-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s3);
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.9375rem;
  min-height: 300px;
}
.photo-ph--portrait { min-height: 260px; }
.photo-ph--small { min-height: 180px; }

/* ---------- Illustrations (interim brand artwork; swapped for real photos later) ---------- */
.illus {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gold-wash);
  border: 1px solid var(--line);
}
.illus img { display: block; width: 100%; height: auto; }
.illus figcaption {
  padding: 0.6rem 0.9rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.illus--card { border-radius: 0; border: none; }
.illus--small { max-width: 320px; margin: var(--s3) 0; }

/* Founder quote attribution */
.founder-attrib {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--gold-deep);
}

/* Coordinator experience / proof section */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-top: var(--s3);
}
.proof-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s3);
}
.proof-col h3 { margin-top: 0; }
.proof-col:first-child { border-top: 4px solid var(--green); }
.proof-col:last-child { border-top: 4px solid var(--amber); }
@media (max-width: 680px) { .proof-grid { grid-template-columns: 1fr; } }

/* ---------- Roster Wall ---------- */
.roster-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-top: var(--s3);
}
@media (max-width: 800px) {
  .roster-wall { grid-template-columns: 1fr; } /* stacks vertically on mobile */
}
.roster-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s3);
}
.roster-card h3 { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}
.tag--example { background: var(--amber-wash); color: var(--amber); }
.tag--gilded  { background: var(--green-wash); color: var(--green); }
.tag--sample  { background: var(--amber-wash); color: var(--amber); }

.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: var(--s2);
}
.cal .dow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-align: center;
  padding-bottom: 2px;
}
.cal .day {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.chip {
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.2rem 0.35rem;
  width: 100%;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Changing-roster chips: many muted, clashing-ish tones (deliberately busy) */
.chip--w1 { background: #7a6a8a; }
.chip--w2 { background: #5f7d8c; }
.chip--w3 { background: #8c6f5f; }
.chip--w4 { background: #6f8c66; }
.chip--w5 { background: #8c5f6e; }
.chip--w6 { background: #5f6b8c; }
.chip--w7 { background: #8a8a5f; }
.chip--tbc {
  background: var(--amber-wash);
  color: var(--amber);
  border: 1px dashed var(--amber);
}
/* Known Three chips: three calm related tones */
.chip--sarah { background: var(--gold-deep); }
.chip--priya { background: var(--green); }
.chip--tom   { background: #4c5a68; }

.roster-note {
  margin-top: var(--s2);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.roster-note strong { color: var(--ink); }

.legend { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s2); }
.legend .chip { width: auto; }

/* ---------- Commitments block ---------- */
.commit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-top: var(--s3);
  padding: 0;
  list-style: none;
}
@media (max-width: 800px) { .commit-list { grid-template-columns: 1fr; } }
.commit {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: var(--s3);
}
.commit h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.commit p { margin: 0; color: var(--ink-soft); font-size: 0.9875rem; }

/* Placeholder text style for unverified facts */
.ph-fact {
  display: inline-block;
  background: var(--gold-wash);
  border: 1px dashed var(--gold-deep);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold-deep);
}

/* ---------- Team cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s3);
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(28, 26, 22, 0.08);
}
.team-card .photo-ph { border-radius: 0; border-left: none; border-right: none; border-top: none; }
.team-card-body { padding: var(--s3); }
.team-card-body h3 { margin-bottom: 0.25rem; }
.team-card-body p { margin: 0; color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------- Honesty section ---------- */
.honesty-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s4);
  align-items: start;
}
@media (max-width: 800px) { .honesty-grid { grid-template-columns: 1fr; } }
.honesty-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s3);
}
.honesty-card h3 { margin-bottom: var(--s2); }
blockquote.founder-note {
  margin: 0 0 var(--s3);
  padding-left: var(--s3);
  border-left: 4px solid var(--gold-deep);
  font-size: 1.125rem;
  line-height: 1.7;
}
.honesty-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.honesty-points li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-weight: 600;
}
.honesty-points li::before {
  content: "—";
  color: var(--gold-deep);
  font-weight: 700;
}

/* ---------- Coordinator strip (homepage) ---------- */
.coord-strip { border-top: 1px solid var(--line); }
.coord-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s4);
  align-items: center;
}
@media (max-width: 800px) { .coord-strip-grid { grid-template-columns: 1fr; } }
.report-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s2);
  box-shadow: 0 8px 24px rgba(28, 26, 22, 0.07);
}
.report-preview .report { font-size: 0.8125rem; }

/* ---------- SAMPLE report component ---------- */
.report {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.report-banner {
  background: var(--amber-wash);
  color: var(--amber);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.6rem var(--s2);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.report-head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: space-between;
  padding: var(--s2) var(--s2) 0;
}
.report-head dl { margin: 0; }
.report-head dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  font-weight: 700;
}
.report-head dd { margin: 0; font-weight: 700; }

.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
  padding: var(--s2);
}
@media (max-width: 560px) { .report-stats { grid-template-columns: 1fr 1fr; } }
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--s2);
  text-align: center;
  background: var(--paper);
}
.stat .num { font-size: 1.5rem; font-weight: 700; display: block; }
.stat .lbl { font-size: 0.8125rem; color: var(--ink-soft); font-weight: 600; }
.stat--good { background: var(--green-wash); border-color: var(--green); }
.stat--good .num { color: var(--green); }
.stat--warn { background: var(--amber-wash); border-color: var(--amber); }
.stat--warn .num { color: var(--amber); }

/* Report table — becomes cards on mobile */
.report-table { width: 100%; border-collapse: collapse; }
.report-table caption {
  text-align: left;
  font-weight: 700;
  padding: var(--s2) var(--s2) 0.5rem;
  font-size: 0.9375rem;
}
.report-table th, .report-table td {
  text-align: left;
  padding: 0.65rem var(--s2);
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
}
.report-table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  border-top: none;
}
.report-table tbody tr:hover { background: var(--gold-wash); }
.status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
}
.status--ok    { background: var(--green-wash); color: var(--green); }
.status--cover { background: var(--gold-wash);  color: var(--gold-deep); }
.status--warn  { background: var(--amber-wash); color: var(--amber); }

@media (max-width: 680px) {
  /* Rebuild table as cards — no pinch-to-zoom */
  .report-table thead { position: absolute; left: -9999px; }
  .report-table tr {
    display: block;
    border-top: 1px solid var(--line);
    padding: 0.5rem 0;
  }
  .report-table td {
    display: flex;
    justify-content: space-between;
    gap: var(--s2);
    border: none;
    padding: 0.3rem var(--s2);
  }
  .report-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--ink-soft);
  }
}

/* Exception timeline inside report */
.exception {
  margin: var(--s2);
  border: 1px solid var(--amber);
  border-radius: var(--radius-sm);
  background: var(--amber-wash);
  padding: var(--s2);
}
.exception h4 { margin-bottom: 0.5rem; font-size: 0.9375rem; color: var(--amber); }
.exception ol { margin: 0; padding-left: 1.2rem; }
.exception li { margin-bottom: 0.25rem; font-size: 0.9375rem; }
.exception time { font-weight: 700; }

.report-foot {
  padding: var(--s2);
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: var(--paper);
}

/* ---------- Model comparison table ---------- */
.compare-scroll { overflow-x: auto; margin-top: var(--s3); }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.compare th, .compare td {
  padding: 0.9rem var(--s2);
  border: 1px solid var(--line);
  text-align: left;
  font-size: 0.9375rem;
  vertical-align: top;
}
.compare thead th {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--paper-deep);
}
.compare thead th.col-gilded {
  background: var(--ink);
  color: var(--paper);
}
.compare td.col-gilded {
  background: var(--gold-wash);
  font-weight: 600;
}
.compare tbody th { font-weight: 700; background: var(--paper); }
@media (max-width: 680px) {
  .compare { min-width: 560px; } /* horizontal scroll within component only */
}

/* ---------- Audit + capacity ---------- */
.audit-list { padding-left: 1.2rem; }
.audit-list li { margin-bottom: 0.4rem; }

.capacity-card {
  margin-top: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}
@media (max-width: 680px) { .capacity-card { grid-template-columns: 1fr; } }
.capacity-card .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

/* ---------- Contact / founder ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s4);
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-details { list-style: none; margin: var(--s2) 0 0; padding: 0; display: grid; gap: 0.5rem; }
.contact-details li { font-weight: 600; }
.contact-details .lbl { color: var(--ink-soft); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; }

/* Prominent click-to-call on mobile */
.call-bar { display: none; }
@media (max-width: 800px) {
  .call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 0.6rem var(--s2) calc(0.6rem + env(safe-area-inset-bottom));
    background: var(--ink);
  }
  .call-bar .btn {
    width: 100%;
    text-align: center;
  }
  body.has-call-bar { padding-bottom: 5rem; }
}

/* ---------- Form ---------- */
.enquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s3);
}
.form-field { margin-bottom: var(--s3); }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.form-field .hint {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--ink-soft);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  min-height: 48px;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-deep);
  outline: 3px solid var(--gold);
  outline-offset: 1px;
}
.form-note { font-size: 0.875rem; color: var(--ink-soft); margin-top: var(--s2); }
.form-success {
  background: var(--green-wash);
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: var(--s2);
  margin-top: var(--s2);
}
[hidden] { display: none !important; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: var(--s2); }
.micro { font-size: 0.9375rem; color: var(--ink-soft); }
.cta-band .micro { margin-top: var(--s2); }
.section--ink .cta-band .micro { color: var(--line); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s4) 0;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--s4);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: var(--gold); }
.site-footer .ph-fact { background: transparent; color: var(--gold); border-color: var(--gold); }
.footer-legal {
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid rgba(250, 246, 239, 0.2);
  color: rgba(250, 246, 239, 0.75);
  font-size: 0.875rem;
}

/* ---------- Scroll reveal (subtle; disabled if reduced motion) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
