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

:root {
  --font-serif: var(--font-display);
  /* Palette from book covers: teal-green, foil gold, coral / rose */
  --cover-deep: #0a2c28;
  --cover-green: #0f3d36;
  --cover-mid: #164a42;
  --cover-highlight: #1a5c52;
  --marble-dark: #0d2420;
  --coral: #e06666;
  --coral-soft: #f28b8b;
  --rose-gold: #c99585;
  --gold: #d4af37;
  --gold-light: #e8c76b;
  --gold-muted: rgba(212, 175, 55, 0.45);
  --bg: #f5efe6;
  --bg2: #ebe3d7;
  --parchment-deep: #e3d9cb;
  --dark: #0a2c28;
  --text: #142422;
  --muted: #4a5f5c;
  --light-muted: #6b807c;
  --border: rgba(15, 61, 54, 0.1);
  --white: #faf8f5;
  --glass: rgba(250, 248, 245, 0.9);
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-full: 999px;
  --transition: 0.35s cubic-bezier(0.22,1,0.36,1);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, -apple-system, sans-serif;
  --font-tag: "Cinzel", Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 0% -10%, rgba(15, 61, 54, 0.07), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 110%, rgba(224, 102, 102, 0.06), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg2) 55%, #e8dfd2 100%);
  opacity: 1;
}

img { display: block; max-width: 100%; }
video, iframe, svg { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #eee; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--cover-mid));
  border-radius: 3px;
}

/* ===== UTILITIES ===== */
.section-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), rgba(15, 61, 54, 0.12), transparent);
  margin: 0;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 1.5rem); }
.container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}

/* Author photo used sitewide below hero — consistent, polished framing */
.author-photo-asset {
  object-fit: cover;
  object-position: center 22%;
}
.contact-photo-variant-1 { object-position: center 18%; }
.contact-photo-variant-2 { object-position: center 36%; }
.mission-img-wrap .mission-img.author-photo-asset {
  filter: saturate(1.04) contrast(1.02);
}
.about-img-wrap .about-img.author-photo-asset {
  filter: saturate(1.03);
}

/* ===== ANIMATIONS ===== */
@keyframes spin-cw  { to { transform: rotate(360deg);  } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
@keyframes floatUp  { 0%,100%{ transform:translateY(0)rotate(0deg);} 50%{ transform:translateY(-8px)rotate(1deg);} }
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity:0; transform:translateX(-60px) rotateY(-10deg); }
  to   { opacity:1; transform:translateX(0) rotateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity:0; transform:translateX(60px) rotateY(10deg); }
  to   { opacity:1; transform:translateX(0) rotateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes scaleX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes cardIn {
  from { opacity:0; transform:translateY(60px) rotateX(8deg); }
  to   { opacity:1; transform:translateY(0) rotateX(0); }
}

/* Scroll-triggered reveal classes */
.reveal { opacity: 0; transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.from-left  { transform: translateX(-70px) rotateY(-10deg); }
.reveal.from-right { transform: translateX(70px)  rotateY(10deg);  }
.reveal.from-bottom{ transform: translateY(50px); }
.reveal.from-card  { transform: translateY(60px) rotateX(8deg); }
.reveal.visible {
  opacity: 1;
  transform: translateX(0) translateY(0) rotateX(0) rotateY(0);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--transition), box-shadow 0.35s, border-color 0.35s;
  animation: fadeSlideUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
nav.nav-scrolled {
  background: rgba(250, 248, 245, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 40px rgba(10, 44, 40, 0.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 1rem clamp(1rem, 4vw, 1.5rem);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-mark {
  display: block;
  width: 15px; height: 15px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 45%, var(--coral-soft) 100%);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 4px 14px rgba(10, 44, 40, 0.15);
  flex-shrink: 0;
}
.nav-logo-mark--sm { width: 12px; height: 12px; border-radius: 3px; }
.nav-logo {
  display: flex; align-items: center; gap: 0;
  line-height: 0;
  color: var(--cover-deep);
  transition: opacity 0.2s ease, transform 0.2s var(--transition);
}
.nav-logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.nav-logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}
.nav-logo-img {
  display: block;
  height: 3.9rem;
  width: auto;
  max-width: min(17rem, 60vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 12px rgba(10, 44, 40, 0.16))
    drop-shadow(0 1px 2px rgba(212, 175, 55, 0.12));
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.96rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--coral-soft));
  transition: width 0.25s var(--transition);
}
.nav-links a:hover { color: var(--cover-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--cover-mid) 0%, var(--cover-deep) 100%);
  color: var(--white);
  padding: 0.625rem 1.35rem; border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 6px 24px rgba(10, 44, 40, 0.22);
  transition: transform 0.18s, box-shadow 0.25s, filter 0.25s;
}
.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(10, 44, 40, 0.28), 0 0 24px rgba(212, 175, 55, 0.15);
  filter: brightness(1.05);
}
.nav-cta:active { transform: scale(0.97); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cover-deep); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.mobile-menu a:hover { color: var(--coral); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: min(86svh, 56rem);
  display: flex; flex-direction: column;
  padding-top: clamp(4.35rem, 10vw, 5.35rem);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

/* Watermark */
.hero-watermark {
  position: relative;
  pointer-events: none; user-select: none;
  overflow: hidden;
  margin-top: clamp(0.2rem, 1vw, 0.55rem);
  padding: clamp(0.2rem, 0.9vw, 0.5rem) 1.5rem 0;
  text-align: center;
  animation: fadeSlideLeft 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-watermark-text {
  font-family: var(--font-tag);
  font-size: clamp(3.25rem, 12vw, 9.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.92;
  display: block;
  margin-top: clamp(0.25rem, 1vw, 0.5rem);
  background: linear-gradient(180deg, #D6B13C 0%, #0f3d36 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dark card */
.hero-card-wrap {
  flex: 1;
  padding: clamp(0.45rem, 1.5vw, 1rem) 1rem clamp(1rem, 2.2vw, 1.5rem);
  position: relative;
}
.hero-card {
  position: relative;
  background: var(--cover-deep);
  border-radius: var(--radius-xl);
  overflow: visible;
  min-height: clamp(22rem, 50vh, 36rem);
  animation: cardIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 0 5px rgba(15, 61, 54, 0.35),
    0 28px 64px rgba(10, 20, 18, 0.42);
}
/* inner dark bg clip */
.hero-card-bg {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(152deg, var(--cover-deep) 0%, var(--cover-green) 42%, var(--marble-dark) 100%);
}
.hero-card-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 75% at 78% 38%, rgba(212, 175, 55, 0.14), transparent 62%),
    radial-gradient(ellipse 45% 55% at 18% 85%, rgba(224, 102, 102, 0.1), transparent 55%);
}

/* Photo — slight right nudge only; slot matches .hero-content margin */
.hero-photo-wrap {
  position: absolute;
  left: calc(clamp(1.05rem, 2.1vw, 1.55rem) + min(50px, 4.5vw));
  bottom: 0;
  width: clamp(120px, 21%, 280px);
  z-index: 3;
  animation: fadeSlideLeft 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-photo {
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  max-height: min(68vh, 32rem);
  filter: drop-shadow(-6px 2px 26px rgba(0, 0, 0, 0.55));
}

/* Right content */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.35rem, 5vw, 3.15rem) 2.5rem clamp(2.35rem, 5vw, 3.15rem) clamp(0.5rem, 1.35vw, 1.15rem);
  margin-left: calc(clamp(120px, 21%, 280px) + clamp(1.05rem, 2.1vw, 1.55rem) + min(50px, 4.5vw));
}

.hero-pill {
  display: flex; align-items: center; gap: 0.5rem;
  width: fit-content; margin-bottom: 1.35rem;
  animation: fadeSlideUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.35); object-fit: cover;
  margin-right: -10px;
}
.hero-avatar:last-child { margin-right: 0; }
.hero-pill-text {
  font-family: var(--font-tag);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 248, 245, 0.9);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-heading {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.9vw, 2.35rem);
  line-height: 1.28;
  margin-bottom: 1.65rem;
  animation: fadeSlideUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-title-line {
  display: block;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.85rem);
  letter-spacing: 0.02em;
  background: linear-gradient(110deg, var(--gold-light) 0%, var(--gold) 35%, var(--coral-soft) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 20px rgba(212, 175, 55, 0.2));
}
.hero-title-sub {
  display: block;
  color: rgba(250, 248, 245, 0.88);
  font-weight: 500;
  font-size: 0.92em;
}

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(120deg, #c9a227 0%, var(--gold) 40%, var(--gold-light) 100%);
  background-size: 200% auto;
  color: var(--cover-deep);
  padding: 0.75rem 1.85rem; border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s, box-shadow 0.25s, background-position 0.5s ease;
  width: fit-content;
  animation: fadeSlideUp 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.btn-gold:hover {
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.45), 0 0 30px rgba(224, 102, 102, 0.12);
  background-position: 100% center;
}
.btn-gold:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(0,0,0,0.18); color: var(--dark);
  padding: 0.7rem 1.75rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600;
  transition: transform 0.2s, background 0.2s;
  width: fit-content;
}
.btn-outline:hover { transform: scale(1.04); background: rgba(0,0,0,0.04); }
.btn-outline:active { transform: scale(0.97); }

/* Hero spinning rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring-1 {
  top: 6.5rem; right: 2rem;
  width: 48px; height: 48px;
  border: 1px solid rgba(15, 61, 54, 0.15);
  animation: spin-cw 28s linear infinite;
}
.hero-ring-2 {
  top: 8rem; right: 3.5rem;
  width: 24px; height: 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: spin-ccw 18s linear infinite;
}

/* ===== BOOK COVERS SHOWCASE ===== */
.covers-showcase {
  padding: 5.5rem 0 6rem;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--parchment-deep) 100%);
}
.covers-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23143d36' stroke-opacity='0.04' fill='none'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}
.covers-header { text-align: center; max-width: 36rem; margin: 0 auto 3.25rem; position: relative; z-index: 1; }
.covers-title { font-family: var(--font-display); color: var(--cover-deep); }
.covers-lead {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.covers-card {
  transition: transform 0.45s var(--transition);
}
.covers-card:hover { transform: translateY(-8px); }
.covers-card-frame {
  border-radius: var(--radius-lg);
  padding: 5px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.55) 0%, rgba(15, 61, 54, 0.25) 50%, rgba(224, 102, 102, 0.2) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 20px 50px rgba(10, 44, 40, 0.12);
  overflow: hidden;
  transition: box-shadow 0.4s var(--transition), transform 0.4s var(--transition);
}
.covers-card:hover .covers-card-frame {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.55),
    0 28px 64px rgba(10, 44, 40, 0.18),
    0 0 48px rgba(212, 175, 55, 0.08);
}
.covers-card-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
  transition: transform 0.6s var(--transition);
}
.covers-card:hover .covers-card-frame img { transform: scale(1.03); }
.covers-card-feature .covers-card-frame {
  padding: 6px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.75) 0%, rgba(15, 61, 54, 0.35) 100%);
}
.covers-card-feature { transform: scale(1.02); }
.covers-card-feature:hover { transform: translateY(-10px) scale(1.02); }
.covers-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.covers-caption-tag {
  font-family: var(--font-tag);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--coral);
  display: block;
  margin-bottom: 0.25rem;
}

/* ===== MISSION SECTION ===== */
.mission { padding: 6rem 0; background: var(--bg); }
.mission .container { display: flex; flex-direction: column; gap: 0; }
.mission-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.mission-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.mission-img {
  display: block;
  width: min(20rem, 82%);
  max-width: min(20rem, 82%);
  max-height: min(17.5rem, 48vh);
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.18),
    0 18px 42px rgba(15, 61, 54, 0.14);
  transition: transform 0.5s var(--transition), box-shadow 0.4s;
}
.mission-img-wrap:hover .mission-img {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.26),
    0 22px 50px rgba(15, 61, 54, 0.18);
}
.mission-stat-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mission-stat-card .num { font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.mission-stat-card .label { font-size: 0.7rem; color: var(--light-muted); margin-top: 2px; }

.mission-line {
  display: block; width: 3rem; height: 2px;
  background: var(--gold); margin-bottom: 1.5rem;
  transform-origin: left;
}
.mission-text-large {
  font-size: 1.1rem; color: #444; line-height: 1.75;
}
.mission-text-large strong { color: var(--dark); }
.mission-text-sub { font-size: 0.95rem; color: var(--muted); margin-top: 1rem; line-height: 1.75; }
.mission-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.mission-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.mission-stat .label { font-size: 0.7rem; color: var(--light-muted); margin-top: 2px; }

/* ===== BLOG SECTION ===== */
.blog { padding: 6rem 0; background: var(--bg); }
.blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem;
}
.section-tag {
  font-family: var(--font-tag);
  font-size: 0.62rem; font-weight: 600; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.2em;
  display: block; margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cover-deep);
  letter-spacing: 0.02em;
}
.view-all {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s, gap 0.2s;
}
.view-all:hover { color: var(--dark); gap: 0.7rem; }

.blog-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem;
}
.blog-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  cursor: pointer; background: var(--cover-deep);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
  perspective: 900px;
}
.blog-card-featured { height: 20rem; }
.blog-card-small { height: 9.5rem; }
.blog-stack { display: flex; flex-direction: column; gap: 1.5rem; }

.blog-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.5s, transform 0.6s;
}
.blog-card:hover img { opacity: 0.85; transform: scale(1.05); }
.blog-card:hover { transform: rotateY(3deg) rotateX(-1.5deg) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.blog-stack .blog-card:hover { transform: rotateY(-3deg) rotateX(1deg) scale(1.02) translateX(-4px); }

.blog-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 44, 40, 0.92) 0%, rgba(15, 61, 54, 0.28) 60%, transparent 100%);
}
.blog-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.blog-tag-row {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.blog-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.blog-bottom { }
.blog-category {
  display: inline-block; background: rgba(212, 175, 55, 0.15);
  color: var(--gold); font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}
.blog-title-text {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  line-height: 1.3; max-width: 20rem;
  transition: color 0.3s;
}
.blog-card:hover .blog-title-text { color: var(--gold-light); }
.blog-small-title {
  font-size: 0.8rem; font-weight: 700; color: #fff;
  line-height: 1.3; transition: color 0.3s;
}
.blog-card:hover .blog-small-title { color: var(--gold-light); }

/* ===== ABOUT SECTION ===== */
.about { padding: 6rem 0; background: var(--bg2); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 5rem;
}
/* book.php — single-column about copy centered */
.about.about--centered .about-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 52rem;
  margin-inline: auto;
}
.about.about--centered .about-inner > .reveal {
  text-align: center;
  max-width: 44rem;
}
.about.about--centered .cta-btns {
  justify-content: center;
}
.about.about--centered .about-img-wrap {
  width: min(25rem, 78vw);
  max-width: 100%;
  margin: 0.5rem auto 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 24px 56px rgba(15, 61, 54, 0.2);
}
.about.about--centered .about-img-wrap:hover .about-img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 64px rgba(15, 61, 54, 0.22);
}
.about.about--centered .about-img {
  height: auto;
  max-height: min(37rem, 72vh);
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform 0.45s var(--transition), box-shadow 0.45s;
}

/* book.php — copy left (left-aligned), cover mockup right; CTA sits under copy on desktop */
.about.about--book-split .about-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: auto auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  justify-items: stretch;
  max-width: min(72rem, 100%);
  margin-inline: auto;
}
.about.about--book-split .about-book-content {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
  max-width: 38rem;
}
.about.about--book-split .about-book-cta {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}
.about.about--book-split .about-subtitle,
.about.about--book-split .about-title {
  text-align: left;
}
.about.about--book-split .about-book-content .about-text {
  text-indent: 1.35em;
}
.about.about--book-split .about-book-cta .cta-btns {
  justify-content: flex-start;
}
.about.about--book-split .about-book-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about.about--book-split .about-img-wrap--book-mockup {
  width: min(24rem, 100%);
  max-width: 100%;
  margin: 0;
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 24px 56px rgba(15, 61, 54, 0.2);
}
.about.about--book-split .about-img-wrap--book-mockup:hover .about-img--book-cover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 64px rgba(15, 61, 54, 0.22);
}
.about.about--book-split .about-img--book-cover {
  height: auto;
  max-height: min(38rem, 75vh);
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform 0.45s var(--transition), box-shadow 0.45s;
}

/* ===== BOOK PAGE — VIDEO TRAILER (book.php) ===== */
.book-trailer {
  padding: 5.5rem 0 6rem;
  background: var(--bg);
  position: relative;
}
.book-trailer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 45% at 50% -5%, rgba(15, 61, 54, 0.07), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(224, 102, 102, 0.05), transparent 55%);
}
.book-trailer .container {
  position: relative;
  z-index: 1;
}
.book-trailer-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}
.book-trailer-title {
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.book-trailer-lead {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 28rem;
  margin: 0 auto;
}
.book-trailer-frame {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cover-deep);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.28),
    0 0 0 6px rgba(15, 61, 54, 0.06),
    0 32px 80px rgba(10, 20, 18, 0.2);
}
.book-trailer-frame video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}
.book-trailer-frame video:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ===== AUTHOR PAGE — NOTE CARD ===== */
.author-note-section {
  padding: 4.5rem 0 5.5rem;
  background: var(--bg2);
}
.author-note-card {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 20px 56px rgba(15, 61, 54, 0.12);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
}
.author-note-card::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto;
  height: 70%;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.2), transparent 62%);
  pointer-events: none;
}
.author-note-quote,
.author-note-sign,
.author-note-thanks {
  position: relative;
  z-index: 1;
}
.author-note-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.85;
  color: var(--cover-deep);
}
.author-note-sign {
  margin: 1.4rem 0 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}
.author-note-thanks {
  margin: 0.55rem 0 0;
  font-weight: 700;
  color: var(--cover-mid);
}

.about-line {
  display: block; width: 3rem; height: 2px;
  background: var(--gold); margin-bottom: 1.5rem;
}
.about-subtitle {
  font-family: var(--font-tag);
  font-size: 0.62rem; font-weight: 600; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1rem;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700; color: var(--cover-deep);
  margin-bottom: 1.5rem; line-height: 1.25;
  letter-spacing: 0.03em;
}
.about-text { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about-text a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(224, 102, 102, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.about-text a:hover { color: var(--cover-mid); text-decoration-color: var(--gold); }

.about-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  perspective: 900px;
}
.about-img {
  width: 100%; height: 18rem; object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.5s var(--transition), box-shadow 0.4s;
}
.about-img-wrap:hover .about-img {
  transform: rotateY(-4deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* Coach cards */
.coaches-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 700; color: var(--light-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
}
.coaches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.coach-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
  perspective: 900px;
}
.coach-card:hover {
  transform: translateY(-8px) rotateX(-4deg) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.coach-img { width: 100%; height: 13rem; object-fit: cover; }
.coach-body { padding: 1.25rem 1.5rem; }
.coach-name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.coach-role {
  font-size: 0.65rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0.35rem 0 0.75rem;
}
.coach-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 6rem 0; background: var(--bg); }
.cta-card {
  position: relative;
  background: linear-gradient(145deg, var(--cover-deep) 0%, var(--cover-green) 55%, var(--marble-dark) 100%);
  border-radius: 1.75rem;
  overflow: hidden; display: flex;
  min-height: 22rem;
  transition: transform 0.5s var(--transition), box-shadow 0.5s;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 28px 70px rgba(10, 30, 26, 0.35);
}
.cta-card:hover { transform: rotateX(1deg) scale(1.005); box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 36px 90px rgba(10, 30, 26, 0.4); }
.cta-card-left {
  flex: 1; display: flex; flex-direction: column;
  justify-content: space-between; padding: 3.5rem 3rem;
  min-width: 0;
}
.cta-card-left .about-text {
  color: rgba(250, 248, 245, 0.88);
}
.cta-card-left .about-text a {
  color: var(--gold-light);
  text-decoration-color: rgba(212, 175, 55, 0.45);
}
.cta-card-left .about-text a:hover { color: #fff; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.btn-gold-sm {
  display: inline-flex; align-items: center;
  background: linear-gradient(120deg, #c9a227 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--cover-deep);
  padding: 0.65rem 1.5rem; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold-sm:hover { transform: scale(1.05); box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45); }
.btn-white-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,0.2); color: #fff;
  padding: 0.65rem 1.5rem; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  background: transparent;
  transition: background 0.2s, transform 0.2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.07); transform: scale(1.04); }
.cta-avatars {
  display: flex; align-items: center; gap: 0.75rem;
}
.cta-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.25); object-fit: cover;
  margin-right: -10px;
}
.cta-avatar:last-child { margin-right: 0; }
.cta-avatar-label { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin-left: 0.5rem; }
.cta-footer-text {
  color: rgba(255,255,255,0.35); font-size: 0.72rem;
  line-height: 1.65; margin-top: 1.5rem; max-width: 22rem;
}
.cta-card-right {
  position: relative; width: 45%; min-height: 20rem;
  overflow: hidden;
}
.cta-card-right .cta-main-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  transition: transform 0.5s;
}
.cta-card:hover .cta-card-right .cta-main-photo { transform: scale(1.04); }
.cta-card-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10, 44, 40, 0.55), transparent);
}
/* Quote float card */
.cta-quote {
  position: absolute; bottom: 1.5rem; right: 1.5rem; z-index: 5;
  background: rgba(255,255,255,0.96);
  border-radius: 1rem; padding: 1rem 1.25rem;
  max-width: 13rem; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  animation: floatUp 6s ease-in-out infinite;
}
.cta-quote-text { font-size: 0.72rem; color: #444; line-height: 1.55; font-style: italic; }
.cta-quote-author {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem;
}
.cta-quote-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.cta-quote-author span { font-size: 0.65rem; font-weight: 600; color: var(--dark); }
/* Card decorative rings */
.cta-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-ring-1 { top:-2.5rem; left:-2.5rem; width:10rem; height:10rem; border:1px solid rgba(212,175,55,0.18); }
.cta-ring-2 { bottom:-1.5rem; left:5rem; width:6rem; height:6rem; border:1px solid rgba(255,255,255,0.04); }

.cta-reply {
  display: flex; justify-content: flex-end; margin-top: 1rem;
}
.cta-reply a {
  font-size: 0.82rem; color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.cta-reply a:hover { color: var(--dark); transform: translateX(4px); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; background: var(--bg2); }
.testimonials .section-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 700; color: var(--light-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

/* Featured banner */
.testi-banner {
  background: linear-gradient(135deg, var(--cover-deep) 0%, var(--cover-mid) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem 2.5rem; display: flex; align-items: flex-start;
  gap: 2rem; margin-bottom: 2.5rem;
  transition: transform 0.45s var(--transition), box-shadow 0.4s;
}
.testi-banner:hover { transform: rotateY(2deg) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.testi-banner-author { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.testi-banner-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212, 175, 55, 0.4); }
.testi-author-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.testi-author-role { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.testi-banner-body { flex: 1; }
.testi-banner-thumbs { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
.testi-banner-thumbs img { width: 5rem; height: 3.5rem; border-radius: 0.5rem; object-fit: cover; opacity: 0.6; }

/* Stars */
.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.star { color: var(--gold); font-size: 0.8rem; }
.testi-text { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.65; font-style: italic; }

/* Grid — 4 cards in one row inside full-width testimonials container-fluid */
.testimonials .testi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.35vw, 1.35rem);
  align-items: stretch;
}
.testi-card {
  background: var(--white);
  border: 1px solid rgba(15, 61, 54, 0.06);
  border-radius: var(--radius-xl); padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.testi-card:nth-child(odd):hover { transform: rotateY(4deg) rotateX(-2deg) translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.testi-card:nth-child(even):hover { transform: rotateY(-4deg) rotateX(-2deg) translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.testi-card-text {
  font-size: 0.85rem; color: #444; line-height: 1.65;
  font-style: italic; margin-bottom: 1.5rem;
}
.testi-card-footer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--bg2);
}
.testi-card-footer img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.testi-footer-name { font-size: 0.85rem; font-weight: 600; color: var(--cover-deep); }
.testi-footer-meta { font-size: 0.7rem; color: var(--light-muted); margin-top: 2px; }

/* ===== FAQ ===== */
.faq { padding: 6rem 0; background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-subtitle { font-size: 0.7rem; font-weight: 700; color: var(--light-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; display: block; }
.faq-title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--cover-deep);
}
.faq-title--latest {
  font-size: clamp(2.15rem, 4.1vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
}
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0ddd7; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left;
  gap: 1rem;
}
.faq-question-text {
  font-size: 0.95rem; font-weight: 500; color: var(--dark);
  transition: color 0.2s; flex: 1;
}
.faq-question:hover .faq-question-text { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: #666;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { color: var(--gold); transform: rotate(45deg); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.3s;
  opacity: 0;
}
.faq-item.open .faq-answer { max-height: 2000px; opacity: 1; }
.faq-answer-text {
  font-size: 0.875rem; color: var(--muted); line-height: 1.75;
  padding-bottom: 1.25rem; padding-right: 2.5rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--cover-deep) 0%, var(--marble-dark) 45%, #071a18 100%);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(212, 175, 55, 0.08), transparent 55%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  transition: color 0.2s, transform 0.2s; cursor: pointer;
}
.contact-link span { overflow-wrap: anywhere; word-break: break-word; }
.contact-link:hover { color: rgba(255,255,255,0.9); transform: translateX(6px); }
.contact-link-icon {
  width: 36px; height: 36px; border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-input, .contact-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: #fff; font-size: 0.875rem; font-family: inherit;
  transition: border-color 0.25s;
  width: 100%;
}
.contact-input::placeholder, .contact-textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-input:focus, .contact-textarea:focus {
  outline: none; border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.contact-textarea { resize: none; }
.contact-send {
  background: linear-gradient(120deg, #c9a227 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--cover-deep);
  padding: 0.875rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 700; font-family: inherit;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-send:hover { transform: scale(1.02); box-shadow: 0 10px 32px rgba(212, 175, 55, 0.4); }

.contact-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-photo-1 { border-radius: var(--radius-xl); overflow: hidden; }
.contact-photo-1 img {
  width: 100%; height: 16rem; object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.5s;
}
.contact-photo-2 {
  border-radius: var(--radius-xl); overflow: hidden;
  margin-top: 2rem;
}
.contact-photo-2 img {
  width: 100%; height: 16rem; object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.5s;
}
.contact-photo-1:hover img, .contact-photo-2:hover img { transform: scale(1.04); }
.contact-photo-caption {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem;
}
.contact-photo-caption img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); }
.contact-photo-caption .name { color: #fff; font-size: 0.875rem; font-weight: 600; }
.contact-photo-caption .sub  { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #050f0e 0%, var(--cover-deep) 40%, #061512 100%);
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 4rem;
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem; margin-bottom: 1.25rem;
  color: var(--white);
}
.footer-brand .logo .nav-logo-mark { margin-right: 0; }
.footer-brand-text { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 22rem; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-social {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.4);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social:hover { background: rgba(200,169,110,0.15); color: var(--gold); transform: translateY(-2px); }
.footer-col-title { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s, transform 0.2s; display: inline-block; }
.footer-col a:hover { color: rgba(255,255,255,0.9); transform: translateX(3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.footer-bottom-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.9);
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.28); text-align: center; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
/* book.php — stack one column; base .about--book-split used 2 cols and outranked .about-inner */
@media (max-width: 1100px) {
  .about.about--book-split .about-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: clamp(1.75rem, 4.5vw, 2.75rem);
    align-items: stretch;
  }
  .about.about--book-split .about-book-content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .about.about--book-split .about-book-visual {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    margin-top: 0;
    padding-block: clamp(0.65rem, 2.2vw, 1.15rem) 0.2rem;
    border-top: 1px solid rgba(15, 61, 54, 0.1);
  }
  .about.about--book-split .about-book-cta {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    min-width: 0;
  }
  .about.about--book-split .about-book-cta .cta-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .about.about--book-split .about-img-wrap--book-mockup {
    width: min(18rem, 88vw);
    max-width: 100%;
    margin-inline: auto;
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.22),
      0 20px 48px rgba(15, 61, 54, 0.18),
      0 4px 16px rgba(10, 44, 40, 0.08);
  }
  .about.about--book-split .about-img--book-cover {
    max-height: min(50vh, 32rem);
    width: 100%;
    height: auto;
  }
  .about.about--book-split .about-subtitle,
  .about.about--book-split .about-title {
    text-align: left;
  }
  .about.about--book-split .about-book-content .about-text {
    text-indent: 0;
    text-align: left;
    max-width: none;
    font-size: clamp(0.92rem, 2.8vw, 1rem);
    line-height: 1.72;
  }
}

@media (max-width: 960px) {
  .mission,
  .covers-showcase,
  .about,
  .cta-section,
  .testimonials,
  .faq,
  .contact,
  .author-note-section,
  .book-trailer,
  footer {
    padding-top: clamp(3rem, 9vw, 5rem);
    padding-bottom: clamp(3rem, 9vw, 5rem);
  }
  .hero {
    min-height: min(78svh, 52rem);
    padding-top: clamp(4rem, 11vw, 5.35rem);
  }
  .covers-grid { grid-template-columns: 1fr; max-width: 22rem; margin: 0 auto; }
  .covers-card-feature { transform: none; }
  .covers-card-feature:hover { transform: translateY(-8px); }
  .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-img {
    width: min(18rem, 88%);
    max-width: min(18rem, 88%);
    max-height: min(15rem, 42vh);
    height: auto;
    object-fit: contain;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: clamp(2.25rem, 6vw, 4rem);
  }
  .about:not(.about--book-split) .about-img {
    height: auto;
    max-height: min(24rem, 70vh);
    min-height: 0;
  }
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { height: 18rem; }
  .blog-stack { flex-direction: row; }
  .blog-card-small { height: 10rem; flex: 1; }
  .testimonials .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .cta-card {
    flex-direction: column;
    min-height: 0;
    border-radius: var(--radius-xl);
  }
  .cta-card-left { padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 2rem); }
  /* Stack quote under photo — full photo visible, no overlay */
  .cta-card-right {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: unset;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    padding: 0 clamp(0.75rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.35rem);
  }
  .cta-card-right::after {
    display: none;
  }
  .cta-card-right .cta-main-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: clamp(14rem, 52vw, 22rem);
    max-height: min(30rem, 68vh);
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
  }
  .cta-quote {
    position: relative;
    inset: auto;
    bottom: auto;
    right: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin-top: clamp(1rem, 3vw, 1.35rem);
    margin-inline: 0;
    padding: clamp(1rem, 2.8vw, 1.2rem) clamp(1.1rem, 3vw, 1.35rem);
    animation: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 12px 36px rgba(10, 44, 40, 0.14);
    border: 1px solid rgba(15, 61, 54, 0.08);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    min-width: 0;
  }
  .contact-photo-1 img,
  .contact-photo-2 img {
    height: auto;
    max-height: min(18rem, 55vw);
    min-height: 12rem;
    object-fit: cover;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-text { max-width: none; }
  .testi-banner { flex-wrap: wrap; }
  .testi-banner-thumbs { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-logo-img { height: 3.3rem; max-width: min(14rem, 64vw); }
  .mobile-menu { padding-left: clamp(1rem, 4vw, 1.5rem); padding-right: clamp(1rem, 4vw, 1.5rem); }
  .hero {
    min-height: auto;
  }
  .hero-card-wrap {
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
  }
  .hero-card {
    min-height: clamp(18rem, 52vh, 36rem);
  }
  .hero-content { padding: 2rem 1.5rem 2.5rem 1.5rem; margin-left: 0; }
  .hero-photo-wrap { position: relative; left: 0; width: 62%; margin: 0 auto; }
  .hero-card { flex-direction: column; }
  .hero-watermark-text { font-size: clamp(3rem, 20vw, 7rem); }
  .hero-ring-1 { right: 0.75rem; top: 5rem; }
  .hero-ring-2 { right: 2rem; top: 6.5rem; }
  .mission-text-large { font-size: clamp(1rem, 3.8vw, 1.1rem); }
  .mission-text-sub { font-size: clamp(0.88rem, 3.2vw, 0.95rem); }
  .faq-header { margin-bottom: 2.25rem; }
  .faq-title { font-size: clamp(1.45rem, 5vw, 1.95rem); }
  .faq-answer-text { padding-right: 0; }
  .coaches-grid { grid-template-columns: 1fr; }
  .blog-stack { flex-direction: column; }
  .testimonials .testi-grid { grid-template-columns: 1fr; }
  .testi-banner { padding: 1.5rem; gap: 1rem; flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .cta-card-left { padding: 2rem 1.5rem; }
  .cta-title { font-size: clamp(1.35rem, 5vw, 2rem); }
  .hero-heading { font-size: clamp(1.3rem, 5vw, 2rem); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-photos { grid-template-columns: 1fr; }
  .contact-photo-2 { margin-top: 0; }
  .contact-title { font-size: clamp(1.45rem, 5vw, 2rem); }
  .mission-stats { gap: 1.5rem; flex-wrap: wrap; }
  .author-note-card { padding: clamp(1.35rem, 4vw, 2rem); }
  .author-note-quote { font-size: clamp(0.98rem, 3.5vw, 1.15rem); }
  .book-trailer-header {
    margin-bottom: 1.65rem;
  }
  .book-trailer-frame {
    border-radius: var(--radius-lg);
    margin-inline: 0;
  }
}

@media (max-width: 480px) {
  .hero-card { min-height: auto; }
  .hero-photo-wrap { width: 72%; }
  .hero-ring-1,
  .hero-ring-2 { display: none; }
  .section-title { font-size: 1.5rem; }
  .section-tag { letter-spacing: 0.14em; }
  .about-title { font-size: 1.5rem; }
  .about-text { font-size: 0.92rem; }
  .testi-card { padding: 1.35rem; }
  .testi-card-text,
  .testi-footer-meta { font-size: 0.8rem; }
  .contact-send { width: 100%; }
  .cta-quote-text { font-size: 0.78rem; }
  .faq-question-text { font-size: 0.9rem; }
  .about.about--book-split .about-img-wrap--book-mockup {
    width: min(17.5rem, 82vw);
  }
  .about.about--book-split .about-img--book-cover {
    max-height: min(52vh, 30rem);
  }
  .faq-title { font-size: 1.5rem; }
  .faq-title--latest { font-size: 1.75rem; }
}
