/*
Theme Name: The Wellbeing Blindspot — Branded
Theme URI: https://tabbinalmond.com
Author: Tabbin Almond
Author URI: https://tabbinalmond.com
Description: Workplace alcohol wellbeing corporate site for Tabbin Almond — TWB branded.
Version: 2.9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wellbeingblindspot
*/

/* ============================================
   THE WELLBEING BLINDSPOT — corporate (branded)
   Brand: Forest / Willow / Calm / Blossom / Coral
   Type: Besley (headline) + Roboto Flex (body, sub Flex)
   ============================================ */

:root {
  /* Brand palette */
  --forest:        #193c40;
  --forest-deep:   #112e31;
  --forest-soft:   #25555a;
  --willow:        #a4b595;
  --willow-deep:   #8ea481;
  --willow-soft:   #c1cdb6;
  --calm:          #ece4dd;
  --calm-deep:     #ddd1c5;
  --blossom:       #f1d0d6;
  --coral:         #ec6e6b;
  --white:         #ffffff;
  --offblack:      #1b1b1c;

  /* Functional */
  --text:          var(--forest);
  --text-soft:     #4a5e60;
  --text-muted:    #6e7f80;
  --border:        rgba(25, 60, 64, 0.10);
  --border-strong: rgba(25, 60, 64, 0.20);

  /* Typography */
  --font-heading: 'Besley', Georgia, serif;
  --font-body:    'Roboto Flex', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:    1200px;
  --frame-pad:    clamp(0.75rem, 1.6vw, 1.5rem);
  --card-radius:  clamp(20px, 2.8vw, 32px);
  --card-pad-y:   clamp(3.5rem, 7vw, 6rem);
  --card-pad-x:   clamp(1.5rem, 5vw, 4rem);
  --pill:         999px;
  --shadow-sm:    0 1px 4px rgba(25, 60, 64, 0.06);
  --shadow-md:    0 6px 24px rgba(25, 60, 64, 0.10);
  --shadow-lg:    0 16px 48px rgba(25, 60, 64, 0.16);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--willow);
  background-image:
    radial-gradient(circle at 0% 0%, var(--willow-soft) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, var(--willow-deep) 0%, transparent 55%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p  { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
}

/* --- Decorative --- */
.ornament {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--coral);
  margin: 1.25rem 0 1.75rem;
  border-radius: 2px;
}
.ornament--center { margin-left: auto; margin-right: auto; }
.ornament--light  { background: var(--willow); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 1rem;
}
.label--on-dark { color: var(--willow); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 2.1rem;
  border: 2px solid transparent;
  border-radius: var(--pill);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn:hover {
  background: #d85a57;
  border-color: #d85a57;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn--primary:hover { background: #d85a57; border-color: #d85a57; color: var(--white); }
.btn--willow { background: var(--willow); color: var(--forest); border-color: var(--willow); }
.btn--willow:hover { background: var(--willow-deep); border-color: var(--willow-deep); color: var(--forest); }
.btn--forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--forest:hover { background: var(--forest-deep); border-color: var(--forest-deep); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--ghost:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--calm);
  color: var(--forest);
  border-color: var(--calm);
}

/* ============================================
   PAGE FRAME — single rounded container
   ============================================ */
.site-main,
main.site-main {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--frame-pad);
  background: transparent;
}

/* Wrap all pre-footer sections in one rounded container.
   Top corners rounded (under nav), bottom corners rounded (above footer).
   Everything between is straight-sided. */
.site-main > section {
  border-radius: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}
.site-main > section:last-child {
  border-bottom-left-radius: var(--card-radius);
  border-bottom-right-radius: var(--card-radius);
}

/* Section padding (no extra spacing between, they touch) */
section { padding: var(--card-pad-y) 0; }

.section--white   { background-color: var(--white); }
.section--cream   { background-color: var(--calm); }
.section--stone   { background-color: var(--white); }
.section--primary { background-color: var(--forest); color: var(--calm); }
.section--primary h1, .section--primary h2, .section--primary h3 { color: var(--white); }
.section--blossom { background-color: var(--blossom); }
.section--willow  { background-color: var(--willow); }

/* ============================================
   NAV — sits on top of the rounded container, scrolls with page
   ============================================ */
.nav {
  position: relative;
  z-index: 900;
  background: transparent;
  max-width: 1340px;
  margin: 0 auto;
  padding: var(--frame-pad) var(--frame-pad) 0;
}
.nav__inner {
  padding: 2rem clamp(2rem, 3.5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}
.nav__logo:hover { opacity: 0.85; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--coral); }
.nav__contact-btn {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: var(--pill);
  border: 2px solid var(--coral);
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav__contact-btn:hover {
  background: #d85a57;
  border-color: #d85a57;
  color: var(--white);
}

/* The first content section sits flush under the nav — no top radius
   (it's effectively the top of the rounded container above) */
.site-main > section:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO — full-width image with content overlay on left
   ============================================ */
.hero {
  padding: 0;
  background: var(--forest);
  overflow: hidden;
  position: relative;
}
.hero__grid {
  position: relative;
  min-height: clamp(540px, 70vh, 760px);
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchored to Tabbin's face (~59% x, 36% y in the source image).
     On narrow containers this shifts cropping right so her face sits in the right half. */
  object-position: 59% 36%;
  display: block;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(25, 60, 64, 0.92) 0%,
    rgba(25, 60, 64, 0.75) 28%,
    rgba(25, 60, 64, 0.40) 55%,
    rgba(25, 60, 64, 0.00) 80%
  );
  pointer-events: none;
}
.hero__text {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem) clamp(8rem, 14vw, 11rem);
  color: var(--calm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(580px, 75vh, 820px);
}
.hero__text .label { color: var(--willow); }
.hero__text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__text p {
  font-size: 1.05rem;
  color: rgba(236, 228, 221, 0.92);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hero__highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
  margin: 0.5rem 0;
}
.hero__cta {
  margin-top: 2rem;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: nowrap;
}
.hero__cta .btn {
  font-size: 0.92rem;
  padding: 0.85rem 1.65rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  white-space: nowrap;
  flex: 0 1 auto;
}
.hero__secondary-cta {
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(25, 60, 64, 0.4);
}
.hero__secondary-cta:hover { color: var(--willow); border-bottom-color: var(--willow); }
/* Hero uses default coral primary; secondary stays white */
.hero__secondary-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-bottom: 2px solid var(--willow);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.hero__secondary-cta:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}
.hero__secondary-cta-arrow { display: inline-block; transition: transform var(--transition); }
.hero__secondary-cta:hover .hero__secondary-cta-arrow { transform: translateX(2px); }

/* ============================================
   CREDIBILITY — frosted overlay at bottom of hero
   ============================================ */
.hero__credibility {
  position: absolute;
  bottom: clamp(1.5rem, 3.5vw, 2.5rem);
  left: clamp(2rem, 5vw, 4.5rem);
  right: clamp(2rem, 5vw, 4.5rem);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1vw, 0.85rem);
}
.hero__credibility .credibility__item {
  background: rgba(17, 46, 49, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: none;
  border-radius: 18px;
  padding: 0.95rem 1.1rem;
  color: var(--calm);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.hero__credibility .credibility__badge {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--willow-soft);
  margin-bottom: 0.35rem;
}

/* ============================================
   AS SEEN IN
   ============================================ */
.seen-in { padding: 3rem 0; }
.seen-in__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}
.seen-in__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  flex-wrap: wrap;
}
.seen-in__grid img {
  height: 110px;
  width: 110px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.85;
  transition: all var(--transition);
}
.seen-in__grid a:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/* ============================================
   TESTIMONIAL — image left, quote right
   ============================================ */
.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial__media { display: flex; justify-content: center; }
.testimonial__avatar {
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  position: relative;
}
.testimonial blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--willow);
  line-height: 0.8;
  margin-bottom: 0.25rem;
}
.testimonial__attribution {
  font-size: 1rem;
  color: var(--forest);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.testimonial__role {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

@media (max-width: 760px) {
  .testimonial__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .testimonial blockquote::before { display: inline; margin: 0; }
  .testimonial__avatar { width: 160px; height: 160px; }
}

/* ============================================
   STATS (forest dark card)
   ============================================ */
.stats.section--stone {
  background: var(--forest);
  color: var(--calm);
}
.stats.section--stone h2 { color: var(--white); }
.stats { text-align: center; }
.stats .ornament { background: var(--willow); margin-left: auto; margin-right: auto; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}
.stats__card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(236, 228, 221, 0.92);
  transition: all var(--transition);
}
.stats__card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

/* ============================================
   PROBLEM
   ============================================ */
.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.problem h2 { color: var(--forest); }
.problem p {
  font-size: 1.0625rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.problem__image {
  max-width: 460px;
  margin-left: auto;
}
.problem__image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .problem__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem__image { margin: 0 auto; max-width: 400px; }
}

/* ============================================
   STEPS / FUNNEL
   ============================================ */
.steps.section--stone { background: var(--white); }
.steps { text-align: center; }
.steps h2 { color: var(--forest); }
.steps__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--text-soft);
}
.funnel { margin-top: 2.5rem; text-align: left; }
.funnel__scale {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.funnel__scale-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.funnel__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.funnel__stage {
  padding: 1.85rem 1.4rem;
  border-radius: 18px;
}
.funnel__stage--1 { background: var(--forest); color: var(--calm); }
.funnel__stage--2 { background: var(--forest-soft); color: var(--white); }
.funnel__stage--3 { background: var(--willow); color: var(--forest); }
.funnel__stage--4 { background: var(--willow-deep); color: var(--white); }
.funnel__step-num {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.funnel__step-title {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: inherit;
}
.funnel__step-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about.section--stone { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__text h2 { color: var(--forest); }
.about__text p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-top: 1rem;
}
.about__image {
  position: relative;
  max-width: 460px;
  margin-left: auto;
}
.about__image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about__image::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  top: -30px;
  right: -30px;
  background: url('assets/twb-stamp.png') center / contain no-repeat;
  animation: spin 80s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Audience uses same .about__grid but blossom card */
.audience.section--cream { background: var(--blossom); }
.audience h2 { color: var(--forest); }
.audience p { color: var(--forest-deep); line-height: 1.8; }
.audience p em { color: var(--coral); font-style: italic; font-weight: 500; }
.audience .about__image::after { display: none; }

/* ============================================
   FAQ
   ============================================ */
.faq.section--stone { background: var(--calm); }
.faq .container { max-width: 820px; }
.faq h2 { text-align: center; color: var(--forest); }
.faq .ornament { margin-left: auto; margin-right: auto; }
.faq__item {
  border-bottom: 1px solid var(--border-strong);
}
.faq__item:first-of-type { border-top: 1px solid var(--border-strong); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  text-align: left;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  line-height: 1.4;
}
.faq__question:hover { color: var(--coral); }
.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--willow-deep);
  transition: transform var(--transition);
}
.faq__item.is-open .faq__question::after { content: '\2212'; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq__answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

/* ============================================
   PODCAST FEATURE
   ============================================ */
.podcast-feature.section--stone { background: var(--white); }
.podcast-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.podcast-feature__cover {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--calm);
  border-radius: 24px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.podcast-feature__cover:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(25, 60, 64, 0.22);
  color: var(--calm);
}
.podcast-feature__cover:hover .podcast-feature__cover-tag { color: var(--willow); }
.podcast-feature__cover::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: clamp(1.75rem, 3.5vw, 2.5rem);
  left: clamp(1.75rem, 3.5vw, 2.5rem);
  background: url('assets/twb-mark-calm.png') center / contain no-repeat;
  opacity: 0.95;
  z-index: 1;
}
.podcast-feature__cover::after {
  content: '';
  position: absolute;
  right: -45%;
  bottom: -45%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, var(--willow) 0%, transparent 60%);
  opacity: 0.22;
  pointer-events: none;
}
.podcast-feature__cover-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--willow);
  position: relative;
  z-index: 1;
  margin-top: 4.5rem;
}
.podcast-feature__cover-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.podcast-feature__cover-tag {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--calm);
  opacity: 0.85;
  border-top: 1px solid rgba(236, 228, 221, 0.25);
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}
.podcast-feature__content h2 { color: var(--forest); }
.podcast-feature__content p {
  color: var(--text-soft);
  line-height: 1.75;
}
.podcast-feature__schedule {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 0.5rem;
}
.podcast-feature__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.5rem;
}
.podcast-feature__platform {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 2px solid var(--willow);
  padding-bottom: 0.25rem;
  transition: all var(--transition);
}
/* Image-based cover variant — when the podcast feature uses the real album art. */
.podcast-feature__cover-link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.podcast-feature__cover-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(25, 60, 64, 0.22);
}
.podcast-feature__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.podcast-feature__platform:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

/* ============================================
   BLOG
   ============================================ */
.blog h2 { text-align: center; color: var(--forest); }
.blog .ornament { margin-left: auto; margin-right: auto; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog__card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--willow) 0%, var(--willow-deep) 100%);
  position: relative;
  overflow: hidden;
}
.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__image:not(:has(img))::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/twb-stamp-calm.png') center / 140px no-repeat;
  opacity: 0.3;
}
.blog__card .blog__meta,
.blog__card h3,
.blog__card p { padding: 0 1.6rem; }
.blog__meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.blog__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
}
.blog__title a { color: var(--forest); }
.blog__title a:hover { color: var(--coral); }
.blog__excerpt {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
  padding-bottom: 1.5rem;
}
.blog__cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   FINAL CTA (forest)
   ============================================ */
.final-cta.section--primary {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -80px;
  background: url('assets/twb-mark-willow.png') center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.final-cta p {
  color: rgba(236, 228, 221, 0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .subtext {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(236, 228, 221, 0.7);
  margin-top: 1.25rem;
}

/* ============================================
   CROSSLINK
   ============================================ */
.crosslink.section--stone { background: var(--white); }
.crosslink {
  padding: 2.75rem 0;
  text-align: center;
}
.crosslink__text {
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-style: italic;
}

/* ============================================
   FOOTER — sits on willow bg, outside rounded container
   ============================================ */
.footer.section--cream {
  background: transparent;
  color: var(--forest);
  padding: 2.5rem 0 1.75rem;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: var(--frame-pad);
  padding-right: var(--frame-pad);
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 60, 64, 0.10);
  color: var(--forest);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--forest);
  color: var(--willow);
}
.footer__copy {
  font-size: 0.85rem;
  color: rgba(25, 60, 64, 0.75);
  margin: 0;
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(25, 60, 64, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  width: 92%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.4rem;
  color: var(--forest);
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 2;
}
.modal__close:hover { background: var(--calm); color: var(--coral); }
.modal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal__sidebar {
  padding: 2.5rem 2rem;
  background: var(--blossom);
  color: var(--forest);
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.modal__sidebar::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  bottom: -60px;
  background: url('assets/twb-mark.png') center / contain no-repeat;
  opacity: 0.12;
}
.modal__testimonial {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--forest);
  line-height: 1.55;
  border-left: 2px solid var(--coral);
  padding-left: 1rem;
  position: relative;
  z-index: 1;
}
.modal__testimonial cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.modal__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.modal__contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.875rem;
}
.modal__contact-row strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}
.modal__contact-row span,
.modal__contact-row a { color: var(--forest); font-size: 0.95rem; }
.modal__meeting-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--coral);
}
.modal__meeting-link:hover { color: var(--forest); }
.modal__form-side { padding: 2.5rem 2rem; }
.modal__form-side h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--forest);
}
.form__group { margin-bottom: 1rem; }
.form__group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
}
.form__group input:focus,
.form__group textarea:focus { outline: none; border-color: var(--forest); }
.form__group textarea { resize: vertical; min-height: 90px; }
.modal__form .btn { width: 100%; margin-top: 0.5rem; }

/* ============================================
   FREE RESOURCES SECTION
   ============================================ */
.resources { background: var(--white); text-align: center; }
.resources .label { display: block; text-align: center; }
.resources h2 { color: var(--forest); }
.resources__intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}
/* While Bottling Up Trouble is hidden the grid only carries two cards. */
.resources__card[hidden] { display: none !important; }  /* override the flex layout above */
.resources__grid:has(.resources__card[hidden]) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .resources__grid:has(.resources__card[hidden]) {
    grid-template-columns: 1fr;
  }
}
.resources__card {
  background: var(--calm);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 1.85rem 1.75rem 1.6rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.resources__card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.resources__icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.resources__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.resources__desc {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.resources__cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  margin-top: auto;
  transition: color var(--transition);
}
.resources__card:hover .resources__cta { color: var(--forest); }

@media (max-width: 900px) {
  .resources__grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESOURCE MODALS
   ============================================ */
.modal--resource { max-width: 920px; }
.modal__inner--resource {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 0;
}
.modal__resource-body {
  padding: 2.5rem 2.25rem;
  color: var(--forest);
}
.modal__resource-body .label { color: var(--coral); }
.modal__resource-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--forest);
  margin-bottom: 0.8rem;
}
.modal__resource-body p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.modal__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.modal__bullets li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.modal__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.modal__testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.55;
  border-left: 3px solid var(--coral);
  padding: 0.25rem 0 0.25rem 1rem;
  margin-top: 1.25rem;
}
.modal__testimonial-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.modal__resource-form {
  padding: 2.5rem 2.25rem;
  background: var(--calm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 24px 24px 0;
}
.modal__resource-form h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.modal__resource-form .form__group { margin-bottom: 0.85rem; }
.modal__resource-form .form__group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.modal__resource-form .form__group input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--forest);
  background: var(--white);
}
.modal__resource-form .form__group input:focus { outline: none; border-color: var(--coral); }
.modal__resource-form .btn { width: 100%; margin-top: 0.4rem; }
.modal__trust {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .modal__inner--resource { grid-template-columns: 1fr; }
  .modal__resource-form { border-radius: 0 0 24px 24px; }
}

/* Contact modal: 2-col — testimonial (blossom) left, contact methods (white) right */
.modal--contact { max-width: 760px; }
.modal__inner--contact { grid-template-columns: 1fr 1fr; }
.modal__inner--contact .modal__sidebar { border-radius: 24px 0 0 24px; }

.modal__contact-side {
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  border-radius: 0 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.modal__contact-side h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
}
.modal__contact-side .modal__contact-row strong { color: var(--coral); }
.modal__contact-side .modal__contact-row a { color: var(--forest); font-size: 1rem; word-break: break-all; }

/* Bigger, bolder Book a meeting CTA */
.modal__meeting-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  transition: all 0.2s;
}
.modal__meeting-btn:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .modal__inner--contact { grid-template-columns: 1fr; }
  .modal__inner--contact .modal__sidebar { border-radius: 24px 24px 0 0; }
  .modal__contact-side { border-radius: 0 0 24px 24px; }
}

/* ============================================
   ASSESSMENT PAGE
   ============================================ */
.assessment-hero { background: var(--calm); }
.assessment-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.assessment-hero__copy h1 { color: var(--forest); margin-bottom: 0.5rem; }
.assessment-hero__copy .ornament { background: var(--coral); }
.assessment-hero__sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.assessment-hero__form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.assessment-form__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.assessment-form__form .form__group { margin-bottom: 1rem; }
.assessment-form__form .form__group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.assessment-form__form .form__group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
}
.assessment-form__form .form__group input:focus { outline: none; border-color: var(--forest); }
.assessment-form__form .btn { width: 100%; margin-top: 0.5rem; }
.assessment-form__trust {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.55;
}

/* Body section: copy + image */
.assessment-body { background: var(--white); }
.assessment-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.assessment-body__copy p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.1em;
}
.assessment-body__copy p:last-child { color: var(--forest); }
.assessment-body__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.assessment-body__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.assessment-body__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}
.assessment-body__image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .assessment-hero__grid,
  .assessment-body__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .assessment-body__image { max-width: 420px; margin: 0 auto; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: var(--frame-pad);
    right: var(--frame-pad);
    background: var(--white);
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.5rem 0; }
  .nav__hamburger { display: flex; }
  .nav__contact-btn { width: 100%; text-align: center; margin-top: 0.5rem; }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: clamp(560px, 95vh, 760px);
  }
  /* Object-position uses face anchor 59% — at narrow widths, this puts her face in the right half */
  .hero__image img {
    object-position: 50% 36%;
  }
  .hero__text {
    max-width: 62%;
    padding: clamp(2rem, 6vw, 3rem) clamp(1.5rem, 5vw, 2.5rem) clamp(11rem, 24vw, 14rem);
    min-height: 0;
  }
  .hero__credibility {
    /* keep absolute overlay on mobile, dark frosted look */
    position: absolute;
    grid-template-columns: repeat(2, 1fr);
    left: clamp(1rem, 4vw, 2rem);
    right: clamp(1rem, 4vw, 2rem);
    bottom: clamp(1rem, 3vw, 1.75rem);
  }
  .hero__credibility .credibility__item {
    padding: 0.75rem 0.75rem;
    font-size: 0.78rem;
  }
  .hero__credibility .credibility__badge {
    font-size: 0.58rem;
  }
  .hero__cta {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
    width: 100%;
    padding: 0.85rem 1.25rem;
  }

  .about__grid,
  .podcast-feature__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__image { margin: 0 auto; }
  .audience .about__grid > .about__image { order: 2; }
  .podcast-feature__cover {
    aspect-ratio: auto;
    max-width: 380px;
    margin: 0 auto;
  }

  .credibility__grid { grid-template-columns: repeat(2, 1fr); }
  .credibility__item:not(:last-child)::after { display: none; }

  .stats__grid,
  .blog__grid { grid-template-columns: 1fr; gap: 1rem; }

  .funnel__track { grid-template-columns: 1fr; gap: 6px; }
  .funnel__scale { display: none; }

  .modal__inner { grid-template-columns: 1fr; }
  .modal__sidebar { border-radius: 24px 24px 0 0; }
}

@media (max-width: 600px) {
  .credibility__grid { grid-template-columns: 1fr; }
  .credibility__item { padding: 0.75rem 0; }
  .seen-in__grid img { height: 100px; width: 100px; }
  .podcast-feature__cta { flex-direction: column; gap: 0.75rem; }
  .nav__logo-img { height: 36px; }
  .nav__inner { padding: 0.5rem 0.6rem 0.5rem 1.1rem; }
  .about__image::after { width: 90px; height: 90px; top: -15px; right: -15px; }
}

/* Narrowest phones: text uses full width, stronger gradient handles legibility */
@media (max-width: 480px) {
  .hero__text { max-width: 100%; }
  .hero__image::after {
    background: linear-gradient(
      180deg,
      rgba(25, 60, 64, 0.75) 0%,
      rgba(25, 60, 64, 0.55) 45%,
      rgba(25, 60, 64, 0.40) 100%
    );
  }
}
