/* =========================================================
   iCoach-U — Shared Design System (Concept C: The Pulse)
   ========================================================= */

:root{
  --paper:#F7F8F4;
  --mist:#ECEEE7;
  --ink:#23253B;
  --ink-soft:#5B5E72;
  --wine:#7A2E3B;
  --wine-deep:#5E2129;
  --gold:#B8935A;
  --teal-accent:#2C584F;
  --plum:#6B4C8A;
  --rule: rgba(35,37,59,0.13);
  --cream-text:#F3EFE6;
  --radius:14px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Manrope', sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
em, .serif{font-family:'Instrument Serif', serif; font-style:italic; font-weight:400;}
a{color:inherit;}
.wrap{max-width:1180px; margin:0 auto; padding:0 48px;}

.eyebrow{
  font-size:12px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--wine); font-weight:700; display:flex; align-items:center; gap:10px;
}
.eyebrow::before{content:""; width:16px; height:1px; background:var(--wine);}
.eyebrow.on-dark{color:var(--gold);}
.eyebrow.on-dark::before{background:var(--gold);}
.eyebrow.center{justify-content:center;}

/* ---------- NAV ---------- */
header.site-header{background:var(--ink); color:var(--cream-text); position:sticky; top:0; z-index:50; box-shadow:0 4px 24px rgba(0,0,0,0.12);}
.nav-inner{
  max-width:1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 48px;
}
.logo img{height:38px; display:block;}
nav.links{display:flex; align-items:center; gap:34px;}
.nav-item{position:relative;}
.nav-item > a{text-decoration:none; font-size:14px; color:var(--cream-text); opacity:0.82; font-weight:500;}
.nav-item:hover > a, .nav-item > a.active{opacity:1;}
.nav-item > a.active{border-bottom:1px solid var(--gold); padding-bottom:4px;}
.nav-item .sub{
  position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%);
  background:var(--paper); color:var(--ink); border-radius:8px; padding:10px;
  min-width:200px; box-shadow:0 18px 40px rgba(0,0,0,0.28);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .16s ease, visibility 0s linear .16s;
}
.nav-item:hover .sub{
  opacity:1; visibility:visible; pointer-events:auto;
  transition:opacity .16s ease, visibility 0s linear 0s;
}
/* Tap-to-reveal for touch devices (see main.js) — works at any width,
   independent of :hover, so a tap doesn't rely on a hover state that
   touchscreens don't really have. */
.nav-item.sub-open .sub{
  opacity:1; visibility:visible; pointer-events:auto;
  transition:opacity .16s ease, visibility 0s linear 0s;
}
/* Invisible bridge so the cursor doesn't "leave" the nav item while
   crossing the gap between the link and the dropdown below it —
   without this, moving the mouse down hides the menu before you
   can click a link inside it. Desktop hover only. */
@media (min-width: 861px){
  .nav-item.has-sub::after{
    content:""; position:absolute; top:100%; left:50%; transform:translateX(-50%);
    width:200px; height:12px;
  }
}
.sub a{display:block; padding:9px 12px; font-size:13.5px; text-decoration:none; border-radius:5px; color:var(--ink); opacity:0.85;}
.sub a:hover{background:var(--mist); opacity:1;}
.cta-pill{
  background:var(--wine); color:var(--cream-text); text-decoration:none;
  padding:11px 22px; border-radius:100px; font-size:13.5px; font-weight:600; white-space:nowrap;
}
.nav-toggle{display:none; background:none; border:none; color:var(--cream-text); font-size:22px; cursor:pointer;}

/* ---------- BUTTONS ---------- */
.btn-row{display:flex; gap:14px; align-items:center; flex-wrap:wrap;}
.btn-primary{background:var(--ink); color:var(--cream-text); text-decoration:none; padding:15px 26px; border-radius:100px; font-size:14px; font-weight:600; border:none; cursor:pointer; display:inline-block;}
.btn-ghost{color:var(--ink); text-decoration:none; padding:15px 4px; font-size:14px; font-weight:600; border-bottom:1px solid var(--ink); display:inline-block;}
.btn-on-wine{background:var(--ink); color:var(--cream-text);}
.btn-secondary-on-wine{color:var(--cream-text); border:1px solid rgba(243,239,230,0.4); text-decoration:none; padding:14px 25px; border-radius:100px; font-size:14px; font-weight:600; display:inline-block;}

/* ---------- PULSE DIVIDER ---------- */
.pulse-strip{max-width:1180px; margin:10px auto 0; padding:0 48px;}
.pulse-strip svg{width:100%; height:auto; display:block;}

/* ---------- HERO (page header banner for inner pages) ---------- */
.page-hero{max-width:1180px; margin:0 auto; padding:80px 48px 60px;}
.page-hero h1{font-family:'Manrope', sans-serif; font-weight:800; font-size:42px; line-height:1.18; letter-spacing:-0.015em; margin:20px 0 18px; max-width:760px;}
.page-hero h1 em{color:var(--wine); font-size:1.05em;}
.page-hero .lede{font-size:17px; color:var(--ink-soft); max-width:600px;}

/* ---------- STAT ROW ---------- */
.stat-row{max-width:1180px; margin:0 auto; padding:0 48px 90px; display:grid; grid-template-columns:repeat(3,1fr);}
.stat-row div{padding:0 32px; border-left:1px solid var(--rule);}
.stat-row div:first-child{border-left:none; padding-left:0;}
.stat-row .num{font-family:'Instrument Serif', serif; font-style:italic; font-size:38px; color:var(--wine);}
.stat-row .label{font-size:13.5px; color:var(--ink-soft); margin-top:6px;}

/* ---------- DARK BAND (about/quote) ---------- */
.band-dark{background:var(--ink); color:var(--cream-text); padding:90px 48px;}
.band-inner{max-width:900px; margin:0 auto; text-align:center;}
.band-inner blockquote{font-family:'Instrument Serif', serif; font-style:italic; font-weight:400; font-size:32px; line-height:1.45; margin:26px 0 30px;}
.band-inner .who{font-size:14px; opacity:0.7;}
.band-inner a.btn-ghost{color:var(--cream-text); border-bottom-color:rgba(243,239,230,0.5); margin-top:10px;}

/* ---------- SECTION HEAD ---------- */
.section-head{max-width:620px; margin-bottom:44px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-family:'Manrope', sans-serif; font-weight:800; font-size:32px; letter-spacing:-0.01em; margin-top:16px;}
.section-head h2 em{color:var(--wine); font-size:1.05em;}
.section-head p{color:var(--ink-soft); font-size:15.5px; margin-top:14px;}

section.block{max-width:1180px; margin:0 auto; padding:90px 48px;}
section.block.tight{padding-top:0;}

/* ---------- PROCESS / TIMELINE ---------- */
.timeline{position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:36px; margin-top:20px;}
.timeline::before{content:""; position:absolute; top:11px; left:5%; right:5%; height:1px; background:repeating-linear-gradient(90deg, var(--rule) 0 6px, transparent 6px 12px);}
.stage{position:relative; padding-top:38px;}
.stage .dot{position:absolute; top:0; left:0; width:23px; height:23px; border-radius:50%; background:var(--paper); border:2px solid var(--wine);}
.stage .dot::after{content:""; position:absolute; inset:5px; border-radius:50%; background:var(--wine);}
.stage .stage-name{font-family:'Instrument Serif', serif; font-style:italic; font-size:22px; color:var(--wine); margin-bottom:8px;}
.stage h3{font-size:17px; font-weight:700; margin-bottom:10px;}
.stage p{font-size:14.5px; color:var(--ink-soft);}

/* ---------- TWO-COLUMN CONTENT ROWS (about page bio blocks) ---------- */
.content-row{display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center; margin-bottom:90px;}
.content-row.reverse{grid-template-columns:1.1fr 0.9fr;}
.content-row.reverse .row-media{order:2;}
.content-row .row-media img{border-radius:var(--radius); width:100%; object-fit:cover;}
.content-row h2{font-family:'Manrope', sans-serif; font-weight:800; font-size:28px; margin-bottom:16px; letter-spacing:-0.01em;}
.content-row p{color:var(--ink-soft); font-size:15.5px; margin-bottom:14px;}
.content-row ul{margin:16px 0; padding-left:0; list-style:none;}
.content-row ul li{position:relative; padding-left:22px; margin-bottom:10px; font-size:15px; color:var(--ink-soft);}
.content-row ul li::before{content:""; position:absolute; left:0; top:9px; width:8px; height:1px; background:var(--wine);}

/* ---------- CHECK / CROSS LISTS (what coaching is / is not) ---------- */
.dual-list{display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:20px;}
.dual-list .col h3{font-family:'Instrument Serif', serif; font-style:italic; font-size:24px; margin-bottom:18px; color:var(--wine);}
.dual-list ul{list-style:none;}
.dual-list ul li{position:relative; padding-left:26px; margin-bottom:14px; font-size:15px; color:var(--ink-soft); line-height:1.55;}
.dual-list .is ul li::before{content:"+"; position:absolute; left:0; top:-1px; color:var(--wine); font-weight:700;}
.dual-list .isnot ul li::before{content:"–"; position:absolute; left:0; top:-1px; color:var(--ink-soft); font-weight:700;}

/* ---------- FAQ ACCORDION ---------- */
.faq{max-width:800px; margin:0 auto;}
.faq-item{border-bottom:1px solid var(--rule);}
.faq-q{width:100%; text-align:left; background:none; border:none; padding:24px 0; font-size:16px; font-weight:700; color:var(--ink); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:20px; font-family:inherit;}
.faq-q .icon{font-family:'Instrument Serif', serif; font-style:italic; font-size:22px; color:var(--wine); transition:transform .2s ease; flex-shrink:0;}
.faq-item.open .faq-q .icon{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease;}
.faq-a p{padding-bottom:24px; font-size:14.5px; color:var(--ink-soft); max-width:680px;}

/* ---------- TESTIMONIAL ---------- */
.t-card{background:var(--mist); border-radius:18px; padding:64px; text-align:center; max-width:800px; margin:0 auto; position:relative;}
.t-card .mark{font-family:'Instrument Serif', serif; font-style:italic; font-size:80px; color:var(--wine); opacity:0.35; line-height:1; margin-bottom:6px;}
.t-card blockquote{font-size:21px; line-height:1.55; color:var(--ink); margin-bottom:22px; font-weight:500;}
.t-card cite{font-style:normal; font-size:13px; letter-spacing:0.05em; text-transform:uppercase; color:var(--ink-soft);}
.stars{color:var(--gold); font-size:14px; letter-spacing:2px; margin:6px 0 2px;}
.t-grid{display:grid; grid-template-columns:1fr 1fr; gap:32px; max-width:1000px; margin:0 auto;}
.t-grid .t-card{
  padding:36px 34px 34px; text-align:left; max-width:none; position:relative;
  border-top:4px solid var(--wine); transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(35,37,59,0.05);
}
.t-grid .t-card:hover{transform:translateY(-6px) rotate(0deg) !important; box-shadow:0 20px 40px rgba(35,37,59,0.14);}
.t-grid .t-card:nth-child(4n+1){border-top-color:var(--wine); transform:rotate(-0.6deg);}
.t-grid .t-card:nth-child(4n+2){border-top-color:var(--teal-accent); transform:rotate(0.5deg);}
.t-grid .t-card:nth-child(4n+3){border-top-color:var(--gold); transform:rotate(0.5deg);}
.t-grid .t-card:nth-child(4n+4){border-top-color:var(--plum); transform:rotate(-0.5deg);}
.t-grid .t-card .mark{display:none;}
.t-card-head{display:flex; align-items:center; gap:14px; margin-bottom:14px;}
.t-avatar{
  width:48px; height:48px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:'Instrument Serif', serif; font-style:italic; font-size:19px; color:#fff;
  background:var(--wine);
}
.t-grid .t-card:nth-child(4n+1) .t-avatar{background:var(--wine);}
.t-grid .t-card:nth-child(4n+2) .t-avatar{background:var(--teal-accent);}
.t-grid .t-card:nth-child(4n+3) .t-avatar{background:var(--gold);}
.t-grid .t-card:nth-child(4n+4) .t-avatar{background:var(--plum);}
.t-grid .t-card .name{font-weight:800; font-size:15.5px; color:var(--ink); line-height:1.3;}
.t-grid .t-card .role{font-size:12.5px; color:var(--ink-soft);}
.t-grid .t-card .stars{margin:0 0 12px;}
.t-grid .t-card blockquote{font-size:14.5px; line-height:1.72; margin-top:0; margin-bottom:0; font-weight:400; color:var(--ink-soft);}
.t-card-big{position:relative; overflow:hidden;}
.t-card-big::before{
  content:"“"; position:absolute; top:-40px; right:20px; font-family:'Instrument Serif', serif; font-style:italic;
  font-size:220px; color:var(--wine); opacity:0.06; line-height:1; pointer-events:none;
}

/* ---------- CTA BAND ---------- */
.cta-band{background:var(--wine); color:var(--cream-text); padding:90px 48px; text-align:center;}
.cta-band .serif{font-size:38px; display:block; max-width:620px; margin:0 auto 32px; line-height:1.35;}
.cta-band .btn-row{justify-content:center;}

/* ---------- FORMS ---------- */
.form-card{background:var(--mist); border-radius:18px; padding:48px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.form-group{margin-bottom:20px;}
.form-group label{display:block; font-size:13px; font-weight:700; margin-bottom:8px; letter-spacing:0.02em;}
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 15px; border:1px solid var(--rule); border-radius:8px;
  background:var(--paper); font-family:inherit; font-size:14.5px; color:var(--ink);
}
.form-group textarea{resize:vertical; min-height:120px;}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{outline:none; border-color:var(--wine);}
.form-note{font-size:13px; color:var(--ink-soft); margin-top:16px;}
.form-status{margin-top:16px; font-size:14px; font-weight:600; display:none;}
.form-status.success{color:#2E6B4F; display:block;}
.form-status.error{color:var(--wine); display:block;}

/* ---------- FOOTER ---------- */
footer.site-footer{background:var(--ink); color:var(--cream-text); padding:72px 48px 40px;}
.footer-inner{
  max-width:1180px; margin:0 auto;
  display:grid; grid-template-columns:1.3fr 0.85fr 0.85fr 0.85fr; gap:40px;
  padding-bottom:48px; border-bottom:1px solid rgba(243,239,230,0.12);
}
.footer-inner img{height:32px; margin-bottom:16px; display:block;}
.footer-inner p{font-size:13.5px; opacity:0.62; max-width:280px; line-height:1.7;}
.footer-brand .socials{display:flex; gap:12px; margin-top:22px;}
.footer-brand .socials a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(243,239,230,0.25);
  display:flex; align-items:center; justify-content:center; text-decoration:none;
  font-size:13px; opacity:0.75;
}
.footer-brand .socials a:hover{opacity:1; border-color:var(--gold);}
.footer-links .col{display:flex; flex-direction:column; gap:12px;}
.footer-links .col span{font-size:11.5px; letter-spacing:0.12em; text-transform:uppercase; opacity:0.5; margin-bottom:6px; color:var(--gold); font-weight:700;}
.footer-links a{font-size:13.5px; text-decoration:none; opacity:0.78;}
.footer-links a:hover{opacity:1;}
.footer-links .btn-ghost{color:var(--cream-text); border-bottom-color:rgba(243,239,230,0.4); align-self:flex-start; margin-top:2px;}
.footer-bottom{max-width:1180px; margin:24px auto 0; font-size:12px; opacity:0.5; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}
.footer-bottom a{text-decoration:none; opacity:0.85;}
.footer-bottom a:hover{opacity:1; color:var(--gold);}
@media (max-width: 900px){
  .footer-inner{grid-template-columns:1fr 1fr; row-gap:36px;}
  .footer-brand{grid-column:1 / -1;}
}

/* ---------- CREDENTIAL CHIPS (About) ---------- */
.chip-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:26px;}
.chip{
  display:flex; align-items:center; gap:8px; padding:9px 16px; border-radius:100px;
  border:1px solid var(--rule); background:var(--paper); font-size:13px; font-weight:600; color:var(--ink);
}
.chip .dot{width:6px; height:6px; border-radius:50%; background:var(--wine);}

/* ---------- SPLIT HERO (About bio) ---------- */
.split-hero{display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center;}
.split-hero .row-media img{border-radius:var(--radius); width:100%; object-fit:cover;}
.split-hero h2{font-family:'Manrope', sans-serif; font-weight:800; font-size:30px; margin-bottom:6px; letter-spacing:-0.01em;}
.split-hero .role-line{font-weight:600; color:var(--wine); font-size:14.5px; margin-bottom:16px;}
.split-hero p{color:var(--ink-soft); font-size:15.5px; margin-bottom:14px;}

/* ---------- RESULTS + SIDEBAR STATS (About) ---------- */
.results-layout{display:grid; grid-template-columns:1.5fr 1fr; gap:48px; align-items:start;}
.results-layout p{color:var(--ink-soft); font-size:15.5px; margin-bottom:16px;}
.stat-sidebar{background:var(--ink); color:var(--cream-text); border-radius:var(--radius); padding:36px 32px;}
.stat-sidebar .item{padding:16px 0; border-bottom:1px solid rgba(243,239,230,0.14);}
.stat-sidebar .item:last-child{border-bottom:none; padding-bottom:0;}
.stat-sidebar .item .n{font-family:'Instrument Serif', serif; font-style:italic; font-size:26px; color:var(--gold);}
.stat-sidebar .item .l{font-size:12.5px; opacity:0.7; margin-top:2px;}

@media (max-width: 900px){
  .split-hero{grid-template-columns:1fr; gap:28px;}
  .results-layout{grid-template-columns:1fr; gap:28px;}
}
@media (max-width: 900px){
  .content-row, .content-row.reverse{grid-template-columns:1fr; gap:28px;}
  .content-row.reverse .row-media{order:0;}
  .dual-list{grid-template-columns:1fr;}
  .t-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}
@media (max-width: 860px){
  .stat-row{grid-template-columns:1fr; gap:24px;}
  .stat-row div{border-left:none; padding-left:0; border-top:1px solid var(--rule); padding-top:20px;}
  .stat-row div:first-child{border-top:none; padding-top:0;}
  .timeline{grid-template-columns:1fr;}
  .timeline::before{display:none;}
  nav.links{
    position:absolute; top:100%; left:0; right:0; background:var(--ink);
    flex-direction:column; align-items:flex-start; gap:0; padding:10px 24px 24px;
    display:none;
  }
  nav.links.open{display:flex;}
  .nav-item{width:100%;}
  .nav-item > a{display:block; padding:14px 0;}
  .nav-item .sub{
    position:static; transform:none; opacity:1; visibility:visible;
    max-height:0; overflow:hidden;
    box-shadow:none; background-color:transparent; background-image:none;
    padding:0; margin:0; border:none; min-width:0; border-radius:0;
  }
  .nav-item.sub-open .sub{max-height:300px; padding:4px 0 14px;}
  .sub a{color:var(--cream-text); opacity:0.75; padding:10px 0; background:none;}
  .sub a:hover{background:none; opacity:1;}
  .cta-pill{margin-top:10px;}
  .nav-toggle{display:block;}
  .t-card{padding:36px 24px;}
  .form-card{padding:28px;}
}

/* ---------- CLIENTS DARK GALLERY (What Clients Say page) ---------- */
.clients-dark{
  background: radial-gradient(ellipse at top left, #241C3D 0%, #150F26 55%, #0F0B1D 100%);
  color:var(--cream-text); padding:100px 48px 110px; position:relative; overflow:hidden;
}
.clients-dark::before{
  content:""; position:absolute; top:-120px; right:-120px; width:420px; height:420px;
  border-radius:50%; background:radial-gradient(circle, rgba(184,147,90,0.16), transparent 70%); pointer-events:none;
}
.clients-dark::after{
  content:""; position:absolute; bottom:-140px; left:-100px; width:380px; height:380px;
  border-radius:50%; background:radial-gradient(circle, rgba(122,46,59,0.22), transparent 70%); pointer-events:none;
}
.clients-dark-inner{max-width:1180px; margin:0 auto; position:relative; z-index:2;}
.clients-dark .section-head h2{color:var(--cream-text);}
.clients-dark .section-head p{color:rgba(243,239,230,0.65);}
.clients-dark .eyebrow{color:var(--gold);}
.clients-dark .eyebrow::before{background:var(--gold);}

.bubble-grid{display:flex; flex-wrap:wrap; justify-content:center; gap:40px 44px; margin-top:56px;}
.t-bubble{width:150px; text-align:center; cursor:pointer; background:none; border:none; font-family:inherit; color:inherit;}
.t-bubble .circle{
  width:104px; height:104px; border-radius:50%; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Instrument Serif', serif; font-style:italic; font-size:30px; color:#fff;
  border:3px solid rgba(243,239,230,0.18);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.t-bubble:nth-child(4n+1) .circle{background:linear-gradient(145deg, var(--wine), var(--wine-deep));}
.t-bubble:nth-child(4n+2) .circle{background:linear-gradient(145deg, #2C584F, #1B3A33);}
.t-bubble:nth-child(4n+3) .circle{background:linear-gradient(145deg, var(--gold), #8C6B39);}
.t-bubble:nth-child(4n+4) .circle{background:linear-gradient(145deg, var(--plum), #402C57);}
.t-bubble:hover .circle, .t-bubble:focus-visible .circle{
  transform:translateY(-8px) scale(1.06); border-color:rgba(243,239,230,0.5);
  box-shadow:0 16px 34px rgba(0,0,0,0.4);
}
.t-bubble .b-name{font-weight:700; font-size:14px;}
.t-bubble .b-role{font-size:11.5px; opacity:0.6; margin-top:2px; line-height:1.4;}
.t-bubble .b-stars{color:var(--gold); font-size:11px; margin-top:6px; letter-spacing:1.5px;}
.bubble-hint{text-align:center; margin-top:44px; font-size:13px; color:rgba(243,239,230,0.5);}

/* ---------- TESTIMONIAL MODAL ---------- */
.t-modal-overlay{
  position:fixed; inset:0; background:rgba(10,8,18,0.7); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; padding:24px;
  z-index:500; opacity:0; visibility:hidden; transition:opacity .22s ease;
}
.t-modal-overlay.open{opacity:1; visibility:visible;}
.t-modal-card{
  background:var(--paper); color:var(--ink); max-width:620px; width:100%; max-height:82vh;
  overflow-y:auto; border-radius:20px; padding:48px; position:relative;
  transform:translateY(24px) scale(0.97); transition:transform .25s ease;
  box-shadow:0 30px 70px rgba(0,0,0,0.45);
}
.t-modal-overlay.open .t-modal-card{transform:translateY(0) scale(1);}
.t-modal-close{
  position:absolute; top:20px; right:20px; width:34px; height:34px; border-radius:50%;
  border:1px solid var(--rule); background:var(--paper); font-size:16px; color:var(--ink-soft);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.t-modal-close:hover{background:var(--mist);}
.t-modal-head{display:flex; align-items:center; gap:16px; margin-bottom:20px; padding-right:30px;}
.t-modal-head .circle{
  width:56px; height:56px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:'Instrument Serif', serif; font-style:italic; font-size:20px; color:#fff;
}
.t-modal-head .name{font-weight:800; font-size:17px;}
.t-modal-head .role{font-size:13px; color:var(--ink-soft);}
.t-modal-stars{color:var(--gold); font-size:13px; letter-spacing:2px; margin-bottom:16px;}
.t-modal-quote{font-size:15.5px; line-height:1.8; color:var(--ink-soft);}

@media (max-width: 640px){
  .bubble-grid{gap:28px 24px;}
  .t-bubble{width:110px;}
  .t-bubble .circle{width:82px; height:82px; font-size:22px;}
  .t-modal-card{padding:32px 24px;}
}

/* ---------- CONTACT LAYOUT ---------- */
.contact-layout{display:grid; grid-template-columns:0.85fr 1.15fr; gap:36px; align-items:start;}
.contact-info{
  background:var(--ink); color:var(--cream-text); border-radius:var(--radius);
  padding:44px 38px; position:sticky; top:100px;
}
.contact-info .eyebrow{color:var(--gold); margin-bottom:16px;}
.contact-info .eyebrow::before{background:var(--gold);}
.contact-info h3{font-family:'Instrument Serif', serif; font-style:italic; font-weight:400; font-size:26px; margin-bottom:14px; line-height:1.3;}
.contact-info > p{font-size:14px; color:rgba(243,239,230,0.68); margin-bottom:32px; line-height:1.65;}
.info-item{display:flex; gap:16px; padding:20px 0; border-top:1px solid rgba(243,239,230,0.14);}
.info-item:first-of-type{border-top:none; padding-top:0;}
.info-item .ico{
  width:40px; height:40px; border-radius:50%; background:rgba(184,147,90,0.16);
  color:var(--gold); display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.info-item .txt .h{font-weight:700; font-size:14px; margin-bottom:3px;}
.info-item .txt .d{font-size:13px; color:rgba(243,239,230,0.62); line-height:1.5;}
.info-item .txt a{color:var(--cream-text); text-decoration:none;}
.info-item .txt a:hover{color:var(--gold);}

.form-card .form-title{font-family:'Manrope', sans-serif; font-weight:800; font-size:20px; margin-bottom:6px;}
.form-card .form-sub{font-size:14px; color:var(--ink-soft); margin-bottom:28px;}
.form-group input, .form-group select, .form-group textarea{
  background:var(--paper); border:1.5px solid var(--rule); transition:border-color .18s ease, box-shadow .18s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  border-color:var(--wine); box-shadow:0 0 0 3px rgba(122,46,59,0.1);
}
#submit-btn{display:inline-flex; align-items:center; gap:10px;}
#submit-btn .arrow{transition:transform .18s ease;}
#submit-btn:hover .arrow{transform:translateX(3px);}

@media (max-width: 900px){
  .contact-layout{grid-template-columns:1fr;}
  .contact-info{position:static;}
}

/* ---------- SHARE YOUR EXPERIENCE (testimonial submission) ---------- */
.share-section{background:#0F0B1D; padding:90px 48px; position:relative;}
.share-card{
  max-width:640px; margin:0 auto; background:rgba(243,239,230,0.04);
  border:1px solid rgba(243,239,230,0.12); border-radius:20px; padding:44px;
  backdrop-filter:blur(6px);
}
.share-card .form-title{color:var(--cream-text); font-family:'Manrope', sans-serif; font-weight:800; font-size:20px; margin-bottom:6px;}
.share-card .form-sub{color:rgba(243,239,230,0.6); font-size:14px; margin-bottom:8px;}
.share-card .form-pending-note{
  font-size:12.5px; color:var(--gold); background:rgba(184,147,90,0.12);
  border:1px solid rgba(184,147,90,0.3); border-radius:8px; padding:10px 14px; margin-bottom:26px;
}
.share-card .form-group label{color:rgba(243,239,230,0.85);}
.share-card .form-group input, .share-card .form-group textarea{
  background:rgba(243,239,230,0.06); border:1.5px solid rgba(243,239,230,0.16); color:var(--cream-text);
}
.share-card .form-group input::placeholder, .share-card .form-group textarea::placeholder{color:rgba(243,239,230,0.35);}
.share-card .form-group input:focus, .share-card .form-group textarea:focus{
  border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,147,90,0.14);
}
.share-card .form-note{color:rgba(243,239,230,0.45);}
.honeypot-field{position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden;}

.star-input{display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:4px;}
.star-input input{position:absolute; opacity:0; width:0; height:0;}
.star-input label{
  font-size:28px; color:rgba(243,239,230,0.2); cursor:pointer; transition:color .15s ease; line-height:1;
}
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label{color:var(--gold);}
.star-input:hover input:checked ~ label{color:rgba(243,239,230,0.2);}

/* ---------- QUAD GRID (4-up feature/philosophy rows) ---------- */
.quad-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:28px;}

/* =========================================================
   MOBILE FIXES — applied across every page
   ========================================================= */

/* Tablet / narrow desktop */
@media (max-width: 900px){
  .quad-grid{grid-template-columns:1fr 1fr; row-gap:32px;}
}

/* Phones */
@media (max-width: 640px){
  /* Reclaim side padding everywhere — 48px was eating a quarter of the screen */
  .nav-inner{padding:14px 20px;}
  .page-hero{padding:56px 20px 40px;}
  section.block{padding:56px 20px;}
  section.block.tight{padding-top:0;}
  .band-dark{padding:56px 20px;}
  .cta-band{padding:56px 20px;}
  .clients-dark{padding:64px 20px 72px;}
  .share-section{padding:56px 20px;}
  footer.site-footer{padding:48px 20px 32px;}
  .pulse-strip{padding:0 20px;}

  /* Headings/quotes sized for desktop, too large on a phone */
  .page-hero h1{font-size:28px; line-height:1.24;}
  .page-hero .lede{font-size:15.5px;}
  .section-head h2{font-size:24px;}
  .band-inner blockquote{font-size:22px;}
  .cta-band .serif{font-size:24px;}
  .split-hero h2{font-size:23px;}
  .content-row h2{font-size:22px;}

  /* Quad grid down to a single column on small phones */
  .quad-grid{grid-template-columns:1fr; gap:24px;}

  /* Card padding was tuned for desktop whitespace, too roomy on mobile */
  .t-card{padding:28px 22px;}
  .t-card-big::before{font-size:120px; top:-16px; right:6px;}
  .contact-info{padding:30px 24px;}
  .form-card{padding:26px 20px;}
  .share-card{padding:28px 20px;}
  .stat-sidebar{padding:26px 22px;}

  /* Buttons — keep full-width tap targets, avoid overflow on long labels */
  .btn-primary, .btn-secondary-on-wine{width:100%; text-align:center; justify-content:center;}
  .btn-row{flex-direction:column; align-items:stretch;}
  .btn-row .btn-ghost{align-self:center;}

  /* Footer down to a single column on small phones */
  .footer-inner{grid-template-columns:1fr; row-gap:32px;}

  /* Bigger, easier-to-tap mobile menu button */
  .nav-toggle{padding:6px; font-size:24px;}
  .logo img{height:30px;}

  /* Modal fits comfortably within a small viewport */
  .t-modal-overlay{padding:14px;}
  .t-modal-card{padding:26px 20px; max-height:88vh;}
  .t-modal-head .circle{width:46px; height:46px; font-size:17px;}

  /* Star rating widget — slightly smaller so five stars don't crowd */
  .star-input label{font-size:24px;}
}

/* ---------- BOOKING WIDGET (Book Intro Call page) ---------- */
.booking-card{
  background:var(--ink); color:var(--cream-text); border-radius:20px;
  display:grid; grid-template-columns:0.85fr 1.15fr; overflow:hidden;
  box-shadow:0 30px 70px rgba(35,37,59,0.16);
  max-width:980px; margin:0 auto;
}
.booking-side{padding:44px 40px; border-right:1px solid rgba(243,239,230,0.12); display:flex; flex-direction:column; justify-content:center;}
.booking-side .coach-mini{display:flex; align-items:center; gap:12px; margin-bottom:26px;}
.booking-side .coach-mini img{width:44px; height:44px; border-radius:50%; object-fit:cover;}
.booking-side .coach-mini span{font-weight:700; font-size:15px;}
.booking-side h2{font-family:'Instrument Serif', serif; font-style:italic; font-weight:400; font-size:26px; margin-bottom:22px; line-height:1.3;}
.booking-meta{list-style:none; margin-bottom:24px;}
.booking-meta li{display:flex; align-items:center; gap:10px; font-size:13.5px; color:rgba(243,239,230,0.75); padding:8px 0;}
.booking-meta li .ico{color:var(--gold); font-size:14px; width:18px; text-align:center; flex-shrink:0;}
.booking-meta li.meta-dynamic{
  border-top:1px dashed rgba(243,239,230,0.16); margin-top:6px; padding-top:14px;
  color:var(--gold); font-weight:600;
}
.booking-meta li.meta-dynamic:nth-of-type(n+2){border-top:none; margin-top:0; padding-top:8px;}
.booking-side p.desc{font-size:13.5px; color:rgba(243,239,230,0.55); line-height:1.7;}

.booking-main{padding:44px 40px; min-height:520px;}
.booking-step{display:none;}
.booking-step.active{display:block; animation:fadeInStep .25s ease;}
@keyframes fadeInStep{from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);}}

.step-progress{display:flex; align-items:center; gap:8px; margin-bottom:28px;}
.step-progress .dot{width:8px; height:8px; border-radius:50%; background:rgba(243,239,230,0.2);}
.step-progress .dot.active{background:var(--gold); width:22px; border-radius:4px;}
.step-progress .lbl{font-size:12px; color:rgba(243,239,230,0.5); margin-left:6px;}

.booking-back{background:none; border:none; color:rgba(243,239,230,0.6); font-size:13px; cursor:pointer; display:inline-flex; align-items:center; gap:6px; margin-bottom:18px; padding:0; font-family:inherit;}
.booking-back:hover{color:var(--gold);}

.cal-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:20px;}
.cal-head .month{font-family:'Instrument Serif', serif; font-style:italic; font-size:19px;}
.cal-head .navbtn{background:rgba(243,239,230,0.08); border:none; color:var(--cream-text); width:30px; height:30px; border-radius:50%; cursor:pointer; font-size:14px;}
.cal-head .navbtn:hover{background:rgba(243,239,230,0.16);}
.cal-head .navbtn:disabled{opacity:0.25; cursor:not-allowed;}
.cal-nav{display:flex; gap:8px;}
.cal-dow{display:grid; grid-template-columns:repeat(7,1fr); text-align:center; font-size:10.5px; letter-spacing:0.06em; color:rgba(243,239,230,0.4); margin-bottom:10px;}
.cal-grid{display:grid; grid-template-columns:repeat(7,1fr); gap:6px;}
.cal-day{
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  border-radius:8px; font-size:13.5px; background:none; border:none; color:var(--cream-text);
  cursor:pointer; font-family:inherit;
}
.cal-day.disabled{color:rgba(243,239,230,0.18); cursor:default;}
.cal-day.empty{visibility:hidden;}
.cal-day.available:hover{background:rgba(184,147,90,0.18);}
.cal-day.selected{background:var(--gold); color:var(--ink); font-weight:700;}
.cal-legend{font-size:12px; color:rgba(243,239,230,0.45); margin-top:18px;}

.slot-date-lbl{font-size:14px; color:rgba(243,239,230,0.7); margin-bottom:18px;}
.slot-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:10px;}
.slot-btn{
  padding:11px 8px; border-radius:8px; border:1px solid rgba(243,239,230,0.18);
  background:rgba(243,239,230,0.04); color:var(--cream-text); font-size:13px;
  cursor:pointer; font-family:inherit; transition:background .15s ease, border-color .15s ease;
}
.slot-btn:hover{border-color:var(--gold);}
.slot-btn.selected{background:var(--gold); color:var(--ink); border-color:var(--gold); font-weight:700;}
.slot-tz{font-size:12px; color:rgba(243,239,230,0.45); margin-top:20px;}

.summary-chip{
  display:inline-flex; align-items:center; gap:8px; background:rgba(184,147,90,0.12);
  border:1px solid rgba(184,147,90,0.3); color:var(--gold); border-radius:100px;
  padding:8px 16px; font-size:13px; font-weight:600; margin-bottom:26px;
}
.booking-form .form-group label{color:rgba(243,239,230,0.85);}
.booking-form .form-group input, .booking-form .form-group select{
  background:rgba(243,239,230,0.06); border:1.5px solid rgba(243,239,230,0.16); color:var(--cream-text);
}
/* The closed <select> looks right with light text on a dark field, but
   the native popup list of options is rendered by the OS/browser with
   its own white background — without this, the light text becomes
   invisible against that white popup. */
.booking-form .form-group select option{
  background:#ffffff; color:var(--ink);
}
.booking-form .form-group input::placeholder{color:rgba(243,239,230,0.35);}
.booking-form .form-group input:focus, .booking-form .form-group select:focus{
  border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,147,90,0.14);
}
.phone-row{display:flex; gap:8px;}
.phone-row .code{
  width:76px; flex-shrink:0; background:rgba(243,239,230,0.06); border:1.5px solid rgba(243,239,230,0.16);
  border-radius:8px; color:var(--cream-text); font-size:14.5px; padding:13px 10px; text-align:center;
}
.field-note{font-size:11.5px; color:rgba(184,147,90,0.85); margin-top:6px;}
.booking-form .form-note{color:rgba(243,239,230,0.45);}

@media (max-width: 900px){
  .booking-card{grid-template-columns:1fr;}
  .booking-side{border-right:none; border-bottom:1px solid rgba(243,239,230,0.12);}
}
@media (max-width: 640px){
  .booking-side, .booking-main{padding:28px 22px;}
  .slot-grid{grid-template-columns:repeat(2,1fr);}
}

/* =========================================================
   COACH DASHBOARD (private, dashboard.php)
   ========================================================= */
.dash-body{background:var(--mist);}
.dash-header{background:var(--ink); color:var(--cream-text); padding:20px 32px;}
.dash-header-inner{max-width:1000px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;}
.dash-logo{font-family:'Manrope', sans-serif; font-weight:800; font-size:18px;}
.dash-logo span{color:var(--wine);}
.dash-tag{font-family:'Manrope', sans-serif; font-weight:600; font-size:12px; color:var(--gold); background:rgba(184,147,90,0.14); padding:4px 10px; border-radius:100px; margin-left:8px;}
.dash-logout{color:rgba(243,239,230,0.7); text-decoration:none; font-size:13.5px;}
.dash-logout:hover{color:var(--cream-text);}

.dash-main{max-width:1000px; margin:0 auto; padding:36px 32px 80px;}

.dash-tabs{display:flex; gap:8px; margin-bottom:28px; flex-wrap:wrap;}
.dash-tab{
  background:var(--paper); border:1px solid var(--rule); color:var(--ink-soft);
  padding:11px 20px; border-radius:100px; font-size:13.5px; font-weight:600;
  cursor:pointer; font-family:inherit; display:flex; align-items:center; gap:8px;
}
.dash-tab.active{background:var(--ink); color:var(--cream-text); border-color:var(--ink);}
.dash-badge{background:var(--wine); color:#fff; font-size:11px; font-weight:700; padding:2px 7px; border-radius:100px;}
.dash-tab.active .dash-badge{background:var(--gold); color:var(--ink);}

.dash-panel{display:none;}
.dash-panel.active{display:block;}
.dash-empty{background:var(--paper); border:1px dashed var(--rule); border-radius:12px; padding:36px; text-align:center; color:var(--ink-soft); font-size:14px;}

.dash-subtabs{display:flex; gap:6px; margin-bottom:20px;}
.dash-subtab{
  background:transparent; border:1px solid var(--rule); color:var(--ink-soft);
  padding:7px 16px; border-radius:100px; font-size:12.5px; font-weight:600;
  cursor:pointer; font-family:inherit;
}
.dash-subtab.active{background:var(--ink-soft); color:var(--cream-text); border-color:var(--ink-soft);}
.dash-subpanel{display:none;}
.dash-subpanel.active{display:block;}

.dash-list{display:flex; flex-direction:column; gap:16px;}
.dash-card{background:var(--paper); border-radius:14px; padding:24px 26px; box-shadow:0 6px 20px rgba(35,37,59,0.05);}
.dash-card-top{display:flex; justify-content:space-between; align-items:flex-start; gap:16px; margin-bottom:14px;}
.dash-card-name{font-weight:800; font-size:16px; color:var(--ink);}
.dash-card-sub{font-size:13px; color:var(--ink-soft); margin-top:2px;}

.dash-status{
  font-size:11.5px; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
  padding:5px 12px; border-radius:100px; white-space:nowrap; flex-shrink:0;
  background:var(--mist); color:var(--ink-soft);
}
.dash-status-pending-confirmation{background:rgba(184,147,90,0.16); color:#8C6B39;}
.dash-status-confirmed{background:rgba(44,88,79,0.14); color:#2C584F;}
.dash-status-declined{background:rgba(122,46,59,0.1); color:var(--wine);}

.dash-stars{color:var(--gold); font-size:14px; letter-spacing:2px; flex-shrink:0;}

.dash-card-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:16px; padding-top:14px; border-top:1px solid var(--rule);}
.dash-card-grid .l{display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.04em; color:var(--ink-soft); opacity:0.7; margin-bottom:4px;}
.dash-card-grid .v{display:block; font-size:13.5px; color:var(--ink); font-weight:600;}

.dash-quote{font-size:14px; color:var(--ink-soft); line-height:1.7; margin-bottom:16px; padding-top:2px;}

.dash-actions{display:flex; gap:10px;}
.dash-btn{
  border:none; border-radius:8px; padding:10px 18px; font-size:13px; font-weight:700;
  cursor:pointer; font-family:inherit;
}
.dash-btn-confirm{background:var(--ink); color:var(--cream-text);}
.dash-btn-confirm:hover{background:#33354f;}
.dash-btn-decline{background:var(--mist); color:var(--ink-soft); border:1px solid var(--rule);}
.dash-btn-decline:hover{background:#e4e1d6;}
.dash-btn:disabled{opacity:0.6; cursor:default;}

@media (max-width: 640px){
  .dash-header{padding:16px 20px;}
  .dash-main{padding:28px 20px 60px;}
  .dash-card{padding:20px;}
  .dash-card-grid{grid-template-columns:1fr 1fr;}
  .dash-tabs{gap:6px;}
  .dash-tab{padding:9px 14px; font-size:12.5px;}
}

/* ---------- ENGAGE CARDS (Why Clients Engage, Home page) ---------- */
.engage-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:8px;}
.engage-card{
  background:var(--paper); border:1px solid var(--rule); border-radius:16px;
  padding:34px 24px; text-align:center;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.engage-card:hover{transform:translateY(-6px); box-shadow:0 20px 40px rgba(35,37,59,0.1); border-color:transparent;}
.engage-icon{
  width:56px; height:56px; border-radius:50%; background:rgba(122,46,59,0.08);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px; color:var(--wine);
}
.engage-icon svg{width:26px; height:26px;}
.engage-card p{font-size:15px; font-weight:600; color:var(--ink); line-height:1.5;}

@media (max-width: 900px){
  .engage-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 640px){
  .engage-grid{grid-template-columns:1fr; gap:16px;}
  .engage-card{padding:28px 22px;}
}



