/* =========================================
   Tendai Writes — site.css (v2)
   Palette: warm ivory, soft cream, burgundy, antique gold, warm charcoal, soft sage
   Tone: safe, elegant, hopeful, professional
   ========================================= */

:root {
  --ivory:        #FAF7F2;
  --cream:        #F4EFE6;
  --cream-deep:   #ECE3D2;
  --burgundy:     #7B2E3B;
  --burgundy-deep:#5C1F2A;
  --burgundy-soft:#9B4A57;
  --gold:         #B88A2A;
  --gold-soft:    #D4B15E;
  --charcoal:     #444444;
  --charcoal-soft:#6B6661;
  --sage:         #A5B29A;
  --sage-soft:    #C4CEB9;
  --white:        #ffffff;
  --rule:         #E3D9C5;

  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-soft:  0 4px 24px rgba(68, 68, 68, 0.06);
  --shadow-card:  0 8px 36px rgba(68, 68, 68, 0.09);
  --radius:       4px;
  --radius-lg:    8px;

  --max-width: 1200px;
  --narrow:    720px;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
a:hover { border-bottom-color: var(--burgundy); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  color: #2a2a2a;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.3rem; font-weight: 500; }

p { margin: 0 0 1.1em; }
em { font-style: italic; }

blockquote {
  margin: 1.5em 0;
  padding: 0 0 0 1.2em;
  border-left: 3px solid var(--burgundy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--burgundy-deep);
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: var(--narrow); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.muted { color: var(--charcoal-soft); font-size: 0.94rem; }

/* ============== HEADER ============== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
}
.brand:hover { border: none; }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  background: var(--burgundy);
  color: var(--ivory);
  border-radius: 50%;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-name { letter-spacing: 0.01em; }

.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.site-nav a {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  padding: 6px 0;
  position: relative;
}
.site-nav a:hover { color: var(--burgundy); }
.site-nav a.active { color: var(--burgundy); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--burgundy);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  width: 42px; height: 42px;
  padding: 10px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--burgundy-deep);
  border-radius: 1px;
}

/* ============== HERO ============== */

.hero {
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(184, 138, 42, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(165, 178, 154, 0.18), transparent 60%),
    var(--ivory);
  position: relative;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 26px;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cover {
  margin: 0;
  text-align: center;
  position: relative;
}
.hero-cover img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 380px;
  margin: 0 auto;
}
.hero-cover figcaption {
  margin-top: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ============== BUTTONS ============== */

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.05s;
  text-align: center;
}
.btn:hover { border-bottom-color: transparent; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--ivory);
}
.btn-primary:hover { background: #9C7421; }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--ivory); }

.btn-link {
  background: transparent;
  color: var(--burgundy);
  padding: 14px 4px;
  border: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============== SECTIONS ============== */

.section {
  padding: 90px 0;
}
.section-tight { padding: 60px 0; }

.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin: 0 0 16px; }
.section-head p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

/* ============== PULL QUOTE BAND ============== */

.quote-band {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 0;
}
.quote-band blockquote {
  margin: 0;
  border: none;
  text-align: center;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-style: italic;
  color: var(--burgundy-deep);
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
}
.quote-band blockquote p { margin: 0 0 16px; }
.quote-band cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 18px;
}

/* ============== WELCOME / INTRO ============== */

.welcome {
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
}
.welcome-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--charcoal);
}
.welcome-body p { margin: 0 0 1em; }
.welcome-sig {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  display: block;
}

/* ============== FEATURED BOOK ============== */

.featured-book {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.featured-book-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}
.featured-book-cover img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.featured-book-body h2 { margin-top: 0; }
.featured-book-body p {
  color: var(--charcoal-soft);
  font-size: 1.08rem;
  margin-bottom: 1.4em;
}
.featured-book-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============== WHY I WROTE THIS BOOK (video placeholder) ============== */

.video-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 138, 42, 0.25), transparent 70%);
}
.video-card-inner {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.video-card .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: var(--ivory);
  padding-left: 4px;
}
.video-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  color: rgba(250, 247, 242, 0.85);
}

/* ============== RESOURCE CARDS ============== */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.resource-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 1.1rem;
}
.resource-card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.resource-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin: 0 0 16px;
  flex: 1;
}
.resource-card .card-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--burgundy);
  align-self: start;
}

/* ============== PERMISSION LETTER (newsletter) ============== */

.permission {
  background:
    linear-gradient(135deg, var(--burgundy-deep), var(--burgundy) 70%);
  color: var(--ivory);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.permission::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 138, 42, 0.3), transparent 70%);
}
.permission::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 138, 42, 0.2), transparent 70%);
}
.permission-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.permission .eyebrow { color: var(--gold-soft); }
.permission h2 {
  color: var(--ivory);
  font-style: italic;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}
.permission p {
  color: rgba(250, 247, 242, 0.9);
  font-size: 1.1rem;
  margin: 0 0 32px;
}
.permission-form {
  display: flex;
  gap: 10px;
  background: var(--ivory);
  padding: 8px;
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}
.permission-form input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--charcoal);
  padding: 12px 14px;
  outline: none;
}
.permission-form input::placeholder { color: var(--charcoal-soft); }
.permission-form .btn { white-space: nowrap; }

/* ============== PAGE HERO (interior pages) ============== */

.page-hero {
  padding: 90px 0 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 { margin: 0 0 20px; max-width: 880px; }
.page-hero .lede { margin: 0; max-width: 720px; }

/* ============== ABOUT PAGE ============== */

.about-body {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  color: var(--charcoal-soft);
  font-family: var(--serif);
  font-style: italic;
}
.prose p { font-size: 1.06rem; line-height: 1.78; }
.prose h2 { margin-top: 1.6em; }
.prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}
.prose ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 1.04rem;
  line-height: 1.6;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--gold);
}

.bio-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}
.bio-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.05rem;
}
.bio-list li:last-child { border-bottom: none; }
.bio-list strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--burgundy-deep);
  margin-bottom: 2px;
}

/* ============== BOOKS PAGE ============== */

.book-feature {
  padding: 80px 0;
}
.book-feature-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}
.book-feature-cover img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.meta {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.meta dt {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin: 0 0 4px;
}
.meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--charcoal);
}

.book-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contents-section { padding: 60px 0; }
.contents-list { list-style: none; padding: 0; margin: 0; }
.contents-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.contents-list li:last-child { border-bottom: none; }
.contents-list strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--burgundy-deep);
  display: block;
  margin-bottom: 4px;
}

.reviews-section { padding: 60px 0; background: var(--cream); }
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
}
.review cite {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ============== RESOURCES PAGE (by topic) ============== */

.resources-topic {
  padding: 70px 0;
  border-bottom: 1px solid var(--rule);
}
.resources-topic:last-child { border-bottom: none; }

.topic-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.topic-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
}
.topic-head h2 {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.topic-head p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.96rem;
  max-width: 480px;
  text-align: right;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.topic-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--burgundy-deep);
}
.topic-card p {
  font-size: 0.94rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.helpline-band {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
}
.helpline-band p { color: var(--charcoal-soft); margin-bottom: 18px; }

/* ============== SPEAKING PAGE ============== */

.speaking-intro {
  padding: 80px 0;
}
.speaking-intro-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.speaking-intro p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
.speaking-stats {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 3px solid var(--gold);
}
.speaking-stats h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.speaking-stats ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.speaking-stats li {
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.topics-section { padding: 80px 0; background: var(--cream); }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.topic-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--burgundy);
  display: flex;
  align-items: center;
  gap: 16px;
}
.topic-tile .num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  min-width: 36px;
}
.topic-tile h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.cta-band {
  background: var(--burgundy-deep);
  color: var(--ivory);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--ivory); margin: 0 0 14px; }
.cta-band p { color: rgba(250, 247, 242, 0.85); margin: 0 0 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--gold); }

/* ============== REFLECTIONS PAGE ============== */

.reflections-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.reflection-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.reflection-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.reflection-card .kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.reflection-card h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--charcoal);
  line-height: 1.2;
}
.reflection-card p {
  color: var(--charcoal-soft);
  margin: 0 0 18px;
  flex: 1;
}
.reflection-card .read {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--burgundy);
  align-self: start;
}

/* ============== CONTACT PAGE ============== */

.contact-body { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.contact-card h3 {
  margin: 0 0 8px;
  color: var(--burgundy-deep);
}
.contact-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin: 0 0 16px;
  flex: 1;
}
.contact-card .email {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--burgundy);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
.contact-card .email:hover { border-bottom-color: var(--burgundy); }

.contact-note {
  margin-top: 60px;
  padding: 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
}
.contact-note p { margin: 0; }
.contact-note strong { color: var(--burgundy-deep); font-style: normal; }

/* ============== FOOTER ============== */

.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 70px 0 30px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--ivory);
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  margin: 0;
  color: rgba(250, 247, 242, 0.85);
  font-size: 1rem;
}
.footer-tagline {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.footer-nav h4,
.footer-social h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 16px;
}
.footer-nav a,
.footer-social a {
  display: block;
  color: var(--ivory);
  font-size: 0.95rem;
  border: none;
  padding: 5px 0;
  opacity: 0.88;
}
.footer-nav a:hover,
.footer-social a:hover { opacity: 1; border: none; }

.footer-meta {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
}

/* ============== RESPONSIVE ============== */

@media (max-width: 980px) {
  .hero { padding: 60px 0 70px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 50px; }
  .hero-cover { order: -1; }
  .hero-cover img { max-width: 280px; }

  .featured-book-wrap { grid-template-columns: 1fr; gap: 40px; }
  .featured-book-cover { max-width: 280px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 320px; margin: 0 auto; }

  .book-feature-wrap { grid-template-columns: 1fr; gap: 40px; }
  .book-feature-cover { max-width: 280px; margin: 0 auto; }

  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .reflections-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .speaking-intro-wrap { grid-template-columns: 1fr; gap: 40px; }

  .footer-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--rule);
    padding: 12px 0;
  }
  .site-nav.open a {
    padding: 14px 28px;
    width: 100%;
  }
  .site-nav.open a.active::after { display: none; }
  .site-nav.open a.active { background: var(--cream); }

  body { font-size: 16px; }
  .page-hero { padding: 60px 0 40px; }
  .section, .about-body, .book-feature, .speaking-intro, .contact-body { padding: 50px 0; }
  .resources-topic { padding: 50px 0; }
  blockquote { font-size: 1.2rem; }
  .meta { grid-template-columns: 1fr; gap: 12px; }
  .topic-head { flex-direction: column; gap: 8px; }
  .topic-head p { text-align: left; }
}

@media print {
  .site-header, .site-footer, .permission, .nav-toggle { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
