/* =============================================
   HOME.CSS — Shems Heartwell Homepage Styles
   Companion to css/style.css (shared funnel)
   ============================================= */

/* ---- Custom Font ---- */
@font-face {
  font-family: 'Sophisticated';
  src: url('../fonts/Sophisticated.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Variables (match funnel palette) ---- */
:root {
  --teal-dark:   #071a1a;
  --teal-mid:    #0a3535;
  --teal:        #0a5e5e;
  --teal-bright: #0d9090;
  --teal-light:  #4ec4c4;
  --gold-dark:   #c9a84c;
  --gold:        #e8d070;
  --gold-light:  #f0e080;
  --cream:       #fffdf8;
  --cream-mid:   #f5f0e8;
  --text-dark:   #1a2a2a;
  --text-mid:    #2a4444;
  --text-light:  #5a7a7a;
  --white:       #ffffff;
}

/* ============================================================
   RESET / BASE (scoped only to homepage where needed)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ============================================================
   STICKY NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.site-nav.nav--scrolled {
  background: rgba(7, 26, 26, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(78, 196, 196, 0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}

.nav__logo-name {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
  line-height: 1;
}

.nav__logo-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 10px 20px !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--teal-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn--ghost-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white) !important;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ============================================================
   NAV DROPDOWNS
   ============================================================ */
/* Fix hover gap: extend pseudo-element bridge above dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav__chevron {
  font-size: 0.55rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.nav__item--dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

/* Invisible bridge so cursor can reach dropdown without it disappearing */
.nav__item--dropdown::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(7, 26, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 200;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav__dropdown li a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}

.nav__dropdown li + li {
  border-top: 1px solid rgba(78,196,196,0.1);
}

/* ============================================================
   PARALLAX-BG — child div that JS translates on mobile;
   on desktop the section background-attachment:fixed handles it
   ============================================================ */
.parallax-bg {
  display: none; /* hidden on desktop — JS enables on mobile only */
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.parallax-bg--hero  { background-image: url('/images/home/couple-ocean.jpg'); }
.parallax-bg--1     { background-image: url('/images/home/hero-couple-waterfall.jpg'); }
.parallax-bg--2     { background-image: url('/images/home/couple-deck.jpg'); }
.parallax-bg--3     { background-image: url('/images/home/couple-ocean.jpg'); }

/* ============================================================
   HERO SECTION — Split layout
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  background-image: url('../images/home/couple-ocean.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}

/* ============================================================
   HERO VIDEO — fullscreen bg layer, fades out when done
   ============================================================ */
.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 2;           /* above overlay & orbs; text sits above at z-index 3+ */
  opacity: 0;           /* JS fades in on canplay, then fades out at end */
  pointer-events: none;
}

/* Class added by JS when video ends — ensures fully hidden */
.home-hero__video--done {
  opacity: 0 !important;
  pointer-events: none;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7,26,26,0.72) 0%,
    rgba(10,53,53,0.58) 55%,
    rgba(10,94,94,0.38) 100%
  );
  z-index: 1;  /* above photo bg, below video */
}

.home-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.30;
  z-index: 3;  /* above video */
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.home-hero__orb--left {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #0d9090, transparent 70%);
  top: -100px; left: -160px;
}

.home-hero__orb--right {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #c9a84c, transparent 70%);
  bottom: -80px; right: -100px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-30px) scale(1.08); }
}

@keyframes heroLogoFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Centred hero content */
.home-hero__centered {
  position: relative;
  z-index: 4;  /* above video, orbs, and overlay */
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.home-hero__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}

/* Pipe divider always white */
.home-hero__eyebrow-divider {
  color: #ffffff;
  font-style: normal;
  letter-spacing: 0;
  margin: 0 0.3em;
}

/* "life and relationship guide" in gold */
.home-hero__eyebrow-title {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* "Explore My Offerings" — visible on all screens */
.home-hero__explore-link {
  display: block;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.home-hero__explore-link:hover {
  color: var(--gold);
}

.home-hero__byline {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1;
}

/* Hero split grid */
/* (split layout removed — centred layout active) */

.home-hero__testi-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}

/* Mini carousel wrapper — vertical, 3 cards visible */
.hero-testi-carousel {
  overflow: hidden;
  border-radius: 12px;
  /* height is set dynamically by JS after card measurement */
}

.hero-testi-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}

.hero-testi-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.hero-testi-card--active {
  background: linear-gradient(145deg, rgba(13,90,90,0.85), rgba(10,64,64,0.85));
  border-color: rgba(78,196,196,0.35);
}

.hero-testi-stars {
  display: flex;
  gap: 3px;
}

.hero-testi-stars .fas {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

.hero-testi-quote {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-style: italic;
}

.hero-testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-testi-author strong {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.hero-testi-author span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* Dot indicators */
.hero-testi-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1rem;
}

.hero-testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.hero-testi-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Keep old centered variant working as fallback */
.home-hero__content--centered {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.home-hero__headline {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

/* Sans-serif lowercase hero headline */
.home-hero__headline--cinzel {
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.06em;
  text-shadow: 0 3px 24px rgba(0,0,0,0.55);
  text-transform: lowercase;
}

/* Each headline line — centred */
.home-hero__hl-line {
  display: block;
  text-align: center;
}

.home-hero__hl-line--gold {
  color: var(--gold);
  text-shadow: 0 4px 28px rgba(0,0,0,0.5);
}

/* Gold accent — "build love that lasts" — inline so justify spans all 3 lines */
.home-hero__headline-accent {
  display: inline;
  color: var(--gold);
  font-weight: 400;
  text-shadow: 0 4px 28px rgba(0,0,0,0.5);
}

.home-hero__tagline {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin: 0 0 1.8rem;
}

/* Opt-in box */
.home-hero__optin {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(78,196,196,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 1.4rem;
}

.home-hero__optin-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 1rem;
}

.home-hero__optin-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-hero__optin-row {
  display: flex;
  gap: 10px;
}

.home-hero__optin-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(78,196,196,0.30);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.home-hero__optin-form input::placeholder {
  color: rgba(168,230,230,0.45);
}

.home-hero__optin-form input:focus {
  border-color: var(--teal-light);
  background: rgba(255,255,255,0.15);
}

.home-hero__optin-btn {
  flex-shrink: 0;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1000;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__optin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}

.home-hero__optin-note {
  font-size: 0.70rem;
  color: rgba(168,230,230,0.35);
  margin: 2px 0 0;
  font-style: italic;
}

.home-hero__optin-success {
  display: none;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--teal-light);
  align-items: center;
  gap: 10px;
  padding: 8px 0 4px;
}

.home-hero__optin-success .fas {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

/* Secondary text links below opt-in */
.home-hero__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero__text-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: rgba(168,230,230,0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.home-hero__text-link:hover {
  color: var(--gold);
}

.home-hero__text-link .fas {
  font-size: 0.65rem;
}

.home-hero__divider {
  color: rgba(168,230,230,0.3);
  font-size: 0.9rem;
}

/* Hero CTA row */
.home-hero__content--centered .home-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* White text override for the outline CTA */
.btn--outline-white {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.6) !important;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
}

/* Scroll hint */
.home-hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.home-hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(168,230,230,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hide-mobile { display: inline; }
.hide-desktop { display: none; }

/* Desktop: hide the mobile hero video */
.home-hero__mobile-video { display: none; }

/* ============================================================
   STAY CONNECTED OPT-IN BAR
   ============================================================ */
.stay-connected {
  background: linear-gradient(135deg, #0a3535 0%, #0d5555 50%, #0a3535 100%);
  border-bottom: 1px solid rgba(78, 196, 196, 0.15);
  padding: 44px 0;
}

/* New stacked layout wrapper */
.stay-connected__stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
}

.stay-connected__header {
  width: 100%;
}

.stay-connected__form {
  width: 100%;
}

.stay-connected__title {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--white);
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.stay-connected__sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(168, 230, 230, 0.75);
  margin: 0;
  font-style: italic;
}

.stay-connected__form {
  width: 100%;
}

.stay-connected__fields {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
}

.stay-connected__fields input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(78, 196, 196, 0.3);
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.stay-connected__fields input::placeholder {
  color: rgba(168, 230, 230, 0.5);
}

.stay-connected__fields input:focus {
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.12);
}

.stay-connected__btn {
  flex-shrink: 0;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1000;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stay-connected__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.stay-connected__note {
  font-size: 0.72rem;
  color: rgba(168, 230, 230, 0.4);
  margin: 8px 0 0;
  font-style: italic;
}

.stay-connected__success {
  display: none;
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--teal-light);
  align-items: center;
  gap: 10px;
}

.stay-connected__success .fas {
  font-size: 1.3rem;
  color: var(--gold-dark);
}

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.section--cream { background: var(--cream); }
.section--cream-mid { background: var(--cream-mid); }

.home-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-align: center;
  margin: 0 0 0.6rem;
}

.home-eyebrow--light {
  color: var(--teal-light);
}

.home-section-title {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: normal;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.home-section-title--light {
  color: var(--white);
}

.home-section-sub {
  text-align: center;
  font-size: 1.08rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.home-about {
  padding: 100px 0;
}

.home-about__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.home-about__image-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.home-about__img-frame {
  width: 240px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-bright), var(--gold-dark));
  padding: 4px;
  box-shadow: 0 20px 60px rgba(10,94,94,0.3);
}

.home-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.home-about__badge {
  position: relative;
  bottom: auto;
  right: auto;
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  border: 3px solid var(--white);
}

.home-about__badge-num {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a1a00;
  line-height: 1;
}

.home-about__badge-num sup {
  font-size: 0.65em;
}

.home-about__badge-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a1a00;
}

.home-about__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 0.6rem;
}

.home-about__copy .home-section-title {
  text-align: left;
  margin-bottom: 1.2rem;
}

.home-about__lede {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.home-about__copy p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.home-about__copy em {
  font-style: italic;
  color: var(--teal-bright);
}

.home-about__bullets {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.home-about__bullets--col {
  align-items: center;
  text-align: center;
}

.home-about__bullet {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(13,144,144,0.1);
  width: 100%;
}

.home-about__bullet:last-child {
  border-bottom: none;
}

/* Credentials block — title outside, green box around grid */
.home-about__credentials {
  margin-top: 3rem;
  padding: 40px 0 0;
  border-top: 1px solid rgba(13,144,144,0.15);
}

.home-about__credentials-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.6rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Green box wraps only the grid */
.home-about__cred-box {
  background: linear-gradient(135deg, #0a3535 0%, #0d5555 60%, #0a4040 100%);
  border-radius: 16px;
  padding: 4px;
}

.home-about__cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 13px;
  overflow: hidden;
}

.home-about__cred-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(78,196,196,0.15);
  border-right: 1px solid rgba(78,196,196,0.15);
  background: transparent;
  text-align: center;
}

/* Remove right border on last column */
.home-about__cred-item:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border on last row */
.home-about__cred-item:nth-child(7),
.home-about__cred-item:nth-child(8),
.home-about__cred-item:nth-child(9) {
  border-bottom: none;
}

/* ============================================================
   PARALLAX QUOTE SECTIONS
   ============================================================ */
.parallax-quote {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 140px 24px;
}

.parallax-quote--1 {
  background-image: url('../images/home/hero-couple-waterfall.jpg');
}

.parallax-quote--2 {
  background-image: url('../images/home/couple-deck.jpg');
  background-position: center 40%;
}

.parallax-quote--3 {
  background-image: url('../images/home/couple-ocean.jpg');
  background-position: center 80%;
}

.parallax-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,26,26,0.55);
  z-index: 0;
}

.parallax-quote__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.parallax-quote__icon {
  font-size: 2.5rem;
  color: rgba(78,196,196,0.3);
  margin-bottom: 1.2rem;
  display: block;
}

/* Heart image replacing quote icon */
.parallax-quote__heart {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}

.parallax-quote__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--white);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}

.parallax-quote__attr {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================================
   THE WORK SECTION
   ============================================================ */
.home-work {
  padding: 100px 0;
}

.home-work .home-section-title,
.home-work .home-eyebrow {
  margin-bottom: 0.4rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.work-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10,94,94,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,94,94,0.18);
}

.work-card__img-wrap {
  height: 220px;
  overflow: hidden;
}

.work-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.work-card__img-placeholder--mens {
  background: linear-gradient(135deg, #0d4a4a, #0a6060);
  color: rgba(168,230,230,0.6);
}

.work-card__img-placeholder--couples {
  background: linear-gradient(135deg, #3a1a2a, #6a2a4a);
  color: rgba(240,200,200,0.6);
}

.work-card__img-placeholder--passage {
  background: linear-gradient(135deg, #1a2a0d, #3a5a1a);
  color: rgba(200,240,168,0.6);
}

.work-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 0.4rem;
}

.work-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.9rem;
}

.work-card__copy {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.work-card__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.work-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.work-card__list .fa-check-circle {
  color: var(--teal-light);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.work-card__btn {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  padding: 13px 20px;
  margin-top: auto;
}

/* ============================================================
   FEATURED COURSE SECTION
   ============================================================ */
.home-course {
  padding: 100px 0;
  background: linear-gradient(160deg, #0d4a4a 0%, #0a3535 40%, #071e1e 100%);
  position: relative;
  overflow: hidden;
}

.home-course::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 10% 50%, rgba(13,144,144,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 90% 50%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Parallax background variant for the course section */
.home-course--parallax {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 80%;
  background-attachment: fixed;
  background-color: transparent;
}

.home-course--parallax::before {
  background: rgba(7,26,26,0.80);
  z-index: 0;
}

.home-course__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-course__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 0.6rem;
}

.home-course .home-section-title {
  text-align: left;
  margin-bottom: 1.2rem;
}

.home-course__lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.6rem;
}

.home-course__lead strong {
  color: var(--gold);
}

.home-course__includes {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.home-course__includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
}

.home-course__includes .fas {
  color: var(--teal-light);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.home-course__pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.home-course__old {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.home-course__price {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.home-course__price::before {
  content: '$';
  font-size: 1.6rem;
  vertical-align: super;
}

.home-course__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.home-course__btn {
  font-size: 1rem;
  padding: 16px 36px;
}

.home-course__tir-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.home-course__image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-course__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-course__card-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  pointer-events: none;
}

.home-course__logo {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.5));
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.home-testimonials {
  padding: 100px 0;
}

/* Carousel wrapper */
.testi-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}

.testi-carousel__track-wrap {
  flex: 1;
  overflow: hidden;
}

.testi-carousel__track {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The grid still uses 3 columns, displayed inside the track */
.home-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Arrow buttons */
.testi-carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(78,196,196,0.3);
  color: var(--teal-bright);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(10,94,94,0.1);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.testi-carousel__arrow:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  color: var(--white);
}

.testi-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dot indicators */
.testi-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.testi-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13,144,144,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testi-carousel__dot.is-active {
  background: var(--teal-bright);
  transform: scale(1.25);
}


.home-testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(10,94,94,0.08);
  border: 1px solid rgba(78,196,196,0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Active (center) card — always green */
.home-testi-card--active {
  background: linear-gradient(160deg, #0d5a5a, #0a4040) !important;
  border-color: rgba(78,196,196,0.3) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,94,94,0.22) !important;
}

.home-testi-card--active .home-testi-quote {
  color: rgba(255,255,255,0.9);
}

.home-testi-card--active .home-testi-author strong {
  color: var(--gold);
}

.home-testi-card--active .home-testi-author span {
  color: rgba(255,255,255,0.65);
}

.home-testi-card--active .home-testi-stars .fas {
  color: var(--gold-light);
}

.home-testi-stars {
  display: flex;
  gap: 3px;
}

.home-testi-stars .fas {
  color: var(--gold-dark);
  font-size: 0.82rem;
}

.home-testi-quote {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
}

.home-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(78,196,196,0.15);
}

.home-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.home-testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.home-testi-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   APPROACH / PHILOSOPHY
   ============================================================ */
.home-approach {
  padding: 100px 0;
}

/* ============================================================
   APPROACH 2-COLUMN 4-SQUARE GRID
   ============================================================ */
/* ============================================================
   APPROACH — 4-ACROSS GRID + MOBILE CAROUSEL
   ============================================================ */

/* Carousel outer wrapper */
.approach-carousel-wrap {
  position: relative;
  margin-top: 2.5rem;
}

/* Desktop: 4 equal columns in one row */
.approach-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(78,196,196,0.14);
}

.approach-card-sq {
  padding: 40px 32px;
  background: var(--white);
  border-right: 1px solid rgba(78,196,196,0.14);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease;
}

/* Remove right border on last card */
.approach-grid-4col .approach-card-sq:last-child {
  border-right: none;
}

.approach-card-sq:hover {
  background: linear-gradient(145deg, rgba(13,144,144,0.07), rgba(78,196,196,0.10));
}

.approach-card-sq__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(13,144,144,0.12), rgba(78,196,196,0.20));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-card-sq__icon .fas {
  font-size: 1.3rem;
  color: var(--teal-bright);
}

.approach-card-sq__title {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 0;
}

.approach-card-sq__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}

/* Mobile dots (hidden on desktop) */
.approach-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.approach-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13,144,144,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.approach-dot.is-active {
  background: var(--teal-bright);
}



/* ============================================================
   ABOUT — CENTERED REDESIGN
   ============================================================ */
.home-about--centered .home-about__inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  gap: 1.4rem;
}

.home-about--centered .home-about__img-frame {
  width: 200px;
  height: 260px;
  margin: 0 auto 0.5rem;
}

.home-about--centered .home-about__eyebrow {
  margin-bottom: 0.2rem;
}

.home-about__body {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0;
}

.home-about__cta {
  margin-top: 0.8rem;
}


  padding: 80px 0;
  background: linear-gradient(135deg, #0a4040, #0d5555, #0a3535);
}

/* ============================================================
   MUSIC SECTION
   ============================================================ */
.home-music {
  padding: 100px 0;
}

.home-music__embed {
  max-width: 860px;
  margin: 2.5rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(10,94,94,0.18);
}

.home-media .home-section-title {
  margin-bottom: 2.5rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 28px 20px;
  border-radius: 12px;
  border: 1px solid rgba(78,196,196,0.2);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.media-item:hover {
  background: rgba(78,196,196,0.1);
  border-color: rgba(78,196,196,0.4);
  transform: translateY(-3px);
}

.media-item__icon {
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}

.media-item__title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--white);
  font-weight: 600;
}

.media-item__host {
  font-size: 0.78rem;
  color: rgba(168,230,230,0.6);
  font-style: italic;
}

/* ============================================================
   CONTACT / FINAL CTA
   ============================================================ */
.home-contact {
  position: relative;
  padding: 100px 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.home-contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,26,26,0.84);
  z-index: 0;
}

.home-contact__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
}

.home-contact__orb--left {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0d9090, transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.home-contact__orb--right {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #c9a84c, transparent 70%);
  bottom: -80px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

.home-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: start;
}

.home-contact__byline {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.home-contact__title {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: normal;
  color: var(--white);
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.home-contact__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.80);
  margin-bottom: 1rem;
  font-style: italic;
}

.home-contact__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Contact Form Card */
.home-contact__form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.home-contact__form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.4rem;
  text-align: center;
}

.home-contact__form-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin: 0 0 1.6rem;
}

.home-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(78,196,196,0.3);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(13,144,144,0.1);
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 14px;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  margin: 0;
}

.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--teal-bright);
}

.form-success .fas {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.form-success p {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--teal);
}

/* ============================================================
   FOOTER
   ============================================================ */
.home-footer {
  background: var(--teal-dark);
  padding: 40px 24px;
  border-top: 1px solid rgba(78,196,196,0.12);
}

.home-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.home-footer__name {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.home-footer__tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}

.home-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.home-footer__nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.home-footer__nav a:hover {
  color: var(--teal-light);
}

.home-footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(78,196,196,0.1);
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 8px;
}

.home-footer__copy {
  font-size: 0.76rem;
  color: rgba(168,230,230,0.3);
  margin: 0;
}

.home-footer__built {
  font-size: 0.76rem;
  color: rgba(168,230,230,0.3);
  margin: 0;
}

.home-footer__built a {
  color: rgba(168,230,230,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.home-footer__built a:hover {
  color: var(--teal-light);
}

/* ============================================================
   WORK CARD REAL IMAGES
   ============================================================ */
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card__img {
  transform: scale(1.04);
}

/* ============================================================
   TESTIMONIAL PHOTO AVATARS
   ============================================================ */
.home-testi-avatar--photo {
  background: none;
  overflow: hidden;
  flex-shrink: 0;
}

.home-testi-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ============================================================
   BOOK SECTION
   ============================================================ */
.home-book {
  padding: 100px 0;
}

.home-book__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}

.home-book__image-col {
  display: flex;
  justify-content: center;
}

.home-book__img-wrap {
  position: relative;
}

.home-book__img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(78,196,196,0.25), rgba(201,168,76,0.25));
  z-index: 0;
  transform: rotate(-2deg);
}

.home-book__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-book__img:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.home-book__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-bright);
  margin: 0 0 1.2rem;
}

.home-book__copy .home-section-title {
  text-align: left;
  margin-bottom: 0.4rem;
  font-weight: 300;
}

.home-book__copy p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.home-book__copy em {
  font-style: italic;
  color: var(--teal-bright);
}

.home-book__copy strong {
  color: var(--text-dark);
  font-weight: 700;
}

.home-book__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.home-gallery {
  overflow: hidden;
  background: var(--teal-dark);
}

.home-gallery__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 280px;
}

.home-gallery__item {
  overflow: hidden;
  position: relative;
}

.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}

.home-gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

/* ============================================================
   AOS — simple scroll-fade
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero — centred layout responsive */
  .home-hero__centered {
    padding: 0 24px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-card:last-child {
    grid-column: span 2;
  }

  .home-course__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-course .home-section-title {
    text-align: center;
  }

  .home-course__eyebrow,
  .home-course__lead,
  .home-course__pricing,
  .home-course__btn {
    text-align: center;
  }

  a.home-course__btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .home-course__includes {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-course__pricing {
    justify-content: center;
  }

  .home-about__inner {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .approach-row {
    padding: 28px 32px;
  }

  .home-about__cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-about__cred-item:nth-child(3n) {
    border-right: 1px solid rgba(78,196,196,0.18);
  }

  .home-about__cred-item:nth-child(2n) {
    border-right: none;
  }

  .home-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(7,26,26,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 32px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1050;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }

  .nav__menu.is-open {
    right: 0;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav__links a {
    font-size: 0.85rem;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }

  /* Mobile dropdowns — show inline, always visible */
  .nav__item--dropdown {
    width: 100%;
  }

  .nav__dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 6px;
    padding: 4px 0 4px 12px;
    margin-top: 8px;
    box-shadow: none;
  }

  .nav__dropdown li a {
    font-size: 0.75rem;
    padding: 7px 14px;
    color: rgba(255,255,255,0.65);
  }

  .nav__dropdown li + li {
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav__chevron {
    display: none;
  }

  /* Nav logo — centered and slightly larger on mobile */
  .nav__logo-name {
    font-size: 2rem;
  }

  .nav__inner {
    height: 64px;
    justify-content: center;
    position: relative;
  }

  /* Keep hamburger pinned to the right */
  .nav__toggle {
    position: absolute;
    right: 16px;
  }

  /* Hero — mobile */
  .home-hero {
    padding: 0 0 60px;
    background-image: none;       /* parallax-bg div handles the image */
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;             /* clips the parallax-bg div */
  }

  .home-hero::before { display: none; }
  .home-hero__orb { display: none; }

  .home-hero__centered {
    width: 100%;
    max-width: 100%;
    padding: 0 28px;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .home-hero__eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-align: center;
    white-space: nowrap;
  }

  /* Full one-line version on mobile */
  .home-hero__eyebrow-full {
    display: inline;
    white-space: nowrap;
  }

  /* "|" divider — white */
  .home-hero__eyebrow-divider {
    color: #ffffff;
    font-style: normal;
    letter-spacing: 0;
    margin: 0 0.25em;
  }

  /* "life and relationship guide" — gold */
  .home-hero__eyebrow-title {
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .home-hero__headline--cinzel {
    font-size: clamp(1.3rem, 6vw, 2rem);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    word-break: break-word;
  }

  .home-hero__hl-line {
    text-align: center;
  }

  .home-hero__headline--sophist {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
  }

  .home-hero__ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
    gap: 0.75rem;
    padding-bottom: 2.5rem;
  }

  .home-hero__ctas .btn {
    width: auto;
    min-width: 220px;
    text-align: center;
  }

  /* "Explore My Offerings" — mobile keeps same styles, just slightly tighter margin */
  .home-hero__explore-link {
    margin-top: 1rem;
  }

  .home-hero__scroll-hint {
    display: none;
  }

  /* Mobile intro video — show below headline */
  .home-hero__mobile-video {
    display: block !important;
    width: 100%;
    margin-top: 0.75rem;
  }

  .home-hero__mobile-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  }

  /* Show elements marked hide-desktop on mobile */
  .hide-desktop { display: block; }
  .hide-mobile { display: none; }

  /* Stay Connected — stack fields on mobile */
  .stay-connected__fields {
    flex-wrap: wrap;
  }

  .stay-connected__fields input {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }

  .stay-connected__btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 0;
  }

  .trust-item {
    padding: 8px 20px;
  }

  .trust-divider {
    height: 30px;
  }

  /* About */
  .home-about {
    padding: 70px 0;
  }

  .home-about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about__img-frame {
    width: 220px;
    height: 280px;
    margin: 0 auto;
  }

  .home-about__copy h2 {
    text-align: center;
  }

  .home-about__eyebrow {
    text-align: center;
  }

  /* Work */
  .home-work {
    padding: 70px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card:last-child {
    grid-column: span 1;
  }

  /* Parallax sections — mobile */
  .parallax-quote {
    background-image: none;       /* parallax-bg div handles the image */
    background-attachment: scroll;
    min-height: 85vh;
    padding: 120px 24px;
    overflow: hidden;             /* clips the parallax-bg div */
    position: relative;
  }

  /* Enable parallax-bg divs on mobile */
  .parallax-bg {
    display: block;
  }

  /* Overlay and content sit above the parallax-bg */
  .home-hero__overlay,
  .parallax-quote__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .home-hero__centered,
  .parallax-quote__content {
    position: relative;
    z-index: 2;
  }

  /* Course */
  .home-course {
    padding: 70px 0;
  }

  /* Testimonials */
  .home-testimonials {
    padding: 70px 0;
  }

  .home-testi-grid {
    grid-template-columns: 1fr;
  }

  /* Approach */
  .home-approach {
    padding: 70px 0;
  }

  .approach-rows {
    border-radius: 8px;
  }

  .approach-row {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }

  .approach-row__text {
    max-width: 100%;
  }

  /* Media */
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Approach grid — mobile carousel */
  .approach-grid-4col {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    scroll-behavior: smooth;
    /* hide scrollbar */
    scrollbar-width: none;
  }

  .approach-grid-4col::-webkit-scrollbar {
    display: none;
  }

  .approach-card-sq {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-right: 1px solid rgba(78,196,196,0.14);
    border-bottom: none !important;
  }

  .approach-grid-4col .approach-card-sq:last-child {
    border-right: none;
  }

  .approach-dots {
    display: flex;
  }

  /* Credentials */
  .home-about__credentials {
    padding: 28px 0 0;
  }

  .home-about__cred-box {
    border-radius: 10px;
  }

  .home-about__cred-grid {
    grid-template-columns: 1fr;
    border-radius: 11px;
  }

  .home-about__cred-item:nth-child(3n) {
    border-right: none;
  }

  .home-about__cred-item:nth-child(7),
  .home-about__cred-item:nth-child(8) {
    border-bottom: 1px solid rgba(78,196,196,0.15);
  }

  .home-about__cred-item:last-child {
    border-bottom: none;
  }

  /* Carousel on mobile = 1 card */
  .testi-carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* Book */
  .home-book {
    padding: 70px 0;
  }

  .home-book__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .home-book__copy h2 {
    text-align: center;
  }

  .home-book__copy .home-section-title {
    text-align: center;
  }

  .home-book__copy .home-about__eyebrow {
    text-align: center;
  }

  .home-book__ctas {
    justify-content: center;
  }

  .home-book__img {
    max-width: 220px;
    margin: 0 auto;
  }

  /* Gallery */
  .home-gallery__strip {
    grid-template-columns: repeat(3, 1fr);
    height: 200px;
  }

  .home-gallery__strip .home-gallery__item:nth-child(n+4) {
    display: none;
  }

  /* Contact */
  .home-contact {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .home-contact__ctas {
    flex-direction: column;
  }

  .home-contact__form-card {
    padding: 28px 22px;
  }

  /* Section titles */
  .home-section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

/* ============================================================
   LANDSCAPE PHONE — fix hero & quote sections
   ============================================================ */
/* Landscape phones — apply mobile nav + stacked layout for widths 769-932px landscape */
@media (max-width: 932px) and (orientation: landscape) and (max-height: 500px) {
  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80vw; max-width: 320px;
    height: 100vh;
    background: rgba(7,26,26,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 32px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1050;
  }
  .nav__menu.is-open { right: 0; }
  .nav__item { width: 100%; }
  .nav__link { font-size: 1rem; padding: 10px 0; }
  .nav__dropdown {
    position: static;
    opacity: 1; visibility: visible; pointer-events: auto;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 4px;
  }
  .nav__chevron { display: none; }
  .nav__logo-name { font-size: 1.6rem; }
  .nav__inner { height: 56px; justify-content: center; position: relative; }
  .nav__toggle { position: absolute; right: 16px; }

  /* Hero — compact landscape */
  .home-hero {
    min-height: 100svh;
    padding: 60px 0 30px;
    background-image: none;
    overflow: hidden;
  }
  .parallax-bg { display: block; }
  .home-hero::before { display: none; }
  .home-hero__orb { display: none; }
  .home-hero__centered {
    width: 100%; max-width: 100%;
    padding: 0 28px;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }
  .home-hero__headline--cinzel {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    line-height: 1.2;
  }
  .home-hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
  }
  .home-hero__mobile-video { display: none !important; }
  .home-hero__scroll-hint { display: none; }

  /* Parallax sections */
  .parallax-quote {
    background-image: none;
    overflow: hidden;
    min-height: 60vh;
    padding: 60px 24px;
  }

  /* Stacked layouts */
  .home-about__inner { grid-template-columns: 1fr; gap: 24px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .home-course__inner { grid-template-columns: 1fr; gap: 32px; }
  .home-book__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .home-testi-grid { grid-template-columns: 1fr; }
  .home-contact__inner { grid-template-columns: 1fr; }

  /* Show/hide helpers */
  .hide-desktop { display: block; }
  .hide-mobile  { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .trust-bar__inner {
    flex-direction: column;
    gap: 16px;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .home-contact__form-card {
    padding: 24px 18px;
  }
}
