/* ============================================================
   PRIMETIME ERIC — Ghost Theme
   Palette v3 (Eric, 2026-06-13): Teal blue / Dark grey / Light grey
   Brand teal #23CDE9 (fills, bars, buttons, accents); dark grey #2B2B2B
   for ALL text incl. links/labels/eyebrows. Taupe AND deep teal removed
   (v3.1 — standardized on the private/landing look).
   Type: Montserrat display + Inter body
   ============================================================ */

:root{
  /* Teal blue — brand */
  --cyan:#23CDE9;       /* bright brand teal — fills, bars, accents */
  --link:#10323A;       /* deep teal — the one link color, used everywhere */
  --teal:#10323A;       /* deep teal — dark anchor: footer (per branding guide) */
  --azure:#2B2B2B;      /* deepened teal — readable links / labels on light */
  --azure-deep:#2B2B2B; /* link hover */
  --azure-soft:#23CDE9; /* on-dark accents, hover borders */
  --azure-pale:#E4F8FC; /* pale teal tint */
  --azure-tint:rgba(35,205,233,.08);

  /* Teal accents (was taupe) */
  --taupe:#2B2B2B;
  --taupe-lt:#E4F8FC;
  --taupe-dk:#2B2B2B;

  /* Grey scale */
  --ink:#2B2B2B;        /* dark grey — body text */
  --ink-2:#2B2B2B;      /* neutral dark grey */
  --grey-700:#5F6368;
  --grey-500:#5F6368;
  --grey-400:#5F6368;
  --grey-300:#D6D9DD;
  --grey-200:#ECEAE5;
  --grey-100:#ECEAE5;

  /* Light grey / paper */
  --paper:#ECEAE5;
  --paper-2:#ECEAE5;
  --white:#FFFFFF;

  --pride:linear-gradient(to right,#C84D4D,#D08540,#D0B23E 38%,#5FA052 55%,#4577B0 75%,#6F4F95);
  --shadow:0 20px 50px -28px rgba(43,43,43,.30);
  --shadow-sm:0 10px 24px -14px rgba(43,43,43,.26);
  --radius:12px;
  --maxw:1180px;
  --readw:720px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto;}}

body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:1.125rem;
  line-height:1.72;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  display:flex;flex-direction:column;min-height:100vh;
}

h1,h2,h3,h4,h5,h6{font-family:'Montserrat','Inter',sans-serif;
  color:var(--ink);line-height:1.14;font-weight:700;letter-spacing:-.022em;}
a{color:var(--link);text-decoration:none;}
a:hover{color:var(--cyan);}
img{max-width:100%;display:block;}

.topline{height:3px;background:var(--cyan);}

.skip-link{position:absolute;left:-999px;top:8px;background:var(--azure);color:#fff;
  padding:10px 16px;border-radius:6px;z-index:200;font-weight:600;}
.skip-link:focus{left:16px;}

:focus-visible{outline:3px solid var(--azure);outline-offset:3px;}

.inner{max-width:var(--maxw);margin:0 auto;padding:0 28px;width:100%;}
.inner-narrow{max-width:var(--readw);margin-left:auto;margin-right:auto;
  padding-left:28px;padding-right:28px;width:100%;}

.site-main{flex:1 0 auto;}

/* ---- Eyebrow ---- */
.eyebrow{
  display:inline-flex;align-items:center;gap:11px;
  font-size:.78rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--taupe-dk);margin-bottom:16px;
}
.eyebrow::before{content:"";width:26px;height:1.5px;background:var(--cyan);border-radius:2px;}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Inter',sans-serif;font-size:1rem;font-weight:600;
  padding:.95rem 1.7rem;border-radius:8px;border:1.5px solid transparent;
  cursor:pointer;text-decoration:none;line-height:1.1;letter-spacing:-.005em;
  transition:transform .15s ease,background .2s ease,box-shadow .2s ease,border-color .2s ease,color .2s ease;
}
.btn-azure{background:var(--cyan);color:#10323A;
  box-shadow:0 8px 18px -10px rgba(35,205,233,.55);}
.btn-azure:hover{background:#23CDE9;color:#10323A;transform:translateY(-2px);
  box-shadow:0 14px 26px -12px rgba(35,205,233,.6);}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--grey-300);}
.btn-ghost:hover{border-color:var(--azure);color:var(--azure);}
.btn-sm{padding:.6rem 1.15rem;font-size:.92rem;}

/* ============================ HEADER ========================= */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--paper);
  border-bottom:1px solid var(--grey-300);
}
.site-header-inner{display:flex;align-items:center;justify-content:space-between;
  gap:18px;padding:10px 28px;}
.site-brand{display:inline-flex;flex-direction:column;align-items:flex-start;
  text-decoration:none;line-height:1;}
.brand-word{font-family:'Inter',sans-serif;font-weight:700;font-size:1.34rem;
  color:var(--ink);letter-spacing:-.02em;}
.brand-word em{font-family:'Montserrat',sans-serif;font-weight:700;color:var(--azure);
  font-weight:600;}
.pride-bar{display:block;width:36px;height:3px;border-radius:2px;background:var(--pride);
  margin-top:7px;opacity:.85;}
.site-nav{display:flex;align-items:center;gap:26px;margin-left:auto;}
.nav-item{color:var(--link);font-weight:500;font-size:.98rem;}
.nav-item:hover{color:var(--cyan);}
.nav-item-current{color:var(--cyan);}
.site-header-cta{display:flex;align-items:center;gap:10px;}

/* ============================ HERO =========================== */
.page-hero{
  background:
    radial-gradient(720px 420px at 80% -20%, var(--azure-pale) 0%, rgba(228,248,252,0) 64%),
    var(--paper);
  padding:84px 0 64px;text-align:center;
  border-bottom:1px solid var(--grey-200);
}
.page-hero-title{font-size:clamp(2rem,4.4vw,3.1rem);font-weight:300;max-width:34ch;margin:0 auto;}
.page-hero-sub{margin:20px auto 0;font-size:1.16rem;color:var(--grey-500);max-width:56ch;}

/* ========================= POST FEED ========================= */
.post-feed{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  padding:72px 0 24px;
}
.post-card{
  background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);
  overflow:hidden;transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.post-card:hover{border-color:var(--azure-soft);transform:translateY(-4px);
  box-shadow:var(--shadow-sm);}
.post-card-link{display:flex;flex-direction:column;height:100%;color:inherit;}
.post-card-image{aspect-ratio:16/9;overflow:hidden;background:var(--grey-100);}
.post-card-image img{width:100%;height:100%;object-fit:cover;}
.post-card-image-empty{display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg,var(--paper-2),var(--azure-pale));}
.post-card-image-empty svg{width:56px;height:56px;opacity:.55;}

/* ---- Pillar placeholder icons (context-aware) ----
   Default: show the icon for the post's primary tag (class primary-{slug}
   on the empty box); barbell is the fallback for non-pillar/untagged posts.
   On a pillar tag page (body.tag-{slug}) the page's pillar icon wins,
   so a multi-pillar post shows the icon of the pillar you're browsing. */
.post-card-image-empty .pillar-icon{display:none;}
.post-card-image-empty .pillar-icon--default{display:block;}
.post-card-image-empty.primary-move .pillar-icon--default{display:none;}
.post-card-image-empty.primary-move .pillar-icon--move{display:block;}
.post-card-image-empty.primary-mind .pillar-icon--default{display:none;}
.post-card-image-empty.primary-mind .pillar-icon--mind{display:block;}
.post-card-image-empty.primary-belong .pillar-icon--default{display:none;}
.post-card-image-empty.primary-belong .pillar-icon--belong{display:block;}
.post-card-image-empty.primary-nourish .pillar-icon--default{display:none;}
.post-card-image-empty.primary-nourish .pillar-icon--nourish{display:block;}
/* tag-page overrides — must come after the primary-tag rules */
.tag-move .post-card-image-empty .pillar-icon{display:none;}
.tag-move .post-card-image-empty .pillar-icon--move{display:block;}
.tag-mind .post-card-image-empty .pillar-icon{display:none;}
.tag-mind .post-card-image-empty .pillar-icon--mind{display:block;}
.tag-belong .post-card-image-empty .pillar-icon{display:none;}
.tag-belong .post-card-image-empty .pillar-icon--belong{display:block;}
.tag-nourish .post-card-image-empty .pillar-icon{display:none;}
.tag-nourish .post-card-image-empty .pillar-icon--nourish{display:block;}
.post-card-body{padding:26px 26px 28px;display:flex;flex-direction:column;flex:1;}
.post-card-tag{font-size:.74rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--azure);margin-bottom:11px;}
.post-card-title{font-size:1.34rem;color:var(--ink);margin-bottom:10px;}
.post-card-excerpt{color:var(--grey-500);font-size:1rem;flex:1;}
.post-card-meta{display:flex;gap:14px;align-items:center;margin-top:18px;
  padding-top:16px;border-top:1px solid var(--grey-100);
  font-size:.86rem;color:var(--grey-400);}
.post-card-meta time{color:var(--grey-400);}

/* ---- Empty state ---- */
.empty-state{text-align:center;padding:72px 0;}
.empty-state h2{font-size:1.7rem;margin-bottom:10px;}
.empty-state p{color:var(--grey-500);margin-bottom:24px;}

/* ---- Pagination ---- */
.pagination{
  display:flex;align-items:center;justify-content:center;gap:20px;
  padding:30px 0 80px;
}
.pagination a{
  display:inline-flex;align-items:center;
  border:1.5px solid var(--grey-300);border-radius:8px;
  padding:.6rem 1.2rem;font-size:.95rem;font-weight:600;color:var(--ink);
  transition:border-color .2s ease,color .2s ease;
}
.pagination a:hover{border-color:var(--azure);color:var(--azure);}
.pagination .page-number{color:var(--grey-400);font-size:.92rem;}

/* ============================ POST =========================== */
.post{padding-bottom:40px;}
.post-header{padding:72px 0 30px;text-align:center;}
.post-tag{display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--azure);margin-bottom:16px;}
.post-title{font-size:clamp(2.1rem,4.4vw,3.15rem);color:var(--ink);}
.post-lead{margin-top:18px;font-size:1.22rem;color:var(--grey-500);}
.post-meta{display:flex;align-items:center;justify-content:center;gap:10px;
  flex-wrap:wrap;margin-top:22px;font-size:.92rem;color:var(--grey-400);}
.post-meta-author{color:var(--ink);font-weight:600;}
.post-meta-dot{color:var(--grey-300);}

.post-feature{margin:18px auto 8px;max-width:1000px;padding:0 28px;}
.post-feature img{width:100%;border-radius:14px;border:1px solid var(--grey-200);
  box-shadow:var(--shadow);}
.post-feature figcaption{text-align:center;font-size:.9rem;color:var(--grey-400);
  margin-top:12px;}

/* ---- Post content typography ---- */
.post-content{padding-top:44px;padding-bottom:44px;font-size:1.15rem;line-height:1.78;}
.post-content > * + *{margin-top:1.5em;}
.post-content p{color:var(--ink-2);}
.post-content h2{font-size:1.85rem;margin-top:1.9em;color:var(--ink);}
.post-content h3{font-size:1.42rem;margin-top:1.7em;color:var(--ink);}
.post-content h4{font-size:1.18rem;margin-top:1.5em;color:var(--ink);}
.post-content a{color:var(--link);text-decoration:underline;
  text-underline-offset:3px;text-decoration-color:rgba(35,205,233,.55);}
.post-content a:hover{color:var(--cyan);text-decoration-color:var(--cyan);}
.post-content ul,.post-content ol{padding-left:1.4em;}
.post-content li{margin-top:.5em;color:var(--ink-2);}
.post-content li::marker{color:var(--cyan);}
.post-content strong{color:var(--ink);}
.post-content blockquote{
  border-left:3px solid var(--cyan);padding:4px 0 4px 26px;
  font-family:'Inter',sans-serif;font-size:1.28rem;font-style:italic;
  color:var(--ink-2);
}
.post-content hr{border:none;height:1px;background:var(--grey-200);margin:2.6em 0;}
.post-content img{border-radius:12px;border:1px solid var(--grey-200);}
.post-content figure{margin-top:1.8em;}
.post-content figcaption{text-align:center;font-size:.9rem;color:var(--grey-400);
  margin-top:10px;}
.post-content code{
  background:var(--grey-100);border:1px solid var(--grey-200);border-radius:5px;
  padding:.12em .4em;font-size:.9em;color:var(--azure-deep);
  font-family:'SFMono-Regular',Menlo,Consolas,monospace;
}
.post-content pre{
  background:var(--ink);border:1px solid var(--ink-2);border-radius:12px;
  padding:20px 22px;overflow-x:auto;font-size:.95rem;line-height:1.6;
}
.post-content pre code{background:none;border:none;padding:0;color:var(--paper-2);}
.post-content table{width:100%;border-collapse:collapse;font-size:1rem;}
.post-content th,.post-content td{border:1px solid var(--grey-200);padding:10px 14px;
  text-align:left;}
.post-content th{background:var(--grey-100);color:var(--ink);}

/* Koenig width utilities (card_assets handles card internals) */
.post-content :is(.kg-width-wide){
  max-width:1000px;margin-left:calc((720px - 1000px)/2);
  margin-right:calc((720px - 1000px)/2);
}
.post-content :is(.kg-width-full){
  max-width:100vw;
  margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);
}
.post-content .kg-callout-card{border-radius:12px;}
.post-content .kg-bookmark-card a{text-decoration:none;}

/* ---- Post footer ---- */
.post-footer{padding-top:8px;padding-bottom:8px;}
.post-tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:36px;}
.pill{
  background:var(--white);border:1px solid var(--grey-200);border-radius:30px;
  padding:7px 15px;font-size:.86rem;font-weight:600;color:var(--ink-2);
}
.pill:hover{border-color:var(--azure);color:var(--azure);}
.post-cta{
  background:var(--white);border:1px solid var(--grey-200);border-radius:16px;
  padding:38px 34px;text-align:center;position:relative;box-shadow:var(--shadow-sm);
}
.post-cta::before{
  content:"";position:absolute;left:0;right:0;top:0;height:3px;border-radius:16px 16px 0 0;
  background:linear-gradient(90deg,var(--cyan),#23CDE9,var(--azure-soft));
}
.post-cta h3{font-size:1.5rem;margin-bottom:8px;}
.post-cta p{color:var(--grey-500);margin-bottom:22px;}

.post-comments{padding-top:44px;}

/* ============================ ERROR ========================== */
.error-page{
  background:
    radial-gradient(620px 360px at 50% -10%, var(--azure-pale) 0%, rgba(228,248,252,0) 62%),
    var(--paper);
  text-align:center;padding:120px 0;
}
.error-page .eyebrow{justify-content:center;}
.error-page .eyebrow::before{display:none;}
.error-title{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:14px;}
.error-text{color:var(--grey-500);max-width:46ch;margin:0 auto 28px;}

/* =========================== FOOTER ========================== */
.site-footer{
  flex-shrink:0;background:var(--teal);color:rgba(255,255,255,.7);
  border-top:none;padding:64px 0 28px;margin-top:40px;
}
.site-footer a{color:rgba(255,255,255,.85);}
.site-footer a:hover{color:var(--white);}
.site-footer-inner{display:grid;grid-template-columns:1.3fr 1.2fr 1fr;gap:44px;
  align-items:start;}
.site-footer .brand-word{color:var(--white);}
.site-footer .brand-word em{color:var(--azure-soft);}
.site-footer-brand p{margin-top:16px;color:rgba(255,255,255,.7);font-size:.98rem;
  max-width:38ch;}
.site-footer-nav{display:flex;flex-direction:column;gap:10px;}
.site-footer-nav .nav-item{font-size:.98rem;color:rgba(255,255,255,.85);}
.site-footer-nav .nav-item:hover{color:var(--white);}
.site-footer-cta{
  background:var(--ink-2);border:1px solid var(--grey-700);border-radius:14px;
  padding:24px 24px;
}
.site-footer-cta p{color:rgba(255,255,255,.75);font-size:.98rem;margin-bottom:16px;}
.site-footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  margin-top:48px;padding-top:22px;border-top:1px solid rgba(255,255,255,.14);
  font-size:.86rem;color:rgba(255,255,255,.55);
}
.site-footer-credit{
  text-align:center;margin-top:14px;font-size:.86rem;color:rgba(255,255,255,.55);
}
.site-footer-credit a{color:var(--azure-soft);font-weight:500;}
.site-footer-credit a:hover{color:var(--white);}

/* ========================= RESPONSIVE ======================== */
@media (max-width:920px){
  .post-feed{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:680px){
  body{font-size:1.06rem;}
  .site-nav{display:none;}
  .post-feed{grid-template-columns:1fr;padding-top:48px;}
  .page-hero{padding:60px 0 48px;}
  .post-header{padding:48px 0 24px;}
  .post-content{font-size:1.08rem;}
  .post-content :is(.kg-width-wide){max-width:100%;margin-left:0;margin-right:0;}
  .site-footer-inner{grid-template-columns:1fr;gap:30px;}
  .site-header-cta .btn-ghost{display:none;}
}


/* ---- v2 boxed wordmark (Eric's logo sheet) ---- */
.logobox{display:inline-flex;align-items:stretch;border:2px solid var(--ink);
  padding:3px;background:var(--white);text-decoration:none;line-height:1;}
.logobox .pt{background:var(--ink);color:#fff;font-family:'Montserrat',sans-serif;
  font-weight:400;font-size:.78rem;letter-spacing:.32em;padding:8px 12px 8px 15px;
  display:flex;align-items:center;}
.logobox .er{font-family:'Montserrat',sans-serif;font-weight:700;font-size:.78rem;
  letter-spacing:.14em;color:var(--taupe);padding:8px 12px;display:flex;align-items:center;}
.logo-stack{display:inline-flex;flex-direction:column;align-items:stretch;}
.logo-stack .pride-bar{display:block;width:100%;align-self:stretch;height:3px;margin-top:5px;border-radius:2px;background:var(--pride);opacity:1;}
/* Larger header logo — fill the header height */
.site-header .logobox .pt,.site-header .logobox .er{font-size:1rem;padding-top:12px;padding-bottom:12px;}
.site-header .logobox .pt{padding-left:18px;padding-right:14px;}
.site-header .logobox .er{padding-left:16px;padding-right:16px;}
@media(max-width:760px){
  .site-header-inner{justify-content:center;}
  .site-header .nav-burger{position:absolute;right:28px;top:50%;transform:translateY(-50%);margin:0;}
  .site-header .logobox .pt,.site-header .logobox .er{font-size:clamp(1.05rem,4.8vw,1.9rem);padding-top:16px;padding-bottom:16px;}
  .site-header .logobox .pt{letter-spacing:.3em;padding-left:22px;}
}
/* Footer logo — inverted white so it pops on the deep-teal footer */
.site-footer .logobox{border-color:rgba(255,255,255,.85);background:transparent;}
.site-footer .logobox .pt{background:#fff;color:var(--teal);}
.site-footer .logobox .er{color:#fff;}

/* ---- Proudly Canadian footer line ---- */
.site-footer-canada{display:flex;align-items:center;justify-content:center;gap:9px;
  margin-top:18px;font-size:.88rem;font-weight:600;color:rgba(255,255,255,.8);}
.site-footer-canada .flag{width:26px;height:13px;border-radius:2px;}

/* ---- Footer v3.3: 3 columns (brand+social | Explore | Newsletter) + bottom bar ---- */
.footer-brand-row{display:flex;align-items:center;gap:0;}
.footer-ig{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;
  border-radius:50%;flex:none;color:rgba(255,255,255,.85);border:1px solid rgba(255,255,255,.28);
  text-decoration:none;transition:color .2s,border-color .2s;margin-left:auto;margin-right:auto;}
.footer-ig:hover{color:var(--cyan);border-color:var(--cyan);}
.footer-ig svg{width:20px;height:20px;}
.footer-tagline{margin-top:18px;color:rgba(255,255,255,.72);font-size:1rem;line-height:1.6;max-width:42ch;}
.footer-head{font-family:'Inter',sans-serif;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--white);font-weight:700;margin-bottom:14px;}
.site-footer-col{display:flex;flex-direction:column;gap:6px;}
.site-footer-col a{font-size:1rem;line-height:1.6;color:rgba(255,255,255,.72);}
.site-footer-col a:hover{color:var(--white);}
/* Explore column — right side, right-aligned */
.footer-explore{align-items:flex-end;text-align:right;}
/* Newsletter — middle column, centered */
.footer-news-center{display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;}
.footer-news-center .footer-head{margin-bottom:0;}
.footer-news-center p{color:rgba(255,255,255,.72);font-size:1rem;line-height:1.6;max-width:34ch;margin:0;}
/* Bottom: copyright left · Proudly Canadian center · Softseas right */
.footer-bottom-bar{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px 22px;
  margin-top:46px;padding-top:22px;border-top:1px solid rgba(255,255,255,.14);
  font-size:.86rem;color:rgba(255,255,255,.6);}
.footer-bottom-bar > :first-child{justify-self:start;text-align:left;}
.footer-bottom-bar > .footer-canada{justify-self:center;}
.footer-bottom-bar > .footer-credit-line{justify-self:end;text-align:right;}
.footer-credit-line{font-size:.86rem;color:rgba(255,255,255,.6);}
.footer-credit-line a{color:var(--azure-soft);font-weight:500;}
.footer-credit-line a:hover{color:var(--white);}
.footer-canada{display:inline-flex;align-items:center;gap:8px;font-weight:600;color:rgba(255,255,255,.78);}
.footer-canada .flag{width:24px;height:12px;border-radius:2px;}
.footer-affiliate{text-align:center;color:rgba(255,255,255,.55);font-size:.84rem;margin:18px auto 0;max-width:72ch;}
.pride-underline{background:linear-gradient(90deg,#E40303,#FF8C00,#FFED00,#008026,#24408E,#732982) left bottom/100% 2px no-repeat;padding-bottom:3px;}
@media(max-width:880px){
  .site-footer-inner{grid-template-columns:1fr;gap:32px;}
  .site-footer-brand{display:flex;flex-direction:column;align-items:center;text-align:center;}
  .footer-brand-row{justify-content:center;gap:16px;}
  .footer-brand-row .footer-ig{margin-left:0;margin-right:0;}
  .footer-tagline{margin-left:auto;margin-right:auto;}
  .footer-explore{align-items:center;text-align:center;}
}
@media(max-width:680px){
  .footer-bottom-bar{grid-template-columns:1fr;gap:12px;justify-items:center;}
  .footer-bottom-bar > :first-child,
  .footer-bottom-bar > .footer-canada,
  .footer-bottom-bar > .footer-credit-line{justify-self:center;text-align:center;}
}

/* ---- Coaching tier cards (page content; theme-owned styling) ---- */
.pte-tiers{display:flex;flex-direction:column;gap:18px;margin:28px 0 18px;}
.pte-tier{display:flex;align-items:center;justify-content:space-between;gap:24px;
  background:var(--white);border:1px solid var(--grey-200);border-left:4px solid var(--cyan);
  border-radius:14px;padding:24px 28px;}
.pte-tier h3{margin:0 0 6px;font-size:1.18rem;color:var(--ink);}
.pte-tier p{margin:0;color:var(--grey-500);font-size:.98rem;}
.pte-tier .pte-btn{flex:none;display:inline-block;padding:10px 22px;border-radius:999px;
  border:1.5px solid var(--ink);color:var(--ink);font-weight:600;font-size:.95rem;
  text-decoration:none;white-space:nowrap;transition:background .15s ease,color .15s ease;}
.pte-tier .pte-btn:hover{background:var(--cyan);color:#10323A;border-color:var(--cyan);}
.pte-tier-note{color:var(--grey-400);font-size:.9rem;text-align:center;margin-top:22px;}
@media(max-width:560px){.pte-tier{flex-direction:column;align-items:flex-start;}}

/* Coaching tier — !important so the theme overrides any leftover inline azure
   card still embedded in the /coaching/ page content (MCP can't strip it). */
.pte-tier{background:var(--white)!important;border:1px solid var(--grey-200)!important;border-left:4px solid var(--cyan)!important;}
.pte-tier h3{color:var(--ink)!important;}
.pte-tier p{color:var(--grey-500)!important;}
.pte-tier .pte-btn{border:1.5px solid var(--ink)!important;color:var(--ink)!important;}
.pte-tier .pte-btn:hover{background:var(--cyan)!important;color:#10323A!important;border-color:var(--cyan)!important;}
.pte-tier-note{color:var(--grey-400)!important;}


/* Coaching page: booking links rendered as cyan buttons (content is plain blocks, theme-owned) */
.post-content a[href*="cal.com"]{display:inline-block;margin-top:4px;border:1.5px solid var(--ink);
  color:var(--ink);border-radius:999px;padding:9px 22px;font-weight:600;font-size:.95rem;
  text-decoration:none;transition:background .15s ease,color .15s ease,border-color .15s ease;}
.post-content a[href*="cal.com"]:hover{background:var(--cyan);color:#10323A;border-color:var(--cyan);}

/* "Book a Session" nav item (links to /coaching/) -> cyan button, matching the landing nav */
.site-nav .nav-item[href*="/coaching"]{background:var(--cyan);color:#10323A;border-radius:999px;
  padding:8px 18px;font-weight:600;line-height:1;}
.site-nav .nav-item[href*="/coaching"]:hover{background:#23CDE9;color:#10323A;}

/* Coaching page — photo of Eric left, three booking cards right (page-coaching.hbs) */
.coaching-page{padding:60px 0 80px;}
.coaching-grid{display:grid;grid-template-columns:0.82fr 1.18fr;gap:52px;align-items:start;}
.coaching-photo{position:sticky;top:96px;}
.coaching-photo img{width:100%;height:auto;border-radius:16px;border:1px solid var(--grey-200);box-shadow:var(--shadow);display:block;}
.coaching-cap{margin:14px auto 0;font-size:.95rem;color:var(--grey-500);text-align:center;max-width:34ch;}
.coaching-cap strong{color:var(--ink);}
.coaching-col h1{font-size:clamp(1.9rem,3.4vw,2.6rem);margin:0 0 12px;}
.coaching-lede{color:var(--grey-500);font-size:1.08rem;margin-bottom:26px;}
@media(max-width:880px){
  .coaching-grid{grid-template-columns:1fr;gap:32px;}
  .coaching-photo{position:static;max-width:420px;margin:0 auto;}
}
/* Coaching — inline Cal.com booking embeds */
.booking-list{display:flex;flex-direction:column;gap:48px;margin-top:64px;}
.booking-head h2{font-size:1.4rem;margin:0 0 6px;color:var(--ink);}
.booking-head p{color:var(--grey-500);margin:0 0 18px;max-width:62ch;}
.cal-embed{width:100%;min-height:600px;border:1px solid var(--grey-300);border-radius:16px;
  background:var(--white);overflow:hidden;}
@media(max-width:880px){.cal-embed{min-height:680px;}}

/* Products / recommended-gear page (page-products.hbs) */
.products-page{padding:60px 0 80px;}
.products-intro{color:var(--grey-500);font-size:1.08rem;margin:8px 0 32px;max-width:60ch;}
.product-list{display:flex;flex-direction:column;gap:20px;}
.product-card{background:var(--white);border:1px solid var(--grey-200);border-left:4px solid var(--cyan);border-radius:14px;padding:24px 28px;box-shadow:var(--shadow);}
.product-tag{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--ink);margin-bottom:8px;}
.product-card h3{font-size:1.28rem;margin:0 0 8px;color:var(--ink);}
.product-card p{color:var(--grey-500);margin:0 0 18px;}
.product-btn{display:inline-block;background:var(--cyan);color:#10323A;border-radius:999px;padding:10px 22px;font-weight:600;font-size:.95rem;text-decoration:none;}
.product-btn:hover{background:#23CDE9;}
.product-meta{font-size:.86rem;color:var(--grey-500);font-weight:600;margin:0 0 12px;letter-spacing:.01em;}
.products-affiliate{text-align:center;color:var(--grey-500);font-size:.9rem;margin:40px auto 0;max-width:64ch;
  border-top:1px solid var(--grey-200);padding-top:22px;}

/* ============ Header nav: logo left · links centered · CTAs right (v3.4) ============ */
.nav-burger{display:none;}
.site-nav{flex:1 1 auto;display:flex;align-items:center;gap:0;margin-left:0;}
.nav-links{display:flex;align-items:center;gap:30px;margin:0 auto;}
.nav-cta{display:flex;align-items:center;gap:12px;}
.site-nav .btn{padding:.65rem 1.25rem;font-size:.95rem;}

@media(max-width:820px){
  .site-header-inner{position:relative;flex-wrap:wrap;}
  .nav-burger{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
    width:46px;height:42px;margin-left:auto;cursor:pointer;
    border:1px solid var(--grey-200);border-radius:10px;background:var(--white);}
  .nav-burger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:transform .2s,opacity .2s;}
  /* dropdown panel */
  .site-nav{
    display:none;position:absolute;top:calc(100% + 1px);left:0;right:0;width:100%;flex:none;
    flex-direction:column;align-items:stretch;gap:0;margin:0;
    background:var(--white);border-top:1px solid var(--grey-200);
    box-shadow:0 16px 30px -16px rgba(43,43,43,.35);padding:6px 0 16px;z-index:60;border-radius:0 0 14px 14px;}
  .nav-toggle:checked ~ .site-nav{display:flex;}
  .nav-links{flex-direction:column;align-items:stretch;gap:0;margin:0;width:100%;}
  .site-nav .nav-item{padding:14px 22px;border-bottom:1px solid var(--grey-100);width:100%;font-size:1rem;text-align:right;}
  .nav-cta{flex-direction:column;align-items:stretch;width:100%;gap:0;}
  .nav-cta .btn{display:flex;justify-content:center;width:calc(100% - 44px);margin:12px 22px 0;}
  /* burger -> X when open */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav-toggle:checked ~ .nav-burger span:nth-child(2){opacity:0;}
  .nav-toggle:checked ~ .nav-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
}

/* Amazon Associates affiliate marker (products page) */
.affiliate-note{font-size:.92rem;color:var(--grey-700);margin:0 0 30px;max-width:64ch;
  padding:12px 16px;background:var(--grey-100);border-left:3px solid var(--cyan);border-radius:8px;}
.affiliate-note strong{color:var(--ink);}
button.pte-btn{font-family:'Inter',sans-serif;font-size:.95rem;cursor:pointer;background:transparent;}
