/* =============================================
   BULIMIA FREE — Bold Minimalist
   Original Design System (restored)
   ============================================= */

:root {
  --black:      #000000;
  --white:      #FFFFFF;
  --persimmon:  #FF6347;
  --grey-light: #AAAAAA;
  --grey-mid:   #333333;
  --grey-dark:  #0D0D0D;
  --off-white:  #F7F7F7;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4, .bebas {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* ---- Helpers ---- */
.container       { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
.container--slim { max-width: 960px;  margin: 0 auto; padding: 0 64px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Persimmon starburst mark */
.mark {
  display: inline-block;
  width: .7em; height: .7em;
  background: var(--persimmon);
  clip-path: polygon(50% 0%,52% 48%,50% 52%,48% 48%, 100% 50%,52% 52%,48% 52%,52% 48%, 50% 100%,48% 52%,52% 52%,48% 48%, 0% 50%,48% 48%,52% 48%,48% 52%);
  vertical-align: middle;
}

/* ---- Photo treatments ---- */

/* Base: clean B&W, high contrast editorial */
.photo-treat {
  filter: grayscale(100%) contrast(1.12) brightness(1.02);
}

/* Editorial about photo: clean B&W only — persimmon accent is structural (border/bar) */
.photo-editorial {
  filter: grayscale(100%) contrast(1.12) brightness(1.02);
  display: block;
  width: 100%; height: 580px;
  object-fit: cover;
  object-position: center top;
}

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid #E8E8E8;
}
.nav-inner {
  max-width: 100%; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
}
.nav-logo__burst {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  flex-shrink: 0;
}
.footer-brand__burst {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  flex-shrink: 0;
}

/* Links */
.nav-links {
  display: flex; align-items: center;
  list-style: none; gap: 40px;
}
.nav-links > li {
  display: flex; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey-dark);
  transition: color .18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links .nav-cta a {
  background: var(--black); color: var(--white);
  padding: 10px 22px;
}
.nav-links .nav-cta a:hover { background: var(--persimmon); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  box-shadow: 0 2px 0 var(--persimmon);
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(-135deg) translateY(-2px);
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 12px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid #E8E8E8;
  min-width: 140px;
  list-style: none;
  padding: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}
.nav-dropdown__menu li:first-child a { padding-top: 18px; }
.nav-dropdown__menu li:last-child  a { padding-bottom: 14px; }
.nav-dropdown__menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown__menu li a:hover {
  background: var(--off-white);
  color: var(--persimmon);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: .2s; }

/* =============================================
   HERO  — "LIVE FULLY."
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

/* Left: giant type */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 48px;
}
.hero-kicker {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 13vw, 160px);
  line-height: .88;
  color: var(--black);
  margin-bottom: 0;
}
.hero-h1 .period {
  color: var(--persimmon);
}
.hero-sub {
  font-size: 16px; line-height: 1.75; font-weight: 300;
  color: var(--grey-dark);
  max-width: 420px;
  margin-top: 32px; margin-bottom: 40px;
}
.hero-sub strong { font-weight: 600; color: var(--black); }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Right: photo */
.hero-photo {
  position: relative; overflow: hidden;
  background: #111;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
  background: var(--black);
  overflow: hidden; padding: 13px 0;
}
.ticker__track {
  display: flex; white-space: nowrap;
  animation: scroll-left 22s linear infinite;
}
.ticker__item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .18em;
  color: var(--white);
  padding: 0 36px;
}
.ticker__item .dot { color: var(--persimmon); margin-left: 6px; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-label {
  display: block;
  font-size: 15px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--persimmon);
  margin-bottom: 16px;
}
.section-rule {
  width: 40px; height: 3px;
  background: var(--persimmon);
  margin: 20px 0 32px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer; transition: all .2s;
}
.btn--black  { background: var(--black);  color: var(--white); border-color: var(--black); }
.btn--black:hover  { background: var(--persimmon); border-color: var(--persimmon); }
.btn--persimmon { background: var(--persimmon); color: var(--white); border-color: var(--persimmon); }
.btn--persimmon:hover { background: var(--black); border-color: var(--black); }
.btn--outline{ background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--white  { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover  { background: var(--persimmon); color: var(--white); border-color: var(--persimmon); }

/* =============================================
   TRUTH / INFO SECTION
   ============================================= */
.truth-section {
  padding: 100px 0;
  background: var(--off-white);
}
.truth-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center;
}
.truth-left h2 { font-size: clamp(42px, 5.5vw, 68px); margin-bottom: 8px; }
.truth-left p  { font-size: 16px; line-height: 1.8; color: var(--grey-dark); margin-bottom: 18px; }
.truth-stacked { color: var(--persimmon) !important; font-weight: 400; line-height: 2 !important; }
.truth-cards   { display: flex; flex-direction: column; gap: 20px; }
.truth-card {
  background: var(--white);
  padding: 28px 32px;
  border-left: 3px solid var(--persimmon);
}
.truth-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; margin-bottom: 10px;
}
.truth-card p  { font-size: 14px; line-height: 1.65; color: var(--grey-dark); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--black); padding: 56px 0; }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  text-align: center; padding: 16px 20px;
  border-right: 1px solid #222;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px,7vw,88px);
  color: var(--white); line-height: 1;
}
.stat__num em { color: var(--persimmon); font-style: normal; }
.stat__lbl {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-mid); margin-top: 6px; display: block;
}

/* =============================================
   ABOUT / OUR STORY
   ============================================= */
.about-section { padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img {
  position: relative; overflow: hidden;
}
.about-img img {
  width: 100%; height: 580px;
  object-fit: cover; object-position: center top;
}

/* Persimmon overlay strip at bottom */
.about-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--persimmon);
}

.about-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px,12vw,160px);
  color: var(--black); opacity: .06;
  line-height: 1;
  position: absolute; top: -20px; left: -10px;
  pointer-events: none; user-select: none;
}

.about-text h2     { font-size: clamp(42px, 5.5vw, 68px); margin-bottom: 8px; }
.about-text p      { font-size: 15px; line-height: 1.8; color: var(--grey-dark); margin-bottom: 18px; }
.about-text em     { font-style: italic; }
.about-text blockquote {
  border-left: 3px solid var(--persimmon);
  padding: 16px 24px;
  margin: 28px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; line-height: 1.15;
  color: var(--black);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 100px 0; background: var(--off-white); }
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-header h2 { font-size: clamp(40px,5vw,64px); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testi-card {
  background: var(--white); padding: 36px 28px;
  display: flex; flex-direction: column;
}
.testi-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: .7;
  color: var(--persimmon); opacity: .35;
  display: block; margin-bottom: 12px;
}
.testi-card p   { font-size: 14px; line-height: 1.7; color: var(--grey-dark); font-style: italic; flex-grow: 1; margin-bottom: 20px; }
.testi-name     { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; }

/* =============================================
   CTA — black panel
   ============================================= */
.cta-panel {
  background: var(--black);
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-ghost {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(140px,20vw,280px);
  color: rgba(255,255,255,.04);
  letter-spacing: -.02em;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap;
}
.cta-panel .section-label { color: var(--persimmon); }
.cta-panel h2  { font-size: clamp(52px,7vw,96px); color: var(--white); margin-bottom: 20px; }
.cta-panel p   { font-size: 16px; color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 44px; line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px;
  margin-bottom: 48px;
}
.footer-brand__logo { height: 52px; width: auto; display: block; margin-bottom: 14px; filter: invert(1); }
.footer-logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; margin-bottom: 14px; }
.footer-logo__top { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.45em; color: rgba(255,255,255,0.75); }
.footer-logo__bottom { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.02em; color: var(--white); display: flex; align-items: center; gap: 4px; }
.footer-logo__burst { width: 0.55em; height: 0.55em; display: inline-block; vertical-align: middle; position: relative; top: -0.05em; }
.footer-brand__burst  { display: inline-block; vertical-align: middle; margin-left: 3px; flex-shrink: 0; }
.footer-brand p     { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.8; max-width: 260px; }
.footer-col h4      { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .1em; color: var(--white); margin-bottom: 18px; }
.footer-col ul      { list-style: none; }
.footer-col ul li   { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.9); transition: color .18s; }
.footer-col ul li a:hover { color: var(--persimmon); }
.footer-bottom {
  border-top: 1px solid #1a1a1a; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.75); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.page-hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px 80px 48px;
  max-width: 640px; margin-left: auto;
}
.page-hero__copy h1 { font-size: clamp(64px,8.5vw,112px); line-height: .88; margin-bottom: 24px; }
.page-hero__copy p  { font-size: 16px; line-height: 1.75; color: var(--black); max-width: 400px; }
.page-hero__photo   { position: relative; overflow: hidden; background: #111; }
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Story */
.story-section { padding: 100px 0; }
.story-grid    { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.story-body p  { font-size: 16px; line-height: 1.9; color: var(--grey-dark); margin-bottom: 22px; }
.story-body blockquote {
  border-left: 3px solid var(--persimmon);
  padding: 20px 28px; margin: 36px 0;
  background: var(--off-white);
}
.story-body blockquote p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; line-height: 1.2;
  color: var(--black); margin: 0;
}
.story-sidebar { position: sticky; top: 90px; }
.sidebar-photo { overflow: hidden; margin-bottom: 28px; }
.sidebar-photo img { width: 100%; height: 380px; object-fit: cover; object-position: center top; }
.sidebar-card {
  background: var(--black); padding: 28px 28px 24px;
}
.sidebar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .1em;
  color: var(--persimmon); margin-bottom: 18px;
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 10px 0; border-bottom: 1px solid #333333;
  font-size: 15px; color: rgba(255,255,255,.92);
  display: flex; align-items: flex-start; gap: 10px;
}
.sidebar-card ul li::before {
  content: '';
  width: 5px; height: 5px; flex-shrink: 0;
  background: var(--persimmon);
  clip-path: polygon(50% 0%,52% 48%,50% 52%,48% 48%, 100% 50%,52% 52%,48% 52%,52% 48%, 50% 100%,48% 52%,52% 52%,48% 48%, 0% 50%,48% 48%,52% 48%,48% 52%);
}

/* ── ABOUT IMAGE BREAK ── */
.about-image-break {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.about-image-break__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
}
.about-image-break::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 25%),
    linear-gradient(to top,    rgba(0,0,0,0.3) 0%, transparent 25%);
  z-index: 1; pointer-events: none;
}
.about-image-break::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--persimmon);
  z-index: 3;
}
.about-image-break__text {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 2; pointer-events: none;
  padding: 0 40px 8% 40px; text-align: center;
}
.about-image-break__word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 13vw, 200px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
  text-stroke: 1.5px rgba(255,255,255,0.85);
  user-select: none;
  white-space: nowrap;
}
.about-image-break__word em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--persimmon);
  text-stroke: 1.5px var(--persimmon);
}

/* ── WORD REVEAL ANIMATION ── */
.word-reveal {
  overflow: hidden;
  display: block;
}
.word-reveal .wr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(2deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.word-reveal.wr-visible .wr-word {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
/* stagger each word */
.word-reveal .wr-word:nth-child(1)  { transition-delay: 0.00s; }
.word-reveal .wr-word:nth-child(2)  { transition-delay: 0.05s; }
.word-reveal .wr-word:nth-child(3)  { transition-delay: 0.10s; }
.word-reveal .wr-word:nth-child(4)  { transition-delay: 0.15s; }
.word-reveal .wr-word:nth-child(5)  { transition-delay: 0.20s; }
.word-reveal .wr-word:nth-child(6)  { transition-delay: 0.25s; }
.word-reveal .wr-word:nth-child(7)  { transition-delay: 0.30s; }
.word-reveal .wr-word:nth-child(8)  { transition-delay: 0.35s; }
.word-reveal .wr-word:nth-child(9)  { transition-delay: 0.40s; }
.word-reveal .wr-word:nth-child(10) { transition-delay: 0.45s; }
.word-reveal .wr-word:nth-child(11) { transition-delay: 0.50s; }
.word-reveal .wr-word:nth-child(12) { transition-delay: 0.55s; }
.word-reveal .wr-word:nth-child(13) { transition-delay: 0.60s; }
.word-reveal .wr-word:nth-child(14) { transition-delay: 0.65s; }
.word-reveal .wr-word:nth-child(15) { transition-delay: 0.70s; }
.word-reveal .wr-word:nth-child(16) { transition-delay: 0.75s; }
.word-reveal .wr-word:nth-child(17) { transition-delay: 0.80s; }
.word-reveal .wr-word:nth-child(18) { transition-delay: 0.85s; }
.word-reveal .wr-word:nth-child(19) { transition-delay: 0.90s; }
.word-reveal .wr-word:nth-child(20) { transition-delay: 0.95s; }

/* upgraded blockquote style for word-reveal quotes */
.story-body blockquote.bq-reveal {
  border-left: 4px solid var(--persimmon);
  padding: 28px 36px;
  margin: 48px 0;
  background: var(--off-white);
}
.story-body blockquote.bq-reveal p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  color: var(--black);
  margin: 0;
}

/* ── RESPONSIVE: about image break ── */
@media (max-width: 768px) {
  .about-image-break { height: 60vw; min-height: 360px; }
  .about-image-break__word { font-size: clamp(32px, 10vw, 140px); white-space: normal; text-align: center; }
}

/* Philosophy */
.philosophy { background: var(--black); padding: 100px 0; }
.philosophy h2 { font-size: clamp(42px,5.5vw,68px); color: var(--white); text-align: center; margin-bottom: 56px; }
.phil-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #E0E0E0; }

/* Nigredo — black */
.phil-card { padding: 52px 44px; }
.phil-card--nigredo  { background: var(--black); border: 1px solid #3a3a3a; }
.phil-card--nigredo h3,
.phil-card--nigredo p  { color: rgba(255,255,255,.90); }

/* Albedo — white */
.phil-card--albedo   { background: var(--white); border: 1px solid #E0E0E0; }
.phil-card--albedo h3 { color: var(--black); }
.phil-card--albedo p  { color: var(--grey-dark); }

/* Rubedo — persimmon */
.phil-card--rubedo   { background: var(--persimmon); border: 1px solid #e54e2e; }
.phil-card--rubedo h3,
.phil-card--rubedo p  { color: var(--white); }

/* Alchemical symbol */
.phil-symbol { display: block; margin-bottom: 28px; }
.phil-symbol svg { width: 56px; height: 56px; display: block; }

.phil-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; margin-bottom: 16px; }
.phil-card p  { font-size: 16px; line-height: 1.8; }

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.programs-hero {
  background: var(--black); padding: 140px 0 100px;
  text-align: center; position: relative; overflow: hidden;
}
.programs-hero .ghost {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px,18vw,220px);
  color: rgba(255,255,255,.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap;
}
.programs-hero h1 { font-size: clamp(60px,8vw,100px); color: var(--white); margin-bottom: 20px; }
.programs-hero p  { font-size: 16px; color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* Method steps */
.method-section { padding: 100px 0; }
.method-section h2 { font-size: clamp(42px,5.5vw,68px); text-align: center; margin-bottom: 56px; }
.method-steps { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid #E5E5E5; }
.method-step { padding: 56px 40px; border-right: 1px solid #E5E5E5; }
.method-step:last-child { border-right: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; color: var(--persimmon); opacity: 1;
  display: block; line-height: 1; margin-bottom: 14px;
}
.method-step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; margin-bottom: 12px; }
.method-step p  { font-size: 16px; line-height: 1.7; color: var(--grey-dark); }

/* Programs cards */
.programs-section { padding: 100px 0; background: var(--off-white); }
.programs-section h2 { font-size: clamp(42px,5.5vw,68px); text-align: center; margin-bottom: 56px; }
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: #E0E0E0; }
.prog-card { background: var(--white); padding: 56px 48px; display: flex; flex-direction: column; }
.prog-card.featured { background: var(--black); color: var(--white); }
.prog-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--persimmon); margin-bottom: 14px; display: block;
}
.prog-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 16px; line-height: 1; }
.prog-card p  { font-size: 16px; line-height: 1.8; margin-bottom: 32px; flex-grow: 1; }
.prog-card.featured p { color: rgba(255,255,255,.88); }

/* FAQ */
.faq-section { padding: 100px 0; }
.faq-section h2 { font-size: clamp(42px,5.5vw,68px); text-align: center; margin-bottom: 56px; }
.faq-item { border-bottom: 1px solid #E8E8E8; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0;
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .04em;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--black);
}
.faq-q .icon { font-size: 22px; color: var(--persimmon); transition: transform .2s; line-height: 1; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a p { padding-bottom: 22px; font-size: 14px; line-height: 1.7; color: var(--grey-dark); }

/* Booking / Contact section */
.booking-section {
  background: var(--black); padding: 120px 0;
  position: relative; overflow: hidden;
}
.booking-section .ghost {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px,18vw,220px);
  color: rgba(255,255,255,.025);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap;
}

/* Toggle pills */
.contact-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 28px auto 0;
  border: 1px solid rgba(255,255,255,.18);
  width: fit-content;
}
.contact-toggle__btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: transparent;
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  transition: color .2s, background .2s;
  position: relative;
}
.contact-toggle__btn + .contact-toggle__btn {
  border-left: 1px solid rgba(255,255,255,.18);
}
.contact-toggle__btn.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.contact-toggle__btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--persimmon);
}
.contact-toggle__btn:hover:not(.active) {
  color: rgba(255,255,255,.75);
}

/* Contact panels */
.contact-panel {
  max-width: 660px;
  margin: 64px auto 0;
  text-align: center;
}
/* Default state: book panel visible, other panel hidden.
   JS click handler toggles display directly on the elements. */
#ct-panel-other { display: none; }
#ct-panel-book  { display: block; }
.contact-panel--hidden { display: none; }
.contact-panel__inner { }
.contact-panel__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.contact-panel__body {
  font-size: 16px; color: rgba(255,255,255,.95); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300;
}
.contact-panel__cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--persimmon);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.contact-panel__cta:hover { opacity: .85; transform: translateY(-1px); }

/* Quote below Book a Call CTA */
.contact-quote {
  margin: 48px auto 0;
  max-width: 560px;
  border-left: 2px solid var(--persimmon);
  padding: 4px 0 4px 28px;
  text-align: left;
}
.contact-quote p {
  font-size: 14px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 14px;
}
.contact-quote cite {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--persimmon);
  font-style: normal;
}

/* Category list (Everything Else panel) */
.contact-categories {
  display: flex; flex-direction: column;
  gap: 0;
  margin: 40px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: left;
}
.contact-category {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-category__icon { font-size: 20px; width: 28px; flex-shrink: 0; }
.contact-category__label {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--persimmon); margin-bottom: 3px;
}
.contact-category__desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }
.contact-email-btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  margin-top: 8px;
}
.contact-email-btn:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.6);
}

/* Legacy form styles (kept for other uses) */
.booking-form { max-width: 100%; margin: 0; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--persimmon); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none; margin-top: 24px;
  background: rgba(255,99,71,.12); border: 1px solid var(--persimmon);
  padding: 20px; text-align: center;
}
.form-success p { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--persimmon); }
.form-success span { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .container, .container--slim { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }

  .hero, .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy, .page-hero__copy { padding: 72px 28px; max-width: 100%; margin: 0; }
  .hero-photo, .page-hero__photo { height: 55vw; min-height: 320px; }

  .truth-grid   { grid-template-columns: 1fr; gap: 40px; }
  .stats-row    { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid #222; }
  .stats-bar-v2 .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stats-bar-v2 .stat:nth-child(3) { border-right: none; }
  .stats-bar-v2 .stat:nth-child(4), .stats-bar-v2 .stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.2); }

  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .story-grid   { grid-template-columns: 1fr; }
  .story-sidebar { position: static; }

  .testi-grid   { grid-template-columns: 1fr 1fr; }
  .phil-grid    { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: none; }
  .method-step:nth-child(3), .method-step:nth-child(4) { border-top: 1px solid #E5E5E5; }
  .method-step:nth-child(4) { border-right: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

/* ── Mid-range: tighten font + gaps before hamburger kicks in ── */
@media (max-width: 1280px) {
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 12px; letter-spacing: .08em; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; letter-spacing: .06em; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; position: absolute; top: 90px; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 16px 28px; border-bottom: 1px solid #E8E8E8; z-index: 300; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
  .nav-links .nav-cta a { background: none; color: var(--black); padding: 0; }
  .hamburger { display: flex; }
  /* Dropdown in mobile menu — always visible, no hover needed */
  .nav-dropdown__menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-top: none;
    background: transparent;
    padding: 0;
    min-width: unset;
  }
  .nav-dropdown__menu li {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
  }
  .nav-dropdown__menu li a {
    font-size: 12px;
    padding: 0;
    color: var(--grey-dark);
    letter-spacing: .12em;
  }
  /* Hide the parent "About" link on mobile — sub-items replace it */
  .nav-dropdown > a {
    display: none;
  }
  .nav-dropdown > a::after { display: none; }
  /* Remove the dropdown's own li border since children have their own */
  .nav-links li.nav-dropdown {
    padding: 0;
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-links { top: 90px; }
  .hamburger { display: flex; }

  .hero-h1 { font-size: clamp(72px,18vw,120px); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-toggle { width: 100%; }
  .contact-toggle__btn { flex: 1; padding: 14px 20px; }
}

/* =============================================
   V2 — Warmer, Beach Hero, More Persimmon
   ============================================= */

/* ---- Hero V2: editorial split-screen ---- */
.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  background: var(--white);
}

/* LEFT copy panel */
.hero-v2__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 48px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

/* Thin persimmon vertical rule on the right edge of copy panel */
.hero-v2__copy::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 2px;
  background: var(--persimmon);
  opacity: 0.5;
}

.hero-v2__kicker {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--persimmon);
  margin-bottom: 20px;
}

.hero-v2__h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 13vw, 180px);
  line-height: .88;
  color: var(--black);
  margin-bottom: 28px;
}

/* Each word on its own line */
.h1-row {
  display: block;
  position: relative;
  z-index: 1;
}

/* Small operator at the end of the line — sits top-right, like a superscript */
.h1-op {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.38em;
  color: var(--persimmon);
  vertical-align: super;
  margin-left: 0.18em;
  line-height: 1;
}

/* Inline sunburst after FREEDOM — 8-point starburst matching the logo exactly
   (4 long cardinal/diagonal rays + 4 shorter between rays, all tapered) */
.hero-burst {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  vertical-align: middle;
  margin-left: 0.14em;
  position: relative;
  top: -0.08em;
  overflow: visible;
}

.hero-v2__sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--grey-dark);
  max-width: 400px;
  margin-bottom: 32px;
}
.hero-v2__sub strong { color: var(--black); font-weight: 600; }

.hero-v2__tagline {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8E8E8;
}
.hero-v2__tagline span {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-mid); font-weight: 600;
}
.hero-v2__tagline .arrow { color: var(--persimmon); font-size: 13px; }

/* RIGHT photo panel */
.hero-v2__photo {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Default: B&W high contrast — Vogue editorial */
  filter: grayscale(100%) contrast(1.15) brightness(1.0);
}

/* Persimmon screen blend (default): highlights glow warm, shadows stay black */
.hero-v2__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--persimmon);
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
}

/* Persimmon accent bar at bottom */
.hero-v2__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--persimmon);
  z-index: 2;
}

/* ---- Selective-colour photo: already B&W + orange — do NOT apply any filter ---- */
.hero-v2__photo--selective img {
  filter: none;            /* preserve the orange cardigan in the photo */
  object-position: center 20%;
}

/* No overlay needed — the orange in the photo IS the persimmon accent */
.hero-v2__photo--selective::before {
  display: none;
}

/* Persimmon ticker V2 */
.ticker-v2 {
  background: var(--persimmon);
  overflow: hidden; padding: 14px 0;
}
.ticker-v2 .ticker__track { animation-duration: 26s; }
.ticker-v2 .ticker__item { color: var(--white); }
.ticker-v2 .ticker__item .dot { color: var(--white); opacity: .6; }

/* Truth section V2 */
.truth-section-v2 {
  padding: 100px 0;
  background: var(--white);
}
.truth-section-v2 .section-label { color: var(--persimmon); }
.truth-section-v2 .truth-card {
  border-left-color: var(--persimmon);
  background: var(--off-white);
}

/* Stats bar V2 — persimmon */
.stats-bar-v2 {
  background: var(--persimmon);
  padding: 56px 0;
}
.stats-bar-v2 .stats-row { grid-template-columns: repeat(5, 1fr); }
.stats-bar-v2 .stat {
  border-right: 1px solid rgba(255,255,255,0.3);
  border-top: none !important;
}
.stats-bar-v2 .stat:last-child { border-right: none; }
.stats-bar-v2 .stat__num { color: var(--white); }
.stats-bar-v2 .stat__num em { color: var(--white); opacity: .75; font-size: 0.45em; vertical-align: super; line-height: 0; }
.stats-bar-v2 .stat__lbl {
  color: rgba(255,255,255,1);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* ── PROGRAMS PAGE — GUIDE MODAL ── */
.prog-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.prog-modal {
  background: #0a0a0a;
  max-width: 480px;
  width: 100%;
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  border-top: 3px solid var(--persimmon);
}

.prog-modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.prog-modal__close:hover { color: var(--white); }

.prog-modal__overline {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--persimmon);
  display: block;
  margin-bottom: 14px;
}

.prog-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.prog-modal__sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin: 0 0 16px;
}
.prog-modal__sub--accent {
  color: var(--persimmon);
  font-weight: 600;
  font-style: italic;
}

.prog-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prog-modal__fields input {
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.prog-modal__fields input::placeholder { color: rgba(255,255,255,0.3); }
.prog-modal__fields input:focus { border-color: var(--persimmon); }

.prog-modal__fields button {
  padding: 14px 28px;
  background: var(--persimmon);
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.prog-modal__fields button:hover { background: #e5452e; }

.prog-modal__privacy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.prog-modal__success {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  margin-top: 8px;
}
.prog-modal__success span { color: var(--persimmon); font-weight: 700; margin-right: 6px; }
.prog-modal__success a { color: var(--persimmon); font-weight: 600; text-decoration: none; }
.prog-modal__success a:hover { text-decoration: underline; }

/* ── WAVE TEXT ANIMATION ── */
.wave-text .wt-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(3deg);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: pre;
}

.wave-text.wt-visible .wt-char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@keyframes wave-bounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-0.18em); }
  70%  { transform: translateY(0.06em); }
  100% { transform: translateY(0); }
}

/* ── LEAD MAGNET STRIP ── */
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.lead-magnet__text {
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(36px, 5vw, 80px);
  border-right: 1px solid var(--persimmon);
}

.lead-magnet__overline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--persimmon);
  margin-bottom: 24px;
  display: block;
}

.lead-magnet__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 28px;
}

.lead-magnet__body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  margin: 0 0 14px;
}

.lead-magnet__body--accent {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}

.lead-magnet__cta {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 32px;
  border: 1.5px solid var(--persimmon);
  color: var(--persimmon);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
}

.lead-magnet__cta:hover {
  background: var(--persimmon);
  color: var(--white);
}

/* Opt-in form */
.lm-optin { margin-top: 20px; }

/* ══ Bespoke opt-in form — dark skin, no third-party widgets ══ */
.bf-optin-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  width: 100%;
}
.bf-optin-form--centred {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.bf-optin-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bf-optin-form input[type="text"],
.bf-optin-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.bf-optin-form input::placeholder { color: rgba(255,255,255,0.35); }
.bf-optin-form input:focus {
  border-color: var(--persimmon);
  background: rgba(255,255,255,0.11);
}
.bf-optin-form button[type="submit"] {
  align-self: flex-start;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid var(--persimmon);
  color: var(--persimmon);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  border-radius: 0;
}
.bf-optin-form button[type="submit"]:hover {
  background: var(--persimmon);
  color: var(--white);
}
.bf-optin-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bf-optin-form--centred button[type="submit"] {
  align-self: center;
}
.bf-optin-form__msg {
  font-size: 13px;
  min-height: 20px;
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
}
.bf-optin-form__msg--error { color: #ff8a75; }
.bf-optin-form__msg--ok    { color: #7feba2; }

@media (max-width: 500px) {
  .bf-optin-form__row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   NEW KEAP EMBED (data-form-slug) — dark skin
   Target the injected wrapper + iframe override
   ══════════════════════════════════════════ */

/* Outer wrapper Keap injects */
.keap-custom-form {
  margin-top: 20px;
  background: transparent !important;
  /* Hint to Keap's internal rendering to use dark mode */
  color-scheme: dark;
  --background-color: transparent;
  --input-background: rgba(255,255,255,0.07);
  --input-border: rgba(255,255,255,0.2);
  --input-color: #ffffff;
  --button-background: transparent;
  --button-color: #FF6347;
  --button-border: #FF6347;
}

/* Keap renders a div.kf-form-container or similar — nuke the white card */
.keap-custom-form > div,
.keap-custom-form iframe,
.keap-custom-form form {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
}

/* Target the inner form shell Keap injects */
.keap-custom-form [class*="form"],
.keap-custom-form [class*="Form"],
.keap-custom-form [class*="container"],
.keap-custom-form [class*="Container"],
.keap-custom-form [class*="wrapper"],
.keap-custom-form [class*="card"] {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
}

/* Form title Keap injects — hide it (we have our own heading) */
.keap-custom-form [class*="title"],
.keap-custom-form [class*="heading"],
.keap-custom-form h1,
.keap-custom-form h2,
.keap-custom-form h3 {
  display: none !important;
}

/* Input fields — dark treatment */
.keap-custom-form input[type="text"],
.keap-custom-form input[type="email"],
.keap-custom-form input[type="tel"],
.keap-custom-form input[type="name"] {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  padding: 13px 16px !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
  -webkit-appearance: none !important;
}
.keap-custom-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
}
.keap-custom-form input:focus {
  border-color: var(--persimmon) !important;
  background: rgba(255,255,255,0.1) !important;
}

/* Labels — visually hide but keep accessible */
.keap-custom-form label {
  color: rgba(255,255,255,0.55) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* Submit button */
.keap-custom-form button[type="submit"],
.keap-custom-form input[type="submit"],
.keap-custom-form [class*="submit"],
.keap-custom-form [class*="Submit"] {
  background: transparent !important;
  border: 1.5px solid var(--persimmon) !important;
  border-radius: 0 !important;
  color: var(--persimmon) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: background 0.25s, color 0.25s !important;
}
.keap-custom-form button[type="submit"]:hover,
.keap-custom-form input[type="submit"]:hover,
.keap-custom-form [class*="submit"]:hover {
  background: var(--persimmon) !important;
  color: var(--white) !important;
}

/* Error messages */
.keap-custom-form [class*="error"],
.keap-custom-form [class*="Error"] {
  color: #ff8a75 !important;
  font-size: 12px !important;
  font-family: 'Montserrat', sans-serif !important;
  background: transparent !important;
}

/* ── OLD Keap embed (kept for legacy) ── */
#form-container-5994880323289088 { margin-top: 20px; }

#embed-form-5994880323289088 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Labels — hide visually, keep for accessibility */
#embed-form-5994880323289088 label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* All text/email inputs */
#embed-form-5994880323289088 input[type="text"],
#embed-form-5994880323289088 input[type="email"],
#embed-form-5994880323289088 input[type="tel"] {
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  width: 100%;
}
#embed-form-5994880323289088 input::placeholder { color: rgba(255,255,255,0.35); }
#embed-form-5994880323289088 input:focus { border-color: var(--persimmon); background: rgba(255,255,255,0.1); }

/* Hide fieldset wrapper and phone fields */
#embed-form-5994880323289088 fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}

/* Submit button */
#embed-form-5994880323289088 button[type="submit"],
#embed-form-5994880323289088 #form-submit-btn {
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid var(--persimmon);
  color: var(--persimmon);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  align-self: flex-start;
  margin-top: 4px;
}
#embed-form-5994880323289088 button[type="submit"]:hover,
#embed-form-5994880323289088 #form-submit-btn:hover {
  background: var(--persimmon);
  color: var(--white);
}

/* Hide any Keap error/success messages — we handle success ourselves */
#embed-form-5994880323289088 .keap-form-error { color: #ff8a75; font-size: 12px; margin-top: 4px; font-family: 'Montserrat', sans-serif; }

/* Legacy class kept in case referenced elsewhere */
.lm-optin__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lm-optin__privacy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.lm-optin__success {
  display: none;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
.lm-optin__success span {
  color: var(--persimmon);
  font-weight: 700;
  margin-right: 6px;
}
.lm-optin__success a {
  color: var(--persimmon);
  font-weight: 600;
  text-decoration: none;
}
.lm-optin__success a:hover { text-decoration: underline; }

.lead-magnet__image {
  position: relative;
  overflow: hidden;
}

.lead-magnet__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media (max-width: 768px) {
  .lead-magnet {
    grid-template-columns: 1fr;
  }
  .lead-magnet__image {
    height: 380px;
    order: -1;
  }
  .lead-magnet__text {
    border-right: none;
    border-top: 1px solid var(--persimmon);
  }
}

/* About section V2 */
.about-section-v2 .section-rule { background: var(--persimmon); }
.about-section-v2 blockquote {
  border-left-color: var(--persimmon);
  background: #FFF3F0;
}

/* Editorial photo: clean B&W — persimmon accent via structural elements */
.about-img--editorial {
  position: relative;
  overflow: hidden;
}

/* Persimmon accent: left vertical bar + bottom bar */
.about-img--editorial::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--persimmon);
  z-index: 2;
}

.about-img--editorial::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--persimmon);
  z-index: 2;
}

/* Testimonials V2 */
.testimonials-v2 { padding: 100px 0; background: var(--off-white); }
.testimonials-v2 .testi-card { border-top: 3px solid var(--persimmon); background: var(--white); }
.testimonials-v2 .testi-card::before { color: var(--persimmon); }

/* CTA panel V2 — persimmon */
.cta-panel-v2 {
  background: var(--persimmon);
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-panel-v2 .cta-ghost { color: rgba(255,255,255,.1); }
.cta-panel-v2 .section-label { color: rgba(255,255,255,.85); }
.cta-panel-v2 h2 { color: var(--white); }
.cta-panel-v2 p  { color: rgba(255,255,255,.88); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-v2 { grid-template-columns: 1fr; }
  .hero-v2__copy { padding: 64px 28px; }
  .hero-v2__copy::after { display: none; }
  .hero-v2__photo { height: 70vw; min-height: 400px; }
}
@media (max-width: 768px) {
  .hero-v2__h1 { font-size: clamp(64px, 16vw, 100px); }
  .hero-v2__photo { height: 90vw; }
}
