/* =====================================================
   THE MUSTARD SEED WITHIN — styles.css
   =====================================================
   COLOUR PALETTE:
     Gold:       #C9A84C
     Dark:       #2C2416
     Off-White:  #FAF7F2
     Warm Beige: #F0E8D8
     Warm Grey:  #8C7B6B
   ===================================================== */

/* --- RESET & BASE ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--dark);
  line-height: 1.7;
  padding-top: var(--nav-height);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CUSTOM PROPERTIES ----------------------------- */
:root {
  --gold:             #C9A84C;
  --gold-light:       #E8D5A3;
  --gold-hover:       #B8922F;
  --gold-faint:       rgba(201,168,76,0.12);
  --dark:             #2C2416;
  --dark-mid:         #3d3020;
  --off-white:        #FAF7F2;
  --warm-beige:       #F0E8D8;
  --warm-grey:        #8C7B6B;
  --warm-grey-light:  #C5B8A8;
  --white:            #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Open Sans', Arial, sans-serif;

  --max-width:    1100px;
  --nav-height:   100px;  /* mobile: logo + hamburger row */
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 20px rgba(44,36,22,0.09);
  --shadow-lg:    0 10px 40px rgba(44,36,22,0.15);
  --transition:   0.3s ease;
}

/* --- TYPOGRAPHY ------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 3vw, 1.65rem); margin-bottom: 0.65rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; color: var(--warm-grey); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; line-height: 1.85; }

/* Gold decorative rule */
.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}
.gold-rule--left { margin-left: 0; }

/* Section label (small caps above heading) */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* Scripture block quote */
.scripture {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--warm-grey);
  font-size: 1rem;
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 2rem 0;
  line-height: 1.7;
}

/* --- LAYOUT ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1280px; }

.section { padding: 80px 20px; }

/* Dark section */
.section--dark { background-color: var(--dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--gold-light); }
.section--dark p   { color: var(--warm-grey-light); }
.section--dark .section-label { color: var(--gold); }

/* Beige / white alternating sections */
.section--beige { background-color: var(--warm-beige); }
.section--white { background-color: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }

/* Responsive grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* --- BUTTONS --------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.45);
}
.btn--gold:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--dark); }
.btn--dark  { background: var(--dark);  color: var(--off-white); }
.btn--dark:hover { background: var(--dark-mid); }
.btn--lg  { padding: 20px 50px; font-size: 1.1rem; }
.btn--full { width: 100%; display: block; }

/* --- NAVIGATION ------------------------------------ */
/*
 * Two-row centred nav (matching themustardseedwithin.co.za style):
 *   Row 1 — logo/brand centred, hamburger floated right on mobile
 *   Row 2 — nav links centred, floating directly on the dark background (no pill/box)
 */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark);
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* ── Row 1: logo ── */
.nav__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 20px 10px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  min-height: 100px;
}

/* Logo image (pulled from her existing site) */
.nav__logo-img {
  max-height: 72px;
  width: auto;
  display: block;
}

/* Text fallback if logo image fails */
.nav__logo-text {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
}
.nav__logo-text span {
  display: block;
  font-size: 0.62rem;
  font-style: normal;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey-light);
  margin-top: 3px;
}

/* Hamburger — absolute right so logo stays centred */
.nav__toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Row 2: desktop links ── */
.nav__bottom {
  display: none;          /* hidden on mobile */
  justify-content: center;
  padding: 0 20px;
}
.nav__links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  padding: 10px 0;
  list-style: none;
}
/* Links float on the dark background — no box, no pill */
.nav__links a {
  color: var(--warm-grey-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
/* Underline-grow on hover */
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }

/* Join CTA — still has the gold pill, it's the only one */
.nav__cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  white-space: nowrap;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover  { background: var(--gold-hover) !important; color: var(--dark) !important; }

/* Mobile dropdown — sits below the logo row */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1rem 24px 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  position: absolute;
  top: 100px;     /* matches .nav__top mobile min-height */
  width: 100%;
  left: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--warm-grey-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav__mobile a:hover,
.nav__mobile a.active { color: var(--gold); }
.nav__mobile a:last-child { border-bottom: none; padding-top: 1rem; }
.nav__mobile .nav__mobile-cta { color: var(--gold) !important; font-weight: 700 !important; }

/* Desktop: show bottom link row, hide hamburger */
@media (min-width: 900px) {
  :root { --nav-height: 148px; }   /* logo row (~104px) + links row (~44px) */
  .nav__toggle  { display: none; }
  .nav__bottom  { display: flex; }
  .nav__top     { min-height: 104px; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .nav__logo-img { max-height: 88px; }
}

/* --- HERO ------------------------------------------ */
.hero {
  background: linear-gradient(175deg, #1a1008 0%, var(--dark) 40%, var(--dark-mid) 100%);
  padding: 90px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;           /* full-screen impact */
  display: flex;
  align-items: center;
}

/* Particle canvas — fills the hero, sits behind content */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Main headline — big and dramatic */
.hero__title {
  color: var(--off-white);
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero__title em { color: var(--gold); font-style: italic; }

/* Decorative large quote mark above the tagline */
.hero__deco-quote {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--gold);
  opacity: 0.18;
  line-height: 0.6;
  display: block;
  margin-bottom: 0.5rem;
  user-select: none;
}

/* ── Signature poem ── */
.hero__poem {
  margin: 2.25rem auto 0;
  max-width: 520px;
  position: relative;
  padding: 1.5rem 0 0;
}
/* thin gold rule above the poem */
.hero__poem::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 0 auto 1.5rem;
}
.hero__poem-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: var(--warm-grey-light);
  line-height: 1.9;
  letter-spacing: 0.01em;
  margin: 0;
}
.hero__poem-text em {
  color: var(--gold);
  font-size: 1.12em;
  font-style: italic;
  font-weight: 700;
}
.hero__poem-attr {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-top: 1rem;
}

/* ── VSL section ── */
.hero__vsl-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__vsl-label::before {
  content: '▶';
  font-size: 0.65rem;
  background: var(--gold);
  color: var(--dark);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  flex-shrink: 0;
}

/* VSL hook text box — stands out from the dark background */
.hero__vsl-hook {
  background: rgba(255,255,255,0.04);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem auto;
  max-width: 720px;
  text-align: left;
}
.hero__vsl-hook h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--off-white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.hero__vsl-hook p {
  font-size: 1rem;
  color: var(--warm-grey-light);
  margin: 0;
  line-height: 1.75;
}
.hero__vsl-hook strong { color: var(--gold-light); font-weight: 700; }

/* Inner-page hero (smaller, with subtle particle canvas) */
.page-hero {
  background: linear-gradient(175deg, #1a1008 0%, var(--dark) 50%, var(--dark-mid) 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;             /* subtler on inner pages */
}
.page-hero__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { color: var(--off-white); }
.page-hero .lead { color: var(--warm-grey-light); }

/* --- VIDEO EMBED ----------------------------------- */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;          /* wider — more cinematic */
  margin: 0 auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
}
.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}
/* Placeholder shown when no real video is embedded yet */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1206, var(--dark-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.video-placeholder__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  padding-left: 4px; /* optical nudge */
}
.video-placeholder__text  { color: var(--gold-light); font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; }
.video-placeholder__note  { color: var(--warm-grey-light); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* --- VSL click-to-play cover (hides YouTube title/channel until played) --- */
.vsl-video-trigger {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--dark-mid);
  overflow: hidden;
}
.vsl-video-trigger__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vsl-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  transition: transform 0.2s ease;
}
.vsl-yt-play svg { display: block; }
.vsl-video-trigger:hover .vsl-yt-play { transform: translate(-50%, -50%) scale(1.08); }

/* Mobile: smaller + semi-transparent play button so it doesn't
   cover Janine's face (desktop stays the solid 76px gold circle) */
@media (max-width: 600px) {
  .vsl-yt-play {
    width: 54px;
    height: 54px;
    background: rgba(201, 168, 76, 0.72);
    box-shadow: 0 3px 14px rgba(201,168,76,0.35);
  }
  .vsl-yt-play svg { width: 22px; height: 22px; }
}

/* --- Custom player (controls:0 native player + our own control bar,
       so no YouTube title/channel/subscribe overlay ever shows) --- */
.vsl-player-mount {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-mid);
}
.vsl-player-mount iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.vsl-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.vsl-controls__btn {
  background: none;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}
.vsl-controls__btn:hover { color: var(--gold); }
.vsl-controls__progress {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.vsl-controls__progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  border-radius: 3px;
}
.vsl-controls__time {
  color: var(--warm-grey-light);
  font-size: 0.72rem;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
}
.vsl-controls__speed-wrap { position: relative; flex-shrink: 0; }
.vsl-controls__speed-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  cursor: pointer;
}
.vsl-controls__speed-menu {
  display: none;
  position: absolute;
  bottom: 130%;
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  overflow: hidden;
  min-width: 70px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.vsl-controls__speed-menu.open { display: block; }
.vsl-controls__speed-menu button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--warm-grey-light);
  font-size: 0.78rem;
  padding: 7px 14px;
  text-align: left;
  cursor: pointer;
}
.vsl-controls__speed-menu button:hover,
.vsl-controls__speed-menu button.active { background: rgba(201,168,76,0.15); color: var(--gold-light); }

/* --- PHOTO PLACEHOLDER ----------------------------- */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--warm-beige), var(--gold-light));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed var(--warm-grey-light);
  color: var(--warm-grey);
}
.photo-placeholder__icon { font-size: 3.5rem; opacity: 0.35; }
.photo-placeholder__text { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }

/* Actual photo (when you drop in a real image) */
.photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* --- CARDS ----------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card--gold-top  { border-top: 4px solid var(--gold); }
.card__icon      { font-size: 2rem; margin-bottom: 1rem; }
.card__label     {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.card__price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin: 1rem 0 0.2rem;
}
.card__price-note { font-size: 0.85rem; color: var(--warm-grey); margin-bottom: 1.5rem; }

/* Checkmark list inside card */
.check-list       { margin: 1rem 0; }
.check-list li    {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--warm-grey);
  font-size: 0.95rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- TESTIMONIALS ---------------------------------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial__quote {
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  user-select: none;
}
.testimonial__text   { font-style: italic; color: var(--warm-grey); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial__author { font-weight: 700; color: var(--dark); font-size: 0.92rem; }
.testimonial__loc    { font-size: 0.78rem; color: var(--warm-grey-light); }

/* --- BENEFIT LIST ---------------------------------- */
.benefit-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--warm-beige);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.benefit-body strong { display: block; color: var(--dark); font-size: 1rem; margin-bottom: 0.2rem; }
.benefit-body span   { color: var(--warm-grey); font-size: 0.9rem; }

/* --- STATS STRIP ----------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2.5rem 0;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat__label { font-size: 0.82rem; color: var(--warm-grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* --- FAQ ------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--warm-beige); }
.faq-item:first-child { border-top: 1px solid var(--warm-beige); }
.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 1.25rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* --- NUMBERED STEPS -------------------------------- */
.steps { counter-reset: step-counter; }
.step {
  counter-increment: step-counter;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.step::before {
  content: counter(step-counter);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step__body h4 { margin-bottom: 0.2rem; }

/* --- PAYMENT BOX ----------------------------------- */
.payment-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 540px;
  margin: 0 auto;
}
.payment-box__header {
  background: var(--dark);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
}
.payment-box__header h2 { color: var(--gold-light); margin-bottom: 0.25rem; }
.payment-box__header .lead { color: var(--warm-grey-light); }
.payment-box__price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.payment-box__price-note { font-size: 0.85rem; color: var(--warm-grey-light); }
.payment-box__body { padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--warm-beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus { outline: none; border-color: var(--gold); }
.payment-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-top: 1rem;
  text-align: center;
}

/* --- FOOTER ---------------------------------------- */
.footer { background: var(--dark); padding: 64px 20px 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 560px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer__grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; } }

.footer__brand p { font-size: 0.9rem; color: var(--warm-grey-light); margin-top: 0.75rem; }
.footer__col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col li { margin-bottom: 0.65rem; }
.footer__col a {
  color: var(--warm-grey-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.18);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--warm-grey);
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Social icon link */
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

/* --- THANK YOU PAGE -------------------------------- */
.thankyou-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 60px 20px;
  text-align: center;
}
.thankyou-hero__content { max-width: 620px; }
.thankyou-hero__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.thankyou-hero h1 { color: var(--off-white); }
.thankyou-hero p  { color: var(--warm-grey-light); }

/* --- CONTACT PAGE ---------------------------------- */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--warm-beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--off-white);
  resize: vertical;
  min-height: 130px;
  transition: border-color var(--transition);
}
.contact-form textarea:focus { outline: none; border-color: var(--gold); }

/* --- UTILITY --------------------------------------- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-sm  { margin-top: 0.75rem; }
.mt-1   { margin-top: 1rem; }
.mt-2   { margin-top: 2rem; }
.mt-3   { margin-top: 3rem; }
.mb-1   { margin-bottom: 1rem; }
.mb-2   { margin-bottom: 2rem; }

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Staggered delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Divider with gold text */
.divider-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
}
.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--warm-beige);
}

/* About page specific layout */
@media (min-width: 900px) {
  .about-bio-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .about-brendan-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
  }
}

/* --- ENHANCED SCROLL ANIMATIONS ─────────────────────
 *
 * Extend the basic fade-in with directional slides and
 * a scale-in for large elements (video, images).
 * All triggered by IntersectionObserver in main.js.
 * ─────────────────────────────────────────────────── */

/* Scale in — for the video and big focal elements */
.anim-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

/* Slide in from left */
.anim-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-left.visible { opacity: 1; transform: translateX(0); }

/* Slide in from right */
.anim-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-right.visible { opacity: 1; transform: translateX(0); }

/* Hook text — individual sentence reveal, staggered via CSS delay */
.hook-line {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.68s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
.hook-line.visible              { opacity: 1; transform: translateY(0); }
.hook-line:nth-child(1).visible { transition-delay: 0.05s; }
.hook-line:nth-child(2).visible { transition-delay: 0.35s; }
.hook-line:nth-child(3).visible { transition-delay: 0.66s; }

/* Gold glow pulse fired once when the video enters view */
@keyframes videoGlow {
  0%   { box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2); }
  45%  { box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 3px rgba(201,168,76,0.55), 0 0 80px rgba(201,168,76,0.18); }
  100% { box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2); }
}
.video-wrap.video-glow {
  animation: videoGlow 2.6s ease 0.55s both;
}

/* --- SERVICE OVERLAY CARDS (services.html) ──────────
 *
 * Portrait cards where the photo fills the whole card and
 * text floats over a dark gradient at the bottom.
 * Visually distinct from the landing-page colour-band cards.
 * ─────────────────────────────────────────────────── */
.svc-overlay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 560px) { .svc-overlay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .svc-overlay-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-overlay-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  /* Warm placeholder background — visible when no photo is present */
  background: linear-gradient(155deg, #3a2e1c 0%, var(--dark) 100%);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-overlay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(44,36,22,0.32);
}
.svc-overlay-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.svc-overlay-card:hover img { transform: scale(1.07); }

/* Dark gradient — heavier at bottom so text is always readable */
.svc-overlay-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,20,8,0.94) 0%,
    rgba(28,20,8,0.52) 42%,
    transparent 68%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}
.svc-overlay-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(28,20,8,0.97) 0%,
    rgba(28,20,8,0.7)  50%,
    rgba(28,20,8,0.12) 74%
  );
}

.svc-overlay-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem 1.75rem;
  z-index: 1;
}
.svc-overlay-card__category {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.45rem;
  opacity: 0.8;
}
.svc-overlay-card__line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.55rem;
  transition: width 0.35s ease;
  border-radius: 2px;
}
.svc-overlay-card:hover .svc-overlay-card__line { width: 54px; }

.svc-overlay-card__title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.4;
}
/* "Enquire →" fades in on hover */
.svc-overlay-card__enquire {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 0.65rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease 0.05s, transform 0.28s ease 0.05s;
}
.svc-overlay-card:hover .svc-overlay-card__enquire {
  opacity: 1;
  transform: translateY(0);
}

/* Select input — used in enquiry forms */
.form-group select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 2px solid var(--warm-beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C7B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition);
  cursor: pointer;
}
.form-group select:focus { outline: none; border-color: var(--gold); }

/* --- CONTRAST MANIFESTO (index.html "five lines") ---- */
.contrast-list { margin: 0; padding: 0; }
.contrast-line {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  color: var(--warm-grey-light);
  line-height: 1.65;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.10);
  margin: 0;
}
.contrast-line:last-child { border-bottom: none; }
.contrast-line em {
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
}

/* --- SPEAKING ENGAGEMENT TYPE PILLS (services.html) -- */
.speaking-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}
.speaking-types span {
  display: inline-block;
  padding: 0.38rem 0.9rem;
  background: var(--warm-beige);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.section--beige .speaking-types span {
  background: var(--white);
}

/* --- SERVICE PHOTO CARDS ----------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 560px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(44,36,22,0.32);
}
.svc-card__img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(155deg, #3a2e1c 0%, var(--dark) 100%);
  flex-shrink: 0;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.svc-card:hover .svc-card__img img { transform: scale(1.07); }

.svc-card__body {
  padding: 1.2rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Alternating dark / gold label bands */
.svc-card:nth-child(odd)  .svc-card__body { background: var(--dark); }
.svc-card:nth-child(even) .svc-card__body { background: var(--gold); }

.svc-card__category {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.2rem;
}
.svc-card:nth-child(odd)  .svc-card__category { color: var(--gold-light); opacity: 0.8; }
.svc-card:nth-child(even) .svc-card__category { color: var(--dark-mid); opacity: 0.7; }

.svc-card__title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  display: block;
}
.svc-card:nth-child(odd)  .svc-card__title { color: var(--off-white); }
.svc-card:nth-child(even) .svc-card__title { color: var(--dark); }

.svc-card__arrow {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}
.svc-card:nth-child(odd)  .svc-card__arrow { color: var(--gold); }
.svc-card:nth-child(even) .svc-card__arrow { color: var(--dark); }
.svc-card:hover .svc-card__arrow { opacity: 1; transform: translateX(5px); }

/* --- MOBILE ADJUSTMENTS ---------------------------- */
@media (max-width: 600px) {
  .section { padding: 60px 16px; }

  /* Prevent long button text from overflowing viewport */
  .btn {
    white-space: normal;
    line-height: 1.4;
  }
  .btn--lg { padding: 16px 28px; font-size: 1rem; }

  .payment-box__header { padding: 1.5rem; }
  .payment-box__body   { padding: 1.5rem; }

  /* Service overlay cards — always show the CTA text on touch devices */
  .svc-overlay-card__enquire {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero hook padding tighter on small screens */
  .hero__vsl-hook { padding: 1.25rem 1.25rem; }
}
