/* ================================================================
   THE EXECUTIVE MASTERCLASS — STYLESHEET
   ================================================================
   QUICK EDIT GUIDE
   -----------------------------------------------------------------
   1. COLORS        -> edit the CSS variables in ":root" below
   2. LOGO SIZE      -> search for ".seal" (header logo size)
   3. HERO BACKGROUND -> search for ".hero" (background-image)
   4. FONTS          -> edit the font-family values in ":root"
   ================================================================ */

:root{
  /* ---------- 1. COLORS — change these to re-theme the site ---------- */
  --black: #050708;
  --navy: #0a0e15;
  --navy-2: #0d1119;
  --gold: #c9a768;
  --gold-bright: #e8cf94;
  --gold-dim: #8a7444;
  --white: #f4f3ee;
  --muted: #a9acb3;
  --hairline: rgba(201,167,104,0.22);
  --maxw: 1120px;

  /* ---------- FONTS ---------- */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection{ background: var(--gold); color: var(--black); }

a{ text-decoration:none; color:inherit; }
img,svg{ display:block; max-width:100%; }

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

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  font-family: var(--font-body);
  font-size:11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight:500;
  margin-bottom: 22px;
}
.eyebrow.center{ justify-content:center; }
.eyebrow.center::before,
.eyebrow.center::after{
  content:"";
  width:28px; height:1px;
  background: var(--gold-dim);
}

a:focus-visible, button:focus-visible{
  outline: 1px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

/* ================================================================
   HEADER / NAVIGATION
   Layout: logo (left) — site title (center) — nav + CTA (right)
   Built on a 3-column grid so the title stays truly centered on
   the page regardless of how wide the left/right zones are.
   ================================================================ */
header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(5,7,8,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease;
}
header.scrolled{
  border-bottom: 1px solid var(--hairline);
  background: rgba(5,7,8,0.94);
}

.nav-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
}

/* ---------- LEFT: logo ---------- */
.nav-logo{
  justify-self: start;
  display:flex;
  align-items:center;
}

/* ---------- 2. LOGO SIZE — change width/height here to resize the header logo ---------- */
.nav-logo img{
  width: 46px;
  height: 46px;
  flex-shrink:0;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.08);
  box-shadow: 0 0 0 1px var(--hairline);
}

/* Fallback monogram shown automatically if logo.png fails to load */
.logo-fallback{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items:center;
  justify-content:center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,167,104,0.16), rgba(201,167,104,0.02));
}

/* ---------- CENTER: site title ---------- */
.nav-title{
  justify-self: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ---------- RIGHT: nav links + CTA ---------- */
.nav-right{
  justify-self: end;
  display:flex;
  align-items:center;
  gap: 36px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.nav-menu a{
  position:relative;
  padding: 4px 0;
  transition: color .25s ease;
  white-space:nowrap;
}
.nav-menu a:hover{ color: var(--gold-bright); }
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-menu a:hover::after{ transform: scaleX(1); }

.nav-cta{
  font-size:11.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 65%, var(--gold-dim));
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 2px;
  transition: all .3s ease;
  white-space:nowrap;
  flex-shrink:0;
}
.nav-cta:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ---------- mobile menu toggle (hamburger) ---------- */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px; height:32px;
  background:none;
  border:none;
  cursor:pointer;
  flex-shrink:0;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:1px;
  background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{
  display:none;
  flex-direction:column;
  background: rgba(5,7,8,0.98);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 8px 32px 24px;
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{
  padding: 14px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(201,167,104,0.08);
}
.mobile-nav a:hover{ color: var(--gold-bright); }
.mobile-nav .mobile-cta{
  margin-top: 16px;
  text-align:center;
  color: var(--black);
  background: var(--gold);
  border:none;
  border-radius:2px;
  padding: 14px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:12px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  padding: 130px 24px 100px;

  /* ---------- 3. HERO BACKGROUND — swap the file, keep the name ---------- */
  background-image:
    linear-gradient(180deg, rgba(5,7,8,0.35) 0%, rgba(5,7,8,0.75) 100%),
    url("images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay{
  /* extra darkening layer so text stays readable over any photo */
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(5,7,8,0.15), rgba(5,7,8,0.65) 80%);
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero h1{
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.05;
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  opacity:0;
  animation: rise .9s ease forwards;
}

.hero .subhead{
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight:400;
  font-style:italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--gold-bright);
  opacity:0;
  animation: rise .9s ease forwards;
  animation-delay: .15s;
}

.hero p.lede{
  margin-top: 24px;
  max-width: 46ch;
  color: var(--white);
  opacity:0.9;
  font-size: 1.05rem;
  opacity:0;
  animation: rise .9s ease forwards;
  animation-delay: .28s;
}

.hero .cta-row{
  margin-top: 40px;
  display:flex;
  flex-wrap:wrap;
  gap: 16px;
  justify-content:center;
  opacity:0;
  animation: rise .9s ease forwards;
  animation-delay: .4s;
}

.hero-subtle-link{
  display:inline-block;
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
  position:relative;
  z-index:2;
  opacity:0;
  animation: rise .9s ease forwards;
  animation-delay: .5s;
}
.hero-subtle-link:hover{
  color: var(--gold-bright);
  border-color: var(--gold-dim);
}

@keyframes rise{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}

.btn-gold{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-dim));
  color: var(--black);
  font-weight:600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(201,167,104,0.25);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,167,104,0.35);
  filter: brightness(1.06);
}
.btn-gold svg{ width:16px; height:16px; }
.btn-gold.full-width{ width:100%; justify-content:center; }

.btn-outline{
  display:inline-flex;
  align-items:center;
  color: var(--white);
  border: 1px solid rgba(244,243,238,0.35);
  font-weight:500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  transition: all .3s ease;
  backdrop-filter: blur(6px);
}
.btn-outline:hover{
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.scroll-cue{
  position:absolute;
  bottom: 34px;
  left:50%;
  transform: translateX(-50%);
  width:1px; height:50px;
  background: linear-gradient(var(--gold-dim), transparent);
  opacity:.6;
  z-index:2;
}
.scroll-cue::after{
  content:"";
  position:absolute;
  left:-2.5px; top:0;
  width:6px; height:6px;
  border-radius:50%;
  background: var(--gold-bright);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip{
  0%{ top:0; opacity:1; }
  80%{ opacity:0; }
  100%{ top:100%; opacity:0; }
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
section{
  padding: 110px 0;
  position:relative;
}
.section-alt{ background: var(--navy-2); }
.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
}

.section-head{
  max-width: 640px;
  margin: 0 auto 60px;
  text-align:center;
}
.section-head h2{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height:1.2;
}

/* ---------- scroll reveal (used with .reveal class + script.js) ---------- */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform: translateY(0);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about{ text-align:center; }
.about p{
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.12rem;
  color: var(--muted);
}
.about-rule{
  width:1px;
  height:56px;
  background: linear-gradient(var(--gold-dim), transparent);
  margin: 26px auto 32px;
}

/* ================================================================
   ABOUT THE FOUNDER
   ================================================================ */
.founder-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items:center;
}

.founder-photo-col{ display:flex; justify-content:center; }

/* ---------- FOUNDER PHOTO FRAME — resize by changing max-width below ---------- */
.founder-photo-frame{
  position:relative;
  max-width: 380px;
  width:100%;
  border: 1px solid var(--gold-dim);
  padding: 14px;
}
.founder-photo-frame::before,
.founder-photo-frame::after{
  content:"";
  position:absolute;
  width:22px; height:22px;
  border: 1px solid var(--gold);
}
.founder-photo-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.founder-photo-frame::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }
.founder-photo-frame img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-avatar{
  width:64px; height:64px;
  border-radius:50%;
  object-fit:cover;
  object-position: center 15%;
  box-shadow: 0 0 0 2px var(--gold), 0 8px 20px rgba(0,0,0,0.4);
  margin: 0 0 18px;
}

.founder-text-col h2{
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin-bottom: 22px;
}
.founder-text-col p{
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.founder-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-bright);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0;
  line-height:1.5;
}

.founder-credentials{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.founder-credentials span{
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 8px 14px;
  border-radius: 2px;
}

/* ---------- credibility stat strip ---------- */
.stat-strip{
  margin-top: 90px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat-strip.stat-strip-2{
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.stat-item{
  text-align:center;
  padding: 40px 16px;
  border-left: 1px solid var(--hairline);
}
.stat-item:first-child{ border-left:none; }
.stat-number{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-bright);
  font-weight:600;
}
.stat-suffix{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-bright);
  font-weight:600;
}
.stat-text{
  display:block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.3;
  color: var(--gold-bright);
  font-weight:500;
}
.stat-item p{
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================================
   TOPICS SECTION
   ================================================================ */
.topics-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.topic-card{
  background: var(--black);
  padding: 42px 34px;
  transition: background .35s ease;
}
.topic-card:hover{ background: var(--navy); }
.topic-num{
  font-family: var(--font-display);
  font-style:italic;
  font-size:13px;
  color: var(--gold-dim);
}
.topic-icon{
  width:32px; height:32px;
  margin: 18px 0 20px;
  color: var(--gold);
}
.topic-icon svg{ width:100%; height:100%; }
.topic-card h3{
  font-size: 1.15rem;
  font-weight:500;
  margin-bottom:10px;
  letter-spacing: -0.01em;
}
.topic-card p{
  color: var(--muted);
  font-size: 0.92rem;
  line-height:1.6;
}

/* ================================================================
   SALES COACHING OFFER
   ================================================================ */
.coaching-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items:start;
}

.coaching-text h2{
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin-bottom: 20px;
}
.coaching-text p{
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.coaching-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.coaching-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--white);
}
.coaching-list .check{
  color: var(--gold);
  font-weight:600;
  flex-shrink:0;
}

.coaching-offer-card{
  background: var(--black);
  border: 1px solid var(--gold-dim);
  padding: 44px 36px;
  text-align:center;
  position:relative;
}
.coaching-offer-card::before,
.coaching-offer-card::after{
  content:"";
  position:absolute;
  width:18px; height:18px;
  border: 1px solid var(--gold);
}
.coaching-offer-card::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.coaching-offer-card::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

.coaching-offer-card h3{
  font-size: 1.4rem;
  margin: 18px 0 10px;
}
.coaching-offer-sub{
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 26px;
}
.coaching-mini-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--hairline);
}
.coaching-mini-list li{
  font-size: 0.9rem;
  color: var(--muted);
}
.coaching-note{
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ================================================================
   MISSION
   ================================================================ */
.mission{
  text-align:center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,167,104,0.07), transparent 65%),
    var(--black);
}
.mission-seal{
  width:56px; height:56px;
  border-radius:50%;
  object-fit:cover;
  transform: scale(1.08);
  margin: 0 auto 26px;
  box-shadow: 0 0 0 1px var(--hairline), 0 10px 30px rgba(0,0,0,0.4);
}
.mission h2{
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height:1.15;
}
.mission h2 .amp{ color: var(--gold); font-style:italic; }
.mission p{
  max-width: 54ch;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.mission-marks{
  display:flex;
  justify-content:center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap:wrap;
}
.mission-marks span{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 8px 0;
  border-top: 1px solid var(--gold-dim);
}

/* ================================================================
   LATEST LESSONS
   ================================================================ */
.lessons-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lesson-card{
  background: var(--black);
  border: 1px solid var(--hairline);
  padding: 34px 30px;
  transition: transform .35s ease, border-color .35s ease;
}
.lesson-card:hover{
  transform: translateY(-4px);
  border-color: var(--gold-dim);
}
.lesson-tag{
  display:inline-block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.lesson-card h3{
  font-size: 1.2rem;
  line-height:1.3;
  margin-bottom: 14px;
}
.lesson-card p{
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 22px;
}
.read-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 3px;
  transition: gap .3s ease, border-color .3s ease;
}
.read-more:hover{
  gap: 12px;
  border-color: var(--gold-bright);
}

/* ================================================================
   SOCIAL / CONTACT
   ================================================================ */
.social{ text-align:center; }
.social-panel{
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  padding: 68px 44px;
  position:relative;
}
.social-panel::before,
.social-panel::after{
  content:"";
  position:absolute;
  width:18px; height:18px;
  border: 1px solid var(--gold);
}
.social-panel::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.social-panel::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

.social h2{ font-size: clamp(1.8rem, 4vw, 2.4rem); }
.social p{
  color: var(--muted);
  max-width: 46ch;
  margin: 20px auto 36px;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap:wrap;
}
.social-icon{
  width:48px; height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  color: var(--gold);
  transition: all .3s ease;
}
.social-icon svg{ width:20px; height:20px; }
.social-icon:hover{
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer{
  padding: 46px 32px;
  text-align:center;
  border-top: 1px solid var(--hairline);
}
.footer-mark{
  width:28px; height:28px;
  border-radius:50%;
  object-fit:cover;
  transform: scale(1.08);
  margin: 0 auto 16px;
  opacity:.9;
}
footer p{
  font-size:12px;
  letter-spacing:0.08em;
  color: var(--muted);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px){
  .nav-title{ display:none; }
  .nav-inner{ grid-template-columns: auto 1fr; }
  .nav-menu{ display:none; }
  .nav-cta{ display:none; }
  .menu-toggle{ display:flex; }
  .nav-right{ justify-self:end; }
  .topics-grid{ grid-template-columns: repeat(2,1fr); }
  .lessons-grid{ grid-template-columns: 1fr; }
  .founder-grid{ grid-template-columns: 1fr; gap: 44px; text-align:center; }
  .founder-avatar{ margin-left:auto; margin-right:auto; }
  .founder-photo-frame{ margin: 0 auto; }
  .founder-quote{ text-align:left; }
  .founder-credentials{ justify-content:center; }
  .stat-strip{ grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(3){ border-left:none; }
  .stat-item{ border-bottom: 1px solid var(--hairline); }
  .coaching-grid{ grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 560px){
  section{ padding: 84px 0; }
  .hero{ padding-top: 120px; }
  .topics-grid{ grid-template-columns: 1fr; }
  .social-panel{ padding: 48px 24px; }
  .wrap{ padding: 0 22px; }
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .founder-photo-frame{ max-width: 280px; }
}
