/* ============================================================
   Cozy Butter — landing page styles
   Palette = the live Circle theme (head-snippet v3.2, 2026-08-19):
   blush #F4EAE1 page · soft-wash #F8F2EE cards · band #F6ECE4 ·
   hairline #E7D8CB · header #F2E6DB · butter #FAD88B (ink text,
   hover #F0C046 — never white on butter, butter never a page
   background) · rose #C3796D links · ink #243029 / #33433C ·
   sage #46574E / #5E7364 secondary.
   Type: Cormorant Garamond 500/600 display · DM Sans body/UI.
   One diffused card shadow, 24px card radius, pill buttons.
   ============================================================ */

:root {
  --page:       #F4EAE1;
  --card:       #F8F2EE;
  --band:       #F6ECE4;
  --header:     #F2E6DB;
  --hairline:   #E7D8CB;
  --hairline-2: #D6C3B3;
  --butter:     #FAD88B;
  --butter-hov: #F0C046;
  --rose:       #C3796D;
  --ink:        #243029;
  --body:       #33433C;
  --sage:       #46574E;
  --sage-quiet: #5E7364;
  --shadow: 0 18px 40px -22px rgba(36, 48, 41, .28);
  --radius: 24px;
  /* Tinted grounds from the approved news cards + brand guide */
  --pink-ground: #F7DFD8;   /* Laws card pink */
  --sage-ground: #DDE6DB;   /* Nation card sage */
  --amber:      #F0C046;    /* butter hover, used as small accent */
  --gold:       #A67952;    /* antique gold, fine rules only */
  --sage-deep:  #33433C;    /* deep sage band */
  --cream-text: #F8F2EE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--page);
  color: var(--body);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.shell-narrow { max-width: 760px; }

/* ---------- type ---------- */

h1, h2, h3, .closing h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.6rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--rose); }

h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: .5em; }
h3 { font-size: 1.35rem; margin-bottom: .35em; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-quiet);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.15rem;
  color: var(--sage);
  margin: 20px 0 30px;
  max-width: 34em;
}

.section-lede {
  color: var(--sage);
  max-width: 38em;
  margin-bottom: 36px;
}

a { color: var(--rose); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 22px;
  transition: background-color .15s ease;
}

.btn-butter {
  background: var(--butter);
  color: var(--ink);          /* never white on butter */
}

.btn-butter:hover { background: var(--butter-hov); }

.btn-lg { padding: 14px 30px; font-size: 16px; }

.link-arrow {
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--rose);
}

.link-arrow:hover { text-decoration: underline; }

/* ---------- header ---------- */

.site-header {
  background: var(--header);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 64px;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

/* Amanda 2026-08-19: never put butter yellow behind the word "Butter" */
.wordmark-pill { color: inherit; }

.wordmark-sm { font-size: 1.25rem; }

.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
}

.site-nav a:hover { color: var(--ink); }

.site-header .btn { flex-shrink: 0; }

/* ---------- hero ---------- */

.hero { padding: 88px 0 96px; }

.hero-grid {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy { max-width: 720px; }

.hero-copy .lede { margin-left: auto; margin-right: auto; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ---------- bands + cards ---------- */

.band {
  background: var(--band);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 76px 0;
}

/* Section backgrounds stay neutral (lighter/darker blush); the color
   pops live in the cards and buttons (Amanda 2026-08-19). */
.band-light { background: var(--card); }
.band-dark { background: #EFE3D8; border-color: #E0CDBC; }

.band-deep {
  background: var(--sage-deep);
  border-top: 1px solid var(--sage-deep);
  border-bottom: 1px solid var(--sage-deep);
  padding: 84px 0;
}
.band-deep h2 { color: var(--cream-text); }
.band-deep p { color: #C9D6C7; }

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 30px 26px;
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.card p:last-child { color: var(--sage); }

/* Color pops: alternate sage and pink boxes */
.card-grid .card:nth-child(odd),
.two-col .card:nth-child(odd) { background: var(--sage-ground); border-color: #C9D6C7; }
.card-grid .card:nth-child(even),
.two-col .card:nth-child(even) { background: var(--pink-ground); border-color: #EBC9BE; }
.card-grid .card:nth-child(odd) .card-label,
.two-col .card:nth-child(odd) .card-label { color: var(--rose); }
.card-grid .card:nth-child(even) .card-label,
.two-col .card:nth-child(even) .card-label { color: var(--sage); }

/* ---------- the butter way ---------- */

.butter-way { padding: 84px 0; }

.way-list {
  list-style: none;
  counter-reset: way;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.way-list li {
  counter-increment: way;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  position: relative;
}

.way-list li::before {
  content: "0" counter(way);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}

.way-list li:nth-child(odd) { background: var(--sage-ground); border-color: #C9D6C7; }
.way-list li:nth-child(even) { background: var(--pink-ground); border-color: #EBC9BE; }
.way-list li:nth-child(even)::before { color: var(--gold); }

.way-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-quiet);
  margin-bottom: 8px;
}

/* ---------- faq ---------- */

.faq-list { margin-top: 32px; }

.faq-list details {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 34px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--rose);
}

.faq-list details[open] summary::after { content: "\2212"; }

.faq-list details p { padding: 0 0 20px; color: var(--sage); }

/* ---------- closing ---------- */

.closing { padding: 88px 0 96px; }

.closing-inner { text-align: center; }

.closing p { color: var(--sage); margin: 6px 0 28px; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--header);
  border-top: 1px solid var(--hairline);
  padding: 30px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-note {
  font-size: 13px;
  color: var(--sage-quiet);
  margin-left: auto;
}

.footer-copy { font-size: 13px; color: var(--sage-quiet); }

/* ---------- subpages ---------- */

.page-hero { padding: 64px 0 56px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3rem); max-width: 18em; }
.page-hero .lede { margin-bottom: 0; }
.page-hero-tint { background: #EFE3D8; border-bottom: 1px solid #E0CDBC; }

.content-section { padding: 64px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.rule-gold { border: 0; border-top: 1px solid var(--gold); opacity: .5; margin: 28px 0; }

.cta-row { margin-top: 36px; }

/* ---------- legal prose ---------- */

.legal { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--sage-quiet); margin-bottom: 36px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--body); margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }

/* ---------- footer (expanded) ---------- */

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 12px 0 28px;
}

.footer-grid h4 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-quiet);
  margin-bottom: 12px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--body); text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: var(--rose); }
.footer-tagline { color: var(--sage); font-size: 14px; max-width: 26em; margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: baseline;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .hero { padding: 56px 0 64px; }
  .card-grid, .way-list { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .header-row { justify-content: space-between; }
}

@media (max-width: 480px) {
  .footer-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-note { margin-left: 0; }
}
