:root{
  --gold:#C8963E;
  --gold-light:#DEBA6F;
  --gold-dark:#A47A2F;
  --navy:#1B2332;
  --navy-warm:#2D1F2F;
  --cream:#FAF7F2;
  --cream-dark:#F0EBE3;
  --warm-gray:#B5AFA7;
  --text:#2D2926;
  --text-light:#6B6560;
  --text-muted:#9A9490;
  --shell:1200px;
  --header-h:84px;
  --radius:12px;
  --shadow-soft:0 10px 40px rgba(27,35,50,0.08);
  --shadow-card:0 4px 24px rgba(27,35,50,0.06);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body.v6-home,
body.v6-page{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.v6-home h1,
body.v6-home h2,
body.v6-home h3,
body.v6-home h4,
body.v6-page h1,
body.v6-page h2,
body.v6-page h3,
body.v6-page h4{
  font-family:'Playfair Display',serif;
  margin:0;
  color:var(--navy);
  letter-spacing:-0.01em;
}
body.v6-home p,
body.v6-page p{margin:0;line-height:1.8;}
body.v6-home a,
body.v6-page a{color:inherit;}
body.v6-home button,
body.v6-page button{font-family:inherit;cursor:pointer;}
body.v6-home img,
body.v6-page img{max-width:100%;display:block;}
.v6-shell{max-width:var(--shell);margin:0 auto;padding:0 32px;}
.v6-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Inter',sans-serif;
  font-size:12px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:16px;
}
.v6-eyebrow::before{
  content:"";width:28px;height:1.5px;background:var(--gold);display:inline-block;
}
.v6-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:18px 38px;border-radius:4px;
  font-family:'Inter',sans-serif;
  font-weight:700;font-size:13px;
  letter-spacing:0.1em;text-transform:uppercase;
  border:none;text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.v6-btn-gold{
  background:var(--gold);
  color:#fff;
  box-shadow:0 6px 20px rgba(200,150,62,0.3);
}
.v6-btn-gold:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(200,150,62,0.4);}
.v6-btn-outline{
  background:transparent;
  color:var(--navy);
  border:1.5px solid rgba(27,35,50,0.2);
}
.v6-btn-outline:hover{border-color:var(--gold);color:var(--gold-dark);}
.v6-btn-sm{padding:13px 24px;font-size:12px;}

/* ===== Scroll progress ===== */
#v6-scroll-progress-track{
  position:fixed;top:0;left:0;right:0;height:3px;
  background:rgba(27,35,50,0.04);z-index:999;
}
#v6-scroll-progress-bar{
  height:100%;width:100%;
  background:linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform-origin:0% 50%;transform:scaleX(0);
}

/* ===== Header ===== */
#v6-header{
  position:fixed;top:0;left:0;right:0;
  z-index:900;
  height:var(--header-h);
  display:flex;align-items:center;
  transition:background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease, height .35s ease;
  background:transparent;
}
#v6-header.scrolled{
  background:rgba(250,247,242,0.88);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 4px 24px rgba(27,35,50,0.06);
  height:72px;
  top:0;
}
#v6-header .v6-shell{
  display:flex;align-items:center;justify-content:space-between;width:100%;
}
.v6-brand{display:flex;align-items:center;gap:14px;line-height:1.15;text-decoration:none;}
.v6-brand-logo{
  height:52px;width:auto;flex-shrink:0;
  transition:height .35s ease, filter .35s ease;
}
#v6-header:not(.scrolled) .v6-brand-logo{
  filter:brightness(0) invert(1);
}
#v6-header.scrolled .v6-brand-logo{
  height:42px;
}
.v6-brand-text{display:flex;flex-direction:column;}
.v6-brand .v6-brand-name{
  font-family:'Playfair Display',serif;font-weight:700;font-size:21px;color:var(--navy);
}
#v6-header:not(.scrolled) .v6-brand .v6-brand-name{color:#fff;}
.v6-brand .v6-brand-sub{
  font-family:'Inter',sans-serif;
  font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--gold-dark);
  white-space:nowrap;
}
#v6-header:not(.scrolled) .v6-brand .v6-brand-sub{color:var(--gold-light);}
#v6-header:not(.scrolled) .v6-brand{text-shadow:0 1px 6px rgba(0,0,0,0.4);}

nav#v6-nav{display:flex;align-items:center;gap:2px;}
.v6-nav-link{
  background:none;border:none;
  font-family:'Inter',sans-serif;
  font-size:13px;font-weight:600;color:var(--navy);
  padding:10px 12px;border-radius:4px;
  position:relative;
  transition:background .2s ease, color .2s ease;
  text-decoration:none;
  white-space:nowrap;
}
#v6-header:not(.scrolled) .v6-nav-link{color:rgba(255,255,255,0.95);text-shadow:0 1px 6px rgba(0,0,0,0.4);}
.v6-nav-link:hover{background:rgba(200,150,62,0.08);color:var(--gold-dark);}
#v6-header:not(.scrolled) .v6-nav-link:hover{background:rgba(255,255,255,0.1);color:#fff;}
.v6-nav-link.active{color:var(--gold-dark);}
#v6-header:not(.scrolled) .v6-nav-link.active{color:#fff;}
.v6-nav-link.active::after{
  content:"";position:absolute;left:16px;right:16px;bottom:2px;height:2px;
  background:var(--gold);border-radius:2px;
}
.v6-portal-link{
  display:flex;align-items:center;gap:6px;
  font-family:'Inter',sans-serif;font-size:12px;font-weight:600;
  letter-spacing:0.06em;text-transform:uppercase;
  color:var(--navy);text-decoration:none;
  padding:8px 14px;border-radius:4px;
  transition:background .2s ease, color .2s ease;
}
.v6-portal-link:hover{background:rgba(200,150,62,0.08);color:var(--gold-dark);}
#v6-header:not(.scrolled) .v6-portal-link{color:rgba(255,255,255,0.9);text-shadow:0 1px 6px rgba(0,0,0,0.4);}
#v6-header:not(.scrolled) .v6-portal-link:hover{background:rgba(255,255,255,0.1);color:#fff;}
.v6-header-actions{display:flex;align-items:center;gap:14px;}
.v6-hamburger{
  display:none;
  background:none;border:none;padding:8px;
  flex-direction:column;gap:5px;
  width:40px;height:40px;align-items:center;justify-content:center;
}
.v6-hamburger span{
  display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all .25s ease;
}
#v6-header:not(.scrolled) .v6-hamburger span{background:#fff;}
.v6-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.v6-hamburger.open span:nth-child(2){opacity:0;}
.v6-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

#v6-mobile-menu{
  position:fixed;top:0;left:0;right:0;
  background:var(--cream);
  box-shadow:0 16px 40px rgba(27,35,50,0.16);
  z-index:895;
  padding:90px 24px 24px;
  display:flex;flex-direction:column;gap:4px;
  transform:translateY(-12px);
  opacity:0;pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
#v6-mobile-menu.open{opacity:1;transform:translateY(0);pointer-events:auto;}
#v6-mobile-menu .v6-nav-link{color:var(--navy);text-align:left;width:100%;padding:14px 12px;font-size:16px;}
#v6-mobile-menu .v6-nav-link.active{color:var(--gold-dark);}
#v6-mobile-menu .v6-nav-link.active::after{display:none;}
#v6-mobile-menu .v6-btn{margin-top:10px;width:100%;}

/* ===== Mobile nav groups ===== */
.v6-mobile-group{display:flex;flex-direction:column;gap:0;}
.v6-mobile-group-label{
  font-family:'Inter',sans-serif;font-size:11px;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;color:var(--gold-dark);
  padding:18px 12px 6px;
}
#v6-mobile-menu .v6-nav-sub{padding-left:28px;font-size:14px;font-weight:400;}

/* ===== Desktop dropdown nav ===== */
.v6-nav-dropdown{position:relative;}
.v6-nav-chevron{display:inline-block;vertical-align:middle;margin-left:2px;transition:transform .2s ease;}
.v6-nav-dropdown:hover .v6-nav-chevron{transform:rotate(180deg);}
.v6-dropdown-menu{
  position:absolute;top:100%;left:0;
  min-width:200px;
  background:#fff;
  border:1px solid rgba(27,35,50,0.08);
  border-radius:8px;
  box-shadow:0 12px 32px rgba(27,35,50,0.12);
  padding:8px 0;
  opacity:0;visibility:hidden;
  transform:translateY(4px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index:910;
}
.v6-nav-dropdown:hover .v6-dropdown-menu,
.v6-nav-dropdown:focus-within .v6-dropdown-menu{
  opacity:1;visibility:visible;transform:translateY(0);
}
.v6-dropdown-menu a{
  display:block;padding:8px 20px;
  font-family:'Inter',sans-serif;font-size:13px;font-weight:500;
  color:var(--navy);text-decoration:none;
  transition:background .15s ease, color .15s ease;
}
.v6-dropdown-menu a:hover{background:rgba(200,150,62,0.06);color:var(--gold-dark);}
#v6-header:not(.scrolled) .v6-dropdown-menu{
  background:rgba(27,35,50,0.95);border-color:rgba(255,255,255,0.1);
  box-shadow:0 12px 32px rgba(0,0,0,0.3);
}
#v6-header:not(.scrolled) .v6-dropdown-menu a{color:rgba(255,255,255,0.9);}
#v6-header:not(.scrolled) .v6-dropdown-menu a:hover{background:rgba(255,255,255,0.08);color:#fff;}

/* ===== Grain overlay ===== */
#v6-grain{
  position:fixed;inset:0;pointer-events:none;z-index:998;
  opacity:0.03;mix-blend-mode:multiply;
}

/* ===== Reveal animations ===== */
.v6-reveal{opacity:0;transform:translateY(32px);transition:opacity .7s ease-out, transform .7s ease-out;}
.v6-reveal.visible{opacity:1;transform:translateY(0);}

/* ===== HERO ===== */
.v6-hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;
}
.v6-hero-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(27,35,50,0.3) 0%, rgba(27,35,50,0.15) 40%, rgba(27,35,50,0.55) 100%),
    linear-gradient(160deg, rgba(27,35,50,0.7), rgba(45,31,47,0.5));
}
.v6-hero-bg-image{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
}
.v6-hero-content{
  position:relative;z-index:2;
  max-width:680px;
}
.v6-hero-coach-intro{
  display:flex;align-items:center;gap:20px;
  margin-bottom:28px;
}
.v6-hero-headshot{
  width:80px;height:80px;border-radius:50%;
  border:3px solid rgba(200,150,62,0.6);
  box-shadow:0 4px 20px rgba(0,0,0,0.3);
  object-fit:cover;
  flex-shrink:0;
  background:var(--warm-gray);
}
.v6-hero-coach-meta{display:flex;flex-direction:column;gap:2px;}
.v6-hero-coach-name{
  font-family:'Playfair Display',serif;
  font-size:20px;font-weight:700;color:#fff;
  text-shadow:0 1px 8px rgba(0,0,0,0.5);
}
.v6-hero-coach-title{
  font-family:'Inter',sans-serif;
  font-size:12px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold-light);
  text-shadow:0 1px 4px rgba(0,0,0,0.4);
}
body.v6-home .v6-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(38px,5vw,64px);
  color:#fff;font-weight:700;line-height:1.1;
  margin-bottom:28px;
  text-shadow:0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}
.v6-hero h1 em{
  font-style:italic;
  color:var(--gold-light);
  text-shadow:0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}
.v6-hero .v6-hero-sub{
  font-size:17px;color:rgba(250,247,242,0.9);
  max-width:520px;margin-bottom:12px;line-height:1.7;
  text-shadow:0 1px 8px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.3);
}
.v6-hero .v6-scroll-prompt{
  margin-top:48px;
  display:flex;flex-direction:column;align-items:flex-start;gap:8px;
  font-size:11px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold-light);
  text-shadow:0 1px 6px rgba(0,0,0,0.4);
}
.v6-hero .v6-scroll-prompt svg{
  width:16px;height:16px;
  animation:v6ScrollBounce 2s ease-in-out infinite;
}
@keyframes v6ScrollBounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(6px);}
}

/* ===== EMPATHY SECTION ===== */
.v6-empathy{
  padding:120px 0 100px;
  background:var(--cream);
}
.v6-empathy-inner{
  max-width:640px;
  margin:0 auto;
  text-align:center;
}
.v6-empathy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,3.8vw,46px);
  line-height:1.2;
  margin-bottom:40px;
  color:var(--navy);
}
.v6-empathy h2 em{font-style:italic;}
.v6-empathy .v6-empathy-lines{
  text-align:left;
  max-width:480px;
  margin:0 auto;
}
.v6-empathy .v6-empathy-lines p{
  font-size:17px;
  color:var(--text-light);
  margin-bottom:8px;
  line-height:1.8;
}
.v6-empathy .v6-empathy-close{
  margin-top:32px;
  text-align:left;
  max-width:480px;
  margin-left:auto;
  margin-right:auto;
}
.v6-empathy .v6-empathy-close p{
  font-size:17px;
  color:var(--navy);
  font-weight:600;
  margin-bottom:6px;
}

/* ===== COACH BIO ===== */
.v6-coach-story{
  padding:100px 0 120px;
  background:var(--cream-dark);
}
.v6-coach-story-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:80px;
  align-items:start;
}
.v6-coach-story .v6-eyebrow{color:var(--gold-dark);}
.v6-coach-story h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.15;
  margin-bottom:32px;
}
.v6-coach-narrative{
  font-size:17px;
  color:var(--text);
  line-height:1.85;
}
.v6-coach-narrative > p:first-child::first-letter{
  float:left;
  font-family:'Playfair Display',serif;
  font-size:68px;
  line-height:0.8;
  padding:4px 12px 0 0;
  color:var(--gold);
  font-weight:700;
}
body.v6-home .v6-coach-narrative p{margin-bottom:20px;}
.v6-coach-narrative blockquote,
.v6-coach-blockquote{
  margin:36px 0;
  padding:0;
  border:none;
  font-family:'Playfair Display',serif;
  font-size:22px;
  font-style:italic;
  color:var(--navy);
  line-height:1.5;
  position:relative;
  padding-left:32px;
}
.v6-coach-narrative blockquote::before,
.v6-coach-blockquote::before{
  content:"\201C";
  position:absolute;left:-4px;top:-8px;
  font-family:'Playfair Display',serif;
  font-size:60px;color:var(--gold);line-height:1;
}
.v6-coach-photos{
  position:relative;
  min-height:480px;
}
.v6-coach-photo-card{
  position:absolute;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .4s ease;
  background:var(--warm-gray);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:13px;font-weight:500;text-align:center;padding:16px;
  background-size:cover;background-position:center;
}
.v6-coach-photo-card:hover{transform:scale(1.03);z-index:5;}
.v6-coach-photo-card.card-1{
  top:0;right:0;width:72%;aspect-ratio:4/3;z-index:3;
  background-color:linear-gradient(135deg, #c9bfb0, #a89c8e);
}
.v6-coach-photo-card.card-2{
  top:55%;left:0;width:60%;aspect-ratio:4/3;z-index:2;
  background-color:linear-gradient(135deg, #b0a89c, #8c8275);
}
.v6-coach-photo-card.card-3{
  top:35%;right:-5%;width:45%;aspect-ratio:3/4;z-index:1;
  background-color:linear-gradient(135deg, #c4b8a8, #9e9284);
}

/* ===== VIDEO ===== */
.v6-video{
  padding:100px 0;
  background:var(--cream);
}
.v6-video .v6-eyebrow{
  text-align:center;
  display:flex;justify-content:center;
}
.v6-video-wrap{
  max-width:860px;
  margin:0 auto;
  text-align:center;
}
.v6-video-player{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:16/9;
  background:linear-gradient(135deg, #d4cdc2, #c4b8a8);
  box-shadow:var(--shadow-soft);
  display:flex;align-items:center;justify-content:center;
}
.v6-video-player iframe{
  position:absolute;inset:0;width:100%;height:100%;border:0;
}
.v6-video-play-btn{
  width:72px;height:72px;
  border-radius:50%;
  background:#fff;
  border:none;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 24px rgba(0,0,0,0.12);
  transition:transform .25s ease;
  position:relative;z-index:2;
}
.v6-video-play-btn:hover{transform:scale(1.1);}
.v6-video-play-btn svg{
  width:24px;height:24px;color:var(--gold);margin-left:3px;
}
.v6-video-caption{
  margin-top:12px;
  font-size:13px;color:var(--text-muted);
}

/* ===== PLAN / HOW IT WORKS ===== */
.v6-plan{
  padding:100px 0;
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.v6-plan::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-warm) 100%);
}
.v6-plan *{position:relative;z-index:1;}
.v6-plan .v6-eyebrow{color:var(--gold-light);}
.v6-plan .v6-eyebrow::before{background:var(--gold-light);}
body.v6-home .v6-plan h2{
  color:#fff;
  font-size:clamp(28px,3.4vw,42px);
  margin-bottom:56px;
  text-align:center;
}
.v6-plan-steps{
  display:grid;grid-template-columns:repeat(3,1fr);gap:40px;
  max-width:1000px;margin:0 auto;
}
.v6-plan-step{
  text-align:center;
  padding:40px 24px;
}
.v6-plan-step .v6-step-num{
  font-family:'Playfair Display',serif;
  font-size:52px;font-weight:700;
  color:var(--gold-light);
  line-height:1;margin-bottom:16px;
  opacity:0.5;
}
body.v6-home .v6-plan-step h3{
  font-family:'Playfair Display',serif;
  font-size:22px;color:#fff;
  margin-bottom:14px;
  font-weight:600;
}
.v6-plan-step p{
  font-size:15px;color:rgba(255,255,255,0.7);
  line-height:1.7;
}

/* ===== ASSESSMENTS ===== */
.v6-assessments{
  padding:100px 0;
  background:var(--cream);
}
.v6-assessments h2{
  font-size:clamp(28px,3.4vw,42px);
  margin-bottom:16px;
  text-align:center;
}
.v6-assessments .v6-section-sub{
  font-size:17px;color:var(--text-light);
  text-align:center;max-width:560px;margin:0 auto 56px;
}
.v6-assessment-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  max-width:960px;margin:0 auto;
}
.v6-assessment-card{
  background:#fff;
  border-radius:var(--radius);
  padding:36px 28px 32px;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
  transition:transform .3s ease, box-shadow .3s ease;
}
.v6-assessment-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(27,35,50,0.1);
}
.v6-assessment-card .v6-card-icon{
  width:48px;height:48px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.v6-assessment-card .v6-card-icon svg{width:22px;height:22px;color:#fff;}
.v6-assessment-card h3{
  font-family:'Playfair Display',serif;
  font-size:20px;margin-bottom:10px;
  font-weight:600;
}
.v6-assessment-card p{
  font-size:14.5px;color:var(--text-light);margin-bottom:20px;line-height:1.7;
}
.v6-assessment-card .v6-card-link{
  font-size:13px;font-weight:700;color:var(--gold-dark);
  text-transform:uppercase;letter-spacing:0.08em;
  text-decoration:none;
  display:inline-flex;align-items:center;gap:6px;
  transition:gap .2s ease;
}
.v6-assessment-card:hover .v6-card-link{gap:10px;}

.v6-assessment-single{
  max-width:580px;margin:0 auto;
}
.v6-assessment-single-card{
  background:#fff;
  border-radius:var(--radius);
  padding:48px 36px 40px;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
  text-align:center;
}
.v6-assessment-single-card .v6-card-icon{
  width:56px;height:56px;
  border-radius:50%;
  background:var(--gold);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.v6-assessment-single-card .v6-card-icon svg{width:24px;height:24px;color:#fff;}
.v6-assessment-single-card h3{
  font-family:'Playfair Display',serif;
  font-size:22px;margin-bottom:12px;color:var(--navy);
}
.v6-assessment-single-card p{
  font-size:15px;color:var(--text-light);margin-bottom:24px;line-height:1.7;
}

/* ===== TESTIMONIALS ===== */
.v6-testimonials{
  padding:100px 0;
  background:var(--cream-dark);
}
.v6-testimonials .v6-eyebrow{
  display:flex;justify-content:center;
}
.v6-testimonials h2{
  font-size:clamp(28px,3.4vw,42px);
  margin-bottom:16px;
  text-align:center;
}
.v6-testimonials .v6-section-sub{
  font-size:17px;color:var(--text-light);
  text-align:center;max-width:560px;margin:0 auto 56px;
}
.v6-testimonial-slider{position:relative;}
.v6-testimonial-grid{
  display:flex;gap:24px;
  overflow-x:auto;scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:8px;
  scrollbar-width:none;
}
.v6-testimonial-grid::-webkit-scrollbar{display:none;}
.v6-testimonial-card{
  background:#fff;
  border-radius:var(--radius);
  padding:32px 24px 28px;
  border:1px solid rgba(27,35,50,0.06);
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;flex-direction:column;
  min-width:300px;max-width:340px;flex-shrink:0;
  scroll-snap-align:start;
}
.v6-slider-arrow{
  position:absolute;top:calc(50% - 28px);transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  background:#fff;border:1px solid rgba(27,35,50,0.1);
  box-shadow:0 4px 16px rgba(27,35,50,0.1);
  display:flex;align-items:center;justify-content:center;
  color:var(--navy);cursor:pointer;z-index:2;
  transition:background .2s ease, box-shadow .2s ease, color .2s ease;
}
.v6-slider-arrow:hover{background:var(--gold);color:#fff;box-shadow:0 6px 20px rgba(200,150,62,0.3);}
.v6-slider-prev{left:-22px;}
.v6-slider-next{right:-22px;}
.v6-slider-dots{
  display:flex;justify-content:center;gap:10px;margin-top:28px;
}
.v6-slider-dot{
  width:10px;height:10px;border-radius:50%;border:none;padding:0;
  background:var(--warm-gray);cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.v6-slider-dot.active{background:var(--gold);transform:scale(1.2);}
.v6-testimonial-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-soft);
}
.v6-testimonial-card .v6-quote-mark{
  font-family:'Playfair Display',serif;
  font-size:40px;color:var(--gold-light);
  line-height:1;margin-bottom:8px;
}
.v6-testimonial-card .v6-quote-text{
  font-size:15px;font-style:italic;color:var(--text);
  line-height:1.7;flex:1;margin-bottom:20px;
}
.v6-testimonial-card .v6-quote-author{
  font-size:14px;font-weight:700;color:var(--navy);
}
.v6-testimonial-card .v6-quote-role{
  font-size:12.5px;color:var(--text-muted);margin-top:0;
}

/* ===== FINAL CTA ===== */
.v6-final-cta{
  padding:100px 0;
  background:var(--cream);
  text-align:center;
}
.v6-final-cta .v6-cta-line{
  font-family:'Caveat',cursive;
  font-size:clamp(28px,3.5vw,44px);
  color:var(--navy);
  margin-bottom:36px;
  font-weight:500;
}
.v6-final-cta .v6-btn-gold{
  font-size:14px;padding:20px 48px;
  letter-spacing:0.12em;
}

/* ===== FOOTER ===== */
.v6-footer{
  background:var(--navy);
  color:rgba(255,255,255,0.65);
  padding:56px 0 32px;
}
.v6-footer-grid{
  display:grid;grid-template-columns:1fr auto;gap:40px;align-items:start;
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding-bottom:32px;margin-bottom:24px;
}
.v6-footer-brand .v6-brand-name{
  font-family:'Playfair Display',serif;font-weight:700;font-size:20px;color:#fff;margin-bottom:4px;
}
.v6-footer-brand .v6-brand-sub{
  font-size:10.5px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--gold-light);
  margin-bottom:14px;
}
.v6-footer-contact{font-size:14px;line-height:1.8;}
.v6-footer-contact a{color:var(--gold-light);text-decoration:none;}
.v6-footer-contact a:hover{text-decoration:underline;}
.v6-footer-social{display:flex;gap:12px;margin-top:14px;}
.v6-footer-social a{
  color:rgba(255,255,255,0.5);transition:color .2s ease;
  display:flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,0.06);
}
.v6-footer-social a:hover{color:var(--gold-light);background:rgba(255,255,255,0.1);}
.v6-footer-right{text-align:right;}
.v6-footer-tes-logo{
  font-family:'Inter',sans-serif;font-size:11px;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  color:rgba(255,255,255,0.5);margin-bottom:8px;
}
.v6-footer-links{display:flex;gap:20px;justify-content:flex-end;}
.v6-footer-links a{font-size:13px;color:rgba(255,255,255,0.5);text-decoration:none;}
.v6-footer-links a:hover{color:var(--gold-light);}
.v6-footer-legal{
  display:flex;flex-wrap:wrap;gap:4px 20px;
  justify-content:center;
  font-size:12px;color:rgba(255,255,255,0.4);
  padding:16px 0 8px;
  border-top:1px solid rgba(255,255,255,0.06);
  margin-top:16px;
}
.v6-footer-legal a{color:var(--gold-light);text-decoration:none;}
.v6-footer-legal a:hover{text-decoration:underline;}
.v6-footer-bottom{
  text-align:center;font-size:12px;color:rgba(255,255,255,0.35);
}

/* ===== INTERIOR PAGE HEADER ===== */
.v6-page-header{
  padding:160px 0 80px;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-warm) 100%);
  text-align:center;
}
.v6-page-header h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,4vw,48px);color:#fff !important;margin-bottom:18px;
}
.v6-page-header p{
  font-size:18px;color:rgba(255,255,255,0.7) !important;max-width:560px;margin:0 auto !important;text-align:center !important;
}
.v6-page-header .v6-eyebrow{
  color:var(--gold-light);
  justify-content:center;display:flex;
}
.v6-page-header .v6-eyebrow::before{background:var(--gold-light);}

/* ===== INTERIOR PAGE CONTENT ===== */
.v6-page-content{padding:80px 0;}
.v6-content-block{
  max-width:720px;margin:0 auto 48px;
}
.v6-page-content h2{
  font-size:28px;margin-bottom:16px;
}
.v6-page-content p{
  font-size:16px;color:var(--text-light);margin-bottom:16px;
}

/* ===== TRUST BADGES (What Is TES) ===== */
.v6-trust-badges{
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;
  max-width:800px;margin:48px auto 0;
  text-align:center;
}
.v6-trust-badge{padding:28px 16px;}
.v6-trust-badge .v6-badge-num{
  font-family:'Playfair Display',serif;
  font-size:36px;font-weight:700;color:var(--gold);
  margin-bottom:6px;
}
.v6-trust-badge .v6-badge-label{
  font-size:13px;color:var(--text-light);
}

/* ===== ASSESSMENTS PAGE (full list - legacy icon cards) ===== */
.v6-assess-page-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:32px;
  max-width:960px;margin:0 auto;
}
.v6-assess-detail-card{
  background:#fff;border-radius:var(--radius);padding:40px 28px;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
}
.v6-assess-detail-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(27,35,50,0.1);
}
.v6-assess-detail-card .v6-card-icon{
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.v6-assess-detail-card .v6-card-icon svg{width:26px;height:26px;color:#fff;}
.v6-assess-detail-card h3{
  font-family:'Playfair Display',serif;
  font-size:22px;margin-bottom:12px;font-weight:600;
}
.v6-assess-detail-card p{
  font-size:15px;color:var(--text-light);margin-bottom:24px;line-height:1.7;
}

/* ===== ASSESSMENTS PAGE (image cards) ===== */
.v6-assess-img-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:32px;
  max-width:960px;margin:0 auto;
}
.v6-assess-img-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
  text-decoration:none;color:inherit;
  display:flex;flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.v6-assess-img-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(27,35,50,0.1);
}
.v6-assess-img-thumb{
  aspect-ratio:16/10;overflow:hidden;
  background:linear-gradient(135deg, #d4cdc2, #c4b8a8);
}
.v6-assess-img-thumb img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.v6-assess-img-card:hover .v6-assess-img-thumb img{
  transform:scale(1.04);
}
.v6-assess-img-body{
  padding:28px 24px 32px;flex:1;
  display:flex;flex-direction:column;
}
.v6-assess-img-body h3{
  font-family:'Playfair Display',serif;
  font-size:20px;margin-bottom:10px;font-weight:600;
  color:var(--navy);
}
.v6-assess-img-body p{
  font-size:14.5px;color:var(--text-light);line-height:1.7;
  margin-bottom:20px;flex:1;
}
.v6-assess-img-link{
  font-size:13px;font-weight:700;color:var(--gold-dark);
  text-transform:uppercase;letter-spacing:0.08em;
  display:inline-flex;align-items:center;gap:6px;
  transition:gap .2s ease;
}
.v6-assess-img-card:hover .v6-assess-img-link{gap:10px;}

/* ===== VALUE PROPS (What Is TES) ===== */
.v6-values-section{margin-top:64px;}
.v6-values-heading{
  text-align:center;font-size:28px;margin-bottom:40px;
}
.v6-values-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:32px;
  max-width:960px;margin:0 auto;
}
.v6-value-card{
  text-align:center;padding:40px 24px;
  background:#fff;border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
}
.v6-value-icon{
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.v6-value-icon svg{width:26px;height:26px;color:#fff;}
.v6-value-card h3{
  font-family:'Playfair Display',serif;
  font-size:20px;margin-bottom:12px;font-weight:600;
}
.v6-value-card p{
  font-size:15px;color:var(--text-light);line-height:1.7;
}

/* ===== CONTENT BLOCK (WP editor output) ===== */
.v6-content-block ul,
.v6-content-block ol{
  margin:0 0 16px 24px;color:var(--text-light);
  font-size:16px;line-height:1.8;
}
.v6-content-block li{margin-bottom:6px;}
.v6-content-block blockquote{
  border-left:3px solid var(--gold);
  padding:12px 0 12px 24px;
  margin:24px 0;font-style:italic;
  color:var(--text-light);
}
.v6-content-block img{
  max-width:100%;height:auto;border-radius:var(--radius);
  margin:16px 0;
}
.v6-content-block a{
  color:var(--gold-dark);text-decoration:underline;
  text-underline-offset:3px;
}
.v6-content-block a:hover{color:var(--gold);}

/* ===== WHAT IS TES SECTIONS ===== */
.v6-tes-section{
  margin:56px 0;padding:48px 0;
  border-top:1px solid rgba(27,35,50,0.06);
}
.v6-tes-section:first-of-type{border-top:none;margin-top:0;}
.v6-tes-section-eyebrow{
  font-family:'Inter',sans-serif;font-size:12px;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--gold-dark);margin-bottom:12px;
}
.v6-tes-section h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,2.8vw,32px);
  color:var(--navy);margin-bottom:20px;
}
.v6-tes-section p{
  font-size:16px;color:var(--text-light);line-height:1.8;margin-bottom:16px;
  max-width:720px;
}
.v6-tes-section ul{
  margin:0 0 16px 24px;color:var(--text-light);
  font-size:16px;line-height:1.8;
}
.v6-tes-section li{margin-bottom:8px;}

/* ===== WHAT IS TES: Trust badges bar ===== */
.v6-tes-badges-bar{
  background:var(--cream-dark);
  padding:48px 0;
  border-bottom:1px solid rgba(27,35,50,0.06);
}
.v6-tes-badges-bar .v6-trust-badges{margin:0 auto;}

/* ===== WHAT IS TES: Dark section (40+ Years) ===== */
.v6-tes-dark-section{
  padding:100px 0;
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.v6-tes-dark-section::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-warm) 100%);
}
.v6-tes-dark-section *{position:relative;z-index:1;}
.v6-tes-dark-section .v6-eyebrow{color:var(--gold-light);}
.v6-tes-dark-section .v6-eyebrow::before{background:var(--gold-light);}
.v6-tes-dark-section h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.4vw,42px);
  color:#fff;margin-bottom:32px;
}
.v6-tes-dark-content{max-width:720px;}
.v6-tes-dark-content p{
  font-size:17px;color:rgba(255,255,255,0.75);
  line-height:1.8;margin-bottom:16px;
}
.v6-tes-dark-content strong{color:#fff;}
.v6-tes-dark-highlight{
  margin-top:32px;
  padding:28px 32px;
  border-left:3px solid var(--gold);
  background:rgba(200,150,62,0.06);
  border-radius:0 8px 8px 0;
  max-width:720px;
}
.v6-tes-dark-highlight p{
  font-size:17px;color:rgba(255,255,255,0.85);
  line-height:1.8;margin:0;font-style:italic;
}
.v6-tes-dark-highlight em{color:var(--gold-light);font-style:italic;}

/* ===== WHAT IS TES: Card-style Q&A sections ===== */
.v6-tes-card-section{
  background:#fff;
  border-radius:var(--radius);
  padding:48px 44px;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
  margin-bottom:28px;
  position:relative;
  overflow:hidden;
}
.v6-tes-card-accent{
  position:absolute;top:0;left:0;bottom:0;width:4px;
  background:var(--gold);
}
.v6-tes-card-alt{
  background:var(--cream-dark);
  border-color:rgba(27,35,50,0.06);
  box-shadow:none;
}
.v6-tes-card-body .v6-tes-section-eyebrow{margin-bottom:12px;}
.v6-tes-card-body h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,2.4vw,28px);
  color:var(--navy);margin-bottom:20px;
}
.v6-tes-card-body p{
  font-size:16px;color:var(--text-light);line-height:1.8;margin-bottom:16px;
  max-width:none;
}
.v6-tes-card-body strong{color:var(--navy);}
.v6-tes-inline-list{
  margin:20px 0;
  padding:24px 28px;
  background:rgba(200,150,62,0.04);
  border-radius:8px;
}
.v6-tes-card-alt .v6-tes-inline-list{
  background:rgba(255,255,255,0.6);
}
.v6-tes-inline-list p{margin-bottom:12px;font-weight:600;color:var(--navy);}
.v6-tes-inline-list ul{
  margin:0 0 0 20px;color:var(--text-light);
  font-size:15px;line-height:1.8;list-style:none;
}
.v6-tes-inline-list li{
  position:relative;padding-left:12px;margin-bottom:8px;
}
.v6-tes-inline-list li::before{
  content:"";position:absolute;left:-12px;top:10px;
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}
.v6-tes-inline-list li strong{color:var(--navy);}
.v6-tes-pullquote{
  margin-top:24px;
  padding:20px 0 0;
  border-top:1px solid rgba(27,35,50,0.06);
  font-family:'Playfair Display',serif;
  font-size:19px;font-style:italic;
  color:var(--navy);line-height:1.5;
}

/* ===== Dropdown divider ===== */
.v6-dropdown-divider{
  height:1px;
  background:rgba(27,35,50,0.08);
  margin:6px 16px;
}
#v6-header:not(.scrolled) .v6-dropdown-divider{
  background:rgba(255,255,255,0.1);
}
.v6-question-list{
  margin:20px 0 20px 24px;
  list-style:none;
}
.v6-question-list li{
  position:relative;padding-left:8px;
  font-style:italic;color:var(--navy);font-weight:500;
}
.v6-question-list li::before{
  content:"";position:absolute;left:-16px;top:10px;
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}

/* ===== FAQ GRID ===== */
.v6-faq-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:28px;
  margin-top:32px;
}
.v6-faq-item{
  background:#fff;
  border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(27,35,50,0.04);
}
.v6-faq-item h3{
  font-family:'Playfair Display',serif;
  font-size:17px;font-weight:600;color:var(--navy);
  margin-bottom:12px;font-style:italic;
}
.v6-faq-item p{
  font-size:14.5px;color:var(--text-light);line-height:1.7;margin-bottom:0;
}

/* ===== RESOURCES PAGE ===== */
.v6-resource-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  max-width:960px;margin:0 auto;
}
.v6-resource-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-card);border:1px solid rgba(27,35,50,0.04);
  transition:transform .3s ease, box-shadow .3s ease;
  text-decoration:none;color:inherit;
  display:block;
}
.v6-resource-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(27,35,50,0.1);
}
.v6-resource-thumb{
  aspect-ratio:16/9;
  background:linear-gradient(135deg, #d4cdc2, #c4b8a8);
  display:flex;align-items:center;justify-content:center;
}
.v6-resource-thumb-label{
  font-size:12px;color:rgba(0,0,0,0.35);font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;
}
.v6-resource-body{padding:20px;}
.v6-resource-type{
  font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold-dark);margin-bottom:6px;
}
.v6-resource-body h3{
  font-family:'Playfair Display',serif;
  font-size:17px;margin-bottom:8px;font-weight:600;
}
.v6-resource-body p{
  font-size:13.5px;color:var(--text-light);
}
.v6-resources-coming-soon{
  text-align:center;margin-top:48px;
  padding:32px;
  border:1px dashed rgba(27,35,50,0.12);
  border-radius:var(--radius);
}
.v6-resources-coming-soon p{
  font-size:15px;color:var(--text-muted);font-style:italic;
}
.v6-resource-thumb img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.v6-resource-date{
  font-size:12px;color:var(--text-muted);margin-bottom:6px;
  letter-spacing:0.02em;
}
.v6-resource-read-more{
  display:inline-block;margin-top:12px;
  font-size:13px;font-weight:600;color:var(--gold-dark);
  letter-spacing:0.02em;
}
.v6-resource-card:hover .v6-resource-read-more{color:var(--gold);}
.v6-view-all{
  text-align:center;margin-top:48px;
}
.v6-btn-outline{
  display:inline-block;
  padding:14px 32px;
  border:2px solid var(--gold);
  color:var(--gold-dark);
  border-radius:4px;
  font-family:'Inter',sans-serif;
  font-size:13px;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  text-decoration:none;
  transition:all .3s ease;
}
.v6-btn-outline:hover{
  background:var(--gold);color:#fff;
}

/* ===== SINGLE POST ===== */
.v6-post-header{padding-bottom:60px;}
.v6-post-meta{
  font-size:14px;color:rgba(255,255,255,0.5);
  margin-top:8px;letter-spacing:0.02em;
}
.v6-post-featured{
  max-width:720px;margin:0 auto 48px;
}
.v6-post-featured img{
  width:100%;height:auto;border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
.v6-post-nav{
  display:flex;justify-content:space-between;gap:24px;
  max-width:720px;margin:48px auto 0;
  padding-top:32px;
  border-top:1px solid var(--cream-dark);
}
.v6-post-nav-link{
  text-decoration:none;color:inherit;
  max-width:45%;
  transition:color .3s ease;
}
.v6-post-nav-link:hover{color:var(--gold-dark);}
.v6-post-nav-label{
  display:block;font-size:12px;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--gold-dark);margin-bottom:4px;
}
.v6-post-nav-title{
  display:block;font-family:'Playfair Display',serif;
  font-size:15px;font-weight:600;line-height:1.4;
  color:var(--text-light);
}
.v6-post-nav-next{text-align:right;}
.v6-post-back{
  text-align:center;margin-top:48px;
}

/* ===== Contact Form ===== */
.v6-contact{padding:100px 0;background:var(--cream-dark);}
.v6-contact h2{text-align:center;font-size:clamp(28px,4vw,40px);margin-bottom:8px;}
.v6-contact .v6-section-sub{text-align:center;max-width:560px;margin:0 auto 48px;color:var(--text-light);}
.v6-contact-grid{
  display:grid;grid-template-columns:1fr 340px;gap:60px;
  align-items:start;max-width:920px;margin:0 auto;
}
.v6-contact-form{position:relative;}
.v6-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.v6-form-field{margin-bottom:20px;}
.v6-form-field label{
  display:block;margin-bottom:6px;
  font-size:13px;font-weight:600;color:var(--text);
  letter-spacing:0.02em;
}
.v6-req{color:var(--gold);}
.v6-form-field input,
.v6-form-field textarea{
  width:100%;padding:14px 16px;
  border:1.5px solid rgba(27,35,50,0.12);
  border-radius:6px;
  font-family:'Inter',sans-serif;font-size:15px;
  color:var(--text);background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.v6-form-field input:focus,
.v6-form-field textarea:focus{
  outline:none;border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(200,150,62,0.12);
}
.v6-form-field textarea{resize:vertical;min-height:100px;}
.v6-form-consent{margin-bottom:24px;}
.v6-form-consent label{
  display:flex;align-items:flex-start;gap:10px;
  font-size:13px;font-weight:400;color:var(--text-light);line-height:1.5;
  cursor:pointer;
}
.v6-form-consent input[type="checkbox"]{
  margin-top:2px;flex-shrink:0;
  width:18px;height:18px;accent-color:var(--gold);
}
.v6-form-consent a{color:var(--gold-dark);text-decoration:underline;}
.v6-form-status{margin-top:16px;font-size:14px;font-weight:500;min-height:20px;}
.v6-form-success{color:#2a7d4b;}
.v6-form-error{color:#c0392b;}
.v6-contact-info{
  padding:32px;background:#fff;border-radius:var(--radius);
  box-shadow:var(--shadow-card);
}
.v6-contact-info h3{
  font-size:20px;margin-bottom:24px;color:var(--navy);
}
.v6-contact-detail{
  display:flex;align-items:center;gap:12px;
  margin-bottom:16px;
}
.v6-contact-detail svg{color:var(--gold);flex-shrink:0;}
.v6-contact-detail a{
  font-size:15px;color:var(--text);text-decoration:none;
  transition:color .2s ease;
}
.v6-contact-detail a:hover{color:var(--gold-dark);}
.v6-contact-promise{
  margin-top:24px;padding-top:20px;
  border-top:1px solid rgba(27,35,50,0.08);
  font-size:13px;color:var(--text-muted);font-style:italic;
}

/* ===== Resource Sub-Navigation ===== */
.v6-resource-nav{
  display:flex;gap:2px;margin-bottom:40px;
  border-bottom:1.5px solid rgba(27,35,50,0.08);
  padding-bottom:0;
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.v6-resource-nav::-webkit-scrollbar{display:none;}
.v6-resource-nav-link{
  font-family:'Inter',sans-serif;
  font-size:13px;font-weight:600;
  color:var(--text-light);text-decoration:none;
  padding:12px 14px;
  border-bottom:2px solid transparent;
  margin-bottom:-1.5px;
  transition:color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.v6-resource-nav-link:hover{color:var(--gold-dark);}
.v6-resource-nav-link.active{
  color:var(--gold-dark);
  border-bottom-color:var(--gold);
}

/* ===== Media Pages (Podcasts/Videos) ===== */
.v6-media-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:24px;
  margin-bottom:32px;
}
.v6-media-card{
  background:#fff;border-radius:var(--radius);
  padding:40px 32px;text-align:center;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.v6-media-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.v6-media-icon{color:var(--gold);margin-bottom:20px;}
.v6-media-card h3{font-size:22px;margin-bottom:12px;}
.v6-media-card p{color:var(--text-light);line-height:1.7;margin-bottom:20px;}
.v6-media-featured{grid-column:1/-1;max-width:600px;margin:0 auto;}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .v6-coach-story-grid{grid-template-columns:1fr;gap:48px;}
  .v6-coach-photos{min-height:360px;}
  .v6-plan-steps{grid-template-columns:1fr;gap:16px;}
  .v6-testimonial-card{min-width:280px;}
  .v6-assess-page-grid{grid-template-columns:repeat(2,1fr);}
  .v6-assess-img-grid{grid-template-columns:repeat(2,1fr);}
  .v6-values-grid{grid-template-columns:repeat(2,1fr);}
  .v6-faq-grid{grid-template-columns:1fr;}
  .v6-nav-dropdown{position:static;}
  .v6-tes-card-section{padding:36px 32px;}
}
@media(max-width:768px){
  nav#v6-nav{display:none;}
  .v6-header-actions .v6-btn{display:none;}
  .v6-header-actions .v6-portal-link{display:none;}
  .v6-hamburger{display:flex;}
  .v6-hero-content{padding:80px 0 40px;}
  .v6-hero h1{font-size:clamp(32px,7vw,42px);}
  .v6-hero-headshot{width:64px;height:64px;}
  .v6-hero-coach-name{font-size:17px;}
  .v6-brand-logo{height:40px;}
  #v6-header.scrolled .v6-brand-logo{height:34px;}
  .v6-empathy{padding:80px 0 60px;}
  .v6-empathy h2{font-size:clamp(26px,6vw,36px);}
  .v6-coach-story{padding:60px 0 80px;}
  .v6-assessment-cards{grid-template-columns:1fr;}
  .v6-testimonial-card{min-width:260px;}
  .v6-slider-prev{left:-4px;}
  .v6-slider-next{right:-4px;}
  .v6-slider-arrow{width:36px;height:36px;background:rgba(255,255,255,0.9);}
  .v6-plan-steps{grid-template-columns:1fr;}
  .v6-footer-grid{grid-template-columns:1fr;gap:24px;}
  .v6-footer-right{text-align:left;}
  .v6-footer-links{justify-content:flex-start;}
  .v6-coach-photos{min-height:300px;}
  .v6-coach-photo-card.card-1{width:80%;}
  .v6-coach-photo-card.card-2{width:65%;}
  .v6-coach-photo-card.card-3{width:50%;}
  .v6-page-header{padding:120px 0 60px;}
  .v6-trust-badges{grid-template-columns:repeat(2,1fr);}
  .v6-assess-page-grid{grid-template-columns:1fr;}
  .v6-assess-img-grid{grid-template-columns:1fr;}
  .v6-resource-grid{grid-template-columns:1fr;}
  .v6-tes-card-section{padding:28px 24px;}
  .v6-tes-dark-section{padding:60px 0;}
  .v6-tes-badges-bar{padding:32px 0;}
  .v6-values-grid{grid-template-columns:1fr;}
  .v6-contact-grid{grid-template-columns:1fr;gap:32px;}
  .v6-form-row{grid-template-columns:1fr;}
  .v6-contact{padding:60px 0;}
  .v6-nav-dropdown .v6-dropdown-menu{display:none;}
  .v6-faq-grid{grid-template-columns:1fr;}
  .v6-footer-legal{flex-direction:column;align-items:center;gap:4px;}
}
@media(max-width:480px){
  .v6-shell{padding:0 20px;}
  .v6-btn{padding:15px 28px;font-size:12px;}
  .v6-hero{min-height:85vh;}
}

/* ===== Admin bar support ===== */
.admin-bar #v6-header{top:32px;}
.admin-bar #v6-header.scrolled{top:32px;}
.admin-bar #v6-mobile-menu{top:32px;}
@media screen and (max-width:782px){
  .admin-bar #v6-header{top:46px;}
  .admin-bar #v6-header.scrolled{top:46px;}
  .admin-bar #v6-mobile-menu{top:46px;}
}
