@font-face {
  font-family: 'AlternateGothicW01-No1_691796';
  src: local('AlternateGothicW01-No1'), local('Alternate Gothic No1 W01');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'P22JohnstonUndergroundW_945068';
  src: local('P22JohnstonUndergroundW_945068'), local('P22 Johnston Underground');
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-forest: #1f4d3a;
  --color-forest-600: #184030;
  --color-forest-700: #0f2a21;
  --color-gold: #c59b2d;
  --color-gold-700: #9c7a21;
  --color-cream: #fffdf8;
  --color-sky: #f2f6f4;
  --color-ink: #13251f;
  --color-muted: #5f6f68;
  --ring: 2px solid #c59b2d;
  --font-heading: Merriweather, ui-serif, Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-hero: 'AlternateGothicW01-No1_691796', 'Bebas Neue', Arial, sans-serif;
  --font-button: 'P22JohnstonUndergroundW_945068', Arial, sans-serif;
}

* { 
  box-sizing: border-box;
}

*,
*::before,
*::after {
  max-width: 100%;
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent all sections from causing horizontal scroll */
section,
main,
header,
footer,
nav {
  max-width: 100vw;
  overflow-x: hidden;
}
html, body { height: 100%; }
html {
  background: white;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: white;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-shadow: inset 10px 0 0 var(--color-forest), inset -10px 0 0 var(--color-forest);
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 768px) {
  body {
    box-shadow: inset 4px 0 0 var(--color-forest), inset -4px 0 0 var(--color-forest);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 390px) {
  body {
    box-shadow: inset 3px 0 0 var(--color-forest), inset -3px 0 0 var(--color-forest);
  }
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    overflow-x: hidden;
  }
}

@media (max-width: 390px) {
  .container {
    max-width: calc(100vw - 1.25rem);
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    text-align: center;
  }
  
  .brand {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.quick-links { 
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid rgba(31, 77, 58, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.quick-links.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.quick-links ul { 
  margin: 0; 
  padding: 1rem 0; 
  list-style: none; 
  display: flex; 
  gap: 0.25rem; 
  flex-wrap: wrap;
  justify-content: center;
}
.quick-links a { 
  text-decoration: none; 
  color: var(--color-ink); 
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem; 
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: -0.01em;
  background: transparent;
  border: 2px solid transparent;
}

@media (max-width: 768px) {
  .quick-links {
    position: relative;
    top: auto;
  }
  
  .quick-links ul {
    padding: 0.75rem 0.5rem;
    gap: 0.375rem;
    overflow-x: visible;
    overflow-y: visible;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .quick-links a {
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .quick-links a {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}
.quick-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.quick-links a:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 77, 58, 0.2);
}
.quick-links a:hover::before {
  opacity: 1;
}
.quick-links a.active {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 77, 58, 0.2);
}
.quick-links a.active::before {
  opacity: 1;
}
.quick-links a:active {
  transform: translateY(0);
}
.brand a {
  color: var(--color-forest);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
  display: inline-block;
}
.brand a:hover {
  color: var(--color-gold);
  opacity: 0.85;
}
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 55px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    height: 50px;
  }
}
/* removed header primary nav */

.header-cta {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .header-cta {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    max-width: 400px;
  }
  
  .header-cta .btn {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    min-width: 0;
  }
}

/* Smaller mobile devices */
@media (max-width: 390px) {
  .header-cta {
    max-width: 100%;
  }
  
  .header-cta .btn {
    font-size: 0.8125rem;
    padding: 0.75rem 0.75rem;
  }
}

.header-countdown { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.35rem; 
  font-weight: 600; 
  color: var(--color-forest); 
  font-family: var(--font-body);
  background: rgba(31, 77, 58, 0.05);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .header-countdown {
    order: 2;
    display: inline-flex !important;
    width: auto;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }
  
  .hc-value {
    font-size: 0.875rem;
  }
  
  .hc-unit,
  .hc-sep {
    font-size: 0.6875rem;
  }
}
.hc-value { 
  min-width: 1.75ch; 
  text-align: right; 
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-forest);
}
.hc-unit, .hc-sep { 
  color: var(--color-muted); 
  font-weight: 500; 
  font-family: var(--font-body);
  font-size: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
  min-height: 44px;
}
.btn:focus { 
  outline: 2px solid var(--color-gold); 
  outline-offset: 2px; 
}

@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}
.btn--primary { 
  background: var(--color-forest); 
  color: white;
  box-shadow: 0 1px 3px rgba(31, 77, 58, 0.2);
}
.btn--primary:hover { 
  background: var(--color-forest-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 77, 58, 0.25);
}
.btn--secondary { 
  background: var(--color-gold); 
  color: #1b1505;
  box-shadow: 0 1px 3px rgba(197, 155, 45, 0.2);
}
.btn--secondary:hover { 
  background: #d4a935;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 155, 45, 0.3);
}
.btn--ghost { 
  background: transparent; 
  color: var(--color-forest); 
  border-color: rgba(31, 77, 58, 0.3);
}
.btn--ghost:hover { 
  background: rgba(31, 77, 58, 0.06);
  border-color: var(--color-forest);
}

.hero {
  position: relative;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #000;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg .wistia_responsive_padding {
  padding: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-video-bg .wistia_responsive_wrapper {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100% !important;
  min-height: 100% !important;
}

.hero-video-bg video {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

/* Hide Wistia controls */
.hero-video-bg .w-vulcan-v2-button,
.hero-video-bg .w-control-bar,
.hero-video-bg .w-bottom-bar {
  display: none !important;
  opacity: 0 !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 40%));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 4rem 0;
  }
}
.hero h1 {
  font-family: var(--font-hero);
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-transform: uppercase;
  font-size: clamp(3rem, 2.5rem + 5vw, 70px);
  line-height: 1.02;
  margin: 0 0 1.5rem 0;
  color: rgb(255, 255, 255);
  text-shadow: 0 4px 24px rgb(0 0 0 / 60%);
  max-width: 16ch;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 1.25rem 0;
    max-width: 100%;
  }
}
.btn--hero-cta { 
  font-family: var(--font-button);
  font-weight: 400;
  font-style: normal;
  background: transparent; 
  color: rgb(255, 255, 255); 
  text-transform: uppercase; 
  letter-spacing: normal; 
  padding: 0.85rem 2.25rem; 
  font-size: 13px;
  line-height: 13px;
  border-radius: 4px;
  border: 2px solid rgb(255, 255, 255);
  box-shadow: none;
  transition: all 200ms ease;
}
.btn--hero-cta:hover { 
  background: rgba(255, 255, 255, 0.1);
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .btn--hero-cta {
    padding: 1rem 2rem;
    font-size: 14px;
    line-height: 14px;
    min-height: 52px;
  }
}
.hero-card {
  background: white;
  border: 1px solid #e6ece9;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 6px 20px rgb(0 0 0 / 8%);
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; margin-bottom: 0.75rem; }
.hero-stats strong { display: block; font-size: 1.25rem; color: var(--color-forest); }
.trust-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.25rem 0.5rem; margin: 0; padding: 0; list-style: none; }
.trust-badges li::before { content: "✔"; color: var(--color-gold); margin-right: 0.5rem; }

.trust-row { 
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 251, 250, 0.8) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.trust-list { 
  list-style: none; 
  margin: 0; 
  padding: 1.5rem 0; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 2rem 3rem; 
  align-items: center;
  justify-content: center;
}
.trust-list li { 
  display: inline-flex; 
  flex-direction: column;
  align-items: center; 
  gap: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.trust-list li:hover {
  transform: translateY(-4px);
}
.trust-list .icon { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: transform 0.3s ease;
  overflow: visible;
}
.trust-list li:hover .icon {
  transform: scale(1.1);
}
.trust-list .icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.trust-list .trust-text { 
  color: var(--color-ink); 
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .trust-row {
    padding: 0.75rem 0;
  }
  
  .trust-list {
    padding: 1.25rem 0;
    gap: 1.5rem 2rem;
  }
  
  .trust-list .icon {
    width: 60px;
    height: 60px;
  }
  
  .trust-list .trust-text {
    font-size: 0.8125rem;
  }
}

section { 
  padding: 4rem 0;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
.section-head { 
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 { 
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p { 
  margin: 0; 
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-head {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .section-head h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin: 0 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .section-head p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  .section-head h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
}
.section-head h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-forest));
  margin: 1rem auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(197, 155, 45, 0.3);
}

h1, h2, h3, .brand a {
  font-family: var(--font-heading);
}
.brand a { letter-spacing: 0.2px; }

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    hyphens: auto;
  }
}

.grid { display: grid; gap: 1.5rem; }

.why {
  background: white;
}
.why-video-container {
  max-width: 700px;
  margin: 0 auto 4rem;
}
.why-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.why-video::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-forest) 100%);
  border-radius: 20px;
  z-index: -1;
}

@media (max-width: 768px) {
  .why-video::before {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }
}
.why-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.why-video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-forest);
  letter-spacing: -0.01em;
}
.video-label-icon {
  font-size: 1rem;
  color: var(--color-gold);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  transition: all 0.3s ease;
}
.why-item:hover .why-number {
  transform: scale(1.1) rotate(5deg);
}
.why-number {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: visible;
}
.why-number--forest {
  color: var(--color-forest);
}
.why-number--gold {
  color: var(--color-gold);
}
.why-content {
  flex: 1;
}
.why-content h3 {
  margin: 0 0 0.35rem 0;
  font-size: 1.375rem;
  color: var(--color-forest);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.why-content p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .why-list {
    gap: 1.5rem;
  }
  .why-item {
    gap: 1.25rem;
  }
  .why-number {
    font-size: clamp(2rem, 8vw, 3rem);
    min-width: 60px;
  }
  .why-content h3 {
    font-size: 1.125rem;
  }
  .why-content p {
    font-size: 0.9rem;
  }
}

.highlights { 
  background: white;
  padding: 5rem 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.activity-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.activity-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.activity-image {
  position: absolute;
  inset: 0;
  background: var(--img, linear-gradient(45deg, #ddd, #eee)) center/cover no-repeat;
  background-position: var(--pos, center);
  transition: transform 0.4s ease;
}

.activity-card:hover .activity-image {
  transform: scale(1.1);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.3s ease;
}

.activity-card:hover .activity-overlay {
  background: linear-gradient(180deg, rgba(31, 77, 58, 0.2) 0%, rgba(31, 77, 58, 0.95) 100%);
}

.activity-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: visible;
}

.activity-card:hover .activity-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: rotate(10deg) scale(1.1);
}

.activity-icon svg {
  width: 28px;
  height: 28px;
}

.activity-content {
  color: white;
}

.activity-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  color: white;
}

.activity-content p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.activity-card:hover .activity-list {
  opacity: 1;
  transform: translateY(0);
}

.activity-list li {
  font-size: 0.8125rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 500;
}

@media (max-width: 968px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .activity-card {
    height: 400px;
  }
  
  .activity-list {
    opacity: 1;
    transform: translateY(0);
  }
}

.roadmap {
  background: white;
}
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-forest) 0%, var(--color-gold) 50%, var(--color-forest) 100%);
  border-radius: 2px;
  opacity: 0.25;
}
.roadmap-phase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  position: relative;
  padding: 2rem 0;
}
.roadmap-phase:nth-child(even) .phase-content {
  grid-column: 1;
  text-align: right;
}
.roadmap-phase:nth-child(even) .phase-marker {
  grid-column: 2;
}
.roadmap-phase:nth-child(even) .phase-empty {
  grid-column: 3;
}
.roadmap-phase:nth-child(odd) .phase-empty {
  grid-column: 1;
}
.roadmap-phase:nth-child(odd) .phase-marker {
  grid-column: 2;
}
.roadmap-phase:nth-child(odd) .phase-content {
  grid-column: 3;
  text-align: left;
}
.phase-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-family: var(--font-hero);
  font-size: 2.5rem;
  font-weight: 700;
  background: white;
  border: 4px solid;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
  overflow: visible;
}
.phase-marker--forest {
  color: var(--color-forest);
  border-color: var(--color-forest);
}
.phase-marker--gold {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.roadmap-phase:hover .phase-marker {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
/* Empty column for alternating layout - removed empty ruleset */
.phase-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}
.phase-content h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--color-forest);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.phase-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.roadmap-phase:nth-child(even) .phase-list {
  align-items: flex-end;
}
.phase-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--color-ink);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 400px;
}
.roadmap-phase:nth-child(even) .phase-list li {
  padding-left: 0;
  padding-right: 2rem;
}
.phase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.25rem;
}
.roadmap-phase:nth-child(even) .phase-list li::before {
  left: auto;
  right: 0;
}

@media (max-width: 968px) {
  .roadmap-timeline::before {
    left: 35px;
    transform: none;
  }
  .roadmap-phase {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    align-items: start;
  }
  .roadmap-phase:nth-child(even) .phase-content,
  .roadmap-phase:nth-child(odd) .phase-content {
    grid-column: 2;
    text-align: left;
  }
  .roadmap-phase:nth-child(even) .phase-marker,
  .roadmap-phase:nth-child(odd) .phase-marker {
    grid-column: 1;
    align-self: flex-start;
    margin-top: 0;
  }
  .phase-empty {
    display: none;
  }
  .phase-marker {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    flex-shrink: 0;
  }
  .phase-content {
    padding: 0;
  }
  .phase-content h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }
  .roadmap-phase:nth-child(even) .phase-list {
    align-items: flex-start;
  }
  .roadmap-phase:nth-child(even) .phase-list li {
    padding-left: 2rem;
    padding-right: 0;
  }
  .roadmap-phase:nth-child(even) .phase-list li::before {
    left: 0;
    right: auto;
  }
  .phase-list li {
    font-size: 0.95rem;
  }
}

.safety {
  background: white;
  padding: 5rem 0 4rem;
}
.safety-hero {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.safety-hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.safety-badge {
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
  color: var(--color-gold);
  filter: drop-shadow(0 8px 24px rgba(197, 155, 45, 0.3));
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.safety-badge svg {
  width: 100%;
  height: 100%;
}
.safety-hero h2 {
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.safety-hero h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-forest));
  margin: 1.5rem auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(197, 155, 45, 0.3);
}
.safety-lead {
  font-size: 1.375rem;
  line-height: 1.7;
  margin: 2rem 0 0;
  color: var(--color-muted);
  font-weight: 400;
}
.safety-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}
.safety-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.safety-feature:hover {
  transform: translateY(-4px);
}
.safety-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
}
.safety-feature:hover .safety-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.safety-icon svg {
  width: 45px;
  height: 45px;
}
.safety-icon--medical {
  border-color: var(--color-forest);
  color: var(--color-forest);
}
.safety-icon--staff {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.safety-icon--emergency {
  border-color: var(--color-forest);
  color: var(--color-forest);
}
.safety-icon--food {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.safety-feature h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.625rem;
  color: var(--color-forest);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.safety-feature p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 1.0625rem;
}
.safety-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .btn--large {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
  .safety {
    padding: 4rem 0 3rem;
  }
  .safety-hero {
    margin-bottom: 3rem;
  }
  .safety-badge {
    width: 110px;
    height: 110px;
  }
  .safety-hero h2 {
    font-size: 2rem;
  }
  .safety-lead {
    font-size: 1.125rem;
  }
  .safety-features {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .safety-icon {
    width: 75px;
    height: 75px;
  }
  .safety-icon svg {
    width: 38px;
    height: 38px;
  }
  .safety-feature h3 {
    font-size: 1.375rem;
  }
  .safety-feature p {
    font-size: 1rem;
  }
}

/* early section removed */

.creed { 
  background: white;
}
.creed-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.chif-grid { 
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 550px;
}
.chif-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.chif-video::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-gold) 100%);
  border-radius: 20px;
  z-index: -1;
}

@media (max-width: 768px) {
  .chif-video::before {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }
}
.chif-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.chif-item { 
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.chif-item:nth-child(1) {
  margin-left: 0;
}
.chif-item:nth-child(2) {
  margin-left: 1.5rem;
}
.chif-item:nth-child(3) {
  margin-left: 3rem;
}
.chif-item:nth-child(4) {
  margin-left: 4.5rem;
}
.chif-item:hover .chif-letter { 
  transform: scale(1.15);
}
.chif-letter {
  font-family: var(--font-hero);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: visible;
}
.chif-letter--forest {
  color: var(--color-forest);
}
.chif-letter--gold {
  color: var(--color-gold);
}
.chif-content {
  flex: 1;
  padding-top: 0.5rem;
}
.chif-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: var(--color-forest);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.chif-content p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .creed-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .chif-video {
    order: -1; /* Video appears first on mobile */
  }
}

@media (max-width: 768px) {
  .chif-grid {
    max-width: 100%;
  }
  .chif-item {
    gap: 1rem;
  }
  .chif-item:nth-child(2) {
    margin-left: 1rem;
  }
  .chif-item:nth-child(3) {
    margin-left: 2rem;
  }
  .chif-item:nth-child(4) {
    margin-left: 3rem;
  }
  .chif-letter {
    font-size: clamp(3rem, 10vw, 4rem);
  }
  .chif-content {
    padding-top: 0.25rem;
  }
  .creed-layout {
    gap: 2rem;
  }
}

.sessions { 
  background: white;
}
.table-wrap { 
  overflow: auto; 
  border: 1px solid rgba(0, 0, 0, 0.06); 
  border-radius: 16px; 
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.table { width: 100%; border-collapse: collapse; min-width: 640px; }
.table th, .table td { padding: 1rem 1.25rem; border-bottom: 1px solid rgba(0, 0, 0, 0.04); text-align: left; }

@media (max-width: 768px) {
  .table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }
  
  .table {
    display: block;
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
  
  .table thead {
    display: none;
  }
  
  .table tbody {
    display: block;
    width: 100%;
  }
  
  .table tr {
    display: block;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .table tr:hover {
    transform: none;
    background: white;
  }
  
  .table th,
  .table td {
    display: block;
    padding: 0.5rem 0;
    border: none;
    text-align: left !important;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .table th[scope="row"] {
    font-size: 1.0625rem;
    color: var(--color-forest);
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(31, 77, 58, 0.1);
  }
  
  .table td {
    padding: 0.375rem 0;
    font-size: 0.875rem;
  }
  
  .table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-forest);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
  }
  
  .badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    margin: 0.25rem 0.25rem 0.25rem 0;
  }
}

@media (max-width: 390px) {
  .table tr {
    padding: 0.875rem;
  }
  
  .table th[scope="row"] {
    font-size: 1rem;
  }
  
  .table td {
    font-size: 0.8125rem;
  }
}
.table thead th { 
  position: sticky; 
  top: 0; 
  background: linear-gradient(180deg, #f9fbfa 0%, #f4f7f5 100%);
  color: var(--color-forest); 
  font-weight: 700;
  letter-spacing: -0.01em;
}
.table tbody tr {
  transition: all 0.2s ease;
}
.table tbody tr:hover { 
  background: rgba(31, 77, 58, 0.03);
  transform: scale(1.005);
}
.table--brand th[scope="row"] { color: var(--color-forest); font-weight: 700; }

.badge { 
  display: inline-block; 
  font-size: 0.8rem; 
  padding: 0.35rem 0.75rem; 
  border-radius: 6px; 
  border: 1px solid transparent; 
  margin-right: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge--open { 
  background: linear-gradient(135deg, #edf7f1 0%, #e2f3ea 100%);
  color: var(--color-forest); 
  border-color: rgba(31, 77, 58, 0.2);
  box-shadow: 0 2px 4px rgba(31, 77, 58, 0.1);
}
.badge--wait { 
  background: linear-gradient(135deg, #fff6e5 0%, #ffeed1 100%);
  color: #8a5a00; 
  border-color: rgba(197, 155, 45, 0.3);
  box-shadow: 0 2px 4px rgba(197, 155, 45, 0.1);
}

.countdown { 
  background: white;
}
.countdown-inner { display: grid; grid-template-rows: auto auto auto; gap: 1rem; padding: 1.25rem 0; }
.countdown-copy h2 { 
  margin: 0; 
  text-align: center; 
  font-weight: 900; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .countdown-copy h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    letter-spacing: 1px;
  }
}
.countdown-sep { 
  height: 4px; 
  background: linear-gradient(90deg, var(--color-gold), var(--color-forest));
  width: 100%; 
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(197, 155, 45, 0.3);
}
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: end; justify-items: center; }
.cd-item { text-align: center; }
.cd-value { 
  font-weight: 900; 
  font-size: clamp(2.25rem, 1.5rem + 4vw, 4rem); 
  color: var(--color-forest);
  letter-spacing: 2px; 
}
.cd-label { 
  font-weight: 800; 
  font-size: clamp(1rem, 0.8rem + 1vw, 1.5rem); 
  color: var(--color-gold);
  text-transform: uppercase; 
  letter-spacing: 2px; 
  position: relative; 
  display: inline-block; 
}

@media (max-width: 768px) {
  .countdown-grid {
    gap: 1rem;
  }
  
  .cd-value {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    letter-spacing: 1px;
  }
  
  .cd-label {
    font-size: clamp(0.75rem, 3.5vw, 1rem);
    letter-spacing: 1px;
  }
}
.cd-label::after { 
  content: ""; 
  display: block; 
  height: 3px; 
  background: var(--color-forest);
  margin-top: 8px; 
  border-radius: 2px;
  opacity: 0.3;
}
.countdown-cta { display: none; }

.inline-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .inline-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .inline-actions .btn {
    width: 100%;
  }
}

.prepare {
  background: white;
}
.prepare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.prepare-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.prepare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gold);
}
.prepare-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  background: white;
  transition: all 0.3s ease;
  overflow: visible;
}
.prepare-card:hover .prepare-icon {
  transform: scale(1.1) rotate(5deg);
}
.prepare-icon svg {
  width: 35px;
  height: 35px;
}
.prepare-icon--calendar {
  border-color: var(--color-forest);
  color: var(--color-forest);
}
.prepare-icon--luggage {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.prepare-icon--map {
  border-color: var(--color-forest);
  color: var(--color-forest);
}
.prepare-icon--forms {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.prepare-card h3 {
  margin: 0;
  font-size: 1.625rem;
  color: var(--color-forest);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.prepare-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 1.0625rem;
  flex: 1;
}
.prepare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-forest);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.prepare-link:hover {
  color: var(--color-gold);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .prepare-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .prepare-card {
    padding: 2rem;
  }
  .prepare-icon {
    width: 60px;
    height: 60px;
  }
  .prepare-icon svg {
    width: 30px;
    height: 30px;
  }
  .prepare-card h3 {
    font-size: 1.375rem;
  }
  .prepare-card p {
    font-size: 1rem;
  }
}

.during {
  background: white;
}
.during-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.during-feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.3s ease;
}
.during-feature:hover {
  transform: translateX(8px);
}
.during-number {
  font-family: var(--font-hero);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: visible;
}
.during-number--forest {
  color: var(--color-forest);
}
.during-number--gold {
  color: var(--color-gold);
}
.during-feature:hover .during-number {
  transform: scale(1.15) rotate(-5deg);
}
.during-content {
  flex: 1;
  padding-top: 0.5rem;
}
.during-content h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.75rem;
  color: var(--color-forest);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.during-content p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 1.0625rem;
}

@media (max-width: 768px) {
  .during-features {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .during-feature {
    gap: 1.5rem;
  }
  .during-number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    min-width: 70px;
  }
  .during-content h3 {
    font-size: 1.5rem;
  }
  .during-content p {
    font-size: 1rem;
  }
}

.faqs {
  background: white;
}

.faq-accordion {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gold);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 1rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.faq-trigger:hover {
  background: rgba(36, 62, 54, 0.03);
}

.faq-trigger[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(36, 62, 54, 0.05) 0%, rgba(197, 155, 45, 0.05) 100%);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-forest);
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-trigger[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: white;
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-text);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 1.25rem 1.5rem;
    min-height: 44px;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
  
  .faq-item {
    position: relative;
    z-index: 1;
  }
}

.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 300ms ease; }
.carousel-slide { min-width: 100%; padding: 1rem; background: white; border: 1px solid #e6ece9; border-radius: 0.75rem; }
.carousel-controls { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.5rem; }

.testimonials {
  background: white;
  padding: 5rem 0;
}

.testimonials-carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  padding: 0 60px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.testimonial-card {
  background: transparent;
  padding: 3rem 2rem;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 300px;
  align-items: flex-start;
  text-align: left;
}

.testimonial-icon {
  width: 100px;
  height: 100px;
  color: var(--color-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.testimonial-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-ink);
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--color-forest);
  font-weight: 600;
  margin-top: 0.5rem;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: white;
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-nav:hover {
  background: var(--color-gold);
  color: white;
  transform: scale(1.05);
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(197, 155, 45, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 32px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .testimonials-carousel {
    padding: 0 40px;
  }
  
  .testimonial-card {
    padding: 2rem 1rem;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-icon {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-card blockquote {
    font-size: 1rem;
  }
  
  .testimonial-nav {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-nav svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   Image Placeholders
   ======================================== */
.image-feature {
  padding: 3rem 0;
}

.image-feature-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.image-feature-wrap--landscape .image-feature-media {
  max-width: 100%;
}

.image-feature-wrap--split {
  display: flex;
  gap: 2rem;
}

.image-feature-media {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .image-feature {
    padding: 2rem 0;
  }
  
  .image-feature-wrap--split {
    flex-direction: column;
    gap: 1rem;
  }
  
  .image-feature-media {
    min-height: 250px !important;
  }
}

/* Request Form */
.request-form {
  background: linear-gradient(180deg, #f9fbfa 0%, white 100%);
  padding: 5rem 0;
}

.info-form {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(31, 77, 58, 0.1);
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--full {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: var(--color-forest);
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.required {
  color: #dc2626;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field textarea {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(31, 77, 58, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-ink);
  transition: color 0.2s ease;
}

.radio-label:hover {
  color: var(--color-forest);
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-forest);
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .info-form {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field input[type="number"],
  .form-field textarea {
    font-size: 16px;
    max-width: 100%;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }
}

.cta { background: var(--color-forest); color: white; }
.cta-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; }
.cta .btn--secondary { background: #ffffff; color: var(--color-forest); }

@media (max-width: 768px) {
  .cta-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .cta-row h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .cta-row .actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .cta-row .actions .btn {
    width: 100%;
  }
}

.site-footer { background: var(--color-forest-700); color: #dbe6e1; padding-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; }
.site-footer a { color: #dbe6e1; }
.site-footer nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
.copyright { text-align: center; margin: 1rem 0 0; color: #9fb3ab; }

@media (max-width: 768px) {
  .site-footer {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .site-footer nav ul {
    align-items: center;
  }
  
  .site-footer .btn {
    margin: 0 auto;
  }
}

.modal::backdrop { background: rgb(0 0 0 / 50%); }
.modal { border: none; border-radius: 16px; padding: 0; max-width: 720px; width: 92vw; max-height: 95vh; display: flex; flex-direction: column; }
.modal--large { max-width: 960px; }

@media (max-width: 768px) {
  .modal {
    width: 95vw;
    max-height: 95vh;
    border-radius: 12px;
  }
}
.modal form { padding: 0; display: flex; flex-direction: column; height: 100%; }
.modal header { padding: 1.5rem 1.5rem 0; }
.modal-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 1rem;
}
.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover {
  color: var(--color-forest);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .modal-header {
    padding: 1.25rem 1.25rem 0;
    padding-bottom: 1rem;
  }
  
  .modal-header h3 {
    font-size: 1.375rem;
  }
  
  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 1.75rem;
  }
}
.modal .modal-body { padding: 1.5rem; flex: 1; overflow-y: auto; min-height: 0; }
.modal-intro {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.modal .modal-actions { display: flex; gap: 0.5rem; padding: 1rem 1.5rem 1.5rem; justify-content: flex-end; flex-shrink: 0; border-top: 1px solid rgba(0, 0, 0, 0.06); background: white; }

@media (max-width: 768px) {
  .modal .modal-body {
    padding: 1.25rem;
  }
  
  .modal-intro {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .modal .modal-actions {
    padding: 0.75rem 1.25rem 1.25rem;
    flex-direction: column-reverse;
  }
  
  .modal .modal-actions .btn {
    width: 100%;
  }
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 450ms ease, transform 450ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.timeline { background: #f7faf8; }
.stepper { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.stepper [role="tab"] { border: 1px solid #dfe8e3; background: #fff; border-radius: 999px; padding: 0.5rem 0.8rem; }
.stepper [aria-selected="true"] { background: var(--color-forest); color: #fff; border-color: var(--color-forest); }
.step-panels [role="tabpanel"] { background: #fff; border: 1px solid #e6ece9; border-radius: 0.75rem; padding: 1rem; }

.view-toggle { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.view-toggle .is-active { background: var(--color-forest); color: #fff; }
.session-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.session-card { background: #fff; border: 1px solid #e6ece9; border-radius: 0.75rem; padding: 1rem; display: grid; gap: 0.25rem; }
.session-rate { font-weight: 700; color: var(--color-forest); }
.session-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.tag { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 999px; background: #eef5f1; color: var(--color-forest); border: 1px solid #dbe7e1; font-size: 0.8rem; font-weight: 600; }
.tag--popular { background: #fff1d6; border-color: #ffe0a6; color: #7a5300; }
.tag--new { background: #e9f2ff; border-color: #cfe3ff; color: #13407a; }

.sticky-apply { position: sticky; bottom: 0; display: flex; justify-content: center; gap: 0.5rem; padding: 0.5rem; background: #ffffffcc; backdrop-filter: blur(8px); border-top: 1px solid #e6ece9; }

/* Brand settings button */
.brand-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  border: 1px solid #d8e5df;
  background: #ffffff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 12%);
  cursor: pointer;
}

@media (max-width: 768px) {
  .brand-toggle {
    width: 48px;
    height: 48px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
.brand-form .brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.75rem;
}
.brand-form label { display: grid; gap: 0.25rem; font-size: 0.925rem; }
.brand-form input[type="url"], .brand-form select, .brand-form input[type="file"] {
  padding: 0.5rem 0.6rem;
  border: 1px solid #dfe8e3;
  border-radius: 0.5rem;
}

/* Utilities */
.bullets { padding-left: 1.25rem; }
.bullets li { margin: 0.25rem 0; }

/* Additional mobile improvements for video embeds */
@media (max-width: 768px) {
  .why-video-container {
    margin: 0 auto 3rem;
  }
  
  .why-video-label {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .table { min-width: 560px; }
  .prepare-grid { grid-template-columns: repeat(2, 1fr); }
  .during-grid { grid-template-columns: repeat(2, 1fr); }
  .session-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero-content { grid-template-columns: 1fr; }
  .early-grid { grid-template-columns: 1fr; }
  .brand-form .brand-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .session-cards { grid-template-columns: 1fr; }
}


