/* ============================================================
   MARY JANE SEARLE — ACADEMIC WEBSITE
   Aesthetic: Refined Scholarly Luxury · Warm Parchment · Deep Navy
   ============================================================ */

/* Google Fonts loaded in HTML */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:         #1a2744;
  --navy-deep:    #111b33;
  --navy-mid:     #233058;
  --gold:         #b89a5a;
  --gold-light:   #d4b87a;
  --gold-pale:    #f0e8d4;
  --parchment:    #faf6ef;
  --parchment-dk: #f0e9d9;
  --cream:        #fffdf8;
  --warm-gray:    #8a8070;
  --text-dark:    #1e1a14;
  --text-body:    #3a3428;
  --text-muted:   #7a7060;
  --border:       #ddd4c0;
  --border-light: #ede6d8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Libre Baskerville', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --radius:       4px;
  --radius-md:    8px;
  --shadow-sm:    0 2px 8px rgba(26,39,68,0.06);
  --shadow-md:    0 6px 24px rgba(26,39,68,0.10);
  --shadow-lg:    0 16px 48px rgba(26,39,68,0.14);
  --transition:   0.25s ease;
  --max-width:    1160px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
}

/* ── UTILITY ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); font-style: italic; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem auto;
  border: none;
}
.gold-rule.left { margin-left: 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1.6em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--navy-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.4em 0.85em;
  border-radius: 2px;
  transition: all var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(184,154,90,0.15);
}

.site-nav a.active {
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.4em 1.1em !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all var(--transition);
}

/* ── HERO (HOME) ────────────────────────────────────────────── */
.hero {
  background: var(--navy-deep);
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(184,154,90,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 60%, rgba(35,48,88,0.8) 0%, transparent 60%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b89a5a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.hero-content {}

.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-title-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.hero-bio {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-portrait {
  position: relative;
}

.hero-portrait-frame {
  position: relative;
  border: 1px solid rgba(184,154,90,0.3);
  padding: 1rem;
}

.hero-portrait-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(184,154,90,0.15);
  pointer-events: none;
}

.hero-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy-mid) 0%, rgba(35,48,88,0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-align: center;
}

.hero-portrait-placeholder .ph-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(184,154,90,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

.hero-portrait-badge strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── PAGE HEADERS ───────────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero .section-label { margin-bottom: 0.75rem; }

.page-hero h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 1rem;
}

.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 620px; }

/* ── HOME FEATURED SECTION ──────────────────────────────────── */
.section-featured {
  padding: 6rem 0;
  background: var(--parchment);
  position: relative;
}

.section-featured::before {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(184,154,90,0.05);
  line-height: 1;
  pointer-events: none;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.featured-text {}
.featured-text .section-label { margin-bottom: 0.5rem; }
.featured-text h2 { margin-bottom: 1rem; }

.featured-book-visual {
  position: relative;
  padding: 2rem;
}

.book-cover-stack {
  position: relative;
  display: inline-block;
}

.book-cover-stack .cover-main {
  width: 220px;
  height: 300px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  text-align: center;
  position: relative;
  z-index: 2;
}

.book-cover-stack::before,
.book-cover-stack::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 300px;
  background: var(--navy-mid);
}

.book-cover-stack::before {
  top: -8px;
  left: 8px;
  z-index: 1;
  opacity: 0.5;
}
.book-cover-stack::after {
  top: -16px;
  left: 16px;
  z-index: 0;
  opacity: 0.25;
}

/* ── BOOKS GRID ─────────────────────────────────────────────── */
.section-books {
  padding: 6rem 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 0.95rem; }

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.book-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.book-card-cover {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--parchment-dk);
  position: relative;
}

.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card:hover .book-card-cover img {
  transform: scale(1.03);
}

.book-card-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  gap: 0.75rem;
  min-height: 260px;
}

.book-card-cover-placeholder .ph-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.book-card-cover-placeholder .ph-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.book-card-cover-placeholder .ph-note {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-title {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.book-title a { text-decoration: none; color: var(--navy); }
.book-title a:hover { color: var(--gold); }

.book-authors {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.book-year-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.15em 0.5em;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.book-blurb {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.book-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

/* ── BOOK DETAIL PAGE ───────────────────────────────────────── */
.book-hero {
  background: var(--navy-deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.book-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,154,90,0.06) 0%, transparent 70%);
}

.book-hero-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.book-hero-cover {
  position: sticky;
  top: 5rem;
}

.book-hero-cover img {
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-radius: 2px;
}

.book-cover-ph {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(184,154,90,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  min-height: 320px;
}

.book-cover-ph .ph-book-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.book-cover-ph .ph-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.book-cover-ph .ph-book-author {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.book-hero-text {}

.book-kicker {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.book-hero-text h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.book-subtitle-hero {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.book-meta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}

.book-meta strong { color: rgba(255,255,255,0.8); }

.book-description {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 1.5rem 0 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

.book-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.book-content {
  padding: 5rem 0;
  background: var(--parchment);
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.book-main h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-top: 2.5rem;
}
.book-main h2:first-child { margin-top: 0; }

.book-main ul, .book-main ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25em;
}
.book-main li { margin-bottom: 0.5em; }

.book-sidebar {}

.book-sidebar-section {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.book-sidebar-section h3 {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.book-facts {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
}
.book-facts li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-body);
}
.book-facts li strong {
  color: var(--navy);
  min-width: 80px;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
}
.sidebar-links li { margin-bottom: 0.6rem; }
.sidebar-links a {
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.sidebar-links a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.8rem;
}
.sidebar-links a:hover { color: var(--gold); }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
}

.about-main {}

.about-sidebar {}

.credentials-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
}
.credentials-card h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

.cred-list {
  list-style: none;
  padding: 0;
}
.cred-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  line-height: 1.5;
}
.cred-list li:last-child { border-bottom: none; }
.cred-list .cred-degree {
  font-weight: 700;
  color: var(--navy);
  display: block;
  font-size: 0.85rem;
}
.cred-list .cred-institution {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.82rem;
}

.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.research-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--navy);
  background: var(--parchment-dk);
  border: 1px solid var(--border);
  padding: 0.25em 0.75em;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.about-name-note {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-body);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2.5rem;
  font-style: italic;
}

/* ── SPEAKING PAGE ──────────────────────────────────────────── */
.speaking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 4rem 0;
}

.speaking-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.speaking-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.speaking-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.speaking-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.speaking-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.testimonial-section {
  background: var(--navy-deep);
  padding: 5rem 0;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.testimonial-attribution {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── MEDIA PAGE ─────────────────────────────────────────────── */
.media-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem 0;
}

.media-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: all var(--transition);
}

.media-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.media-type-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  border-radius: 2px;
  text-align: center;
}
.badge-podcast { background: #e8f4f8; color: #2a6080; }
.badge-article { background: var(--gold-pale); color: #7a5a20; }
.badge-video   { background: #f0e8f8; color: #5a2080; }
.badge-interview { background: #e8f8e8; color: #206040; }

.media-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.media-item .media-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.media-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── RESOURCES PAGE ─────────────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.resource-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.resource-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resource-icon {
  width: 52px;
  height: 52px;
  background: var(--parchment-dk);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  border: 1px solid var(--border);
}

.resource-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.resource-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  padding: 5rem 0;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.06);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: rgba(255,255,255,0.75);
}
.contact-info-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,154,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}
.contact-info-item .ci-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-item .ci-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(184,154,90,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-brand .logo-text { color: #fff; font-size: 1.15rem; }
.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-note {
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.footer-social a:hover {
  background: rgba(184,154,90,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.section-testimonials {
  background: var(--parchment-dk);
  padding: 5rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

/* ── AWARDS RIBBON ──────────────────────────────────────────── */
.awards-bar {
  background: var(--parchment);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  overflow: hidden;
}

.awards-bar-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--warm-gray);
}

.award-item::before {
  content: '★';
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ── MOBILE MENU ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 200;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .site-nav.open { right: 0; }
  .site-nav a { font-size: 1rem; padding: 0.75em 1em; width: 100%; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-portrait { display: none; }
  .hero-stats { gap: 1.5rem; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-book-visual { display: none; }

  .about-layout { grid-template-columns: 1fr; }
  .book-hero-inner { grid-template-columns: 1fr; }
  .book-hero-cover { position: static; max-width: 220px; }
  .book-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-cta { flex-direction: column; }
}

/* ── MISC HELPERS ───────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.visually-hidden { visibility: hidden; }

.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2.5rem 0;
}

.highlight-box {
  background: var(--gold-pale);
  border: 1px solid rgba(184,154,90,0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
