/* HummingBeing — styles.css v9
   Fonts: Playfair Display (hero titles) + PT Serif (headings) + Lato (body)  |  Palette: #242e42 navy · #F5A623 gold · #ffc600 yellow
   ——————————————————————————————————————————————————————————————————————————————————————————————— */

:root {
  --navy:        #242e42;
  --navy-deep:   #1a2030;
  --navy-light:  #3a4a66;
  --gold:        #F5A623;
  --gold-dark:   #c98000;
  --yellow:      #ffc600;
  --blue:        #2ea3f2;
  --white:       #ffffff;
  --off-white:   #f9f9f9;
  --cream:       #fafaf8;
  --body-text:   #3d4250;
  --text-mid:    #5f6472;
  --text-light:  #8a8f9e;
  --border:      rgba(245,166,35,.28);
}

/* ── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
html, body { overflow-x: hidden; }

/* ── BASE TYPOGRAPHY ───────────────────────────────────────────────────── */
body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--navy); }
em { font-style: italic; }
a { color: var(--blue); text-decoration: none; transition: color .25s; }
a:hover { color: var(--navy); }

/* ── NAVIGATION ────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  box-shadow: none;
  padding: 0 12%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  transform: translateY(0);
  transition: transform .35s ease, background .4s ease, box-shadow .4s ease;
}
nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.09), 0 2px 16px rgba(0,0,0,.04);
}
nav.nav-hidden { transform: translateY(-100%); }

.logo {
  text-decoration: none;
  flex: 1;
  display: flex;
  align-items: center;
}
.logo img.logo-on-dark  { display: block !important; }
.logo img.logo-on-light { display: none  !important; }
nav.scrolled .logo img.logo-on-dark  { display: none  !important; }
nav.scrolled .logo img.logo-on-light { display: block !important; }

.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .4px;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); font-weight: 700; }
nav.scrolled .nav-links a { color: var(--body-text); }
nav.scrolled .nav-links a:hover { color: var(--gold); }
nav.scrolled .nav-links a.active { color: var(--gold); font-weight: 700; }

.nav-cta {
  text-decoration: none;
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,.65);
  padding: .5rem 1.4rem;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .4px;
  transition: background .25s, border-color .25s, transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .25s !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.25) !important;
}
nav.scrolled .nav-cta {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}
nav.scrolled .nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(245,166,35,.4) !important;
}

.nav-actions {
  flex: 1;
  display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white); display: block;
  transition: transform .3s ease, opacity .3s ease, background .4s ease;
  transform-origin: center;
}
nav.scrolled .hamburger span,
.hamburger.open span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── NAV DROPDOWN ──────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex !important; align-items: center; gap: .35rem; }
.nav-arrow { font-size: .5rem; transition: transform .25s ease; }
.nav-dropdown.dropdown-open .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(36,46,66,.14);
  border: 1px solid rgba(36,46,66,.08);
  padding: .5rem 0;
  list-style: none;
  min-width: 210px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 1001;
}
.nav-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--white);
  border-top-width: 0;
}
.nav-dropdown-menu li a {
  display: block;
  padding: .65rem 1.5rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--body-text) !important;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active { color: var(--gold) !important; background: var(--cream); }

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
@keyframes btn-ripple {
  to { transform: scale(5); opacity: 0; }
}

.btn {
  display: inline-block;
  padding: .72rem 1.75rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .25s ease, border-color .25s ease, color .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
  pointer-events: none;
}
/* click ripple spawned by JS */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: rgba(255,255,255,.55);
  animation: btn-ripple .65s ease-out forwards;
  pointer-events: none;
  z-index: 1;
}
.btn:hover { transform: translateY(-5px) scale(1.04); }
.btn:hover::after { left: 150%; }
.btn:active { transform: translateY(-1px) scale(1.01); transition-duration: .08s; }

.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); box-shadow: 0 16px 44px rgba(245,166,35,.65), 0 0 0 8px rgba(245,166,35,.13); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.14); color: var(--white); box-shadow: 0 12px 34px rgba(0,0,0,.28), 0 0 0 5px rgba(255,255,255,.1); }

.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); box-shadow: 0 16px 44px rgba(36,46,66,.6), 0 0 0 6px rgba(36,46,66,.15); }

/* ── IMAGE PLACEHOLDER ──────────────────────────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f0f1f3 0%, #e4e6ea 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .9rem;
  color: rgba(36,46,66,.22);
}
.img-placeholder i { font-size: 2.6rem; }
.img-placeholder span {
  font-size: .62rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}
/* placeholder inside aspect-ratio containers */
.two-col-image .img-placeholder,
.g-img-thumb .img-placeholder {
  position: absolute; inset: 0;
}
.g-img-card:not([onclick]) { cursor: default; }
.g-img-card:not([onclick]):hover { transform: none !important; box-shadow: none !important; }
.g-img-card:not([onclick]) .g-img-overlay { display: none; }

/* ── PRICING GRID ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem 1.6rem 1.6rem;
  text-align: center;
  box-shadow: 0 6px 32px rgba(36,46,66,.10);
  border: 1px solid rgba(36,46,66,.07);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover { transform: translateY(-7px); box-shadow: 0 22px 64px rgba(36,46,66,.14); }
.pricing-card.pc-featured {
  background: var(--navy);
  border-top-color: var(--gold);
}
.pricing-card .pc-icon {
  width: 52px; height: 52px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; margin-bottom: .9rem;
}
.pricing-card.pc-featured .pc-icon { background: rgba(245,166,35,.15); }
.pricing-card h3 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.15rem; color: var(--navy); margin-bottom: .25rem;
}
.pricing-card.pc-featured h3 { color: var(--white); }
.pc-price {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 2.3rem; font-weight: 700; line-height: 1;
  color: var(--gold); margin: .7rem 0 .4rem;
}
.pc-tagline { font-size: .9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.2rem; flex: 1; }
.pricing-card.pc-featured .pc-tagline { color: rgba(255,255,255,.88); }
.pc-features {
  list-style: none; text-align: left;
  width: 100%; margin-bottom: 1.4rem;
}
.pc-features li {
  font-size: .88rem; padding: .5rem 0 .5rem 1.6rem;
  position: relative; color: var(--body-text);
  border-bottom: 1px solid rgba(245,166,35,.12);
}
.pc-features li:last-child { border-bottom: none; }
.pricing-card.pc-featured .pc-features li { color: rgba(255,255,255,.9); border-bottom-color: rgba(255,255,255,.08); }
.pc-features li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}
.pricing-card .btn { width: 100%; text-align: center; margin-top: auto; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── HERO (homepage) ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--navy-deep);
  padding: 6rem 12%;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36,46,66,.68) 0%, rgba(15,20,32,.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content { width: 100%; max-width: 860px; position: relative; z-index: 2; text-align: center; }

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  animation: fade-down .8s ease .1s both;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.34rem, 4.5vw, 4.95rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.6rem;
  letter-spacing: -.5px;
  animation: fade-down .8s ease .25s both;
  text-shadow: 0 0 40px rgba(255,255,255,.2), 0 2px 12px rgba(0,0,0,.55);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,.55), 0 0 80px rgba(245,166,35,.2), 0 2px 12px rgba(0,0,0,.55);
}

.hero p {
  font-size: 1.035rem;
  color: rgba(255,255,255,.93);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 400;
  animation: fade-down .8s ease .4s both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  animation: fade-down .8s ease .55s both;
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 12%;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* looping video background */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* dark gradient overlay — sits above video / static bg */
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36,46,66,.55) 0%, rgba(15,20,32,.68) 100%);
  z-index: 1;
  pointer-events: none;
}
/* gold radial shimmer — above dark overlay */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,166,35,.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.page-hero .eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 3;
  animation: fade-down .7s ease .1s both;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.7rem, 5.85vw, 5.85rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -.5px;
  line-height: 1.05;
  position: relative;
  z-index: 3;
  text-align: center;
  animation: fade-down .7s ease .2s both;
  text-shadow: 0 0 40px rgba(255,255,255,.2), 0 2px 12px rgba(0,0,0,.55);
}
.page-hero h1 em, .event-hero h1 em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,.55), 0 0 80px rgba(245,166,35,.2), 0 2px 12px rgba(0,0,0,.55);
}
.page-hero p {
  color: rgba(255,255,255,.93);
  font-size: 0.99rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  font-weight: 400;
  animation: fade-down .7s ease .35s both;
}
.page-hero .hero-actions,
.event-hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  animation: fade-down .7s ease .5s both;
}
/* slightly smaller buttons inside hero sections */
.hero .btn,
.page-hero .btn,
.event-hero .btn {
  font-size: .72rem;
  padding: .65rem 1.55rem;
}

/* ── SECTIONS ──────────────────────────────────────────────────────────── */
section { padding: 6rem 12%; }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-sage   { background: #f0f4f8; }
.section-dark   { background: var(--navy); }
.section-dark .section-title   { color: var(--white); }
.section-dark .section-subtitle{ color: rgba(255,255,255,.88); }

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}

.section-title {
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 1.5rem;
  letter-spacing: -.2px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 600px; margin-bottom: 3.5rem;
  font-weight: 400; line-height: 1.75;
}

.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto 3.5rem; }

.divider { width: 48px; height: 3px; background: var(--gold); margin: 1.5rem 0; border-radius: 2px; }
.divider-center { margin: 1.5rem auto; }


/* ── EVENT COUNTDOWN BAR ────────────────────────────────────────────────── */
.evt-countdown-bar {
  background: var(--cream);
  padding: 4rem 12%;
  border-top: 1px solid rgba(36,46,66,.07);
  border-bottom: 1px solid rgba(36,46,66,.07);
}
.ecb-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.ecb-text { min-width: 200px; }
.ecb-eyebrow {
  font-family: 'Lato', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .5rem;
}
.ecb-title {
  font-family: 'PT Serif', Georgia, serif; font-size: 1.35rem;
  color: var(--navy); font-weight: 700; margin-bottom: .5rem; line-height: 1.25;
}
.ecb-date-info {
  font-size: .85rem; color: var(--text-mid);
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
}
.ecb-date-info i { color: var(--gold); }
.ecb-units {
  display: flex; align-items: flex-start; gap: .3rem;
  flex: 1; justify-content: center; flex-wrap: nowrap;
}
.ecb-unit { text-align: center; min-width: 80px; }
.ecb-num {
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-weight: 700; color: var(--navy); display: block; line-height: 1;
}
.ecb-num.cd-flip { animation: ecbFlip .28s ease; }
@keyframes ecbFlip {
  0%   { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.ecb-lbl {
  font-size: .6rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-mid); display: block; margin-top: .3rem;
}
.ecb-sep {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 3.5rem; color: var(--gold); line-height: 1;
  padding-top: .05rem; align-self: flex-start;
}
/* ── CARD IMAGES ─────────────────────────────────────────────────────────── */
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SERVICE CARDS ──────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.4rem;
  box-shadow: 0 4px 24px rgba(36,46,66,.08);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(36,46,66,.06);
  overflow: hidden;
}
.card-img {
  width: calc(100% + 2.8rem);
  margin: -1.4rem -1.4rem 1.5rem;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0c1018 0%, #1c2234 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255,255,255,.16);
}
.card-img i { font-size: 2.4rem; }
.card-img span { font-size: .6rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-family: 'Lato', sans-serif; }
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(36,46,66,.13); }
.card.gold-top  .card-icon { background: var(--gold); }
.card.gold-top  .card-icon i { color: var(--white); }
.card.sage-top  .card-icon { background: rgba(255,198,0,.18); }
.card.sage-top  .card-icon i { color: var(--navy); }

.card-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-icon i { font-size: 1rem; color: var(--gold); }

.card h3 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: .55rem;
}
.card p { color: var(--body-text); line-height: 1.7; font-size: .96rem; }

.card-link {
  display: inline-block; margin-top: 1.1rem;
  color: var(--gold); font-weight: 700;
  font-size: .75rem; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: color .25s;
}
.card-link:hover { color: var(--navy); }

/* ── TWO-COLUMN ─────────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }

.two-col-text h2 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 1.5rem; line-height: 1.2;
  letter-spacing: -.2px;
}
.two-col-text h2 em { font-style: italic; color: var(--gold); }
.two-col-text p { color: var(--body-text); margin-bottom: 1.2rem; font-size: 1rem; }

.two-col-image {
  min-height: 520px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(36,46,66,.16);
  background: var(--off-white);
}
.two-col-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.two-col-image:hover img { transform: scale(1.03); }
.two-col-image.gold-bg { background: linear-gradient(135deg, #fff8ee 0%, #ffe5a0 100%); }

/* ── FEATURE LIST ───────────────────────────────────────────────────────── */
.feature-list { list-style: none; padding-left: .75rem; }
.feature-list li {
  padding: .3rem 0 .3rem 1.6rem;
  position: relative;
  color: var(--body-text); font-size: .94rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonials-grid > *:nth-child(n+4) { display: none; }
.testimonial {
  background: rgba(255,255,255,.07);
  border-radius: 10px; padding: 2.5rem 2.5rem 2.5rem;
  position: relative; padding-top: 4rem;
}
.testimonial::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 1.8rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: .35;
  pointer-events: none;
}
.testimonial p {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.2rem; line-height: 1.75;
}
.testimonial-author {
  font-family: 'Lato', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}

.testimonial-light {
  background: var(--white); border-radius: 10px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(36,46,66,.07);
  position: relative; padding-top: 4rem;
}
.testimonial-light::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 1.8rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: .28;
  pointer-events: none;
}
.testimonial-light p {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1rem; font-style: italic;
  color: var(--body-text); margin-bottom: 1.2rem;
}
.testimonial-light .testimonial-author {
  font-family: 'Lato', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy);
}

/* ── BOOKING / CONTACT FORM ─────────────────────────────────────────────── */
.contact-form {
  background: var(--white); border-radius: 10px; padding: 3rem;
  box-shadow: 0 8px 40px rgba(36,46,66,.10);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy); margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: .97rem; color: var(--navy); background: var(--cream);
  transition: border-color .25s; font-family: 'Lato', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ── SOCIAL CARDS (socials page) ────────────────────────────────────────── */
.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.social-card {
  background: var(--white); border-radius: 24px; padding: 1.6rem;
  text-align: center; box-shadow: 0 4px 24px rgba(36,46,66,.07);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; display: block;
}
.social-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(36,46,66,.13); }
.social-card .s-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; color: var(--navy); }
.social-card h3 { font-family: 'PT Serif', Georgia, serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .4rem; }
.social-card p { font-size: .94rem; color: var(--body-text); margin-bottom: .5rem; line-height: 1.65; }
.social-card .handle { font-weight: 700; color: var(--gold); font-size: .88rem; }

/* ── BADGE / TAG ────────────────────────────────────────────────────────── */
.tag {
  display: inline-block; padding: .3rem .9rem;
  background: rgba(36,46,66,.06); color: var(--navy);
  border-radius: 4px; font-size: .72rem; font-weight: 700;
  margin: .25rem; letter-spacing: .8px; text-transform: uppercase;
}

/* ── BANNER CTA ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--cream);
  border-top: 1px solid rgba(36,46,66,.08);
  padding: 5rem 12%; text-align: center;
}
.cta-banner h2 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--navy); margin-bottom: 1rem; letter-spacing: -.2px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  color: var(--body-text); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto 2rem;
  font-weight: 400; line-height: 1.75;
}

/* ── PROCESS STEPS ──────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step {
  text-align: center;
  padding: 2.2rem 1.6rem 2rem;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}
.step:hover {
  transform: translateY(-6px);
}
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.step:hover .step-num {
  transform: scale(1.18);
  box-shadow: 0 0 0 9px rgba(245,166,35,.14), 0 8px 24px rgba(245,166,35,.42);
}
.step h4 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.18rem; font-weight: 700;
  color: var(--navy); margin-bottom: .65rem;
  transition: color .25s ease;
}
.step:hover h4 { color: var(--gold-dark); }
.step p { font-size: .97rem; color: var(--body-text); line-height: 1.75; }

/* ── VIDEO EMBED (responsive 16:9) ─────────────────────────────────────── */
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 10px; overflow: hidden;
  margin: 2.5rem 0; box-shadow: 0 8px 40px rgba(36,46,66,.18);
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── PLATFORM CARDS (socials page) ─────────────────────────────────────── */
.platform-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 10px; padding: 1.75rem 1.25rem; text-align: center;
  box-shadow: 0 8px 32px rgba(36,46,66,.18);
  transition: transform .3s;
  display: flex; flex-direction: column; align-items: center;
}
.platform-hero:hover { transform: translateY(-5px); }
.platform-hero .ph-icon { display: block; margin-bottom: .75rem; }
.platform-hero .ph-icon i { font-size: 2.2rem; color: var(--gold); }
.platform-hero h3 { font-family: 'PT Serif', Georgia, serif; font-size: 1.15rem; color: var(--white); margin-bottom: .3rem; }
.platform-hero .ph-handle { color: var(--gold); font-weight: 700; font-size: .78rem; margin-bottom: .65rem; display: block; }
.platform-hero p { color: rgba(255,255,255,.9); font-size: .88rem; margin-bottom: 1.25rem; line-height: 1.6; flex: 1; }
.platform-hero a {
  background: var(--gold); color: var(--white);
  padding: .55rem 1.1rem; border-radius: 6px;
  font-weight: 700; font-size: .7rem; text-decoration: none;
  letter-spacing: 1.3px; text-transform: uppercase;
  transition: background .25s; display: inline-block;
  white-space: nowrap;
}
.platform-hero a:hover { background: var(--gold-dark); color: var(--white); }
.platforms-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: #1e2028;
  border-top: none;
  padding: 2.5rem 12% 1.2rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.8rem; margin-bottom: 1.5rem; align-items: start;
}
.foot-logo {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; text-decoration: none;
  display: block; margin-bottom: .5rem;
}
.foot-logo span { color: var(--gold); }
.foot-desc { font-size: .74rem; color: rgba(255,255,255,.52); line-height: 1.55; max-width: 280px; margin-bottom: .3rem; }
.foot-desc strong { color: rgba(255,255,255,.78); }
.foot-socials { display: flex; gap: .4rem; margin-top: .6rem; }
.foot-socials .soc {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.45); font-size: .78rem;
  transition: border-color .25s, color .25s, transform .25s, box-shadow .25s;
}
.foot-socials .soc:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245,166,35,.18);
}
.foot-h {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .55rem;
  font-weight: 700; font-family: 'Lato', sans-serif;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: .2rem; padding: 0; margin: 0; }
.foot-links li { margin: 0; padding: 0; line-height: 1.3; }
.foot-links a { font-size: .74rem; color: rgba(255,255,255,.52); text-decoration: none; transition: color .25s; display: inline-block; }
.foot-links a:hover { color: var(--gold); }
.foot-links li span { font-size: .74rem; color: rgba(255,255,255,.38); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap; gap: .4rem;
}
.foot-copy { font-size: .72rem; color: rgba(255,255,255,.35); }
.foot-legal { display: flex; gap: 1.5rem; align-items: center; }
.foot-legal a, .foot-legal span { font-size: .72rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .25s; }
.foot-legal a:hover { color: var(--gold); }
.tn-brand { color: var(--gold); }

/* ── WHATSAPP FLOATING BUTTON ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
  will-change: transform;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
  color: var(--white);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,.55), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ── SCROLL-TO-TOP BUTTON ───────────────────────────────────────────────── */
.top-float {
  position: fixed;
  bottom: 2rem; right: calc(2rem + 58px + .75rem);
  width: 58px; height: 58px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  z-index: 9998;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245,166,35,.45);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease, box-shadow .25s ease;
}
.top-float.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.top-float:hover { background: var(--gold-dark); box-shadow: 0 8px 28px rgba(245,166,35,.6); }

/* ── CHATBOT ─────────────────────────────────────────────────────────────── */
.hb-chat-btn {
  position: fixed;
  bottom: calc(2rem + 58px + .75rem); right: 2rem;
  width: 58px; height: 58px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.6rem;
  z-index: 9997; cursor: pointer;
  box-shadow: 0 4px 18px rgba(36,46,66,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hb-chat-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(36,46,66,.65); }
.hb-badge {
  position: absolute; top: -3px; right: -3px;
  width: 19px; height: 19px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lato', sans-serif; pointer-events: none;
}
.hb-chat-win {
  position: fixed;
  bottom: calc(2rem + 58px + .75rem + 58px + .75rem); right: 2rem;
  width: 320px; max-height: 480px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(36,46,66,.25);
  z-index: 9996;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(.97);
  transition: opacity .28s ease, transform .28s ease;
  overflow: hidden;
}
.hb-chat-win.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.hb-chat-head {
  background: var(--navy);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  flex-shrink: 0;
}
.hb-head-ava {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(245,166,35,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem;
}
.hb-head-name { color: var(--white); font-family: 'PT Serif', Georgia, serif; font-size: .93rem; font-weight: 700; line-height: 1.2; }
.hb-head-sub  { color: rgba(255,255,255,.48); font-size: .68rem; font-family: 'Lato', sans-serif; }
.hb-chat-x {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,.55); font-size: 1rem; cursor: pointer;
  padding: .3rem; line-height: 1; transition: color .2s;
}
.hb-chat-x:hover { color: var(--white); }
.hb-msgs {
  flex: 1; overflow-y: auto;
  padding: .85rem;
  display: flex; flex-direction: column; gap: .65rem;
  background: #f6f5f3;
}
.hb-msg { display: flex; gap: .45rem; }
.hb-msg.bot { align-self: flex-start; max-width: 92%; }
.hb-msg.user { align-self: flex-end; flex-direction: row-reverse; max-width: 80%; }
.hb-msg-ava {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .65rem; margin-top: .15rem;
}
.hb-msg-inner { display: flex; flex-direction: column; gap: .35rem; }
.hb-bubble {
  background: var(--white);
  border-radius: 0 8px 8px 8px;
  padding: .55rem .75rem;
  font-size: .82rem; line-height: 1.55;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(36,46,66,.09);
  white-space: pre-line;
}
.hb-msg.user .hb-bubble {
  background: var(--navy); color: var(--white);
  border-radius: 8px 0 8px 8px;
}
.hb-btns { display: flex; flex-wrap: wrap; gap: .35rem; padding-left: 0; }
.hb-btns button {
  background: none;
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  color: var(--navy); font-size: .72rem;
  font-family: 'Lato', sans-serif; font-weight: 700;
  letter-spacing: .4px; padding: .25rem .65rem;
  cursor: pointer; transition: background .2s, color .2s;
}
.hb-btns button:hover { background: var(--gold); color: var(--white); }
.hb-chat-foot {
  display: flex; gap: .45rem; padding: .65rem .75rem;
  border-top: 1px solid rgba(36,46,66,.08);
  background: var(--white); flex-shrink: 0;
}
.hb-chat-foot input {
  flex: 1; border: 1.5px solid rgba(36,46,66,.14);
  border-radius: 16px; padding: .42rem .85rem;
  font-size: .82rem; font-family: 'Lato', sans-serif;
  outline: none; color: var(--navy); background: #f6f5f3;
  transition: border-color .2s;
}
.hb-chat-foot input:focus { border-color: var(--gold); background: var(--white); }
.hb-chat-foot .hb-send {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--gold); border: none; border-radius: 50%;
  color: var(--white); font-size: .85rem;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.hb-chat-foot .hb-send:hover { background: var(--gold-dark); }
.hb-link-btn {
  display: inline-block; align-self: flex-start;
  color: var(--gold-dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .5px; text-decoration: none;
  padding: .3rem .7rem; border-radius: 4px;
  border: 1.5px solid var(--gold); background: rgba(245,166,35,.06);
  transition: background .2s, color .2s;
  margin-top: .1rem;
}
.hb-link-btn:hover { background: var(--gold); color: var(--white); }
@media (max-width: 600px) {
  .hb-chat-btn { bottom: calc(1.25rem + 52px + .6rem); right: 1.25rem; width: 52px; height: 52px; font-size: 1.4rem; }
  .hb-chat-win { width: calc(100vw - 2rem); right: 1rem; bottom: calc(1.25rem + 52px + .6rem + 52px + .6rem); }
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────────────── */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.anim-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}
.anim-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.anim-up.in-view,
.anim-left.in-view,
.anim-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-up, .anim-left, .anim-right,
  .anim-scale, .anim-fade, .anim-line { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero h1, .hero p, .hero-actions,
  .page-hero .eyebrow, .page-hero h1, .page-hero p { animation: none; }
  .wa-float { animation: none; }
  .two-col-image img, .two-col-image:hover img { transform: none !important; transition: none !important; }
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, #ffd666 100%);
  transform-origin: left; transform: scaleX(0);
  z-index: 10001; pointer-events: none;
  will-change: transform;
}

/* ── ANIM SCALE (step circles, icons) ───────────────────────────────────── */
.anim-scale {
  opacity: 0;
  transform: scale(0.72);
  transition: opacity .5s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
}
.anim-scale.in-view { opacity: 1; transform: scale(1); }

/* ── ANIM FADE (lightweight fade, no movement) ──────────────────────────── */
.anim-fade {
  opacity: 0;
  transition: opacity .65s ease;
}
.anim-fade.in-view { opacity: 1; }

/* ── ANIM LINE (dividers draw from left) ─────────────────────────────────── */
.anim-line {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .75s cubic-bezier(.25,.46,.45,.94) .12s;
}
.anim-line.in-view { transform: scaleX(1); }

/* ── IMAGE HOVER ZOOM ────────────────────────────────────────────────────── */
.two-col-image img {
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.two-col-image:hover img { transform: scale(1.05); }

/* ── CARD HOVER LIFT + GLOW ─────────────────────────────────────────────── */
.card {
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .32s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(36,46,66,.13), 0 0 0 1.5px rgba(245,166,35,.15);
}

/* ── CHATBOT TYPING INDICATOR ────────────────────────────────────────────── */
.hb-typing {
  display: flex; gap: 6px; align-items: center;
  padding: .55rem .85rem !important;
  min-height: unset !important;
}
.hb-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); opacity: .35; display: block; flex-shrink: 0;
  animation: hb-dot .85s ease-in-out infinite;
}
.hb-typing span:nth-child(2) { animation-delay: .16s; }
.hb-typing span:nth-child(3) { animation-delay: .32s; }
@keyframes hb-dot {
  0%, 80%, 100% { transform: scale(.72); opacity: .35; }
  40%           { transform: scale(1.22); opacity: 1; }
}

/* ── TICKER / MARQUEE ───────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: .28rem 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(to right, var(--navy), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--navy), transparent); }

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 140s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

.t-item {
  font-family: 'Lato', sans-serif;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  padding: 0 1.2rem;
  white-space: nowrap;
}
.t-star { color: var(--gold); margin-right: .35rem; font-size: .75rem; }
.t-sep  { color: rgba(255,255,255,.22); font-size: 1.1rem; flex-shrink: 0; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── EVENT CARD IMAGE ─────────────────────────────────────────────────── */
.evt-card-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #0c1018 0%, #1c2234 100%);
  border-radius: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem;
  color: rgba(255,255,255,.22);
  margin-bottom: 1.5rem;
}
.evt-card-img i { font-size: 2rem; }
.evt-card-img span {
  font-size: .6rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; font-family: 'Lato', sans-serif;
}

/* ── RESOURCE LIST (socials) ──────────────────────────────────────────── */
.resource-list { border-top: 2px solid var(--gold); margin-top: 3rem; }
.resource-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(36,46,66,.07);
}
.resource-row-icon { color: var(--gold); font-size: 1.15rem; text-align: center; }
.resource-row-body h3 {
  font-family: 'PT Serif',Georgia,serif;
  font-size: 1.05rem; color: var(--navy);
  margin-bottom: .3rem; font-weight: 600;
}
.resource-row-body p { font-size: .9rem; color: var(--body-text); line-height: 1.7; }
.resource-row-link {
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-dark);
  text-decoration: none; white-space: nowrap;
}
.resource-row-link:hover { color: var(--navy); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* -- SECTIONS -- */
  section { padding: 4.5rem 6%; }
  .page-hero { padding: 5.5rem 6% 3.5rem; }

  /* -- NAV -- */
  nav { padding: 0 5%; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: .8rem 5% 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 999; gap: .2rem;
    animation: slide-down .25s ease;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { padding: .45rem 0; display: block; color: var(--body-text); font-size: .88rem; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-actions .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* -- NAV DROPDOWN (mobile inline) -- */
  .nav-dropdown { position: static; }
  .nav-dropdown-menu {
    display: none;
    position: static !important; transform: none !important;
    box-shadow: none !important; border: none !important; border-radius: 0 !important;
    background: var(--cream) !important;
    padding: .3rem 0 .5rem !important; margin: 0 !important;
    min-width: unset !important;
    opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
  }
  .nav-dropdown.dropdown-open .nav-dropdown-menu { display: block; }
  .nav-dropdown.dropdown-open .nav-arrow { transform: rotate(180deg); }
  .nav-dropdown-menu::before { display: none !important; }
  .nav-dropdown-menu li { border-bottom: none !important; }
  .nav-dropdown-menu li a { padding: .38rem 0 .38rem 2rem !important; font-size: .84rem !important; text-transform: none !important; letter-spacing: .3px !important; font-weight: 400 !important; }
  .nav-dropdown-menu li a.active { color: var(--gold) !important; background: transparent !important; }

  /* -- LAYOUT -- */
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse > *:first-child { order: unset; }
  .two-col.reverse > *:last-child  { order: unset; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-image { min-height: 280px; }

  /* -- TWO-COL CTA CENTERING: centre buttons when text column stacks -- */
  .two-col-text .btn { display: block; width: -webkit-fit-content; width: fit-content; margin-left: auto; margin-right: auto; }
  .two-col-text > [style*="flex-wrap"] { justify-content: center; }

  /* -- FOOTER -- */
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .foot-desc { max-width: 560px; }

  /* -- PLATFORMS -- */
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }

  @keyframes slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 600px) {
  /* -- SECTIONS -- */
  section { padding: 3rem 5%; }
  .hero { min-height: 100vh; padding-left: 5%; padding-right: 5%; }
  .page-hero { padding: 5.5rem 5% 3rem; }

  /* -- CTA BUTTONS -- */
  .hero-actions { justify-content: center !important; flex-wrap: wrap; }
  .ecb-inner { flex-direction: column; align-items: center; gap: 1.5rem; }
  .ecb-units { justify-content: center; }
  .ecb-cta { align-self: center; }

  /* -- CARDS -- */
  .cards-grid { grid-template-columns: 1fr; gap: .75rem; }
  .card { padding: 1.2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }

  /* -- TWO-COL IMAGE stacked -- */
  .two-col-image { min-height: 240px; }

  /* -- FOOTER -- */
  footer { padding: 1.8rem 5% .9rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .foot-desc { max-width: none; font-size: .71rem; }
  .foot-h { margin-bottom: .4rem; }
  .foot-links { gap: .15rem; }
  .foot-links a, .foot-links li span { font-size: .71rem; }
  .foot-bottom { flex-direction: column; gap: .4rem; text-align: center; padding-top: .7rem; }
  .foot-legal { flex-wrap: wrap; justify-content: center; gap: .8rem; }

  /* -- FORMS -- */
  .form-row { grid-template-columns: 1fr; }

  /* -- FLOAT BUTTONS -- */
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.5rem; }
  .top-float { bottom: 1.25rem; right: calc(1.25rem + 50px + .5rem); width: 50px; height: 50px; font-size: 1.15rem; }

  /* -- TWO-COL IMAGE: override any inline min-height -- */
  .two-col-image { min-height: 240px !important; }

  /* -- ISABELLE #global-journey inline padding override -- */
  #global-journey { padding-top: 3rem !important; padding-bottom: 3rem !important; }

  /* -- TESTIMONIALS: reduce oversized quote mark -- */
  .testimonial, .testimonial-light { padding: 1.8rem 1.4rem; padding-top: 3rem; }
  .testimonial::before, .testimonial-light::before { font-size: 3rem; top: .7rem; left: 1rem; }

  /* -- COUNTDOWN BAR: hide separators + shrink digits when stacked -- */
  .ecb-sep { display: none; }
  .ecb-num { font-size: 2rem; }
  .ecb-unit { min-width: 56px; }
  .ecb-text { min-width: unset; text-align: center; }
  .ecb-title { font-size: 1.1rem; }

  /* -- SECTION SUBTITLE: slightly smaller on mobile -- */
  .section-subtitle { font-size: .93rem; }
  .section-header-center .section-subtitle { max-width: 100%; }

  /* -- CTA BANNER: reduce padding -- */
  .cta-banner { padding: 3rem 5%; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2.4rem); }

  /* -- CONTACT FORM: reduce padding -- */
  .contact-form { padding: 1.8rem 1.2rem; }

  /* -- TICKER: smaller fade edges -- */
  .ticker-wrap::before, .ticker-wrap::after { width: 35px; }

  /* -- RESOURCE ROW: fix at 600px (not just 480px) -- */
  .resource-row { grid-template-columns: 36px 1fr; row-gap: .3rem; }
  .resource-row-link { grid-column: 2; white-space: normal; }

  /* -- HERO ACTIONS: always stack on small screens -- */
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: .75rem; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 140px; text-align: center; }

  /* -- PAGE HERO TEXT -- */
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
  .page-hero p { font-size: .95rem; }
}

@media (max-width: 480px) {
  /* -- NAV -- */
  nav { padding: 0 4%; }
  .nav-links { padding: .8rem 4% 1.2rem; }

  /* -- SECTIONS -- */
  section { padding: 2.5rem 4%; }
  .page-hero { padding: 5rem 4% 2.5rem; }

  /* -- CARDS -- */
  .cards-grid { gap: .6rem; }
  .card { padding: 1rem .9rem; }

  /* -- FOOTER -- */
  footer { padding: 1.5rem 4% .6rem; }
  .foot-grid { gap: 1rem 1rem; }
  .foot-copy { font-size: .67rem; }
  .foot-legal a, .foot-legal span { font-size: .67rem; }

  /* -- RESOURCE LIST (socials) -- */
  .resource-row { grid-template-columns: 36px 1fr; row-gap: .3rem; }
  .resource-row-link { grid-column: 2; white-space: normal; }

  /* -- PLATFORMS: go full 1-col -- */
  .platforms-grid { grid-template-columns: 1fr; }

  /* -- TICKER: minimal fade edges on very small screens -- */
  .ticker-wrap::before, .ticker-wrap::after { width: 18px; }

  /* -- STEP CIRCLES: slightly smaller -- */
  .step-num { width: 48px; height: 48px; font-size: 1.05rem; }

  /* -- HERO BUTTONS: stack on very narrow screens -- */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }


  /* -- SECTION TITLES -- */
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* -- CARD ICON -- */
  .card-icon { width: 36px; height: 36px; font-size: .9rem; }

  /* -- CTA BANNER BUTTONS -- */
  .cta-banner .hero-actions { flex-direction: column; align-items: center; }
  .cta-banner .btn { width: 100%; max-width: 260px; }
}

/* ── UTILITY ADDITIONS ─────────────────────────────────────────────────── */
.section-cta-center { display: flex; justify-content: center; margin-top: 2rem; }
.logo img { height: 56px; width: auto; }
.foot-logo img { height: 48px; width: auto; display: block; }
.foot-sep { opacity: .4; }
.g-hidden { display: none !important; }

/* Book a Session — mobile menu only (the nav CTA button is hidden below 900px) */
.nav-links .nav-book-mobile { display: none; }
@media (max-width: 900px) {
  .nav-links .nav-book-mobile { display: block; }
  .nav-links .nav-book-mobile a { color: var(--gold); font-weight: 700; }
}
