/* Forest Adventure (New Template) — landing page styles */

/* ── Package Family layout ── */
.package-family {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.package-family-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.package-family-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.package-family-sub {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

.package-family-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .package-family {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .package-family-img img {
    height: 300px;
  }

  .package-family-content h2 {
    font-size: 34px;
  }

  .package-family-sub {
    font-size: 18px;
  }

  .package-family-content p {
    font-size: 16px;
  }
}
@font-face {
  font-family: 'Shermlock';
  src: url('/wp-content/themes/oom-elementor-child/fonts/Shermlock.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
h1, h2 {
  font-family: 'Shermlock', sans-serif !important;
}
:root {
  --brand-primary: #583512;
  --brand-secondary: #fcffe1;
  --brand-accent: #ffd877;
  --brand-text: #3c081b;
  --brand-bg: #38571a;
  --brand-yellow: #FDC000;
  --brand-green: #1A7741;
  --brand-green-dark: #0f4d2a;
  --brand-cream: #FCFFE1;
  --brand-brown: #583512;
  --brand-brown-dark: #3D2314;
  --ink: #1f2124;
  --ink-soft: #5a5e62;
  --line: rgba(0,0,0,0.08);
  --display: 'Shermlock', 'Bebas Neue', Impact, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 20px; --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: #fff; overflow-x: hidden; line-height: 1.65; font-size: 17px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: 0.005em; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

/* CONTAINER + SECTION PADDING */
section { padding: 80px 64px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
@media (min-width: 1441px) { section { padding: 80px 100px; } }
@media (max-width: 1024px) { section { padding: 50px 32px; } }
@media (max-width: 720px) { section { padding: 30px 16px; } }

/* STICKY NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brand-green);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 68px; display: flex; align-items: center;
  padding: 0 40px;
  transition: box-shadow 0.3s ease;
}
.nav-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.12); }
.nav-inner { width: 100%; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; max-width: 140px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: #fff; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; opacity: 0.92; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--brand-yellow); color: var(--ink);
  padding: 11px 22px; border-radius: 999px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253,192,0,0.4); }
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 720px) {
  .nav { height: 56px; padding: 0 16px; }
  .nav-logo img { height: 32px; }
  .nav-cta { padding: 9px 16px; font-size: 12px; }
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--brand-yellow); color: var(--ink);
  padding: 16px 36px; border-radius: 999px;
  font-weight: 800; font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; min-height: 54px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(253,192,0,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 15px 30px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; min-height: 54px;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ANIMATION SYSTEM */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
[data-animate="left"] { transform: translateX(-28px); }
[data-animate="right"] { transform: translateX(28px); }
[data-animate].is-visible { opacity: 1; transform: none; }
[data-animate][data-delay="1"] { transition-delay: 0.08s; }
[data-animate][data-delay="2"] { transition-delay: 0.16s; }
[data-animate][data-delay="3"] { transition-delay: 0.24s; }
[data-animate][data-delay="4"] { transition-delay: 0.32s; }
.card-hover { transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.count-up { display: inline-block; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--brand-yellow); box-shadow: 0 0 0 3px rgba(253,192,0,0.25); }

/* EYEBROW */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand-green);
  background: rgba(26,119,65,0.08);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.on-dark { color: var(--brand-yellow); background: rgba(253,192,0,0.12); }

/* IMAGE PLACEHOLDERS */
.img-placeholder { background: linear-gradient(135deg, color-mix(in srgb, var(--brand-green) 12%, transparent), color-mix(in srgb, var(--brand-green) 22%, transparent)); border: 2px dashed color-mix(in srgb, var(--brand-green) 35%, #d1d5db); display:flex; align-items:center; justify-content:center; border-radius: var(--radius-lg); overflow: hidden; max-width: 100%; }
.placeholder-inner { max-width:420px; text-align:center; padding:32px; }
.placeholder-label { display:inline-block; background:var(--brand-green); color:#fff; font-size:10px; font-weight:700; padding:3px 12px; border-radius:20px; margin-bottom:10px; text-transform:uppercase; letter-spacing:1px; }
.placeholder-prompt { color:color-mix(in srgb, var(--brand-green) 70%, #555); font-size:13px; line-height:1.6; font-style:italic; margin:0; }
[data-placeholder-id="course-grand"] img {
  object-position: center 70% !important;
}
[data-placeholder-id="ugc-3"] img {
  object-position: center 30% !important;
}
/* ═══ HERO ═══ */
.hero {
  background: linear-gradient(135deg, #1a3d1f 0%, #0f2614 100%);
  color: #fff;
  padding: 0; min-height: 720px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,38,20,0.92) 0%, rgba(15,38,20,0.55) 50%, rgba(15,38,20,0.2) 100%);
  z-index: 2; pointer-events: none;
}
.hero-image-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1280px; margin: 0 auto;
  padding: 100px 64px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  min-height: 720px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand-yellow);
  margin-bottom: 24px;
}
.hero-eyebrow svg { flex: 0 0 16px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
}
.hero h1 .accent {
  color: var(--brand-yellow);
  display: inline-block; position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 10 Q 50 2, 100 7 T 198 6' stroke='%23FDC000' stroke-width='3.5' fill='none' stroke-linecap='round'/></svg>");
  background-size: 100% 100%; background-repeat: no-repeat;
}
.hero-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 480px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badge {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-badge-icon {
  width: 38px; height: 38px;
  background: rgba(253,192,0,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-yellow);
  margin-bottom: 6px;
}
.hero-badge-title {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff;
}
.hero-badge-sub {
  font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.hero-proof {
  margin-top: 28px;
  font-size: 13px; color: rgba(255,255,255,0.78);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-proof .stars { color: var(--brand-yellow); letter-spacing: 1px; }
.hero-image-col {
  position: relative; height: 100%; min-height: 560px;
}
.hero-image-col .img-placeholder {
  height: 100%; min-height: 560px; border-radius: 24px;
}
@media (max-width: 1024px) {
  .hero-inner { padding: 80px 32px 60px; grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .hero-image-col { min-height: 380px; }
  .hero-image-col .img-placeholder { max-height: 280px; }
}
@media (max-width: 720px) {
  .hero-inner { padding: 50px 16px 40px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-sub { font-size: 16px; }
  .hero-image-col { min-height: 280px; }
  .hero-image-col .img-placeholder { min-height: 280px; }
  .btn-primary, .btn-ghost { padding: 14px 24px; font-size: 13px; }
}

/* ═══ COURSE SECTION ═══ */
.courses {
  background: var(--brand-cream);
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 20px;
  position: relative; display: inline-block;
}
.section-head h2::after {
  content: ''; display: block;
  width: 140px; height: 6px; margin: 14px auto 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 6' preserveAspectRatio='none'><path d='M2 4 Q 35 1, 70 3 T 138 2' stroke='%23FDC000' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-size: 100% 100%;
}
.section-head .lede { font-size: 17px; color: var(--ink-soft); line-height: 1.6; }

.course-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
.course-card-image {
  height: 260px;
  background: #e8e0d0;
}
.course-card-image .img-placeholder { height: 100%; border-radius: 0; border: none; }
.course-card-body { padding: 26px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.course-card-name {
  font-family: var(--display);
  font-size: 32px;
  color: var(--brand-green);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.course-card-tag {
  text-align: center;
  font-size: 16px; font-weight: 600;
  color: var(--brand-yellow);
  margin-bottom: 22px;
}
.course-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.course-spec { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); }
.course-spec svg { flex: 0 0 22px; color: var(--brand-green); }
.course-divider { border-top: 1px solid rgba(0,0,0,0.08); margin: 12px 0; }
.course-highlight {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: 18px;
}
.course-highlight svg { flex: 0 0 18px; color: var(--brand-yellow); }
.course-price {
  font-size: 15px; color: var(--ink-soft);
  margin-bottom: 4px;
}
.course-price strong {
  font-family: var(--display);
  font-size: 38px; color: var(--ink);
  font-weight: 700; margin: 0 4px;
}
.course-price .per { font-size: 14px; color: var(--ink-soft); }
.course-cta {
  display: block; width: 100%;
  background: var(--brand-yellow); color: var(--ink);
  padding: 14px; border-radius: 10px;
  font-weight: 800; text-align: center;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-top: 16px;
  transition: background 0.2s, transform 0.2s;
}
.course-cta:hover { background: #f5b800; transform: translateY(-1px); }
@media (max-width: 1024px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .course-grid { grid-template-columns: 1fr; gap: 20px; }
  .course-card-image { height: 220px; }
}

/* ═══ CTA STRIP ═══ */
.cta-strip {
  padding: 28px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-strip-1 { background: var(--brand-yellow); }
.cta-strip-2 { background: var(--brand-green); color: #fff; }
.cta-strip-3 { background: var(--brand-brown); color: #fff; }
.cta-strip h3 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  margin: 0;
}
.cta-strip-1 h3 { color: var(--ink); }
.cta-strip .btn-strip {
  background: var(--ink); color: #fff;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.2s;
}
.cta-strip-2 .btn-strip, .cta-strip-3 .btn-strip { background: var(--brand-yellow); color: var(--ink); }
.cta-strip .btn-strip:hover { transform: translateY(-2px); }
@media (max-width: 1024px) { .cta-strip { padding: 24px 32px; } }
@media (max-width: 720px) {
  .cta-strip { padding: 20px 16px; flex-direction: column; text-align: center; gap: 14px; }
  .cta-strip h3 { font-size: 22px; }
}

/* ═══ PACKAGES ═══ */
.packages {
  background: var(--brand-green-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M20 80 L25 50 L30 80 Z M40 85 L48 40 L56 85 Z M65 80 L72 55 L79 80 Z' fill='%23ffffff' opacity='0.04'/></svg>");
  background-size: 200px;
  z-index: 0;
}
.packages .container { position: relative; z-index: 1; }
.packages .section-head h2 { color: #fff; }
.packages .section-head h2::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 6' preserveAspectRatio='none'><path d='M2 4 Q 35 1, 70 3 T 138 2' stroke='%23FDC000' stroke-width='3' fill='none' stroke-linecap='round'/></svg>"); }
.packages .section-head .lede { color: rgba(255,255,255,0.78); }

.package-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.package-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, rgba(15,38,20,0.3) 0%, rgba(15,38,20,0.92) 100%), #2a4d2f;
  color: #fff;
  padding: 24px 22px;
  transition: transform 0.3s var(--ease-out);
}
.package-card:hover { transform: translateY(-6px); }
.package-card-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
}
.package-card-bg .img-placeholder { height: 100%; border-radius: 0; border: none; }
.package-card-content { position: relative; z-index: 2; }
.package-card-icon {
  width: 44px; height: 44px;
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.package-card h3 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.package-card p {
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.package-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-yellow);
  padding-bottom: 2px; border-bottom: 1px solid var(--brand-yellow);
}
@media (max-width: 1024px) { .package-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .package-grid { grid-template-columns: 1fr; gap: 16px; } }


/* Package card sub-headline */
.package-sub {
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
}
/* ═══ SAFETY ═══ */
.safety {
  background: #fff;
}
.safety-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.safety h2 {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 24px;
}
.safety h2 .line1 { color: var(--brand-brown); display: block; }
.safety h2 .line2 { color: var(--brand-yellow); display: block; }
.safety-body {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
}
.safety-icons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.safety-icon {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px;
}
.safety-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(26,119,65,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-green);
}
.safety-icon-label {
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.safety-trust-bar {
  background: var(--brand-cream);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-left: 4px solid var(--brand-green);
}
.safety-trust-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-green);
}
.safety-trust-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-green); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.safety-image .img-placeholder { min-height: 520px; }
@media (max-width: 1024px) {
  .safety-grid { grid-template-columns: 1fr; gap: 40px; }
  .safety-image .img-placeholder { min-height: 380px; }
}
@media (max-width: 720px) {
  .safety-icons { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ SOCIAL PROOF ═══ */
.proof { background: #fff; }
.proof .section-head h2 { color: var(--brand-green); }
.proof-leaf {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--brand-green);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proof-leaf svg { color: var(--brand-yellow); }
.proof-leaf span.accent { color: var(--brand-yellow); }
.proof-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: start;
}
.google-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.google-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 12px;
}
.google-rating {
  font-family: var(--display);
  font-size: 64px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.google-stars { color: var(--brand-yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.google-excellent {
  font-size: 14px; font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 4px;
}
.google-count {
  font-size: 13px; color: var(--ink-soft);
  padding-top: 14px; margin-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
}
.google-card .btn-strip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-green); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.testimonial-card {
  background: var(--brand-cream);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}
.testimonial-stars { color: var(--brand-yellow); font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.testimonial-body {
  font-size: 14px; line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.testimonial-author-name { font-weight: 700; color: var(--ink); }
.testimonial-author-meta { font-size: 12px; color: var(--ink-soft); }
@media (max-width: 1024px) {
  .proof-layout { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .google-rating { font-size: 52px; }
}

/* ═══ UGC GALLERY ═══ */
.gallery {
  background: var(--brand-cream);
}
.gallery .section-head h2 { color: var(--brand-green); }
.gallery .section-head h2 .accent { color: var(--brand-yellow); }
.ugc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 36px;
}
.ugc-item {
  display: flex; flex-direction: column; gap: 10px;
}
.ugc-photo {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e8e0d0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out);
}
.ugc-photo:hover { transform: translateY(-3px) scale(1.01); }
.ugc-photo .img-placeholder { height: 100%; border-radius: 0; border: none; }
.ugc-label {
  display: flex; flex-direction: column; gap: 2px;
}
.ugc-label-title {
  font-family: var(--display);
  font-size: 21px;
  color: var(--brand-green);
  text-transform: uppercase;
}
.ugc-label-handle {
  font-size: 12px; color: var(--brand-yellow);
  font-weight: 600;
}
.gallery-cta-strip {
  background: var(--brand-green);
  color: #fff;
  border-radius: 16px;
  padding: 22px 30px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.gallery-cta-text {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
}
.gallery-cta-text svg { color: var(--brand-yellow); flex: 0 0 24px; }
.gallery-cta-strip .btn-follow {
  background: var(--brand-yellow); color: var(--ink);
  padding: 11px 22px; border-radius: 999px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 1024px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .ugc-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ugc-label-title { font-size: 17px; }
}

/* ═══ FAQ ═══ */
.faq {
  background: var(--brand-green-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.faq::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80' preserveAspectRatio='none'><path d='M0 80 L30 40 L60 70 L90 30 L120 60 L150 25 L180 55 L210 35 L240 65 L270 30 L300 50 L330 25 L360 60 L390 35 L420 55 L450 30 L480 65 L510 40 L540 60 L570 35 L600 55 L600 80 Z' fill='%231A7741' opacity='0.4'/></svg>");
  background-size: 100% 100%;
  pointer-events: none;
}
.faq .section-head h2 { color: #fff; }
.faq .section-head h2::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 6' preserveAspectRatio='none'><path d='M2 4 Q 35 1, 70 3 T 138 2' stroke='%23FDC000' stroke-width='3' fill='none' stroke-linecap='round'/></svg>"); }
.faq .section-head .lede { color: rgba(255,255,255,0.78); }
.faq .container { position: relative; z-index: 1; }
.faq-layout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #fff;
  font-size: 15px; font-weight: 600;
  text-align: left;
  font-family: var(--sans);
}
.faq-q span { flex: 1; }
.faq-chev { transition: transform 0.3s ease; flex: 0 0 20px; color: var(--brand-yellow); }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease-out); }
.faq-q[aria-expanded="true"] + .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.82); }
.faq-contact-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 26px;
  height: fit-content;
  position: sticky; top: 100px;
}
.faq-contact-card h3 {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-contact-card .sub {
  font-size: 14px; color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}
.faq-contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.faq-contact-row:first-of-type { border-top: 0; }
.faq-contact-row svg { color: var(--brand-yellow); flex: 0 0 18px; margin-top: 2px; }
.faq-contact-row strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-yellow); margin-bottom: 3px; }
.faq-contact-card .btn-contact {
  display: block; text-align: center;
  background: var(--brand-yellow); color: var(--ink);
  padding: 14px; border-radius: 10px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 18px;
}
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-contact-card { position: static; }
}

/* ═══ FINAL CTA ═══ */
.final {
  background: linear-gradient(180deg, #0f2614 0%, #1a3d1f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.35;
}
.final-bg .img-placeholder { height: 100%; border-radius: 0; border: none; }
.final::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,38,20,0.7) 0%, rgba(15,38,20,0.92) 100%);
  z-index: 1;
}
.final .container { position: relative; z-index: 2; max-width: 880px; }
.final .eyebrow { background: rgba(253,192,0,0.15); color: var(--brand-yellow); }
.final h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 84px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}
.final h2 .accent { color: var(--brand-yellow); }
.final p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.final-form {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  max-width: 560px;
  margin: 0 auto 32px;
}
.final-form h3 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--brand-green);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label {
  font-size: 12px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-row input {
  padding: 13px 14px;
  border: 1.5px solid #e2e6ea;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-submit {
  width: 100%;
  background: var(--brand-yellow); color: var(--ink);
  padding: 16px; border-radius: 10px;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: #f5b800; transform: translateY(-1px); }
.final-trust {
  display: flex; justify-content: center; align-items: center;
  gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.82);
}
.final-trust span { display: inline-flex; align-items: center; gap: 8px; }
.final-trust svg { color: var(--brand-yellow); }
@media (max-width: 720px) {
  .final-trust { gap: 16px; font-size: 12px; }
}

/* ═══ FOOTER ═══ */
.footer {
  background: #0a1f0e;
  color: rgba(255,255,255,0.85);
  padding: 60px 64px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px; max-width: 1280px; margin: 0 auto 36px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 320px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s;
}
.footer-social-link:hover { background: var(--brand-yellow); color: var(--ink); }
.footer-col h4 {
  font-family: var(--display);
  font-size: 16px;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13px; }
.footer-col a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-yellow); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}
.footer-contact-row svg { color: var(--brand-yellow); flex: 0 0 16px; margin-top: 3px; }
.footer-contact-row a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
}
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 12px; color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer { padding: 50px 32px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .footer { padding: 40px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--brand-yellow);
  padding: 12px 16px;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-sticky-cta a {
  display: block; width: 100%;
  background: var(--ink); color: #fff;
  padding: 14px; border-radius: 10px;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center;
}
@media (max-width: 720px) {
  .mobile-sticky-cta.visible { display: block; }
  body.has-sticky { padding-bottom: 80px; }
}

/* ── Sticky-header enforcement (auto-applied) ── */
.site-header, header.site-header, .sticky-header, header.sticky-header {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 1000 !important;
}
@media (max-width: 720px) { body { padding-top: 56px; } }

/* ──────────────── */

@font-face{font-family:"Shermlock";src:url("images/Shermlock.ttf") format("truetype");font-weight:100 900;font-style:normal;font-display:swap;}

/* ──────────────── */

.hero-image-bg .placeholder-prompt,
.package-card-bg .placeholder-prompt,
[class$="-bg"] .img-placeholder .placeholder-prompt {
  display: none !important;
}

/* ──────────────── */

.emoji-icon-lg { font-size: 30px; line-height: 1; display: inline-block; }
.emoji-icon-md { font-size: 22px; line-height: 1; display: inline-block; }
.emoji-icon    { font-size: 22px; line-height: 1; display: inline-block; }

/* ──────────────── */

.marquee {
  background: var(--brand-primary, #583512);
  color: var(--brand-yellow, #FDC000);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--brand-yellow, #FDC000);
  border-bottom: 3px solid var(--brand-yellow, #FDC000);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll-x 38s linear infinite;
  gap: 48px;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-dot { color: var(--brand-yellow, #FDC000); opacity: 0.5; }
@keyframes marquee-scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 720px) { .marquee-item { font-size: 17px; } }

/* ──────────────── */

.hero-image-bg .placeholder-label,
.package-card-bg .placeholder-label,
[class$="-bg"] .img-placeholder .placeholder-label {
  display: none !important;
}

/* ──────────────── */

.hero { position: relative; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/hero-1780375041686.jpg') center/cover no-repeat; opacity: 0.4; }
.courses { position: relative; isolation: isolate; }
.courses::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/courses-1780378615234.png') center/cover no-repeat; opacity: 0.15; }
.packages { position: relative; isolation: isolate; }
.packages::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/packages-1780375895488.jpeg') center/cover no-repeat; opacity: 0.15; }
.safety { position: relative; isolation: isolate; }
.safety::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/safety-1780375904524.jpeg') center/cover no-repeat; opacity: 0.15; }
.proof { position: relative; isolation: isolate; }
.proof::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/proof-1780375916498.webp') center/cover no-repeat; opacity: 0.15; }
.gallery { position: relative; isolation: isolate; }
.gallery::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/gallery-1780375927326.webp') center/cover no-repeat; opacity: 0.15; }
.faq { position: relative; isolation: isolate; }
.faq::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/faq-1780375948225.webp') center/cover no-repeat; opacity: 0.15; }
.final { position: relative; isolation: isolate; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/final-1780375953098.webp') center/cover no-repeat; opacity: 0.15; }
