/* ── VARIABLES ── */
:root {
  --yellow: #E9FA92;
  --dark: #111111;
  --gap: clamp(20px, 4vw, 60px);
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #222; background: #fff; overflow-x: clip; }

/* ── TICKER ── */
/* Sticky header wrapper */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1001;
}
.ticker {
  background: #111;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-t {
  display: inline-flex;
  animation: tickerScroll 60s linear infinite;
}
.ticker-t span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-right: 80px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--gap);
  background: #fff;
  border-bottom: 2px solid #111;
}
.nav-logo {
  flex: 1;
  text-align: center;
}
.nav-logo img {
  height: 16px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 4px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  display: block;
}
.nav-logo-text:hover { color: #000; }
/* Spacer to balance the MENU button on mobile and keep logo centred */
.nav-spacer {
  width: 60px; /* matches hamburger button width */
  flex-shrink: 0;
}
/* MENU text button — shown on all formats */
.hamburger {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 2000;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  width: 60px;
  text-align: left;
}

/* ── MENU ── overlay only, hidden by default on all formats */
.site-menu {
  display: none;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: 14px var(--gap);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.site-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  transition: color .3s;
}
.site-menu a:hover { color: #8B7B00; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding: 0;
}
.hero-bg {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  gap: 8px;
  padding-top: 108px;
}
.sentence-left {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
  text-align: center;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.sentence-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.sentence-right {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
  text-align: center;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.sentence-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.differently-word {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  color: #222;
  display: inline-block;
  font-size: 1.45em;
  position: relative;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.differently-word.visible {
  opacity: 1;
  transform: translateX(0);
}
.differently-word .sparkle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  font-size: var(--size, 14px);
  line-height: 1;
  transition: opacity 0.5s ease-out;
}
.differently-word .sparkle.fade-out {
  opacity: 0 !important;
  animation: none !important;
}
.differently-word .sparkle.gold {
  color: #8B7B00;
}
.differently-word .sparkle.white {
  color: #fff;
}
.differently-word .sparkle.animate {
  animation: twinkle var(--duration, 0.6s) var(--delay, 0s) ease-in-out forwards;
}
@keyframes twinkle {
  0% { opacity: 0; transform: scale(0); }
  30% { opacity: 1; transform: scale(1); }
  60% { opacity: 1; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(0); }
}
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  color: #222;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 60%;
  max-width: 700px;
  margin: 30px auto 20px;
  line-height: 1.6;
  opacity: 1;
}
.hero-sub.visible {
  opacity: 1;
}

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: clamp(40px, 5.5vw, 80px) var(--gap);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.content-section.yellow-bg {
  background: var(--yellow);
  max-width: 100%;
  padding-left: var(--gap);
  padding-right: var(--gap);
}
.content-section.yellow-bg h2,
.content-section.yellow-bg p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.content-section.yellow-bg h2 {
  color: #111 !important;
}
.content-section.yellow-bg p {
  color: #333 !important;
}
.content-section.yellow-bg h2.visible {
  opacity: 1 !important;
  color: #111 !important;
}
.content-section.yellow-bg p.visible {
  opacity: 1 !important;
  color: #333 !important;
}
.content-section h2 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #222;
  margin-bottom: 30px;
  line-height: 1.2;
}
/* Swoosh animations — only hidden when JS is active (js-ready class on body) */
.js-ready.page-home .content-section h2 .animate-swoosh,
.js-ready.page-home .cta-section h2 .animate-swoosh {
  display: inline-block;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.page-home .content-section h2 .animate-swoosh.visible,
.page-home .cta-section h2 .animate-swoosh.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.content-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.js-ready.page-home .content-section p {
  /* Animation initial state — homepage only, only when JS active */
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}
.page-home .content-section p.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
/* Right-to-left swoosh variant */
.js-ready.page-home .content-section h2 .animate-swoosh-right {
  display: inline-block;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.page-home .content-section h2 .animate-swoosh-right.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.js-ready.page-home .content-section p.animate-swoosh-right {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}
.page-home .content-section p.animate-swoosh-right.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.yellow-word {
  color: #8B7B00;
}
.yellow-bg .yellow-word {
  color: #8B7B00;
  font-weight: 400;
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: clamp(50px, 6vw, 100px) var(--gap) clamp(24px, 3vw, 48px);
  text-align: center;
  background: #E9FA92;
  min-height: 250px;
  position: relative;
}
.testi-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}
.testi-slide.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.testi-text {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #333;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 20px;
}
.testi-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8B7B00;
  cursor: pointer;
  transition: background .3s;
}
.testi-dot:hover { background: #111; }
.testi-dot.active { background: #111; }

/* ── CTA ── */
.cta-section {
  padding: clamp(60px, 8vw, 120px) var(--gap);
  text-align: center;
  background: #fff;
}
.cta-section h2 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #222;
  margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #E9FA92;
  color: #111;
  padding: 16px 40px;
  border-radius: 40px;
  border: 2px solid #111;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.cta-btn:hover { background: #f2fdb8; transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: #111;
  padding: clamp(40px, 6vw, 72px) var(--gap) 24px;
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo-wordmark {
  height: clamp(10px, 1.04vw, 15px);
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #fff;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: #8B7B00; }
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.footer-social-icons a {
  display: inline-flex;
  margin-bottom: 0;
}
.footer-social-icons .instagram svg { fill: #E4405F; }
.footer-social-icons .facebook svg { fill: #1877F2; }
.footer-social-icons .linkedin svg { fill: #0077B5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: #fff;
  letter-spacing: 1px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 1px;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: #fff; }

/* ── DOT DIVIDERS ── */
.dot-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 40px var(--gap);
  width: 100%;
  flex-wrap: wrap;
}
.dot-divider span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8B7B00;
  display: inline-block;
  flex-shrink: 0;
}

/* ── MOBILE ── */
/* ── HAMBURGER BUTTON (old span rules removed — now text MENU button) ── */

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
  display: flex;
  opacity: 1;
}
.mobile-menu-overlay a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  padding: 12px 0;
}
.mobile-menu-overlay a:hover {
  color: #8B7B00;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #111;
}

/* ── TABLET BREAKPOINT ── */
@media (max-width: 900px) {
  .site-menu { gap: 12px; padding: 10px 16px; }
  .site-menu a { font-size: 11px; letter-spacing: 1px; }
}

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 768px) {
  /* Nav */
  .site-nav { padding: 10px 16px; align-items: center; }
  .nav-logo { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; }
  .nav-logo img { height: 16px; width: auto; max-width: none; object-fit: contain; }
  .nav-spacer { width: 60px; flex-shrink: 0; }
  /* Nav overrides for mobile */
  .hamburger { font-size: 11px; padding: 6px 0; }

  /* Hero text */
  .hero { min-height: auto; }
  .hero-bg { width: 100%; max-width: 100%; }
  .hero-text { padding: 0 12px; }
  .sentence-left { font-size: 22px; letter-spacing: 2px; }
  .sentence-right { font-size: 22px; letter-spacing: 2px; }

  /* Content */
  .content-section { padding: 50px 20px; }
  .content-section h2 { font-size: 1.6rem; }
  .content-section p { font-size: 15px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Ticker */
  .ticker { padding: 8px 0; }
  .ticker-t span { font-size: 11px; margin-right: 50px; }
}

/* ── SMALL PHONE BREAKPOINT ── */
@media (max-width: 480px) {
  .nav-logo img { height: 16px; width: auto; max-width: none; object-fit: contain; }
  /* Logo: -10% of 16px = ~14px; nav height matched to ticker (8px top+bottom padding) */
  .site-nav { padding: 8px 16px; }
  .nav-logo { display: flex; align-items: center; justify-content: center; flex: 1; }
  .nav-logo-text { font-size: 13px; letter-spacing: 1.5px; }
  .hamburger { font-size: 10px; }
  .sentence-left { font-size: 18px; letter-spacing: 1px; }
  .sentence-right { font-size: 18px; letter-spacing: 1px; }
  .content-section h2 { font-size: 1.4rem; }
  .ticker-t span { font-size: 10px; margin-right: 40px; }
}

/* ── SUB-PAGE STYLES ── */

/* Page Hero Split (image + text side by side) */
.page-hero-split {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 8vw, 120px) var(--gap);
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-text {
  flex: 1;
}
.page-hero-text h1 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero-text h1 em {
  color: #8B7B00;
  font-style: italic;
}
.page-hero-text .body-text-lg {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  color: #333;
  line-height: 1.8;
}
.page-hero-photo {
  flex: 0 0 42%;
  max-width: 460px;
}
.page-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  image-rendering: -webkit-optimize-contrast;
}

/* About Hero (same as page-hero-split but specific) */
.about-hero {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 8vw, 120px) var(--gap);
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero-text {
  flex: 1;
}
.about-hero-text h1 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-hero-text h1 em {
  color: #8B7B00;
  font-style: italic;
}
.about-hero-text .body-text-lg {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  color: #333;
  line-height: 1.8;
}
.about-hero-photo {
  flex: 0 0 42%;
  max-width: 460px;
}
.about-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  image-rendering: -webkit-optimize-contrast;
}

/* Generic Sections */
.section {
  padding: clamp(60px, 8vw, 120px) var(--gap);
  text-align: center;
}
.section-white { background: #fff; }
.section-grey { background: #b4b4b4; }
.section-yellow { background: #E9FA92; }

.section h2 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #111;
  line-height: 1.2;
  margin-bottom: 30px;
}
.section h2 em {
  color: #8B7B00;
  font-style: italic;
}

/* Body text */
.body-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* All-caps break/separator text */
.caps-break {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}
.caps-statement {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Credential tag line — used under name/bio on About and Contact pages */
.credential-line {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8B7B00;
  margin-top: 10px;
  margin-bottom: 0;
  display: block;
}

/* Credentials Grid (About page) */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}
.cred-item {
  padding: 20px;
}
.cred-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B7B00;
  margin-bottom: 12px;
}
.cred-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #444;
  line-height: 1.7;
}

/* Steps Grid (How It Works page) */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}
.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #8B7B00;
  line-height: 1;
  flex-shrink: 0;
}
.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
  margin-bottom: 8px;
}

/* Who List (How It Works page) */
.who-list {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: left;
}
.who-item {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: #333;
  line-height: 1.7;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* Quote/Testimonial block */
.quote-text {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Horizontal Rule */
hr.rule {
  border: none;
  border-top: 1px solid #eee;
  margin: 0;
}

/* Packages */
.packages-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.pkg {
  border: 2px solid #111;
  border-radius: 8px;
  padding: clamp(24px, 3vw, 40px);
  text-align: left;
  background: #fff;
}
.pkg-name {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #111;
  margin-bottom: 4px;
}
.pkg-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B7B00;
  margin-bottom: 16px;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pkg-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.6;
}
.pkg-price {
  text-align: right;
  margin-top: 16px;
}
.pkg-price span {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #111;
  display: none;
}
.pkg-price span.active { display: inline; }
.pkg-price small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  margin-top: 4px;
}
.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.currency-toggle button {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border: 2px solid #111;
  border-radius: 30px;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: background .3s;
}
.currency-toggle button.active {
  background: #E9FA92;
}

/* Payment buttons */
.pay-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 16px;
}
.btn-pay-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  border: 2px solid #111;
  background: #E9FA92;
  color: #111;
  text-decoration: none;
  transition: background .3s;
}
.btn-pay-stripe:hover { background: #f2fdb8; }
.btn-pay-stripe svg { width: 18px; height: 18px; }
.btn-pay-alt {
  background: #fff;
}
.btn-pay-alt:hover { background: #f4f4f4; }
.pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pay-icon-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
}
.stripe-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.stripe-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: #666;
}
.pay-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

/* Primary/Black buttons */
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #E9FA92;
  color: #111;
  padding: 14px 36px;
  border-radius: 30px;
  border: 2px solid #111;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: #f2fdb8; transform: translateY(-2px); }
.btn-black {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  border: 2px solid #111;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.btn-black:hover { background: #333; transform: translateY(-2px); }
.btn-white {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  border-radius: 999px;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.btn-white:hover { background: #b4b4b4; transform: translateY(-2px); }

/* Eyebrow text */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8B7B00;
}

/* FAQ Accordion */
.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}
.accordion-item {
  border-bottom: 1px solid #eee;
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: #111;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s;
}
.accordion-btn:hover { color: #8B7B00; }
.accordion-btn::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #8B7B00;
  transition: transform .3s;
}
.accordion-item.open .accordion-btn::after {
  content: '−';
}
.accordion-body {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #444;
  line-height: 1.8;
  padding: 0 0 20px;
  display: none;
}
.accordion-item.open .accordion-body {
  display: block;
}

/* Resources list */
.resources-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}
.resource-item {
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #E9FA92;
  transition: border-color .3s;
}
.resource-item:hover { border-color: #8B7B00; }
.resource-item h3 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: #111;
  margin-bottom: 8px;
}
.resource-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.resource-item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8B7B00;
  text-decoration: none;
  transition: color .3s;
}
.resource-item a:hover { color: #111; }

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gap);
  text-align: left;
}
.contact-grid h3 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: #111;
  margin-bottom: 20px;
}
.contact-grid label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  display: block;
  margin-bottom: 6px;
}
/* Checkbox label inside contact form — override uppercase inherited from .contact-grid label */
.contact-grid label[style*="flex"] {
  text-transform: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
}
.contact-grid label[style*="flex"] span,
.contact-grid label[style*="flex"] strong {
  text-transform: none !important;
  letter-spacing: normal;
}
.contact-grid input,
.contact-grid select,
.contact-grid textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  margin-bottom: 16px;
  transition: border-color .3s;
}
.contact-grid input:focus,
.contact-grid select:focus,
.contact-grid textarea:focus {
  outline: none;
  border-color: #8B7B00;
}

/* Business page stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}
.stat-item {
  padding: 20px;
}
.stat-num {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #8B7B00;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}

/* Business hero */
.biz-hero-section {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 8vw, 120px) var(--gap);
  max-width: 1200px;
  margin: 0 auto;
}
.biz-hero-section img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
}

/* Referral page */
.referral-hero {
  padding: clamp(60px, 8vw, 120px) var(--gap);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Legal page */
.legal-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px var(--gap);
  text-align: left;
}
.legal-section h2 {
  font-family: 'Libre Bodoni', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #111;
  margin-bottom: 20px;
}
.legal-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-section ul {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #444;
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 16px;
}

/* Swoosh animation classes — homepage only via .page-home */
.page-home .swoop-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.page-home .swoop-left.in,
.page-home .swoop-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.page-home .swoop-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.page-home .swoop-right.in,
.page-home .swoop-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.page-home .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.page-home .reveal.in,
.page-home .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.page-home .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-home .fade-up.in,
.page-home .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quiz */
.quiz-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px var(--gap);
}
.quiz-q {
  margin-bottom: 32px;
}
.quiz-q-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-opt {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
  padding: 12px 16px;
  border: 1.5px solid #eee;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.quiz-opt:hover {
  border-color: #8B7B00;
  background: #f2f2f2;
}
.quiz-opt input[type="radio"] {
  margin-right: 10px;
}

/* Mobile responsive for sub-pages */
@media (max-width: 768px) {
  .page-hero-split,
  .about-hero,
  .biz-hero-section {
    flex-direction: column;
    text-align: center;
  }
  .page-hero-photo,
  .about-hero-photo {
    max-width: 300px;
    margin: 0 auto;
  }
  .creds-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .resources-list {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Screen-reader only — visually hidden but accessible to search engines and assistive tech */
.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;
}

/* ── MOBILE WHITESPACE & LAYOUT FIXES ── */
@media (max-width: 768px) {
  /* Reduce section padding significantly on mobile */
  .section {
    padding: 40px 20px;
  }

  /* Hero sections on sub-pages */
  .page-hero-split,
  .about-hero,
  .biz-hero-section {
    padding: 32px 20px;
    gap: 24px;
  }

  /* Reduce padding on sections that had inline padding-bottom:40px overrides */
  .section[style*="padding-bottom:40px"] {
    padding-bottom: 24px !important;
  }

  /* Package buttons — auto width, not full-width */
  .btn-pay-stripe {
    width: auto;
    display: inline-flex;
  }
  .pay-btn-wrap {
    align-items: center;
  }

  /* How it works phases — reduce gap */
  .phases-list {
    gap: 24px;
  }

  /* Contact page — reduce gap between image and form */
  .contact-grid {
    gap: 24px;
  }

  /* About page — reduce gap in answer section */
  .about-answer {
    padding: 32px 20px;
  }

  /* FAQ list — tighter spacing */
  .faq-list {
    padding: 0;
  }

  /* Resources list items — tighter */
  .resource-item {
    padding: 16px 0;
  }

  /* Testimonial carousel — reduce padding */
  .testimonial-section,
  .testimonials {
    padding: 32px 20px;
  }

  /* CTA sections — tighter */
  .section.section-yellow {
    padding: 40px 20px;
  }

  /* Packages section */
  .packages-list {
    gap: 24px;
  }

  /* Stats row on mobile */
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Business offerings grid */
  .biz-offerings {
    gap: 20px;
  }

  /* btn-white pill on mobile — auto width */
  .btn-white {
    display: inline-block;
    width: auto;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 32px 16px;
  }
  .page-hero-split,
  .about-hero,
  .biz-hero-section {
    padding: 24px 16px;
  }
  .section.section-yellow {
    padding: 32px 16px;
  }
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE + TABLET FIXES
   All rules scoped to ≤768px (phone + tablet) or ≤480px (phone only)
   Desktop layout is completely untouched.
   ═══════════════════════════════════════════════════════ */

/* ── 1. BUTTON SHAPES: All buttons pill-shaped on mobile + tablet ── */
@media (max-width: 768px) {
  /* btn-white (business GET IN TOUCH) — pill shape */
  .btn-white {
    border-radius: 999px !important;
    display: inline-block;
    width: auto;
  }

  /* btn-primary (FAQ CTA, contact send) — ensure pill + auto width */
  .btn-primary {
    border-radius: 999px !important;
    display: inline-block;
    width: auto;
    padding: 14px 32px;
  }

  /* btn-black — pill shape */
  .btn-black {
    border-radius: 999px !important;
    display: inline-block;
    width: auto;
  }

  /* Currency switcher buttons — pill shape */
  .currency-toggle button {
    border-radius: 999px !important;
  }

  /* FAQ CTA section — ensure button is centred and auto-width, not full-width */
  .section.section-white .btn-primary {
    display: inline-block;
    width: auto;
  }

  /* ── 2. HOMEPAGE: Fix animated content sections that stay invisible on mobile ── */
  /* Force all animate-swoosh elements visible on mobile (no JS scroll needed) */
  .content-section h2 .animate-swoosh,
  .content-section h2 .animate-swoosh-right,
  .content-section p.animate-swoosh,
  .content-section p.animate-swoosh-right,
  .cta-section h2 .animate-swoosh,
  .cta-section h2 .animate-swoosh-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ── 3. HOMEPAGE: Remove large gap between yellow section and testimonials ── */
  .content-section.white-bg {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  /* ── 4. FAQ: Tighten gap above FAQ list ── */
  .faq-list,
  .section.section-white[style*="padding-top:0"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* ── 5. CONTACT: Fix Join the Club checkbox text — remove all-caps ── */
  .join-club-label,
  .join-club-text,
  input[type="checkbox"] + label,
  .checkbox-label {
    text-transform: none !important;
  }

  /* ── 6. HOME CTA button: Prevent text wrapping on small screens ── */
  .cta-section .btn-primary,
  .cta-section a.btn-primary,
  .cta-btn,
  a.cta-btn {
    white-space: nowrap;
    font-size: 11px;
    padding: 14px 24px;
  }
}

/* ── Phone-only (≤480px) additional tightening ── */
@media (max-width: 480px) {
  /* Ensure all CTA buttons don't wrap text */
  .btn-primary,
  .btn-black,
  .btn-white {
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 13px 22px;
    border-radius: 999px !important;
  }

  /* Currency toggle buttons on very small screens */
  .currency-toggle button {
    font-size: 11px;
    padding: 7px 14px;
    border-radius: 999px !important;
  }

  /* Homepage content sections — tighter on small phones */
  .content-section.white-bg {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* ── Reduce whitespace around testimonials and CTA on phone ── */
@media (max-width: 768px) {
  .testi-section {
    padding-top: 28px !important;
    padding-bottom: 20px !important;
  }
  .cta-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .content-section {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .content-section.yellow-bg {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}
@media (max-width: 480px) {
  .testi-section {
    padding-top: 20px !important;
    padding-bottom: 16px !important;
  }
  .cta-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .content-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .content-section.yellow-bg {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* Telegraph press strip — ensure grey background */
.press-strip-section,
#press-strip {
  background: #e8e8e8 !important;
}

#s-sub,
.hero-sub {
  text-align: center !important;
  text-justify: none !important;
}

@media (max-width: 768px) {
  #s-sub,
  .hero-sub {
    text-align: center !important;
    text-justify: none !important;
    letter-spacing: 0.5px;
  }
}
