/* ============================================================
   MRS. ANT — CONSIDER HER WAYS
   Design tokens sourced from the official brand board.
   ============================================================ */

:root {
  /* Brand palette (from brand board) */
  --sage: #7A8C6E;
  --sage-dark: #5F6E55;
  --cream: #F7F2E8;
  --cream-warm: #FBF8F2;
  --gold: #C9A469;
  --gold-deep: #A9834E;
  --terracotta: #C56A4A;
  --brown: #7A5A3A;
  --ink: #3E3A32;

  /* Type */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Lora', Georgia, serif;

  --radius: 14px;
  --shadow-soft: 0 6px 24px rgba(122, 90, 58, 0.10);
  --shadow-lift: 0 12px 32px rgba(122, 90, 58, 0.16);
  --rule: 1px solid rgba(122, 90, 58, 0.18);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-warm);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.35rem; }

.script {
  font-family: var(--font-script);
  color: var(--gold-deep);
  font-size: 1.8em;
  font-weight: 400;
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 600;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.section--sage { background: var(--sage); color: #fff; }
.section--sage h2, .section--sage h3 { color: #fff; }
.section--cream { background: var(--cream); }

/* -------------------- Divider motif -------------------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 18px 0 32px;
  font-size: 0.9rem;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--gold);
  opacity: 0.6;
}

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: var(--rule);
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--sage-dark);
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--sage) 0%, var(--gold) 140%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-script); font-size: 1.3rem;
}
.brand em { font-style: normal; color: var(--gold-deep); font-family: var(--font-script); font-size: 1.15em; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
}
.nav a { color: var(--ink); opacity: 0.85; }
.nav a:hover { color: var(--terracotta); opacity: 1; }
.nav__cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 30px;
  opacity: 1 !important;
}
.nav__cta:hover { background: var(--brown); }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--sage-dark); cursor: pointer; }

@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-warm); flex-direction: column; padding: 20px 24px; border-bottom: var(--rule); gap: 16px; }
  .nav.is-open { display: flex; }
  .nav-toggle { display: block; }
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { box-shadow: var(--shadow-lift); }
.btn--sage { background: var(--sage); color: #fff; }
.btn--outline { background: transparent; border-color: var(--sage); color: var(--sage-dark); }
.btn--outline:hover { background: var(--sage); color: #fff; }
.btn--light { background: #fff; color: var(--sage-dark); }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  background: radial-gradient(circle at 15% 20%, rgba(122,140,110,0.12), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(197,106,74,0.10), transparent 50%),
              var(--cream-warm);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}
.hero p.lead { font-size: 1.15rem; max-width: 46ch; margin-bottom: 28px; }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } .hero__art { order: -1; aspect-ratio: 16/9; } }

/* -------------------- Placeholder image blocks (no binary assets) -------------------- */
.ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage) 0%, #A9B79C 55%, var(--gold) 130%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.ph--gold { background: linear-gradient(135deg, var(--gold) 0%, #E4CB9B 60%, var(--terracotta) 140%); }
.ph--terracotta { background: linear-gradient(135deg, var(--terracotta) 0%, #DE9576 60%, var(--brown) 140%); }
.ph--cream { background: linear-gradient(135deg, #EFE8D8 0%, var(--cream) 60%, var(--gold) 150%); color: var(--brown); }
.ph--sage-line { background: repeating-linear-gradient(135deg, var(--sage), var(--sage) 12px, #8C9C81 12px, #8C9C81 24px); }

/* -------------------- Cards -------------------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__media { aspect-ratio: 4/3; }
.card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card__tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terracotta); font-weight: 700; margin-bottom: 8px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 16px; }
.card__link { margin-top: auto; font-weight: 600; color: var(--sage-dark); }
.card__link::after { content: " →"; }

/* -------------------- Lesson list -------------------- */
.lesson {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: var(--rule);
}
.lesson__num { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); }
.lesson:last-child { border-bottom: none; }

/* -------------------- Icon motif row -------------------- */
.motif-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; text-align: center; }
.motif { width: 90px; }
.motif__glyph {
  width: 56px; height: 56px; margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(122,90,58,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--sage-dark);
}
.motif__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brown); }

/* -------------------- Verse block -------------------- */
.verse {
  background: var(--sage);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
}
.verse blockquote { font-family: var(--font-head); font-size: 1.5rem; font-style: italic; margin: 0 0 14px; }
.verse cite { font-family: var(--font-body); font-style: normal; opacity: 0.85; }

/* -------------------- Newsletter -------------------- */
.newsletter {
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.newsletter h2 { color: #fff; }
.newsletter form { display: flex; gap: 12px; max-width: 460px; margin: 24px auto 0; flex-wrap: wrap; justify-content: center; }
.newsletter input[type=email] {
  flex: 1; min-width: 220px;
  padding: 14px 18px; border-radius: 30px; border: none; font-family: var(--font-body); font-size: 1rem;
}
.newsletter .success-msg { display: none; margin-top: 16px; font-weight: 600; }

/* -------------------- Testimonials / FAQ -------------------- */
.faq-item { border-bottom: var(--rule); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-family: var(--font-head); color: var(--sage-dark); list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-deep); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; opacity: 0.85; }

/* -------------------- Breadcrumbs -------------------- */
.breadcrumbs { font-size: 0.85rem; opacity: 0.7; margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--terracotta); }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--brown);
  color: #F0E8D8;
  padding: 60px 0 28px;
}
.site-footer a { color: #F0E8D8; opacity: 0.85; }
.site-footer a:hover { opacity: 1; color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--gold); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; }
.footer-bottom { border-top: 1px solid rgba(240,232,216,0.2); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; opacity: 0.75; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* -------------------- Page hero (interior pages) -------------------- */
.page-hero {
  background: var(--cream);
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero p { max-width: 60ch; margin: 0 auto; opacity: 0.85; }

/* -------------------- Utility -------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.85rem; opacity: 0.75; }
.disclaimer-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 28px 0;
}
