/* ============================================================
   LIANNE BYRNE — site.css
   Structure:
   1.  Fonts & Variables
   2.  Reset & Base
   3.  Typography
   4.  Buttons
   5.  Header & Nav
   6.  Layout Helpers
   7.  Components — Cards, Testimonials, FAQ, Quiz, Table, Bio
   8.  Sections — CTA, Guide CTA, Footer
   9.  Page-specific — Blog, About, RR, AI, Guide, Offer
   10. ─────────────────────────────────────────────────────
       RESPONSIVE — max-width: 900px  (tablet + mobile nav)
       RESPONSIVE — max-width: 700px  (mobile layouts)
       RESPONSIVE — max-width: 480px  (small phones)
   ============================================================ */


/* ============================================================
   1. FONTS & VARIABLES
   ============================================================ */

@font-face {
  font-family: Lustria;
  src: url('/assets/fonts/Lustria-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: TenorSans;
  src: url('/assets/fonts/TenorSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Kaiden;
  src: url('/assets/fonts/Orlando-Kaiden.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --bg:     #eceee3;
  --panel:  #f7f8f1;
  --white:  #fff;
  --ink:    #263014;
  --muted:  #52691f;
  --soft:   #9baa4c;
  --border: rgba(82,105,31,.16);
  --deep:   #233114;
  --sage:   #96ae43;
  --serif:   Lustria, Georgia, serif;
  --sans:    Manrope, Inter, system-ui, sans-serif;
  --display: TenorSans, var(--sans);
  --script:  Kaiden, cursive;
  --max:     1160px;
  --pad:     clamp(20px, 4vw, 60px);
  --section: clamp(56px, 8vw, 110px);
  --text-base: 20px;
  --text-sm:   18px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: var(--text-base); }
body  {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
p     { font-size: var(--text-base); color: #43502e; line-height: 1.82; margin: 0 0 1.3em; }
li    { font-size: var(--text-base); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.narrow    { max-width: 820px; margin: 0 auto; padding: 0 var(--pad); }
.section   { padding-block: var(--section); }


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.eyebrow, .label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 16px;
  display: block;
}

.script, .kaiden {
  font-family: var(--script);
  color: var(--soft);
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.03em;
  margin: 0 0 .6em;
  line-height: 1.1;
}
h1 { font-size: clamp(38px, 5.2vw, 64px); }
h2 { font-size: clamp(30px, 3.8vw, 50px); }
h3 { font-size: clamp(24px, 2.5vw, 34px); }
h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.lead { font-size: clamp(20px, 2vw, 24px); color: #43502e; line-height: 1.7; }

/* Dark-background heading colours */
.green-box h1, .green-box h2, .green-box h3, .green-box h4,
.deep-cta h1, .deep-cta h2, .deep-cta h3, .deep-cta h4,
.format-dark-section h1, .format-dark-section h2, .format-dark-section h3, .format-dark-section h4,
.rr-hero h1, .rr-hero h2, .rr-hero h3, .rr-hero h4,
.offer-hero h1, .offer-hero h2, .offer-hero h3, .offer-hero h4,
.guide-cta-band h1, .guide-cta-band h2, .guide-cta-band h3, .guide-cta-band h4,
.dark-experience-panel h1, .dark-experience-panel h2, .dark-experience-panel h3, .dark-experience-panel h4,
.rr-12weeks-panel h1, .rr-12weeks-panel h2, .rr-12weeks-panel h3, .rr-12weeks-panel h4 { color: white; }

/* Dark-background eyebrow colours */
.green-box .eyebrow, .green-box .label,
.deep-cta .eyebrow, .deep-cta .label,
.format-dark-section .eyebrow, .format-dark-section .label,
.rr-hero .eyebrow, .rr-hero .label,
.offer-hero .eyebrow, .offer-hero .label,
.guide-cta-band .eyebrow, .guide-cta-band .label,
.dark-experience-panel .eyebrow, .dark-experience-panel .label,
.rr-12weeks-panel .eyebrow, .rr-12weeks-panel .label,
.rr-format-section .eyebrow, .rr-format-section .label,
.blog-post-hero-section .eyebrow, .blog-post-hero-section .label { color: #b5c463; }

/* H4 in dark panels */
.green-box h4, .deep-cta h4, .format-dark-section h4,
.rr-hero h4, .offer-hero h4, .guide-cta-band h4,
.dark-experience-panel h4, .rr-12weeks-panel h4 { color: white; }


/* ============================================================
   4. BUTTONS
   ============================================================ */

.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  vertical-align: middle;
}
.button           { background: var(--deep); color: white; border-color: var(--deep); }
.button:hover     { background: #1a2208; }
.button.light     { background: transparent; color: var(--deep); border-color: var(--border); }
.button.light:hover { background: var(--deep); color: white; border-color: var(--deep); }
.button.soft      { background: var(--sage); color: var(--deep); border-color: var(--sage); }
.button.soft:hover{ background: #86954a; }

.btn-link {
  padding: 0 0 2px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(82,105,31,.3);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}

.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.button-row .button { align-self: stretch; display: inline-flex; align-items: center; }


/* ============================================================
   5. HEADER & NAV
   ============================================================ */

.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  background: rgba(236,238,227,.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 99999;
  backdrop-filter: blur(10px);
}
.header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-link   { display: block; flex-shrink: 0; }
.brand-logo   { width: 180px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.nav-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(38,48,20,.7);
}
.nav-link:hover { color: var(--ink); }

.nav-trigger, .nav-trigger-link {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 300; color: rgba(38,48,20,.7);
  padding: 0; display: flex; align-items: center; gap: 4px;
  white-space: nowrap; text-decoration: none;
}
.nav-trigger:hover, .nav-trigger-link:hover { color: var(--ink); }

.nav-caret {
  display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .5; flex-shrink: 0; transition: transform .15s;
}
.nav-item.open .nav-caret { transform: rotate(-135deg) translateY(2px); opacity: .7; }

.nav-item { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 230px; background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(35,49,20,.12); z-index: 10000;
}
.nav-item.open .nav-dropdown,
.nav-item:hover .nav-dropdown { display: block; }
.nav-item:hover .nav-trigger,
.nav-item:hover .nav-trigger-link { color: var(--ink); }
.nav-item:hover .nav-caret { transform: rotate(-135deg) translateY(2px); opacity: .7; }
.nav-item::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }

.nav-dropdown a {
  display: block; padding: 13px 20px; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(38,48,20,.8); border-bottom: 1px solid var(--border);
  white-space: nowrap; transition: background .1s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--panel); color: var(--ink); }

.nav-cta {
  background: var(--deep); color: white; padding: 10px 18px; border-radius: 2px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: #1a2208; }

.mobile-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 4px; font-size: 1.4rem; color: var(--ink); }


/* ============================================================
   6. LAYOUT HELPERS
   ============================================================ */

.hero    { padding: clamp(56px,7vw,100px) 0; background: var(--bg); }
.split   { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: center; }
.panel   { background: var(--panel); border: 1px solid var(--border); padding: clamp(24px,4vw,44px); }
.pathways { background: var(--panel); }

.green-box { background: var(--deep); color: #fff; padding: clamp(28px,5vw,56px); }
.green-box p { color: rgba(255,255,255,.75); }

.hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: clamp(32px,5vw,64px); align-items: center; max-width: 1060px;
}
.portrait-card img {
  width: 100%; max-width: 360px; display: block; border-radius: 2px;
  filter: drop-shadow(0 20px 50px rgba(35,49,20,.18));
}

.offer-hero, .page-hero, .rr-hero, [class*="-hero"] { isolation: auto; }
section[style*="position:relative"],
section[style*="position: relative"] { isolation: auto; }


/* ============================================================
   7. COMPONENTS
   ============================================================ */

/* ── PATH CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.path-card { background: #fff; border: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; }
.path-card img     { height: 210px; width: 100%; object-fit: cover; margin-bottom: 18px; }
.path-card h3      { font-size: clamp(20px,2vw,26px); margin-bottom: .4em; }
.path-card p       { flex: 1; font-size: 18px; line-height: 1.75; margin-bottom: 18px; }
.path-card .button { align-self: flex-start; margin-top: auto; }

/* ── TESTIMONIALS ── */
.quote-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  padding: clamp(26px,4vw,44px); display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial blockquote {
  font-family: var(--serif); font-size: clamp(18px,2vw,24px);
  line-height: 1.45; color: var(--deep); margin: 0; font-style: italic;
}
.testimonial .eyebrow, .testimonial .label { display: none; }
.testimonial-author { margin-top: 18px; }
.testimonial-author strong {
  display: block; font-family: var(--display); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink); font-weight: 400;
}
.testimonial-author span { font-size: 13px; color: var(--muted); }

.testimonials-section { position: relative; overflow: hidden; }
.testimonials-eyebrow {
  font-family: var(--display); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px;
}
.testimonials-heading {
  font-family: var(--serif); font-size: clamp(26px,3.5vw,42px);
  font-weight: 400; color: var(--ink); letter-spacing: -.03em; margin: 0 0 32px;
}

/* ── TESTIMONIAL SLIDER ── */
.ts-track { overflow: hidden; }
.ts-slide { background: var(--white); border: 1px solid var(--border); padding: clamp(28px,5vw,52px); display: none; }
.ts-slide.active { display: block; }
.ts-slide blockquote { font-family: var(--serif); font-size: clamp(20px,2.2vw,28px); line-height: 1.42; color: var(--deep); margin: 0; font-style: italic; }
.ts-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 18px; }
.ts-btn { background: none; border: 1px solid var(--border); width: 36px; height: 36px; cursor: pointer; font-size: .9rem; color: var(--ink); display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: background .15s; }
.ts-btn:hover { background: var(--panel); }
.ts-dots { display: flex; gap: 8px; }
.ts-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background .2s; }
.ts-dot.active { background: var(--soft); }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: clamp(19px,1.8vw,24px); list-style: none; padding-right: 28px; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; color: var(--soft); font-size: 1.1rem; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 14px; color: #43502e; font-size: 17px; line-height: 1.8; margin-bottom: 0; }
.faq-heading { font-family: var(--display); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 12px; }
.faq-title { font-family: var(--serif); font-size: clamp(24px,3vw,36px); margin-bottom: 28px; }

/* ── QUIZ ── */
.quiz-card-main { background: var(--white); border: 1px solid var(--border); padding: clamp(24px,4vw,52px); max-width: 860px; margin: 0 auto; }
.quiz-progress-bar { width: 100%; background: var(--border); height: 6px; border-radius: 3px; margin-bottom: 20px; }
.quiz-progress-fill { height: 6px; background: var(--muted); border-radius: 3px; transition: width .4s ease; }
.quiz-counter,
.quiz-step-label,
.quiz-step,
[class*="quiz-counter"],
[class*="step-label"],
[class*="question-count"] {
  font-family: var(--display); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 500; display: block; margin-bottom: 8px;
}
.quiz-question { font-family: var(--serif); font-size: clamp(20px,2.5vw,28px); font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 22px; letter-spacing: -.025em; }
.quiz-option { display: flex; align-items: center; gap: 14px; padding: 14px 16px; margin: 8px 0; border: 1px solid var(--border); background: var(--panel); cursor: pointer; font-size: var(--text-base); color: var(--ink); transition: border-color .12s, background .12s; }
.quiz-option:hover, .quiz-option.selected { border-color: var(--soft); background: #f4f7ec; }
.quiz-option-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: border-color .12s, background .12s; }
.quiz-option.selected .quiz-option-dot { border-color: var(--soft); background: var(--soft); }
.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.quiz-nav-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--deep); color: white; padding: 14px 22px; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; border: none; border-radius: 2px; cursor: pointer; transition: background .2s; }
.quiz-nav-btn:hover { background: #1a2208; }
.quiz-nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.quiz-back-btn { background: none; border: 1px solid var(--border); color: var(--muted); }
.quiz-back-btn:hover { background: var(--panel); }
.email-gate { display: none; }
.email-gate-inner { text-align: center; padding: clamp(28px,4vw,52px); }
.email-gate-form { max-width: 380px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.email-gate-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); background: white; font: inherit; font-size: var(--text-base); border-radius: 2px; }
.email-gate-submit { background: var(--deep); color: white; padding: 16px; font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; border: none; border-radius: 2px; cursor: pointer; }
.quiz-result { display: none; }

/* ── COMPARISON TABLE ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); background: #fff; position: relative; }
.comparison { border-collapse: collapse; width: 100%; min-width: 780px; }
.comparison th { font-family: var(--serif); font-size: clamp(17px,1.8vw,22px); font-weight: 400; text-align: left; padding: 22px 24px; border-bottom: 1px solid var(--border); color: var(--ink); }
.comparison td { padding: 18px 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); vertical-align: top; font-size: 16px; color: #43502e; line-height: 1.6; }
.comparison td:last-child, .comparison th:last-child { background: #f1f4e8; color: var(--deep); }
.table-scroll-hint { display: none; }

/* ── LINK-IN-BIO ── */
body.linkinbio-page .site-header,
body.linkinbio-page .site-footer { display: none; }
.bio-page        { max-width: 560px; margin: 0 auto; padding: 48px 20px; text-align: center; min-height: 100vh; background: var(--bg); }
.bio-logo        { width: 190px; margin: 0 auto 20px; }
.bio-portrait    { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; }
.bio-title       { font-family: var(--serif); font-size: clamp(36px,8vw,52px); line-height: 1.05; color: var(--deep); margin: 0 0 4px; }
.bio-script      { font-family: var(--script); font-size: clamp(28px,6vw,42px); color: var(--soft); display: block; margin-bottom: 30px; }
.bio-section-label { font-family: var(--display); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 24px 0 10px; text-align: left; }
.bio-link        { display: flex; align-items: center; gap: 14px; text-align: left; background: var(--white); border: 1px solid var(--border); color: var(--ink); text-decoration: none; padding: 14px 16px; margin: 8px 0; transition: border-color .15s, background .15s; }
.bio-link:hover  { border-color: var(--soft); background: var(--panel); }
.bio-link img    { width: 48px; height: 48px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.bio-link-text   { flex: 1; }
.bio-link-title  { font-family: var(--serif); font-size: clamp(16px,3.5vw,19px); color: var(--deep); display: block; line-height: 1.2; }
.bio-link-sub    { font-size: 12px; color: var(--muted); letter-spacing: .06em; display: block; margin-top: 3px; }
.bio-link-arrow  { color: var(--soft); flex-shrink: 0; }
.bio-socials     { display: flex; justify-content: center; gap: 14px; margin: 24px 0 14px; }
.bio-socials a   { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 50%; color: var(--muted); transition: border-color .15s; }
.bio-socials a:hover { border-color: var(--soft); }
.bio-socials svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bio-foot        { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ── AUTHOR BOX ── */
.author-box {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  align-items: center; border: 1px solid var(--border);
  padding: clamp(20px,3vw,32px); background: var(--panel); border-radius: 2px; margin: 40px 0;
}
.author-box img { width: 72px; height: 72px; max-width: 72px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; display: block; }
.author-box h4  { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; color: var(--soft); margin-bottom: 4px; font-weight: 400; }
.author-box h3  { font-family: var(--serif); font-size: 19px; margin: 0 0 6px; }
.author-box p   { font-size: var(--text-sm); color: var(--muted); line-height: 1.65; margin: 0; }

/* ── SITE QUOTE ── */
.site-quote { border-left: 4px solid var(--soft); padding: clamp(20px,3vw,36px) clamp(20px,4vw,48px); background: var(--panel); max-width: 640px; margin: 0 auto; }
.site-quote p { font-family: var(--serif); font-size: clamp(19px,2.2vw,26px); font-style: italic; color: var(--deep); line-height: 1.45; margin: 0; }

/* ── PAYMENT LOGOS ── */
.payment-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }
.payment-logos img, .payment-logo { height: 24px; width: auto; opacity: .8; filter: brightness(10); }


/* ============================================================
   8. SECTIONS — CTA, GUIDE CTA, FOOTER
   ============================================================ */

.deep-cta { background: var(--deep); color: #fff; text-align: center; padding: clamp(56px,8vw,110px) 0; position: relative; overflow: hidden; }
.deep-cta img[src*="flourish"] { display: none; }
.deep-cta-line { display: flex; align-items: flex-end; justify-content: center; flex-wrap: wrap; gap: .15em; line-height: 1.2; margin-bottom: .2em; }
.cta-serif { font-family: var(--serif); font-size: clamp(28px,3.8vw,50px); color: #fff; letter-spacing: -.03em; line-height: 1.2; }
.cta-kaiden { font-family: var(--script); font-size: clamp(34px,4.6vw,60px); color: #b5c463; line-height: 1; position: relative; top: 4px; }
.cta-different { font-family: var(--script); font-size: clamp(44px,6.5vw,82px); color: #b5c463; display: block; line-height: 1; }
.cta-line-1, .cta-line-2, .cta-line-3 { display: block; text-align: center; }
.deep-cta p { color: rgba(255,255,255,.75); }

/* ── GUIDE CTA ── */
.guide-cta-band { background: var(--deep); padding: clamp(36px,4vw,56px) 0; position: relative; overflow: hidden; }
.guide-cta-band img[src*="flourish"] { display: none; }
.guide-cta-grid { display: grid; grid-template-columns: 1fr 260px; gap: clamp(24px,4vw,64px); align-items: center; max-width: 1060px; margin: 0 auto; padding: 0 var(--pad); }
.guide-cta-band .eyebrow { font-size: 10px; }

/* Desktop: large rotated cover in its own grid cell */
.guide-cover-desktop {
  width: 100%;
  max-width: 240px;
  justify-self: center;
  transform: rotate(3deg) translateY(-10px);
  filter: drop-shadow(-8px 12px 24px rgba(0,0,0,.5)) drop-shadow(0 4px 8px rgba(0,0,0,.3));
  flex-shrink: 0;
  display: block;
}

/* Mobile: small cover sits inline next to button — hidden on desktop */
.guide-cover-mobile { display: none; }
.guide-cover-mobile-wrap { display: none; }

/* Button row wrapper used on mobile to sit cover next to button */
.guide-cta-button-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin-top: 0;
}

.site-footer { background: #1f260f; color: rgba(238,243,230,.7); text-align: center; padding: 52px var(--pad) 36px; }
.footer-logo  { width: 180px; margin: 0 auto 16px; }
.footer-tag   { font-family: var(--serif); font-size: 18px; color: rgba(238,243,230,.65); margin: 8px auto 20px; font-style: italic; }
.footer-nav   { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; margin-bottom: 18px; padding: 0; list-style: none; }
.footer-nav a { color: rgba(238,243,230,.6); }
.footer-nav a:hover { color: #fff; }
.footer-copy  { font-size: 11px; color: rgba(238,243,230,.35); margin-top: 12px; }
.socials      { display: flex; justify-content: center; gap: 18px; margin: 16px 0; }
.socials a    { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transition: border-color .2s; }
.socials a:hover { border-color: rgba(255,255,255,.5); }
.socials svg  { width: 14px; height: 14px; fill: none; stroke: rgba(255,255,255,.65); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials .icon-linkedin svg { fill: rgba(255,255,255,.65); stroke: none; }


/* ============================================================
   9. PAGE-SPECIFIC
   ============================================================ */

/* ── BLOG INDEX ── */
.blog-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.blog-card img   { height: 210px; width: 100%; object-fit: cover; flex-shrink: 0; }
.blog-card .pad  { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3    { font-size: clamp(20px,1.9vw,24px); margin-bottom: .4em; line-height: 1.25; flex: 1; }
.blog-card p     { font-size: 17px; color: #43502e; margin-bottom: 16px; }
.blog-card .btn-link,
.blog-card a.read-link { font-size: 13px; letter-spacing: .14em; color: var(--muted); font-weight: 500; text-align: left; display: inline-block; border-bottom: none; padding-bottom: 0; text-decoration: none; }

/* ── BLOG POST ARTICLE ── */
.article         { max-width: 760px; margin: 0 auto; padding: 0 var(--pad); }
.article p       { font-size: var(--text-base); line-height: 1.85; }
.article h2      { font-size: clamp(22px,2.8vw,34px); margin: 44px 0 14px; }
.article h3      { font-size: clamp(19px,2.2vw,26px); margin: 32px 0 10px; }
.article blockquote { font-family: var(--serif); font-size: clamp(20px,2.5vw,28px); line-height: 1.3; color: var(--deep); border-left: 2px solid var(--soft); padding-left: 20px; margin: 28px 0; font-style: italic; }
.article ul, .article ol { color: #43502e; font-size: var(--text-base); line-height: 1.8; padding-left: 28px; }
.article ul { list-style-type: disc; }
.article ol { list-style-type: decimal; }
.article li { display: list-item; margin-bottom: 8px; }

/* ── BLOG POST HERO ── */
.blog-post-hero-section { min-height: 460px; background: var(--deep); position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.blog-post-hero-section img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.blog-post-hero-section .hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(35,49,20,.70) 0%, rgba(35,49,20,.35) 55%, rgba(35,49,20,.05) 100%); }

/* ── ABOUT ── */
.about-mini-heading { font-family: var(--serif); font-size: clamp(20px,2.2vw,26px); font-weight: 400; color: var(--ink); margin-bottom: 14px; }
.about-corporate-split { align-items: center; }
.container.split       { align-items: start; }
.container.split img   { align-self: start; }

/* ── DARK EXPERIENCE PANEL ── */
.dark-experience-panel { background: var(--deep); color: white; padding: clamp(40px,6vw,80px) var(--pad); }
.dark-experience-panel h2, .dark-experience-panel h3,
.dark-experience-panel p, .dark-experience-panel .eyebrow { color: white; }

/* ── RECLAIM & REDESIGN ── */
.rr-hero { background: var(--deep); }
.rr-hero * { color: white; }
.rr-hero .eyebrow { color: #b5c463; }
.rr-hero .button  { color: white; border-color: rgba(255,255,255,.5); background: transparent; }
.rr-hero .button:hover { background: rgba(255,255,255,.1); }
.rr-hero .button.primary { background: var(--sage); color: var(--deep); border-color: var(--sage); }
.rr-hero .button.primary:hover { background: var(--soft); border-color: var(--soft); }

.rr-quote-panel { max-width: 720px; margin: 0 auto; background: var(--panel); border-left: 4px solid var(--soft); padding: clamp(24px,3vw,40px) clamp(24px,4vw,52px); }
.rr-quote-panel p { font-family: var(--serif); font-size: clamp(18px,2.2vw,26px); font-style: italic; color: var(--deep); line-height: 1.5; margin: 0; }

.rr-phase-script { font-family: var(--script); font-size: clamp(36px,4vw,52px); color: var(--soft); display: block; line-height: 1.1; margin-bottom: 12px; }

.format-dark-section { background: var(--deep); color: white; position: relative; overflow: hidden; padding: clamp(48px,7vw,96px) 0; }
.format-dark-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 60%); pointer-events: none; }
.format-dark-section h2, .format-dark-section h3,
.format-dark-section p { color: white; }
.rr-12weeks-panel p, .rr-format-section p,
[style*="background:var(--deep)"] p,
[style*="background:#233114"] p,
[style*="background: #233114"] p,
[style*="background: var(--deep)"] p { color: rgba(255,255,255,.85) !important; }
.format-dark-section > .container > p,
.format-dark-section .narrow > p,
.format-dark-section p { color: rgba(255,255,255,.85) !important; }
[style*="background:#233114"] p,
[style*="background: #233114"] p,
[style*="background:var(--deep)"] p,
[style*="background: var(--deep)"] p,
[style*="background-color:#233114"] p,
[style*="background-color: #233114"] p { color: rgba(255,255,255,.85) !important; }
.format-dark-section .green-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); }
.rr-12weeks-panel { background: var(--deep); color: white; }
.rr-12weeks-panel h2, .rr-12weeks-panel h3, .rr-12weeks-panel p { color: white; }
.rr-format-section { background: var(--deep); }
.rr-format-section h2, .rr-format-section p, .rr-format-section span, .rr-format-section li { color: white; }

/* ── OFFER HERO ── */
.offer-hero { background: var(--deep); position: relative; overflow: hidden; padding: clamp(64px,8vw,110px) 0; }
.offer-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.offer-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,49,20,.96) 55%, rgba(35,49,20,.5)); }
.offer-hero h1, .offer-hero p { color: white; }

/* ── GUIDE PAGE ── */
.guide-ready-panel, .guide-ready-panel h2,
.guide-ready-panel h3, .guide-ready-panel p { color: white; }
.guide-author-box { max-width: 700px; margin: 32px auto; display: flex; gap: 18px; align-items: flex-start; padding: 24px 28px; background: var(--panel); border-radius: 2px; }
.guide-author-box img { width: 56px; height: 56px; max-width: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

/* ── AI PAGE ── */
.ai-hero-bg { background-image: url('/assets/images/img-magic-mouse.jpg'); }

/* ── HERO DARK OFFER ── */
.hero-dark-offer { background: var(--deep); padding: clamp(56px,7vw,100px) 0; position: relative; overflow: hidden; }
.hero-dark-offer h1 { color: white; }
.hero-dark-offer p  { color: rgba(255,255,255,.75); }


/* ============================================================
   10. RESPONSIVE
   ============================================================ */

/* ────────────────────────────────────────────
   TABLET + MOBILE NAV  (≤ 900px)
   ──────────────────────────────────────────── */
@media (max-width: 900px) {

  .site-header { height: 68px; }
  .brand-logo  { width: 155px; }
  .mobile-toggle { display: block; }

  .site-nav {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 24px var(--pad);
    flex-direction: column; align-items: flex-start; gap: 0;
    overflow-y: auto; z-index: 99998; border-top: 1px solid var(--border);
  }
  .site-nav.open { display: flex; }

  .nav-link  { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; display: block; font-size: 13px; }
  .nav-item  { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-trigger, .nav-trigger-link { padding: 14px 0; width: 100%; justify-content: space-between; font-size: 13px; border-bottom: 1px solid var(--border); display: flex; }
  .nav-dropdown { position: static; transform: none; box-shadow: none; border: none; border-top: 1px solid var(--border); display: none; background: var(--bg); }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown a { background: var(--bg); padding: 10px 20px; font-size: 12px; }
  .nav-cta { margin-top: 18px; padding: 12px 20px; text-align: center; width: 100%; display: block; font-size: 13px; }
  .nav-booking-sub { font-size: 12px; }
  .nav-item:hover .nav-dropdown { display: none; }
  .nav-item.open  .nav-dropdown { display: block; }

  section[style*="overflow:hidden"],
  section[style*="overflow: hidden"] { overflow: visible; }

  h1 { font-size: clamp(34px, 8.5vw, 48px); }
  h2 { font-size: clamp(28px, 7vw, 40px); }
  h3 { font-size: clamp(22px, 5.5vw, 30px); }

  .split, .quote-grid, .card-grid, .blog-card-grid { grid-template-columns: 1fr !important; }
  .guide-cta-grid { grid-template-columns: 1fr; }

  .about-hero-split { grid-template-columns: 1fr; }
  .about-hero-img   { order: 2; margin-top: 24px; }
  .container.split  { grid-template-columns: 1fr; align-items: start; }

  .rr-phase-script { font-size: clamp(38px, 9vw, 56px); }
  .kaiden, .script { font-size: clamp(36px, 10vw, 56px); }

  .blog-post-hero-section p { font-size: 0; line-height: 0; }
  .eyebrow, .label { font-size: 13px; }
}

/* ────────────────────────────────────────────
   MOBILE  (≤ 700px)
   ──────────────────────────────────────────── */
@media (max-width: 700px) {

  body, p, li { font-size: 20px; }
  .lead       { font-size: 22px; }
  .testimonial blockquote { font-size: clamp(17px, 4.5vw, 22px); }
  .ts-slide blockquote    { font-size: clamp(18px, 4.5vw, 24px); }

  /* Hero grids */
  .hero-grid                  { grid-template-columns: 1fr; text-align: center; }
  .hero-grid > div:last-child { display: none; }
  .guide-hero .hero-grid > div:last-child,
  .hero-grid.show-image > div:last-child { display: block !important; margin: 24px auto 0; max-width: 180px; }

  .hero-split                       { grid-template-columns: 1fr; }
  .hero-image-col                   { order: 2; margin-top: 24px; }
  .hero-text-col                    { order: 1; }
  .offer-hero-photo-grid            { grid-template-columns: 1fr; }
  .offer-hero-photo-grid > div:last-child { display: none; }

  /* Inline-style grids */
  div[style*="grid-template-columns:1fr 340px"],
  div[style*="grid-template-columns:1fr 320px"],
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns:1fr 420px"],
  div[style*="grid-template-columns:1fr 380px"] { grid-template-columns: 1fr !important; }

  div[style*="grid-template-columns:1fr 340px"] > div:last-child,
  div[style*="grid-template-columns:1fr 320px"] > div:last-child,
  div[style*="grid-template-columns:1fr 300px"] > div:last-child,
  div[style*="grid-template-columns:1fr 420px"] > div:last-child { display: none !important; }

  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr auto"],
  div[style*="grid-template-columns: 1fr auto"],
  div[style*="grid-template-columns:repeat(3"],
  div[style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }

  /* Show Lianne photo stacked below text on mobile */
  div[style*="grid-template-columns:1fr auto"] > div:last-child,
  div[style*="grid-template-columns: 1fr auto"] > div:last-child {
    display: block !important;
    margin-top: 28px;
    text-align: center;
  }
  div[style*="grid-template-columns:1fr auto"] > div:last-child img,
  div[style*="grid-template-columns: 1fr auto"] > div:last-child img {
    margin: 0 auto;
    max-width: 260px;
  }

  /* Buttons full width */
  div[style*="display:flex"][style*="flex-wrap:wrap"] a.button,
  div[style*="display: flex"][style*="flex-wrap: wrap"] a.button { width: 100% !important; justify-content: center !important; }

  /* Guide CTA — mobile layout */
  /* Guide CTA — mobile layout */
  .guide-cta-grid { grid-template-columns: 1fr; text-align: left; }
  .guide-cta-grid > div:last-child { display: none !important; }
  .guide-cover-mobile-wrap { display: block; margin-left: auto; }
  .guide-cover-mobile-wrap .guide-cover-mobile { width: 110px !important; max-width: 110px !important; }
  .guide-cover-mobile {
    display: block !important;
    width: 80px !important;
    max-width: 80px !important;
    transform: rotate(2deg);
    filter: drop-shadow(-4px 6px 12px rgba(0,0,0,.4));
    flex-shrink: 0;
    margin: 0;
  }
  .guide-cta-button-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
  }
  .guide-cta-button-row .button {
    flex-shrink: 0;
  }

  /* About */
  .about-coffee-grid  { grid-template-columns: 1fr !important; }
  .about-hero-grid    { grid-template-columns: 1fr; }
  .about-hero-grid .about-photo { display: none; }

  /* Author box */
  .author-box { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 12px; }
  .author-box img { width: 80px; height: 80px; margin: 0 auto; }

  /* Blog content */
  .blog-content p        { font-size: 20px; line-height: 1.9; }
  .blog-content ul li,
  .blog-content ol li    { font-size: 20px; }
  .blog-content ul li    { list-style: disc; display: list-item; margin-left: 24px; }
  .blog-content ol li    { list-style: decimal; display: list-item; margin-left: 24px; }
  .blog-content ul li::before { width: 14px; height: 14px; top: 5px; background-size: 14px 14px; }

  /* Table */
  .table-scroll-hint { display: block; font-size: 13px; color: var(--muted); text-align: right; padding: 6px 0 2px; }

  /* AI page */
  .ai-life-automation   { padding: 32px 20px; }
  .ai-life-panel        { padding: 0 var(--pad); }
  .ai-deliverable-title { font-size: 15px; letter-spacing: .08em; }
  .ai-deliverable-body  { font-size: 16px; }
  .ai-leave-with h3, .ai-leave-with h4 { font-size: clamp(18px, 4.5vw, 22px); }

  /* Overflow */
  body, html { overflow-x: hidden; }
  .container, section, .narrow { max-width: 100vw; overflow-x: hidden; }
}

/* ────────────────────────────────────────────
   SMALL PHONES  (≤ 480px)
   ──────────────────────────────────────────── */
@media (max-width: 480px) {
  body, p, li { font-size: 20px; }
  h1  { font-size: clamp(32px, 9vw, 42px); }
  h2  { font-size: clamp(26px, 7.5vw, 34px); }
  h3  { font-size: clamp(22px, 6vw, 26px); }
  .rr-phase-script,
  .kaiden, .script { font-size: clamp(36px, 10vw, 50px); }
  .quiz-question   { font-size: clamp(22px, 5.5vw, 26px); }
  .comparison td, .comparison th { font-size: 16px; padding: 14px 16px; }
  .faq details p   { font-size: 20px; }
}