/* ============================================
   SMASH PROPERTY — shared brand stylesheet
   Palette:  #2F2E2E charcoal / #FBAD1C yellow / #FFFFFF white
   Typography: Bricolage Grotesque (display) + Inter (body)
   ============================================ */

:root {
  --brand-black: #2F2E2E;
  --brand-yellow: #FBAD1C;
  --brand-white: #FFFFFF;

  --charcoal: #2F2E2E;
  --charcoal-2: #3A3938;
  --charcoal-3: #484746;
  --charcoal-card: #373636;
  --charcoal-line: rgba(255, 255, 255, 0.09);
  --charcoal-line-2: rgba(255, 255, 255, 0.14);

  --yellow: #FBAD1C;
  --yellow-hover: #E89A10;
  --yellow-soft: #FFF4DD;

  --cream: #F5F1E8;
  --cream-dark: #EDE8DB;

  --white: #FFFFFF;
  --white-soft: #E8E6E1;
  --white-mute: #B8B5B0;

  --text-on-dark: #FFFFFF;
  --text-on-dark-soft: #CFCCC6;
  --text-on-dark-mute: #8F8C87;

  --text-on-light: #2F2E2E;
  --text-on-light-soft: #5A5858;

  --radius: 4px;
  --radius-lg: 12px;
  --radius-card: 14px;

  --container: 1320px;

  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10.5vw, 10rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
}
.eyebrow-dark { color: var(--charcoal); }
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--yellow);
}
.eyebrow-line.on-light::before { background: var(--charcoal); }

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-on-dark-soft);
  max-width: 620px;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-on-dark-soft);
  line-height: 1.65;
}

.yellow { color: var(--yellow); }
.italic { font-style: italic; font-weight: 500; }

/* Arrow corner motif */
.arrow-corner {
  display: inline-flex;
  width: 44px; height: 44px;
  color: var(--yellow);
  flex-shrink: 0;
}
.arrow-corner svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }

.slash-subhead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.slash-subhead .slash { color: var(--yellow); margin: 0 0.35em; font-weight: 700; }
.slash-subhead.on-light { color: var(--charcoal); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--charcoal);
}
.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(251, 173, 28, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(47,46,46,0.3);
}
.btn-outline-dark:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--yellow);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: #000;
  color: var(--yellow);
}
.btn-arrow svg { transition: transform 0.22s ease; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* ============ NAVIGATION ============ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.1rem 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(47, 46, 46, 0);
}
nav.scrolled {
  background: rgba(47, 46, 46, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--charcoal-line);
}
/* sub-page nav always visible on charcoal */
nav.nav-solid {
  background: rgba(47, 46, 46, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--charcoal-line);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}
.nav-links > li > a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-on-dark-soft);
  transition: color 0.2s;
  padding: 0.4rem 0;
  position: relative;
}
.nav-links > li > a:hover,
.nav-links > li > a.current { color: var(--yellow); }
.nav-links > li > a.current::after,
.nav-links > li > a:not(.btn):hover::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
}
.nav-links .btn { font-size: 0.88rem; padding: 0.75rem 1.4rem; }
.nav-links .btn::after { display: none !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}
.menu-toggle svg { width: 24px; height: 24px; stroke: currentColor; }

/* ============ HERO (HOMEPAGE) ============ */

.hero {
  padding: 10rem 0 0;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 5rem;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hero-label::before {
  content: '';
  width: 38px; height: 2px;
  background: var(--yellow);
}
.hero h1 {
  margin-bottom: 2rem;
  color: var(--white);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.4rem;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--charcoal-2);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47,46,46,0.5), transparent 45%);
  pointer-events: none;
}
.hero-corner-tag {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 0.5rem 0.9rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
}
.hero-review {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  background: var(--white);
  color: var(--charcoal);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-review .stars { color: var(--yellow); letter-spacing: 2px; font-size: 0.95rem; }
.hero-review-text strong { display: block; font-size: 0.92rem; font-weight: 700; }
.hero-review-text span { font-size: 0.78rem; color: var(--text-on-light-soft); }

.hero-title-row,
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--charcoal-line);
  padding-bottom: 2rem;
}
.hero-title-row { padding-top: 2rem; }
.section-title-row-light {
  border-top-color: rgba(47,46,46,0.15);
}
.section-title-block .slash-subhead,
.hero-title-left .slash-subhead { margin-bottom: 1.4rem; }
.hero .section-title { margin-top: 0.4rem; }

/* ============ SUB-PAGE HERO ============ */

.page-hero {
  padding: 11rem 0 5rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 5rem;
  align-items: end;
}
.page-hero .eyebrow-line { margin-bottom: 1.5rem; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1.8rem;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
}
.page-hero .lead {
  max-width: 560px;
}
.page-hero-meta {
  border-left: 2px solid var(--yellow);
  padding-left: 1.6rem;
}
.page-hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.page-hero-meta p {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.page-hero-end {
  margin-top: 5rem;
}

/* ============ TRUST STRIP ============ */

.trust-strip {
  background: var(--yellow);
  color: var(--charcoal);
  padding: 2.5rem 0;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 50%;
  width: 1px; height: 42px;
  background: rgba(47, 46, 46, 0.18);
  transform: translateY(-50%);
}
.trust-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.3;
  opacity: 0.85;
}

/* ============ SECTION SHELL ============ */

.section-shell {
  padding: 7rem 0 0;
  position: relative;
}
.section-shell-inner {
  padding-bottom: 3rem;
}
.section-light {
  background: var(--cream);
  color: var(--charcoal);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4,
.section-light p { color: var(--charcoal); }
.section-light .body-text,
.section-light p.body { color: var(--text-on-light-soft); }
.section-light .section-title { color: var(--charcoal); }
.section-light .arrow-corner { color: var(--charcoal); }
.section-light .slash-subhead { color: var(--charcoal); }
.section-light .eyebrow { color: var(--charcoal); }

/* ============ ABOUT / TEXT+IMAGE ============ */

.about { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-grid.reverse { grid-template-columns: 1fr 1.1fr; }
.about-text p {
  font-size: 1.15rem;
  color: var(--text-on-dark-soft);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}
.section-light .about-text p { color: var(--text-on-light-soft); }
.about-image {
  aspect-ratio: 5/6;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--charcoal-2);
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; border-radius: var(--radius-card); }
.about-image::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--yellow);
  z-index: 0;
  border-radius: var(--radius-card);
}

.team-sig {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal-line);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.section-light .team-sig { border-top-color: rgba(47,46,46,0.15); }
.team-sig-avatars { display: flex; }
.team-sig-avatars img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--charcoal);
  object-fit: cover;
  /* tone-match across the three photos */
  filter: saturate(0.92) contrast(1.04) brightness(0.97);
  background: var(--charcoal-2);
  margin-left: -14px;
}
.team-sig-avatars img:first-child { margin-left: 0; }
.team-sig-text { font-size: 0.92rem; color: var(--text-on-dark-soft); }
.team-sig-text strong { color: var(--white); font-weight: 600; display: block; }
.section-light .team-sig-text { color: var(--text-on-light-soft); }
.section-light .team-sig-text strong { color: var(--charcoal); }
.section-light .team-sig-avatars img { border-color: var(--cream); }

/* ============ INTRO ROW (heading left, copy right) ============ */

.intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: end;
}
.intro-row h2 {
  color: var(--white);
  max-width: 620px;
}
.section-light .intro-row h2 { color: var(--charcoal); }
.intro-row p {
  color: var(--text-on-dark-soft);
  font-size: 1.08rem;
}
.section-light .intro-row p { color: var(--text-on-light-soft); }

/* ============ SERVICE CARDS ============ */

.services { background: var(--charcoal); padding-top: 8rem; }
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 3rem; align-items: end; }
.services-intro h2 { color: var(--white); max-width: 600px; }
.services-intro p { color: var(--text-on-dark-soft); font-size: 1.08rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.service-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--charcoal-card);
  padding: 2.4rem 2rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--charcoal-line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.service-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(251, 173, 28, 0.12);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
}
.service-tag {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white-mute);
}
.service-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.55rem; }
.service-card p { color: var(--text-on-dark-soft); font-size: 0.98rem; margin-bottom: 2rem; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 0.8rem; }

/* ============ DETAILED SERVICE BLOCK ============ */

.service-detail {
  padding: 6rem 0;
  border-top: 1px solid var(--charcoal-line);
}
.service-detail:first-of-type { border-top: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.service-detail-grid.reverse { grid-template-columns: 1.2fr 1fr; }
.service-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.service-detail-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
}
.service-detail h2 { color: var(--white); margin-bottom: 1.4rem; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.service-detail p.intro { color: var(--text-on-dark-soft); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.includes-list { list-style: none; }
.includes-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  color: var(--text-on-dark-soft);
  border-top: 1px solid var(--charcoal-line);
  font-size: 0.98rem;
}
.includes-list li:last-child { border-bottom: 1px solid var(--charcoal-line); }
.includes-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.35rem;
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 2px;
}
.service-sidebar {
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}
.service-sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; bottom: 0;
  background: var(--yellow);
}
.service-sidebar h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.service-sidebar p {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.service-sidebar .sidebar-attr {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-mute);
  font-weight: 600;
}

/* ============ DIFFERENCE / NUMBERED LIST ============ */

.difference {
  background: var(--cream);
  color: var(--charcoal);
  padding-top: 8rem;
}
.difference .eyebrow { color: var(--charcoal); }
.difference .eyebrow-line::before { background: var(--charcoal); }
.difference h2 { color: var(--charcoal); }
.difference .body-text, .difference p { color: var(--text-on-light-soft); }
.difference .slash-subhead { color: var(--charcoal); }
.difference .slash-subhead .slash { color: var(--yellow); }

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.difference-left h2 { margin-bottom: 1.5rem; }
.difference-left .eyebrow-line { margin-bottom: 1.5rem; }
.difference-left p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.difference-list { list-style: none; }
.difference-item {
  padding: 2.2rem 0;
  border-top: 1px solid rgba(47, 46, 46, 0.15);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 2rem;
  align-items: start;
}
.difference-item:first-child { border-top: 2px solid var(--charcoal); }
.difference-item:last-child { border-bottom: 1px solid rgba(47, 46, 46, 0.15); }
.difference-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--yellow);
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.difference-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.difference-item p { font-size: 1rem; margin: 0; }
.difference .section-title { color: var(--charcoal); }
.difference .arrow-corner { color: var(--charcoal); }

/* ============ RESULTS / CASE CARDS ============ */

.results {
  background: var(--charcoal);
  padding-top: 8rem;
  position: relative;
}
.results-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: end;
}
.results-intro h2 { color: var(--white); max-width: 600px; }
.results-intro p { color: var(--text-on-dark-soft); font-size: 1.08rem; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.case-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.case-card {
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.case-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #222;
  position: relative;
}
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.case-card:hover .case-image img { transform: scale(1.06); }
.case-num-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.case-body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.case-label {
  font-size: 0.76rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.case-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.case-card p.case-desc {
  font-size: 0.95rem;
  color: var(--text-on-dark-soft);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  flex: 1;
}
.case-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--charcoal-line);
  flex-wrap: wrap;
}
.case-stat { font-size: 0.82rem; color: var(--text-on-dark-mute); }
.case-stat strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

/* ============ FILTER TABS ============ */

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal-line);
}
.filter-tab {
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark-soft);
  background: transparent;
  border: 1px solid var(--charcoal-line-2);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-tab:hover { color: var(--yellow); border-color: var(--yellow); }
.filter-tab.active { background: var(--yellow); color: var(--charcoal); border-color: var(--yellow); }

/* ============ TESTIMONIAL ============ */

.testimonial {
  background: var(--cream);
  color: var(--charcoal);
  padding: 8rem 0;
  text-align: center;
}
.testimonial-inner { max-width: 820px; margin: 0 auto; }
.testimonial-stars {
  color: var(--yellow);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 1.8rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
}
.testimonial-quote .quote-mark {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.2em;
}
.testimonial-attr {
  font-size: 0.9rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  opacity: 0.75;
}
.testimonial-attr strong { color: var(--charcoal); font-weight: 700; opacity: 1; }
.testimonial-google {
  margin-top: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.4rem;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.testimonial-google:hover {
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

/* ============ PROCESS / TIMELINE ============ */

.process {
  background: var(--charcoal);
  padding: 7rem 0 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.process-step {
  padding: 2rem 1.6rem;
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  position: relative;
  transition: all 0.3s;
}
.process-step:hover { border-color: var(--yellow); transform: translateY(-3px); }
.process-step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.process-step h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.process-step p {
  color: var(--text-on-dark-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* ============ FAQ ACCORDION ============ */

.faq {
  background: var(--cream);
  color: var(--charcoal);
  padding-top: 8rem;
}
.faq .eyebrow { color: var(--charcoal); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.faq-left h2 { color: var(--charcoal); margin-bottom: 1.2rem; }
.faq-left p { color: var(--text-on-light-soft); font-size: 1.05rem; max-width: 420px; }
.faq-list { list-style: none; }
.faq-item {
  border-top: 1px solid rgba(47,46,46,0.15);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(47,46,46,0.15); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
  line-height: 1.3;
}
.faq-question:hover { color: var(--yellow-hover); }
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-on-light-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-answer-inner {
  padding-bottom: 1.6rem;
  max-width: 720px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============ TEAM GRID ============ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.team-member {
  background: var(--charcoal-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--charcoal-line);
  transition: all 0.3s;
}
.team-member:hover { border-color: var(--yellow); transform: translateY(-3px); }
.team-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(251, 173, 28, 0.12) 0%, rgba(251, 173, 28, 0) 55%),
    linear-gradient(180deg, var(--charcoal-2) 0%, var(--charcoal-card) 100%);
  position: relative;
  isolation: isolate;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* tone-match the three photos so the white-bg shot reads in the same family
     as the grey-studio shots */
  filter: saturate(0.92) contrast(1.04) brightness(0.97);
}
/* corner vignette + brand glow: hides studio-backdrop inconsistencies and
   pulls every portrait toward the brand palette */
.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, transparent 35%, rgba(47, 46, 46, 0.55) 95%),
    linear-gradient(180deg, transparent 60%, rgba(47, 46, 46, 0.85) 100%);
}
/* yellow accent stripe at the bottom of every portrait for brand consistency */
.team-image::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 2;
}
.team-info { padding: 1.8rem; }
.team-info h3 { color: var(--white); margin-bottom: 0.3rem; font-size: 1.35rem; }
.team-role {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: block;
}
.team-info p {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.team-socials {
  display: flex;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal-line);
}
.team-socials a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal-line-2);
  border-radius: 50%;
  color: var(--text-on-dark-soft);
  transition: all 0.2s;
}
.team-socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
}
.team-socials svg { width: 14px; height: 14px; fill: currentColor; }

/* ============ VALUES GRID ============ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.value-card {
  padding: 2.2rem 1.8rem;
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  transition: all 0.3s;
}
.value-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.value-icon {
  width: 44px; height: 44px;
  color: var(--yellow);
  margin-bottom: 1.4rem;
}
.value-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.8; }
.value-card h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.7rem; }
.value-card p { color: var(--text-on-dark-soft); font-size: 0.95rem; line-height: 1.55; }

/* ============ CONTACT FORM ============ */

.contact {
  background: var(--charcoal);
  padding: 7rem 0 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info > p { color: var(--text-on-dark-soft); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2.5rem; max-width: 420px; }
.contact-method {
  padding: 1.6rem 0;
  border-top: 1px solid var(--charcoal-line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.contact-method:last-child { border-bottom: 1px solid var(--charcoal-line); }
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(251,173,28,0.15);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact-method-text strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}
.contact-method-text a, .contact-method-text span {
  color: var(--text-on-dark-soft);
  font-size: 1.05rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.contact-method-text a:hover { color: var(--yellow); }

.form-card {
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-card);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.form-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-card > p {
  color: var(--text-on-dark-soft);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-dark-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--charcoal-line-2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--white);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-on-dark-soft);
  margin: 0.8rem 0 1.4rem;
  line-height: 1.5;
}
.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--yellow);
}
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-on-dark-mute);
}

/* ============ FINAL CTA ============ */

.cta {
  background: var(--yellow);
  color: var(--charcoal);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -400px; left: 50%;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta .eyebrow {
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.cta .eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--charcoal);
}
.cta h2 {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  letter-spacing: -0.03em;
}
.cta p {
  color: var(--charcoal);
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 2.6rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.88;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.7;
  font-weight: 500;
}

/* ============ FOOTER ============ */

footer {
  background: var(--charcoal);
  color: var(--text-on-dark-soft);
  padding: 5rem 0 2rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--charcoal-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.footer-brand-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 1.4rem;
}
.footer-brand p {
  max-width: 360px;
  margin-bottom: 1.8rem;
  color: var(--text-on-dark-soft);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: var(--text-on-dark-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }

.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal-line-2);
  border-radius: 50%;
  transition: all 0.2s;
  color: var(--text-on-dark-soft);
}
.socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
}
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-on-dark-mute);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--text-on-dark-mute); }
.footer-bottom a:hover { color: var(--yellow); }

/* ============ MOBILE STICKY CTA ============ */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 50;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  justify-content: center;
}
.mobile-cta .btn { width: 100%; justify-content: center; padding: 1.1rem; }

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1100px) {
  .section-title { font-size: clamp(3.2rem, 12vw, 7rem); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .hero-top, .about-grid, .about-grid.reverse, .difference-grid,
  .services-intro, .results-intro, .intro-row,
  .service-detail-grid, .service-detail-grid.reverse,
  .page-hero-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero-end { margin-top: 3rem; }
  .hero { padding: 7rem 0 0; min-height: auto; }
  .hero-image-wrap { aspect-ratio: 3/2; max-height: 500px; }
  .service-grid, .service-grid.cols-2, .case-grid, .team-grid,
  .values-grid, .process-grid, .case-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--charcoal-line);
  }
  .menu-toggle { display: block; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 6rem; }
  .section-shell, .services, .difference, .results, .about, .process, .faq, .contact {
    padding-top: 5rem;
  }
  .difference-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .hero-title-row, .section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial, .cta { padding: 5rem 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .hero-actions .btn, .cta-actions .btn, .form-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-logo img { height: 32px; }
  .form-card { padding: 1.6rem; }
}

/* ============================================
   CALENDAR EMBED — HubSpot meetings widget
   ============================================ */
.calendar-section {
  background: var(--charcoal-2);
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid var(--charcoal-line);
}
.calendar-section-light {
  background: var(--cream);
  color: var(--charcoal);
  border-top: none;
}
.calendar-section-light .eyebrow,
.calendar-section-light h2,
.calendar-section-light .body-text { color: var(--charcoal); }

/* Inline mid-page CTA banner */
.inline-cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFC85A 100%);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2rem 2.4rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(251, 173, 28, 0.15);
}
.inline-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.inline-cta-banner-text { flex: 1; min-width: 240px; position: relative; z-index: 1; }
.inline-cta-banner-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  line-height: 1.2;
}
.inline-cta-banner-text span { font-size: 0.98rem; color: var(--charcoal); opacity: 0.85; }
.inline-cta-banner .btn { position: relative; z-index: 1; }
@media (max-width: 600px) {
  .inline-cta-banner { padding: 1.6rem; flex-direction: column; align-items: flex-start; }
  .inline-cta-banner-text strong { font-size: 1.2rem; }
  .inline-cta-banner .btn { width: 100%; justify-content: center; }
}
.calendar-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2.5rem 0 3rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--charcoal-line-2);
  position: relative;
  overflow: hidden;
}
.calendar-embed-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  z-index: 2;
}
.meetings-iframe-container {
  width: 100%;
  min-height: 720px;
}
.meetings-iframe-container iframe {
  width: 100% !important;
  min-height: 720px !important;
  border: 0 !important;
  display: block;
}
@media (max-width: 768px) {
  .calendar-section { padding-top: 4rem; padding-bottom: 4rem; }
  .calendar-embed-wrap { padding: 0.6rem; margin: 2rem 0; }
  .meetings-iframe-container,
  .meetings-iframe-container iframe { min-height: 880px !important; }
}

/* ============ AS SEEN IN ============ */
.as-seen-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.as-seen-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0.6rem 0 1rem;
  color: var(--white);
}
.as-seen-text p {
  color: var(--text-on-dark-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 560px;
}
.as-seen-badges {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.as-seen-badge {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.as-seen-badge-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-on-light-soft);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.as-seen-badge-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}
@media (max-width: 960px) {
  .as-seen-row { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============ PODCAST & EDUCATION ============ */
.podcast-row {
  max-width: 1100px;
  margin: 0 auto;
}
.podcast-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 1rem 0 1.5rem;
}
.podcast-text .lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-on-light);
  margin-bottom: 1rem;
}
.podcast-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-light-soft);
  margin-bottom: 1.5rem;
}
.podcast-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.podcast-link {
  display: block;
  padding: 1.6rem 1.5rem;
  background: var(--charcoal);
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.podcast-link::after {
  content: "→";
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 1.1rem;
  color: var(--yellow);
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.podcast-link:hover {
  transform: translateY(-3px);
  background: var(--charcoal-2, #3a3938);
  border-color: var(--yellow);
}
.podcast-link:hover::after {
  transform: translate(3px, -3px);
  opacity: 1;
}
.podcast-link-platform {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.podcast-link-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.podcast-link-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
@media (max-width: 800px) {
  .podcast-links { grid-template-columns: 1fr; gap: 1rem; }
}

/* Homepage podcast teaser variant (on charcoal background) */
.podcast-teaser {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.podcast-teaser-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 1rem 0 1.25rem;
}
.podcast-teaser-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}
.podcast-teaser .podcast-links {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.podcast-teaser .podcast-link {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.podcast-teaser .podcast-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--yellow);
}
@media (max-width: 900px) {
  .podcast-teaser { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   RESOURCES HUB
   ============================================ */
.featured-update {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 3rem;
}
.featured-update:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,0.18); }
.featured-update-image { position: relative; min-height: 380px; overflow: hidden; }
.featured-update-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-update:hover .featured-update-image img { transform: scale(1.04); }
.featured-update-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--yellow); color: var(--charcoal);
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.55rem 0.95rem; border-radius: 999px;
}
.featured-update-body { padding: 3rem 3rem 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-update-meta {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55); margin-bottom: 1.2rem; display: flex; gap: 0.6rem; font-weight: 600;
}
.featured-update-body h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.2rem;
}
.featured-update-body p { font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.featured-update-cta {
  font-family: var(--font-display); color: var(--yellow); font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.6rem; transition: gap 0.25s ease;
}
.featured-update:hover .featured-update-cta { gap: 1rem; }
@media (max-width: 900px) {
  .featured-update { grid-template-columns: 1fr; }
  .featured-update-image { min-height: 240px; }
  .featured-update-body { padding: 2rem 1.6rem 2.4rem; }
}

/* Ebook grid */
.ebook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.ebook-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ebook-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.12); }
.ebook-card-cover {
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 1.8rem; color: var(--charcoal); position: relative; overflow: hidden;
}
.ebook-card-cover::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.18); border-radius: 0 0 0 100%;
}
.ebook-card-cover-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700; margin-bottom: 0.7rem; opacity: 0.85; position: relative; z-index: 1;
}
.ebook-card-cover-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em; position: relative; z-index: 1;
}
.ebook-card-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.ebook-card-body h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.25; margin-bottom: 0.7rem;
}
.ebook-card-body p { font-size: 0.95rem; line-height: 1.6; color: var(--text-on-light-soft); margin-bottom: 1.2rem; flex: 1; }
.ebook-card-meta {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-on-light-soft); font-weight: 600;
  display: flex; gap: 0.5rem; margin-bottom: 1.4rem;
}
.ebook-card-body .btn { align-self: flex-start; }
.ebook-grid-footnote { text-align: center; margin-top: 2.5rem; color: var(--text-on-light-soft); font-size: 0.95rem; }
.ebook-grid-footnote a {
  color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px; text-underline-offset: 4px; font-weight: 600;
}
@media (max-width: 900px) { .ebook-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Podcast episode grid */
.podcast-episode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 3rem; }
.podcast-episode-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 18px;
  padding: 2rem; display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
  text-decoration: none; color: inherit;
}
.podcast-episode-card:hover { transform: translateY(-3px); border-color: var(--yellow); }
a.podcast-episode-card .podcast-episode-cta { display: inline-block; }
.podcast-episode-num {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--yellow); margin-bottom: 0.9rem;
}
.podcast-episode-card h4 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.25; margin-bottom: 0.8rem;
}
.podcast-episode-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-on-light-soft); margin-bottom: 1.2rem; flex: 1; }
.podcast-episode-meta {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-on-light-soft); font-weight: 600;
  display: flex; gap: 0.5rem; margin-bottom: 1.2rem;
}
.podcast-episode-cta {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 2px solid var(--yellow); align-self: flex-start; padding-bottom: 2px;
  transition: color 0.2s ease;
}
.podcast-episode-cta:hover { color: var(--yellow); }
@media (max-width: 800px) { .podcast-episode-grid { grid-template-columns: 1fr; } }

.podcast-platforms { margin-top: 3.5rem; text-align: center; padding-top: 2.5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.podcast-platforms-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-on-light-soft); font-weight: 700; margin-bottom: 1.2rem;
}
.podcast-platforms-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.podcast-platform-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--charcoal); background: var(--white);
  border: 1px solid rgba(0,0,0,0.1); border-radius: 999px;
  padding: 0.7rem 1.4rem; text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.podcast-platform-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* Update list (archive) */
.update-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.update-list-item {
  display: grid; grid-template-columns: 110px 1fr 32px; gap: 2rem;
  align-items: center; background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; padding: 1.6rem 2rem;
  text-decoration: none; color: var(--charcoal);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.update-list-item:hover { transform: translateX(4px); border-color: var(--yellow); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.update-list-date { text-align: center; padding: 0.8rem 0; background: rgba(0,0,0,0.04); border-radius: 12px; }
.update-list-month {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--yellow);
}
.update-list-year { font-size: 0.78rem; font-weight: 600; color: var(--text-on-light-soft); letter-spacing: 0.1em; }
.update-list-body h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.3; margin-bottom: 0.4rem;
}
.update-list-body p { font-size: 0.95rem; line-height: 1.55; color: var(--text-on-light-soft); }
.update-list-arrow {
  color: var(--charcoal); display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.update-list-item:hover .update-list-arrow { color: var(--yellow); transform: translateX(4px); }
@media (max-width: 700px) {
  .update-list-item { grid-template-columns: 80px 1fr; gap: 1.2rem; padding: 1.2rem 1.4rem; }
  .update-list-arrow { display: none; }
}

/* Newsletter card */
.newsletter-card {
  background: var(--charcoal); border-radius: 24px; padding: 4rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.newsletter-card-text h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); margin: 1rem 0 1.2rem;
}
.newsletter-card-text p { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.72); }
.newsletter-form { display: flex; flex-direction: column; gap: 0.9rem; }
.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form input[type="tel"] {
  font-size: 1rem; padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; color: var(--white); outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="tel"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="tel"]:focus { border-color: var(--yellow); background: rgba(255,255,255,0.08); }
.newsletter-form .btn { align-self: flex-start; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 800px) { .newsletter-card { grid-template-columns: 1fr; padding: 2.5rem 1.8rem; gap: 2rem; } }

/* ============================================
   ARTICLE / BLOG POST
   ============================================ */
.article-container { max-width: 760px; margin: 0 auto; }
.article-container-wide { max-width: 1100px; margin: 0 auto; }
.article-header { background: var(--charcoal); color: var(--white); padding: 8rem 0 3rem; }
.article-breadcrumb {
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 0.85rem; color: var(--text-on-dark-soft);
  margin-bottom: 1.5rem; font-weight: 500;
}
.article-breadcrumb a { color: var(--white); text-decoration: none; font-weight: 600; }
.article-breadcrumb a:hover { color: var(--yellow); }
.article-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white); margin: 1rem 0 1.5rem;
}
.article-deck { font-size: 1.2rem; line-height: 1.55; color: var(--text-on-dark-soft); margin-bottom: 2.5rem; max-width: 680px; }
.article-meta {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.article-meta-author { display: flex; align-items: center; gap: 1rem; }
.article-meta-author-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--yellow); }
.article-meta-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-meta-author-text strong { font-family: var(--font-display); font-size: 1rem; color: var(--white); display: block; }
.article-meta-author-text span { font-size: 0.85rem; color: var(--text-on-dark-soft); }
.article-meta-share { display: flex; align-items: center; gap: 0.6rem; }
.article-meta-share span { color: var(--text-on-dark-soft); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.article-meta-share a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--white); transition: background 0.2s ease; }
.article-meta-share a:hover { background: var(--yellow); color: var(--charcoal); }
.article-meta-share { display: flex; align-items: center; gap: 0.8rem; }
.article-meta-share span {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-on-light-soft); font-weight: 700; margin-right: 0.5rem;
}
.article-meta-share a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--white); color: var(--charcoal);
  border: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s ease, color 0.2s ease;
}
.article-meta-share a:hover { background: var(--yellow); color: var(--charcoal); }

.article-hero-image { background: rgba(0,0,0,0.03); padding-bottom: 4rem; }
.article-hero-image-wrap { border-radius: 20px; overflow: hidden; background: var(--charcoal); }
.article-hero-image-wrap img { width: 100%; height: auto; display: block; max-height: 540px; object-fit: cover; }
.article-hero-caption {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  font-size: 0.85rem; padding: 1rem 1.4rem; font-style: italic; line-height: 1.5;
}

.article-body { padding: 4rem 0 5rem; background: var(--white); }
.article-prose { font-size: 1.1rem; line-height: 1.75; color: var(--text-on-light); }
.article-prose .article-lead { font-size: 1.3rem; line-height: 1.55; color: var(--charcoal); margin-bottom: 2.5rem; font-weight: 500; }
.article-prose h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--charcoal); margin: 3rem 0 1.2rem;
}
.article-prose h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--charcoal); margin: 2.5rem 0 1rem;
}
.article-prose p { margin-bottom: 1.4rem; }
.article-prose strong { color: var(--charcoal); font-weight: 700; }
.article-prose em { font-style: italic; }
.article-prose ul, .article-prose ol { margin: 0 0 1.6rem 1.5rem; padding-left: 0.5rem; }
.article-prose li { margin-bottom: 0.8rem; padding-left: 0.4rem; }
.article-prose ul li::marker { color: var(--yellow); }
.article-prose ol li::marker { color: var(--yellow); font-weight: 700; }
.article-prose a {
  color: var(--charcoal); text-decoration: underline;
  text-decoration-color: var(--yellow); text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.article-prose a:hover { color: var(--yellow); }

.article-callout {
  background: var(--charcoal); color: var(--white);
  border-radius: 16px; padding: 2rem 2.2rem;
  margin: 2.5rem 0; border-left: 5px solid var(--yellow);
}
.article-callout-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--yellow); font-weight: 700; margin-bottom: 0.7rem;
}
.article-callout p { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.65; margin-bottom: 0; }

.article-end-cta {
  background: rgba(0,0,0,0.04); border-radius: 18px;
  padding: 2.5rem 2.5rem; margin: 4rem 0 3rem; text-align: center;
}
.article-end-cta h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.9rem; line-height: 1.2;
}
.article-end-cta p {
  font-size: 1rem; line-height: 1.6; color: var(--text-on-light-soft);
  margin-bottom: 1.6rem; max-width: 520px; margin-left: auto; margin-right: auto;
}

.article-author-bio {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 2rem 0 0; border-top: 1px solid rgba(0,0,0,0.08); margin-top: 1rem;
}
.article-author-bio-avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden; background: var(--charcoal);
}
.article-author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-author-bio-text strong {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--charcoal); display: block; margin-bottom: 0.4rem;
}
.article-author-bio-text p { font-size: 0.95rem; line-height: 1.6; color: var(--text-on-light-soft); margin-bottom: 0; }

@media (max-width: 700px) {
  .article-header { padding: 6rem 0 2rem; }
  .article-prose { font-size: 1.04rem; }
  .article-end-cta { padding: 2rem 1.5rem; }
}

/* Podcast video grid — clickable thumbnail cards linking to YouTube */
.podcast-video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem;
}
.podcast-video-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 18px;
  overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.podcast-video-card:hover { transform: translateY(-3px); border-color: var(--yellow); box-shadow: 0 24px 50px rgba(0,0,0,0.12); }
.podcast-video-card:hover .podcast-video-play svg { transform: scale(1.08); }
.podcast-video-thumb {
  position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
  background: #1a1919; overflow: hidden;
}
.podcast-video-thumb img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.podcast-video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.podcast-video-play svg {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45));
  transition: transform 0.25s ease;
}
.podcast-video-meta {
  padding: 1.2rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.podcast-video-platform {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  color: var(--text-on-light-soft);
}
.podcast-video-cta {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--charcoal);
}
.podcast-video-card:hover .podcast-video-cta { color: var(--yellow); }
@media (max-width: 1000px) { .podcast-video-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Newsletter form status messages */
.newsletter-form-status {
  margin: 0.6rem 0 0; min-height: 1em; font-size: 0.92rem; line-height: 1.4;
  width: 100%; flex-basis: 100%;
}
.newsletter-form-status.is-success { color: var(--yellow); }
.newsletter-form-status.is-error { color: #ff8a8a; }
.newsletter-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============ ARTICLE VIDEO + DOWNLOAD ASIDE ============ */
.article-video-section { padding: 2.5rem 0 1rem; }
.article-video-section .article-container-wide { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr); gap: 2.5rem; align-items: stretch; }
.article-video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,0.35); background: #000; }
.article-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-video-aside { background: var(--charcoal-2); border: 1px solid var(--charcoal-3); border-radius: 14px; padding: 2rem 1.75rem; display: flex; flex-direction: column; justify-content: center; gap: 0.6rem; }
.article-video-aside-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); font-weight: 600; }
.article-video-aside h3 { font-size: 1.4rem; line-height: 1.2; margin: 0; }
.article-video-aside p { color: var(--text-on-dark-soft); font-size: 0.95rem; margin: 0 0 0.6rem; }
.article-video-aside .btn { align-self: flex-start; }
@media (max-width: 900px) {
  .article-video-section .article-container-wide { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============ FEATURED MARKET UPDATE CARD ============ */
.market-update-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 0; background: var(--charcoal-2); border: 1px solid var(--charcoal-3); border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.market-update-feature:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: var(--yellow); }
.market-update-feature-video { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.market-update-feature-video img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.market-update-feature:hover .market-update-feature-video img { transform: scale(1.04); }
.market-update-feature-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: opacity 0.25s ease; }
.market-update-feature-play svg { filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5)); }
.market-update-feature-tag { position: absolute; top: 1rem; left: 1rem; background: var(--yellow); color: var(--charcoal); font-size: 0.72rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.market-update-feature-body { padding: 2.25rem 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.market-update-feature-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); font-weight: 600; }
.market-update-feature-body h3 { font-size: 1.55rem; line-height: 1.2; margin: 0; }
.market-update-feature-body p { color: var(--text-on-dark-soft); font-size: 0.95rem; margin: 0 0 0.4rem; }
.market-update-feature-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.market-update-feature-meta { font-size: 0.85rem; color: var(--white-mute); }
@media (max-width: 900px) {
  .market-update-feature { grid-template-columns: 1fr; }
  .market-update-feature-body { padding: 1.5rem 1.25rem; }
}

/* ============ REELS GRID (Instagram official embed) ============ */
.reels-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; align-items: start; }
.reel-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--charcoal-3);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 480px; /* placeholder height before Instagram embed.js renders */
}
.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
/* Override Instagram's inline styles so embeds fit our cards cleanly */
.reel-card .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}
.reel-card iframe.instagram-media,
.reel-card iframe[src*="instagram.com"] {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  display: block;
}
.reels-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 980px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; } }

/* ============ EBOOK GATE MODAL ============ */
.ebook-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.ebook-modal[hidden] { display: none; }
.ebook-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.78); backdrop-filter: blur(4px); animation: ebookFade 0.18s ease-out; }
.ebook-modal-card { position: relative; background: var(--charcoal-2); border: 1px solid var(--charcoal-3); border-radius: 16px; padding: 2.25rem 1.85rem; max-width: 460px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,0.5); animation: ebookPop 0.22s cubic-bezier(0.2, 0.8, 0.2, 1.05); }
.ebook-modal-close { position: absolute; top: 0.85rem; right: 0.85rem; background: transparent; border: 0; color: var(--text-on-dark-soft); cursor: pointer; padding: 0.35rem; border-radius: 6px; transition: background 0.15s ease, color 0.15s ease; }
.ebook-modal-close:hover { background: var(--charcoal-3); color: var(--text-on-dark); }
.ebook-modal-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); font-weight: 600; margin-bottom: 0.65rem; }
.ebook-modal-title { font-size: 1.45rem; line-height: 1.2; margin: 0 0 0.6rem; }
.ebook-modal-deck { color: var(--text-on-dark-soft); font-size: 0.95rem; margin: 0 0 1.25rem; }
.ebook-modal-form { display: flex; flex-direction: column; gap: 0.65rem; }
.ebook-modal-form input { background: var(--charcoal); color: var(--text-on-dark); border: 1px solid var(--charcoal-3); border-radius: 8px; padding: 0.85rem 1rem; font: inherit; font-size: 0.95rem; transition: border-color 0.15s ease; }
.ebook-modal-form input:focus { outline: none; border-color: var(--yellow); }
.ebook-modal-form input::placeholder { color: var(--white-mute); }
.ebook-modal-form .btn { margin-top: 0.4rem; justify-content: center; }
.ebook-modal-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }
.ebook-modal-status { font-size: 0.85rem; color: var(--text-on-dark-soft); margin: 0.4rem 0 0; min-height: 1.2em; }
.ebook-modal-status.is-success { color: var(--yellow); }
.ebook-modal-status.is-error { color: #ff8a8a; }
.ebook-modal-finprint { font-size: 0.72rem; color: var(--white-mute); margin: 1rem 0 0; line-height: 1.5; }
@keyframes ebookFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ebookPop { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
body.ebook-modal-open { overflow: hidden; }
