/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #16321f;
  --green-darker: #0f2417;
  --gold: #c9974c;
  --gold-dark: #b47f34;
  --cream: #f7f3ec;
  --cream-dark: #efe8db;
  --text-dark: #26291f;
  --text-muted: #6b6f63;
  --white: #ffffff;
  --border-light: #e4ddcf;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-pill: 999px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --container-width: 1180px;
  --header-height: 78px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.section-cta { display: flex; justify-content: center; margin-top: 44px; }

/* ============ BUTTONS (rounded, per client request) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 151, 76, 0.35);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 10px 24px rgba(201, 151, 76, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--green-darker); }

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--border-light);
}
.btn-ghost:hover { background: var(--cream-dark); border-color: var(--green-dark); }

.btn-small { padding: 11px 22px; font-size: 0.85rem; }

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
}

/* ============ SCROLL REVEAL ============ */
/* .js is set synchronously in <head> before first paint, so elements never
   flash visible-then-hidden — with JS disabled, .reveal has no effect. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-darker); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(22, 50, 31, 0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { object-fit: contain; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta { flex-shrink: 0; }

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/*
  Layer order (back to front): fallback gradient -> <video> -> dark overlay.
  The fallback gradient stands in for the waterfall poster art until real
  photo/video assets are supplied, and stays as a safety net under the video
  element in case the source file is ever missing or still loading.
*/
.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 14, 0.35) 0%, rgba(10, 20, 14, 0.55) 100%),
    linear-gradient(120deg, #21362a 0%, #2f4a3a 40%, #3d5c48 70%, #4c6f56 100%);
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(10, 18, 12, 0.82) 0%, rgba(10, 18, 12, 0.55) 45%, rgba(10, 18, 12, 0.25) 100%);
}

.hero-decor { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 440px; height: 440px;
  top: -120px; right: -140px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.3;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  bottom: -160px; left: -160px;
  background: radial-gradient(circle, #4c6f56 0%, transparent 70%);
  opacity: 0.4;
}

.hero-content { position: relative; z-index: 3; padding-top: var(--header-height); width: 100%; }

.hero-text { max-width: 620px; }

.hero-text h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue-dot {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollCueDot 1.6s ease infinite;
}
@keyframes scrollCueDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

.hero-video-toggle {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 32px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 20, 14, 0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-video-toggle:hover { background: rgba(10, 20, 14, 0.65); border-color: rgba(255, 255, 255, 0.7); transform: translateY(-2px); }
.hero-video-toggle .icon-play { display: none; }
.hero-video-toggle.paused .icon-pause { display: none; }
.hero-video-toggle.paused .icon-play { display: block; }

/* ============ PAGE HERO (subpage banner) ============ */
.page-hero {
  padding: calc(var(--header-height) + 64px) 0 64px;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero-inner h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 10px 0 14px; }
.page-hero-inner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); }

.breadcrumb {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--gold); }

/* ============ ABOUT ============ */
.about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image { position: relative; }
.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #e7ddca 0%, #cbb896 45%, #a9927a 100%);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  object-fit: cover;
}
.about-dots {
  position: absolute;
  top: -20px; left: -20px;
  width: 90px; height: 90px;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
  z-index: -1;
}

.about-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.about-content > p { color: var(--text-muted); margin-bottom: 32px; max-width: 520px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 36px;
}
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ============ CERTIFICATIONS ============ */
.certifications { padding: 90px 0; background: var(--cream); }
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.certification-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.certification-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(22, 50, 31, 0.1); }
.certification-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.certification-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============ BOOK ============ */
.book { padding: 100px 0; background: var(--white); }
.book-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}
.book-cover img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.book-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.book-content p { color: var(--text-muted); margin-bottom: 20px; max-width: 480px; }
.book-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.book-teaser { padding: 70px 0; }
.book-teaser .book-grid { grid-template-columns: 180px 1fr; gap: 32px; }
.book-teaser .book-content h2 { font-size: 1.4rem; margin-bottom: 8px; }
.book-teaser .book-content p { margin-bottom: 14px; }
.book-teaser .book-price { font-size: 1.3rem; margin-bottom: 18px; }

/* ============ SERVICES ============ */
.services { padding: 100px 0; background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(22, 50, 31, 0.1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }

.service-card-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.service-card-actions .btn { flex: 1; }

/* ============ SERVICE DETAIL ============ */
.service-detail { padding: calc(var(--header-height) + 36px) 0 100px; background: var(--white); }

.breadcrumb-light {
  justify-content: flex-start;
  margin: 0 0 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-light a { color: var(--text-dark); }
.breadcrumb-light a:hover { color: var(--gold-dark); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* Grid items default to min-width:auto, which lets the horizontally-scrolling
   sidebar (and any long content in main/booking) force the whole page wider
   instead of scrolling within its own column — min-width:0 stops that. */
.service-sidebar, .service-main, .service-booking { min-width: 0; }

.service-sidebar { position: sticky; top: calc(var(--header-height) + 24px); }
.service-sidebar-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.service-sidebar-back:hover { color: var(--gold-dark); }

.service-nav { display: flex; flex-direction: column; gap: 10px; }
.service-nav-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.service-nav-item:hover { background: var(--cream-dark); }
.service-nav-item.active { background: var(--green-dark); border-color: var(--green-dark); }

.service-nav-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.service-nav-item.active .service-nav-icon { background: rgba(255,255,255,0.15); color: var(--gold); }
.service-nav-item strong { display: block; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 2px; }
.service-nav-item small { display: block; font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.service-nav-item.active strong { color: var(--white); }
.service-nav-item.active small { color: rgba(255,255,255,0.75); }

.service-main h1 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 10px 0 16px; }
.service-main > p { color: var(--text-muted); margin-bottom: 36px; max-width: 640px; }

.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.service-benefit { text-align: center; }
.service-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.service-benefit h4 { font-size: 0.88rem; margin-bottom: 4px; }
.service-benefit p { font-size: 0.78rem; color: var(--text-muted); }

.service-block { margin-bottom: 40px; }
.service-block .eyebrow { display: block; margin-bottom: 14px; }
.service-checklist { display: flex; flex-direction: column; gap: 12px; }
.service-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-dark); }
.service-checklist .check-icon { margin-top: 2px; }

.service-booking { position: sticky; top: calc(var(--header-height) + 24px); }
.service-booking-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.service-booking-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-booking-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }

.pricing-option {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 16px;
  margin-bottom: 14px;
}
.pricing-option:last-of-type { margin-bottom: 0; }
.pricing-option-info { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.pricing-option-info strong { font-size: 0.92rem; }
.pricing-option-info span { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.pricing-option-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.pricing-option-price .price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.pricing-option-price .price-new { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--gold-dark); }
.pricing-option .btn { width: 100%; }

.service-booking-notes { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-booking-notes li { display: flex; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }

/* ============ PROCESS ============ */
.process { padding: 100px 0 60px; background: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.process-step {
  width: 190px;
  text-align: center;
  padding: 0 8px;
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step h4 { font-size: 0.98rem; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

.step-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  margin-top: 22px;
  flex-shrink: 0;
}

/* ============ WHY CHOOSE ============ */
.why-choose { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(160deg, #7d97a8 0%, #4e6577 55%, #2f4152 100%);
}
.why-content {
  background: var(--cream);
  display: flex;
  align-items: center;
}
.why-inner { padding: 60px; max-width: 560px; }
.why-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============ HUB (Events / Blogs / Videos) ============ */
.hub { padding: 90px 0; background: var(--cream); }

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hub-col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hub-col-head h3 { font-size: 1.15rem; }
.view-all { font-size: 0.8rem; font-weight: 600; color: var(--gold-dark); transition: color 0.2s ease; }
.view-all:hover { color: var(--green-dark); text-decoration: underline; }

.event-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, padding-left 0.2s ease, padding-right 0.2s ease;
}
.hub-col-head + .event-item { padding-top: 0; }
.event-item:hover { background: var(--cream-dark); padding-left: 12px; padding-right: 12px; }
.event-date {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-dark);
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.event-item:hover .event-date { transform: scale(1.08); }
.event-date .day { font-size: 1.05rem; font-weight: 700; line-height: 1; }
.event-date .mon { font-size: 0.62rem; letter-spacing: 0.08em; }
.event-info { flex: 1; min-width: 0; }
.event-info h4 { font-size: 0.92rem; margin-bottom: 3px; transition: color 0.2s ease; }
.event-item:hover .event-info h4 { color: var(--gold-dark); }
.event-info p { font-size: 0.78rem; color: var(--text-muted); }
.reserve-link { font-size: 0.78rem; font-weight: 600; color: var(--gold-dark); flex-shrink: 0; }
.reserve-link:hover { text-decoration: underline; }

.event-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.event-badge-free { background: rgba(201, 151, 76, 0.15); color: var(--gold-dark); }
.event-badge-paid { background: var(--cream-dark); color: var(--text-muted); }

.blog-item, .video-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, padding-left 0.2s ease, padding-right 0.2s ease;
}
.blog-item:first-of-type, .video-item:first-of-type { padding-top: 0; }
.blog-item:hover, .video-item:hover { background: var(--cream-dark); padding-left: 12px; padding-right: 12px; }
.blog-item h4, .video-item h4 { font-size: 0.9rem; margin-bottom: 4px; transition: color 0.2s ease; }
.blog-item:hover h4, .video-item:hover h4 { color: var(--gold-dark); }
.blog-item p { font-size: 0.78rem; color: var(--text-muted); }

.thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  background: linear-gradient(145deg, #d8cdb4, #a7906b);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-blog-2 { background: linear-gradient(145deg, #c7d3c2, #7c9271); }
.thumb-blog-3 { background: linear-gradient(145deg, #d3c2c9, #92717f); }
.video-item .thumb { width: 88px; height: 64px; }
.thumb-video-1 { background: linear-gradient(145deg, #bcccd6, #5d7889); }
.thumb-video-2 { background: linear-gradient(145deg, #cbbcd6, #7a5d89); }
.thumb-video-3 { background: linear-gradient(145deg, #d6c9bc, #89715d); }
.blog-item:hover .thumb, .video-item:hover .thumb { transform: scale(1.06); }

.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}

/* ============ LISTING PAGES (Events / Blogs / Videos) ============ */
.events-page, .blogs-page, .videos-page { padding: 90px 0; background: var(--white); }

.event-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.event-filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.event-filter-btn:hover { border-color: var(--gold); color: var(--text-dark); }
.event-filter-btn.active { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.event-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(22, 50, 31, 0.1); }
.event-card .event-date { width: 58px; height: 58px; }
.event-card-body { flex: 1; min-width: 0; }
.event-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.event-card-body .event-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.event-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }

.card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--cream-dark);
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-card, .video-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover, .video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(22, 50, 31, 0.1); }
.blog-card h3, .video-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.blog-card .card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card p, .video-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.read-more { font-size: 0.82rem; font-weight: 600; color: var(--gold-dark); }
.read-more:hover { text-decoration: underline; }

/* ============ BLOG POST ============ */
.post-hero {
  padding: calc(var(--header-height) + 56px) 0 0;
  background: var(--white);
  text-align: center;
}
.post-hero-inner { max-width: 760px; margin: 0 auto; padding-bottom: 40px; }
.post-hero-inner h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 10px 0 0; }
.post-breadcrumb { justify-content: center; margin-bottom: 18px; }

.post-cover {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 7;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-content { padding: 48px 0 100px; background: var(--white); }
.post-body { max-width: 720px; margin: 0 auto; font-size: 1.02rem; color: var(--text-dark); }
.post-body p { margin-bottom: 20px; }
.post-body h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.post-body ul, .post-body ol { margin: 0 0 20px 22px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--gold-dark); text-decoration: underline; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-muted);
}

.post-cta {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

/* ============ FAQ ============ */
.faq { padding: 100px 0; background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); padding-bottom: 0; }

.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 20px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: var(--white); }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(160deg, #1c2e21 0%, #0f2417 100%);
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,151,76,0.12), transparent 55%),
    linear-gradient(180deg, rgba(10,20,14,0.5), rgba(10,20,14,0.75));
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.82); margin-bottom: 32px; }

/* ============ BOOK A DISCOVERY CALL ============ */
.discovery-call { text-align: left; padding: 90px 0; }
.discovery-call-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.discovery-call-copy .eyebrow { color: var(--gold); }
.discovery-call-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 14px; color: var(--white); }
.discovery-call-copy > p { color: rgba(255,255,255,0.82); margin-bottom: 26px; max-width: 480px; }
.discovery-call-timings {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: -14px;
}

.discovery-call-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.discovery-call-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.92); }
.discovery-call-points .check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,151,76,0.2);
  color: var(--gold);
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
}

.discovery-call-contact { display: flex; flex-wrap: wrap; gap: 24px; }
.discovery-call-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--white); }
.discovery-call-contact a:hover { color: var(--gold); }

.discovery-call-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.discovery-call-tag {
  display: inline-block;
  background: rgba(201,151,76,0.15);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.discovery-call-price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 8px; }
.discovery-call-price .price-old { font-size: 1.15rem; color: var(--text-muted); text-decoration: line-through; }
.discovery-call-price .price-new { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 600; color: var(--green-dark); line-height: 1; }
.discovery-call-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.discovery-call-btn { width: 100%; }

/* ============ FORMS ============ */
.form-field { text-align: left; }
.field-error {
  display: block;
  min-height: 16px;
  font-size: 0.75rem;
  color: #e6a3a3;
  margin-top: 5px;
}
.form-field.invalid input,
.form-field.invalid textarea { border-color: #e6a3a3 !important; }

.form-msg { margin-top: 14px; font-size: 0.85rem; min-height: 1.2em; }
.form-msg.success { color: var(--gold); }
.form-msg.error { color: #e6a3a3; }

/* ============ LEAD QUICK-ENQUIRY FORM ============ */
.lead-form-honeypot { position: absolute; left: -9999px; top: -9999px; }

.lead-form-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 98;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 18px 11px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: -6px 6px 20px rgba(0,0,0,0.18);
  transition: background-color 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.lead-form-tab:hover { background: var(--gold-dark); }
.lead-form-widget.open .lead-form-tab { opacity: 0; visibility: hidden; pointer-events: none; }

.lead-form-panel {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 99;
  width: 320px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(24px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.lead-form-widget.open .lead-form-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.lead-form-panel h3 { font-size: 1.3rem; margin-bottom: 8px; }
.lead-form-panel > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.lead-form-panel .form-field { margin-bottom: 12px; }
.lead-form-panel input,
.lead-form-panel select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.lead-form-panel select { color: var(--text-muted); }
.lead-form-panel select:valid { color: var(--text-dark); }
.lead-form-panel input:focus,
.lead-form-panel select:focus { outline: none; border-color: var(--gold); }
.lead-form-panel .lead-form-submit { width: 100%; margin-top: 4px; }
.lead-form-panel .form-msg { text-align: center; }

.lead-form-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.lead-form-close:hover { background: var(--border-light); }

/* ============ FOOTER ============ */
.site-footer { background: var(--green-darker); color: rgba(255,255,255,0.82); padding: 70px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold); }

.footer-brand .logo-footer { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 20px; max-width: 280px; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-bottom: 0; }
.footer-contact a:hover { color: var(--gold); }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.social-links a:hover { background: var(--gold); color: var(--white); }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.footer-legal a:hover { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 420px; margin: 0 auto; }
  .book-grid { grid-template-columns: 1fr; text-align: center; }
  .book-cover { max-width: 260px; margin: 0 auto; }
  .book-content p { margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { justify-content: flex-start; overflow-x: auto; padding-bottom: 12px; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar, .service-booking { position: static; }
  .service-nav { flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
  .service-nav-item { flex: 0 0 240px; }
  .service-benefits { grid-template-columns: repeat(2, 1fr); }
}

/* The full nav (7 links + CTA) has no room to shrink below ~1100px, so the
   hamburger needs to take over well before the 760px content breakpoint —
   otherwise the nav overflows/overlaps the header CTA on tablets and small
   laptop windows. */
@media (max-width: 1100px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(15, 36, 23, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-cta-mobile { display: inline-flex; margin-top: 4px; }
}

@media (max-width: 760px) {
  .scroll-cue { display: none; }

  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-inner { padding: 44px 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }

  .lead-form-tab { padding: 14px 9px; font-size: 0.76rem; }
  .lead-form-panel {
    top: auto;
    bottom: 16px;
    right: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 32px);
    transform: translateX(24px);
  }
  .lead-form-widget.open .lead-form-panel { transform: translateX(0); }

  /* Stack the process steps vertically and centered — a sideways "→" between
     blocks that now sit on top of each other reads as pointing nowhere, so it
     rotates to point down instead. */
  .process-steps { flex-direction: column; align-items: center; overflow-x: visible; justify-content: flex-start; }
  .step-arrow { transform: rotate(90deg); margin: 2px 0 8px; }

  .service-nav-item { flex-basis: 210px; }
  .breadcrumb, .breadcrumb-light { flex-wrap: wrap; row-gap: 4px; }

  .post-cta { flex-direction: column; align-items: stretch; }
  .post-cta .btn { width: 100%; text-align: center; }

  .discovery-call-grid { grid-template-columns: 1fr; }
  .discovery-call-copy { text-align: center; }
  .discovery-call-copy > p { margin-left: auto; margin-right: auto; }
  .discovery-call-points { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
  .discovery-call-contact { justify-content: center; }
}
