/* ==========================================================================
   MELISSA RUTH — AUTHOR & PUBLIC SPEAKER OFFICIAL WEBSITE
   Design System & Responsive Stylesheet
   WCAG 2.1 AA Compliant | Mobile-First Architecture
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-primary: #090e1a;
  --bg-secondary: #101828;
  --bg-card: rgba(18, 27, 46, 0.85);
  --bg-card-elevated: #162238;
  --bg-card-hover: #1c2b47;
  --bg-parchment: #fdfbf7;
  
  /* Accent Colors */
  --rose-gold: #e08b76;
  --rose-gold-light: #f5b9ab;
  --rose-gold-dark: #b85d47;
  --gold-primary: #dfa86a;
  --gold-bright: #fbbf24;
  --gold-light: #fef3c7;
  --emerald-accent: #10b981;
  --sky-accent: #38bdf8;
  
  /* Text System */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Borders & Shadows */
  --border-subtle: rgba(224, 139, 118, 0.2);
  --border-gold: rgba(223, 168, 106, 0.35);
  --border-focus: #38bdf8;
  --glow-rose: 0 10px 30px -10px rgba(224, 139, 118, 0.3);
  --glow-gold: 0 10px 30px -10px rgba(223, 168, 106, 0.3);
  --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-book: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Cinzel', Georgia, serif;
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(224, 139, 118, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(223, 168, 106, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(56, 189, 248, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Accessibility: Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold-bright);
  color: #000;
  font-weight: 800;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

/* Visible Focus Indicator */
:focus-visible {
  outline: 3px solid var(--border-focus);
  outline-offset: 3px;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 14, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--gold-primary));
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-rose);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  display: block;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  display: block;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose-gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold-primary));
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Touch-friendly buttons (min 48px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--gold-primary));
  color: var(--text-dark);
  box-shadow: var(--glow-rose);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(224, 139, 118, 0.45);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(224, 139, 118, 0.12);
  color: var(--rose-gold-light);
  border-color: var(--border-subtle);
}
.btn-secondary:hover {
  background: rgba(224, 139, 118, 0.22);
  border-color: var(--rose-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-amazon {
  background: #ff9900;
  color: #111;
  font-weight: 800;
  box-shadow: 0 10px 25px -5px rgba(255, 153, 0, 0.35);
}
.btn-amazon:hover {
  background: #ffaa22;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(255, 153, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: rgba(203, 213, 225, 0.3);
}
.btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Hamburger Button */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  cursor: pointer;
}
@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.drawer-link {
  color: var(--text-secondary);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-serif);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-link.active,
.drawer-link:hover {
  color: var(--rose-gold-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(224, 139, 118, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-title span.accent-rose {
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.accent-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Trust / Identity Badges Strip */
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-badge-item span.icon {
  font-size: 1.2rem;
}

/* Hero Showcase Card: Book 3D Mockup */
.hero-book-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.book-card-3d {
  position: relative;
  width: 100%;
  max-width: 340px;
  perspective: 1200px;
}

.book-inner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-book);
  border: 1px solid rgba(223, 168, 106, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: rotateY(-6deg) rotateX(4deg);
}

.book-inner:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(224, 139, 118, 0.45);
}

.book-inner img,
.book-inner svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Banner on Showcase */
.book-floating-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

/* ==========================================================================
   ABOUT SECTION: THE AUTHOR BIOGRAPHY & MANIFESTO
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* Author Portrait Frame */
.author-portrait-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 420px;
}

.portrait-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(224, 139, 118, 0.3) 0%, transparent 70%);
  z-index: 0;
  border-radius: var(--radius-lg);
}

.portrait-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.portrait-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  display: block;
  border: 2px solid rgba(223, 168, 106, 0.4);
}

.portrait-caption {
  margin-top: 1rem;
  text-align: center;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.portrait-sub {
  font-size: 0.82rem;
  color: var(--rose-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* The Core Manifesto Quote Card */
.manifesto-card {
  background: rgba(18, 27, 46, 0.95);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--rose-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.manifesto-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(224, 139, 118, 0.15);
  pointer-events: none;
}

.manifesto-p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
}
.manifesto-p:last-child {
  margin-bottom: 0;
}

.manifesto-p strong {
  color: #ffffff;
  font-weight: 700;
}

.manifesto-p .highlight-book {
  color: var(--gold-bright);
  font-weight: 700;
  font-style: italic;
}

/* 4 Identity Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar-card {
  background: rgba(16, 24, 40, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-gold);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.pillar-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BOOKS & SERIES SHOWCASE SECTION
   ========================================================================== */
.books-section {
  position: relative;
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Series Banner Box */
.series-banner {
  background: linear-gradient(135deg, rgba(224, 139, 118, 0.15), rgba(30, 27, 75, 0.8));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .series-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.series-badge {
  font-size: 0.75rem;
  font-family: var(--font-accent);
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.series-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.25rem;
}

.series-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

/* Books Grid */
.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 850px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.book-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.book-card-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 540px) {
  .book-card-top {
    flex-direction: row;
    align-items: flex-start;
  }
}

.book-cover-thumb {
  width: 130px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
  border: 1px solid rgba(223, 168, 106, 0.3);
}
.book-cover-thumb img,
.book-cover-thumb svg {
  width: 100%;
  height: auto;
  display: block;
}

.book-meta {
  flex: 1;
}

.book-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.book-tag.tag-book1 {
  background: rgba(224, 139, 118, 0.18);
  color: var(--rose-gold-light);
  border: 1px solid rgba(224, 139, 118, 0.3);
}
.book-tag.tag-journal {
  background: rgba(223, 168, 106, 0.18);
  color: var(--gold-bright);
  border: 1px solid rgba(223, 168, 106, 0.3);
}

.book-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.book-series-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.book-summary {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.book-quote-callout {
  background: rgba(0, 0, 0, 0.3);
  border-left: 2px solid var(--gold-primary);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
  font-style: italic;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.book-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 480px) {
  .book-card-actions {
    flex-direction: row;
    align-items: center;
  }
  .book-card-actions .btn {
    flex: 1;
  }
}

/* ==========================================================================
   PUBLIC SPEAKING & CONFERENCES SECTION
   ========================================================================== */
.speaking-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.speaking-intro-box {
  background: rgba(18, 27, 46, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.speaking-intro-text {
  font-size: 1.12rem;
  color: #e2e8f0;
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Speaking Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.topic-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose-gold);
}

.topic-num {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.topic-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.topic-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Speaking Formats Bar */
.formats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.format-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.format-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.format-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.format-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BOOKING & CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
  position: relative;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: flex-start;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-info-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(224, 139, 118, 0.15);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.contact-val {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-val a {
  color: var(--rose-gold-light);
  text-decoration: underline;
}

/* The Booking Form */
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: rgba(11, 17, 32, 0.85);
  border: 1px solid rgba(226, 142, 121, 0.3);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(224, 139, 118, 0.25);
}

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}
.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060911;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--rose-gold-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   VENTURES & TECH LEADERSHIP SECTION
   ========================================================================== */
.ventures-section {
  background: var(--bg-primary);
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .ventures-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.venture-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 168, 106, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
.venture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold-champagne));
  opacity: 0.7;
}

.venture-header {
  margin-bottom: 1.25rem;
}

.venture-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(224, 139, 118, 0.15);
  color: var(--rose-gold-light);
  border: 1px solid rgba(224, 139, 118, 0.3);
  margin-bottom: 0.85rem;
}

.venture-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.venture-role {
  font-size: 0.9rem;
  color: var(--gold-champagne);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.venture-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.venture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.v-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(223, 168, 106, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   PHILOSOPHY & NEURODIVERSITY CARDS (IN ABOUT SECTION)
   ========================================================================== */
.superpower-card {
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.95), rgba(12, 17, 30, 0.95));
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-left: 4px solid #c084fc;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.superpower-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.superpower-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faith-philosophy-card {
  background: linear-gradient(135deg, rgba(25, 28, 42, 0.95), rgba(14, 17, 28, 0.95));
  border: 1px solid rgba(223, 168, 106, 0.35);
  border-left: 4px solid var(--gold-champagne);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Dog Squad & Family Personal Spotlight */
.family-spotlight-card {
  background: rgba(18, 27, 46, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 2rem;
}

.dog-squad-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.dog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dog-korra {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.4);
}
.dog-chewie {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
}
.dog-tucker {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.4);
}
.cat-jesse {
  color: #c084fc;
  border-color: rgba(192, 132, 252, 0.4);
}

.family-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .family-spotlight-grid {
    grid-template-columns: auto 1fr;
  }
}

.family-avatar-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--rose-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  display: block;
}

/* Speaking Photo Card Feature */
.speaking-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 900px) {
  .speaking-feature-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.speaking-img-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.speaking-img-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 168, 106, 0.4);
}

.speaking-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  display: block;
  border: 1px solid rgba(224, 139, 118, 0.25);
}

.speaking-img-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.65rem 0.5rem 0.2rem;
  line-height: 1.5;
}

/* Upcoming Book Tag */
.tag-upcoming {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(192, 132, 252, 0.2));
  color: #5eead4;
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.startrek-photo-thumb {
  width: 130px;
  height: auto;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(223, 168, 106, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  display: block;
}

.family-photos-gallery {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.family-photo-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(224, 139, 118, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.family-photo-item img {
  display: block;
  height: 120px;
  width: auto;
  object-fit: cover;
}



