/* =========================================================
   Apex Men's Coaching — shared stylesheet
   Style: Warm & grounded (navy, sand, slate, terracotta)
   ========================================================= */

:root {
  /* Logo-matched palette: deep olive green + warm tan/brown + cream */
  --navy: #344019;          /* deep olive green from logo (variable name kept) */
  --navy-dark: #232c11;     /* darker olive for footer / gradients */
  --sand: #f3ede0;          /* soft warm cream */
  --cream: #fbf7ec;         /* page background cream */
  --slate: #4a4f3d;         /* warm olive-slate body text */
  --slate-light: #6c7160;
  --terracotta: #a07554;    /* warm tan/brown from logo (variable name kept) */
  --terracotta-dark: #855e42;/* deeper brown for hover/links */
  --line: #e3dcc8;
  --shadow-sm: 0 1px 2px rgba(52, 64, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(52, 64, 25, 0.10);
  --shadow-lg: 0 20px 50px rgba(52, 64, 25, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--slate);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: var(--terracotta-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Top bar ---------------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: #fff; }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 18px; align-items: center; }

/* ---------------- Header / nav ---------------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav .logo img { height: 56px; }
.nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--terracotta);
}
/* Override: keep the "Book a Call" button text white inside the nav */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus,
.nav-links a.btn-primary.active {
  color: #ffffff;
  border-bottom: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: 0;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--terracotta);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
  box-shadow: 0 6px 18px rgba(160, 117, 84, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(160, 117, 84, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--navy);
}
.btn-light:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-1px);
}

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(160,117,84,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245,239,230,0.08), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero .eyebrow {
  color: var(--terracotta);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-bottom: 32px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-compact {
  padding: 72px 0 80px;
}
.hero-compact h1 { max-width: 22ch; }

/* ---------------- Section base ---------------- */
section {
  padding: 88px 0;
}
.section-sand { background: var(--sand); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.9); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  color: var(--terracotta-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ---------------- Two-column ---------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ---------------- Process / 3-step ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 12px; }

/* ---------------- Coaching Is / Isn't ---------------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.compare-col h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compare-col .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.is .icon { background: #e4ecd6; color: #5b6e2d; }
.isnt .icon { background: #efe3d4; color: #855e42; }
.compare-col strong { color: var(--navy); display: block; margin-bottom: 2px; }

/* ---------------- Services grid ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .img-wrap img { transform: scale(1.04); }
.service-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--slate-light); flex: 1; font-size: 0.97rem; }
.service-card a.read-more {
  margin-top: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terracotta-dark);
}

/* ---------------- Pricing card ---------------- */
.pricing-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160,117,84,0.15), transparent 70%);
}
.pricing-card > * { position: relative; }
.pricing-card h2 { color: #fff; }
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.price-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 16px;
}
.price-tile .amount {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
}
.price-tile .label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.pricing-card .note {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 8px 0 24px;
}

/* ---------------- Testimonials ---------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: var(--terracotta);
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--slate);
  font-size: 1.05rem;
  margin-top: 16px;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.testimonial .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial .author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(160, 117, 84, 0.35);
  flex-shrink: 0;
}
.testimonial .author strong { color: var(--navy); }

/* ---------------- Form ---------------- */
.contact-form {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(160, 117, 84, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------------- Contact info card ---------------- */
.info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
}
.info-card h3 { color: #fff; }
.info-card .info-item {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  align-items: flex-start;
}
.info-card .info-item .ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.info-card .info-item div small {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.info-card .info-item a, .info-card .info-item span {
  color: #fff;
  font-size: 1.05rem;
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(160,117,84,0.25), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 60ch; margin: 0 auto 28px; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: #fff; }
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 10px; }
.site-footer .footer-logo img { height: 64px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer .footer-logo p { font-size: 0.92rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.social-row { display: flex; gap: 14px; margin-top: 8px; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-row a:hover { background: var(--terracotta); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; color: #fff; }

/* ---------------- About page specific ---------------- */
.bio-questions {
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
  padding: 32px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.bio-questions p { margin: 8px 0; color: var(--navy); }
.bio-questions p:last-child { margin-bottom: 0; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.method-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-weight: 500;
  color: var(--navy);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .steps, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .method-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .steps, .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form, .info-card { padding: 32px 24px; }
  .pricing-card { padding: 40px 24px; }
  .cta-banner { padding: 48px 24px; }
}

/* =========================================================
   Floating decorative elements + animations
   ========================================================= */

/* Soft floating orbs in hero sections */
.hero { position: relative; isolation: isolate; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(160,117,84,0.6), transparent 70%);
  top: -80px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,114,55,0.45), transparent 70%);
  bottom: -180px; right: -120px;
  animation-delay: -7s;
  animation-duration: 18s;
}
.orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(243,237,224,0.35), transparent 70%);
  top: 30%; left: 55%;
  animation-delay: -3s;
  animation-duration: 22s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 25px) scale(0.95); }
}

/* Geometric floating tiles (mirrors the logo's rectangle motif) */
.tile {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
  animation: drift 16s ease-in-out infinite;
}
.tile-green { background: var(--terracotta); transform: rotate(45deg); }
.tile-brown { background: var(--terracotta); transform: rotate(45deg); }
.tile-1 { width: 110px; height: 110px; top: 12%; right: 8%; animation-delay: -2s; }
.tile-2 { width: 70px;  height: 70px;  bottom: 18%; right: 22%; animation-delay: -8s; opacity: 0.12; }
.tile-3 { width: 90px;  height: 90px;  top: 55%; left: 8%; animation-delay: -5s; opacity: 0.14; }
@keyframes drift {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(60deg) translate(0, -20px); }
}

/* Subtle slow-rotation accent ring */
.accent-ring {
  position: absolute;
  width: 320px; height: 320px;
  border: 1px solid rgba(160,117,84,0.25);
  border-radius: 50%;
  pointer-events: none;
  animation: spin 60s linear infinite;
  z-index: 0;
}
.accent-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(243,237,224,0.18);
  border-radius: 50%;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll-reveal fade-in (works via IntersectionObserver in HTML) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Card lift on hover (subtle parallax feel) */
.card-lift {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
}
.card-lift:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(52, 64, 25, 0.18);
}

/* Animated gradient background helper */
.bg-flow {
  background: linear-gradient(120deg, var(--navy) 0%, #2c3818 35%, var(--navy-dark) 70%, var(--navy) 100%);
  background-size: 300% 300%;
  animation: gradientFlow 18s ease-in-out infinite;
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Eyebrow shimmer */
.eyebrow.shimmer {
  background: linear-gradient(90deg, var(--terracotta), #c89878, var(--terracotta));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Gentle bob for the hero CTA */
.btn.bob { animation: bob 3s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.btn.bob:hover { animation-play-state: paused; }

/* Section divider — animated wave */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* The WHY and HOW dual card */
.why-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.why-how .card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-how .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-how .card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(160,117,84,0.12), transparent 70%);
  border-radius: 50%;
}
.why-how .card .big-letter {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
}

/* Sound familiar checklist */
.familiar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.familiar-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.02rem;
  color: var(--slate);
  line-height: 1.5;
}
.familiar-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 2px 4px rgba(160,117,84,0.3);
}
.familiar-list li::after {
  content: '✓';
  position: absolute;
  left: 4px; top: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* Speaking engagements panel */
.speaking-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.speaking-panel::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(52,64,25,0.06), transparent 70%);
  border-radius: 50%;
}
.speaking-panel > * { position: relative; }
.speaking-topics { list-style: none; padding: 0; margin: 20px 0; }
.speaking-topics li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.speaking-topics li::before {
  content: '→';
  color: var(--terracotta);
  font-weight: 700;
}

/* Mobile tweaks for new sections */
@media (max-width: 960px) {
  .why-how { grid-template-columns: 1fr; }
  .speaking-panel { grid-template-columns: 1fr; padding: 36px; }
  .familiar-list { grid-template-columns: 1fr; }
  .orb-2 { width: 320px; height: 320px; }
  .accent-ring { width: 220px; height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .tile, .accent-ring, .btn.bob, .bg-flow, .eyebrow.shimmer { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
