/* ========================================
   THE EDGE CONFERENCE — Main Stylesheet
   Color palette in :root — update here for rebrand
   ======================================== */

:root {
  /* Brand colors */
  --color-teal:       #19B39B;
  --color-deep-teal:  #0E6E63;
  --color-red:        #C0392B;
  --color-yellow:     #E8A623;
  --color-orange:     #F37B1F;

  /* Neutrals — EDGE 2027 palette */
  --color-ink:        #0B0B0D;  /* Primary backdrop */
  --color-surface:    #1C1B1A;  /* Surface */
  --color-elevated:   #292826;  /* Elevated */
  --color-line:       #3C3B38;  /* Line / borders */
  --color-faint:      #6E6C66;  /* Faint text / muted UI */
  --color-mute:       #A6A39C;  /* Muted text */
  --color-bone:       #E9E6DF;  /* Off-white / warm light */
  --color-white:      #ffffff;

  /* Semantic aliases — keep existing usage unchanged */
  --color-dark:       var(--color-ink);
  --color-navy:       var(--color-surface);
  --color-gray:       var(--color-faint);
  --color-off-white:  var(--color-bone);
  --color-light-gray: #dddddd;

  --font-heading:   'Alfa Slab One', serif;
  --font-body:      'Source Sans 3', 'Source Sans Pro', sans-serif;

  --max-width:      1100px;
  --nav-height:     80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
}

a { color: var(--color-teal); text-decoration: none; }
a:hover { color: var(--color-red); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #E8A623;
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  width: 100%;
}
.announcement-bar a {
  color: var(--color-dark);
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}
.announcement-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-dark);
  padding: 2px 6px;
  opacity: 0.7;
}
.announcement-close:hover { opacity: 1; }
.announcement-bar a {
  color: var(--color-dark);
  text-decoration: underline;
  font-weight: 700;
}
.announcement-bar a:hover { color: var(--color-navy); }

/* ===== NAVIGATION ===== */
/* Offset page content below fixed announcement bar */
body { padding-top: 40px; }
body.bar-hidden { padding-top: 0; }

/* Header: transparent + absolute on all pages (overlaid on hero/banner) */
#site-header {
  position: absolute;
  top: 40px; /* sits just below the announcement bar */
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
}
#site-header.bar-hidden, body.bar-hidden #site-header {
  top: 0;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 125px; width: auto; }
/* subpage logo same size as homepage — 150px */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--color-yellow); }
body:not(.home) .nav-menu a { color: var(--color-white); }

.nav-menu .btn-register {
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: 0;
  letter-spacing: 0.1em;
}
.nav-menu .btn-register:hover {
  background: var(--color-orange);
  color: var(--color-white) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 6px 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-toggle .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}
.nav-toggle .menu-text {
  display: block;
  line-height: 1;
  color: var(--color-white);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1998;
  cursor: pointer;
}
.nav-overlay.active { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  line-height: 1.2;
}

.btn-primary {
  background-image: linear-gradient(to right, #C0392B, #F37B1F, #E8A623);
  background-size: 200% auto;
  color: var(--color-white);
  transition: background-position ease-in-out 0.2s;
}
.btn-primary:hover {
  background-position: right center;
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn-secondary:hover {
  background: #C0392B;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn .arrow {
  margin-left: 8px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background-color: var(--color-dark);
  background-image: url('/images/mtn-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  min-height: 460px;
  padding: 200px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.40);
  z-index: 1;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CONTENT WRAPPER ===== */
.content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
}

.content-wrap-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
}
.section-header .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 8px;
}

/* ===== DIVIDER MOUNTAIN ===== */
.mountain-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0;
}
.mountain-divider .line {
  width: 130px;
  flex: none;
  height: 2px;
  background: var(--color-teal);
  opacity: 0.6;
}
.mountain-divider img {
  width: 90px;
  height: auto;
}

/* ===== HOMEPAGE HERO ===== */
.hero {
  position: relative;
  height: calc(100vh - 40px); /* viewport minus fixed bar */
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--color-dark);
}
body.bar-hidden .hero {
  height: 100vh;
}

/* Slideshow container */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.06);
  animation: heroKen 14s ease-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes heroKen {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

/* Ember mesh overlay — non-linear gradient image matching 2027 brand */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,11,13,0.9);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/edge-ember-mesh.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transform: scale(1.3);
  z-index: 2;
}
.hero-content { z-index: 3 !important; }
.hero-down-arrow { z-index: 3 !important; }

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 152px 40px 50px;
  max-width: 1100px;
  width: 100%;
}

/* Eyebrow: Alfa Slab One, 16px, letter-spacing 4px, teal — exactly as original */
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 20px;
}

/* H2 heading: Alfa Slab One 400, 60px, line-height 84px, letter-spacing 2px */
.hero h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400; /* Alfa Slab One is single-weight; force no bold */
  line-height: 84px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 4px;
}

/* Mountain divider */
.hero .mountain-divider {
  margin: 16px auto 20px;
}

/* Date: 2-line subheading, bold, Source Sans 3 */
.hero-date {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  margin: 0;
}
.hero-date .date-line1 {
  font-size: 22px;
  display: block;
}
.hero-date .date-line2 {
  font-size: 18px;
  display: block;
}

/* Down arrow at bottom center */
.hero-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-down-arrow svg {
  width: 42px;
  height: 42px;
  fill: rgba(255,255,255,0.8);
}
.hero-down-arrow:hover svg { fill: var(--color-teal); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--color-surface);
  padding: 80px 24px;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.video-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Heading: Alfa Slab One 400, 35px, uppercase, white */
.video-section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 35px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 20px;
}

/* Paragraph: Source Sans 3, 20px/26px, white */
.video-section-text p {
  color: var(--color-white);
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 28px;
}
.video-section-text p.phone-line {
  font-size: 16px;
  margin: 10px 0 0;
  opacity: 0.85;
}
.video-section-text p.phone-line a { color: var(--color-white); font-weight: 700; text-decoration: none; }

/* CTA button */
.btn-reg-pack {
  display: inline-block;
  background-image: linear-gradient(to right, #C0392B, #F37B1F, #E8A623);
  background-size: 200% auto;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  transition: background-position ease-in-out 0.2s;
}
.btn-reg-pack:hover { background-position: right center; color: var(--color-white); }
.btn-reg-pack .btn-icon { font-size: 20px; margin-left: 4px; }

/* Video player: thumbnail + play btn, lazy load iframe */
.video-wrap { }

.video-player {
  position: relative;
  border: 6px solid var(--color-line);
}

.video-thumb {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-play-btn:hover { background: rgba(0,0,0,0.8); }
.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  margin-left: 4px; /* optical center for play triangle */
}

.video-iframe-wrap {
  position: relative;
  padding-top: 56.25%;
}
.video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FEATURING SECTION ===== */
.featuring-section {
  background-color: #0B0B0D;
  background-image: url('/images/mtn-bg.jpg');
  background-size: cover;
  background-position: center 50%;
  padding: 80px 24px;
  text-align: center;
  position: relative;
}
.featuring-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.2);
  z-index: 0;
}
.featuring-section > * { position: relative; z-index: 1; }

.featuring-heading {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 40px;
}

.speakers-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.speaker-card {
  display: block;
  padding: 10px 12px;
}
.speaker-card img {
  display: block;
  width: 260px;
  max-width: 90vw;
  height: auto;
}

.featuring-guests {
  font-size: 18px;
  color: #E8A623;
  font-weight: 900;
  margin: 0;
  line-height: 1.5;
}
.featuring-guests-label {
  color: #E9E6DF;
  font-weight: 400;
}

/* ===== TESTIMONIAL STRIP ===== */
.testimonial-strip {
  background-color: #0E6E63;
  background-image: url('/images/diamonds-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #E9E6DF;
  padding: 100px 24px;
  text-align: center;
  position: relative;
}
.testimonial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 110, 99, 0.6);
  z-index: 1;
}
.testimonial-strip > * {
  position: relative;
  z-index: 2;
}
.testimonial-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.testimonial-sub {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.5vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E9E6DF;
  margin-bottom: 40px;
}
.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote p {
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  color: #E9E6DF;
  margin-bottom: 20px;
}
.testimonial-quote p:last-of-type { margin-bottom: 0; }
.testimonial-quote strong {
  font-style: italic;
  color: #FFFFFF;
}
.testimonial-quote cite {
  display: block;
  margin-top: 28px;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: #E9E6DF;
  text-align: center;
}
/* Homepage testimonial strips (plain blockquote, no extra classes) */
.testimonial-strip blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
  color: #E9E6DF;
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonial-strip blockquote cite {
  display: block;
  margin-top: 20px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #E9E6DF;
  text-align: center;
}

/* ===== REGISTRATION INCLUDES ===== */
.includes-section {
  padding: 70px 24px;
  background: var(--color-surface);
  text-align: center;
  color: var(--color-bone);
}

.includes-section h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 35px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.include-item { text-align: center; }

.include-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}
.include-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.include-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E9E6DF;
  line-height: 1.3;
  max-width: 200px;
  margin: 0 auto;
}

/* Pricing block — single horizontal line on desktop */
/* Horizontal rule above pricing */
hr.pricing-rule {
  width: 50%;
  border: none;
  border-top: 2px solid var(--color-line);
  margin: 60px auto 60px;
}
.pricing-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin: 20px auto 40px;
  flex-wrap: wrap;
}
.pricing-label-top {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.pricing-amount {
  display: inline-block;
  background: #19B39B;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0 8px;
  line-height: 1.4;
}
.pricing-label-bottom {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.includes-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.pricing-disclaimer {
  font-size: 13px;
  color: var(--color-mute);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Photo strip — single row on desktop, 2 rows on mobile */
.photo-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.photo-strip-inner {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 100%;
}
.photo-strip-inner img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* ===== CRAIG SECTION ===== */
.craig-section {
  padding: 70px 24px;
  background: var(--color-white);
}
.craig-section-inner {
  max-width: 800px;
  margin: 0 auto;
}
/* Title + rule centered at top */
.craig-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 12px;
}
.craig-rule {
  width: 50%;
  height: 0;
  border: none;
  border-top: 2px solid var(--color-light-gray);
  margin: 16px auto 48px;
}
/* Body: clearfix container with floated photo */
.craig-body {
  display: flow-root;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-gray);
}
.craig-body p { color: var(--color-gray); }
.craig-body a { color: var(--color-teal); }
.craig-body .btn-reg-pack,
.craig-body .btn-reg-pack:visited { color: var(--color-white) !important; }
.craig-body .btn-reg-pack:hover { background-position: right center !important; color: var(--color-white) !important; }
/* Photo floats right */
.craig-photo {
  float: right;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 4px 0 24px 32px;
}
.craig-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Reasons — subheadings with paragraphs, not a real list */
.craig-reasons {
  margin: 20px 0 24px;
}
.craig-reason {
  margin-bottom: 20px;
}
.craig-reason-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 4px;
  line-height: 1.4;
}
.craig-reason p {
  font-size: 18px;
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

/* ===== LOCATION SECTION ===== */
.location-section {
  background-color: #0B0B0D;
  background-image: url('/images/ridgecrest-mountains2-full.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 24px;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 40, 38, 0.85);
  z-index: 0;
}
.location-section > * { position: relative; z-index: 1; }
.location-inner {
  max-width: 800px;
  margin: 0 auto;
}
.location-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: none;
}
.location-circle img { width: 100%; height: 100%; object-fit: cover; }
.location-heading {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 20px;
}
.location-body {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 40px 24px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  list-style: none;
}
.footer-nav a {
  color: var(--color-light-gray);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-yellow); }

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: var(--color-gray);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.footer-copy a { color: var(--color-gray); }
.footer-copy a:hover { color: var(--color-yellow); }

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: #0B0B0D;
  background-image: url('/images/DSC_5198.jpg');
  background-size: cover;
  background-position: center 50%;
  padding: 100px 24px;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.8);
  z-index: 1;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/edge-cinder-mesh.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transform: scale(1.3);
  z-index: 2;
}
.cta-section > * { position: relative; z-index: 3; }
.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-body {
  font-size: 20px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 36px;
  color: #ffffff;
}
.cta-phone {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}
.cta-phone a { color: rgba(255,255,255,0.75); text-decoration: none; }
.cta-phone a:hover { color: #ffffff; }


/* ===== DARK SECTION TYPOGRAPHY ===== */
/* Sections with dark/ink backgrounds use Bone (#E9E6DF) for body, White for headings */
.featuring-section,
.video-section,
.cta-section,
.location-section,
.includes-section {
  color: #E9E6DF;
}
.includes-section h1, .includes-section h2, .includes-section h3,
.includes-section h4, .includes-section h5, .includes-section h6,
.includes-section strong, .includes-section b,
.featuring-section h1, .featuring-section h2, .featuring-section h3,
.featuring-section h4, .featuring-section h5, .featuring-section h6,
.featuring-section strong, .featuring-section b,
.video-section h1, .video-section h2, .video-section h3,
.video-section h4, .video-section h5, .video-section h6,
.video-section strong, .video-section b,
.cta-section h1, .cta-section h2, .cta-section h3,
.cta-section h4, .cta-section h5, .cta-section h6,
.cta-section strong, .cta-section b,
.location-section h1, .location-section h2, .location-section h3,
.location-section h4, .location-section h5, .location-section h6,
.location-section strong, .location-section b {
  color: #ffffff;
}

/* ===== REGISTER PAGE ===== */
.register-hero {
  background: var(--color-dark);
  background-image: url('../images/mtn-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 220px 24px 160px;
  text-align: center;
  color: var(--color-white);
  position: relative;
}
.register-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.55);
  z-index: 1;
}
.register-hero > * { position: relative; z-index: 2; }
.register-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.register-hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 32px; }
.register-hero .divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 24px 0; color: var(--color-white); opacity: 0.7; font-weight: 700; }
.register-hero .divider::before, .register-hero .divider::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: currentColor; }

.steps-section {
  padding: 70px 24px 80px;
  background: var(--color-white);
}

/* ── Timeline layout ── */
.steps-timeline {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* Each step is a 3-col grid: left-card | spine(80px) | right-card */
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 40px;
  position: relative;
}

/* Left step: card in col 1, icon in col 2, empty col 3 */
.timeline-step--left .timeline-card       { grid-column: 1; }
.timeline-step--left .timeline-connector  { grid-column: 2; }
.timeline-step--left .timeline-empty      { grid-column: 3; }

/* Right step: empty col 1, icon in col 2, card in col 3 */
.timeline-step--right .timeline-empty     { grid-column: 1; }
.timeline-step--right .timeline-connector { grid-column: 2; }
.timeline-step--right .timeline-card      { grid-column: 3; }

/* Connector: stretches full row height so the spine line spans continuously */
.timeline-connector {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

/*
 * Dashed spine drawn per-connector.
 * Icon center = padding-top(8px) + half-icon(26px) = 34px from connector top.
 * Each connector extends 40px below (= margin-bottom) to bridge the gap to the next row.
 * First step: spine starts at icon center (top: 34px).
 * Last step:  spine stops at icon center (height: 34px).
 */
.timeline-connector::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: calc(100% + 40px);
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #ccc 0, #ccc 6px,
    transparent 6px, transparent 13px
  );
  z-index: -1;
}
.timeline-step:first-child .timeline-connector::before {
  top: 34px;
  height: calc(100% + 6px); /* from icon center to bottom of row, bridge gap */
}
.timeline-step:last-child .timeline-connector::before {
  top: 0;
  height: 34px; /* stop exactly at icon center */
}

/* All icons same grey — no accent on last step */
.timeline-icon {
  width: 52px;
  height: 52px;
  background: #666;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-empty { /* intentionally empty */ }

/* Card — teal border matching header */
.timeline-card {
  border: 2px solid var(--color-teal);
  position: relative; /* needed for ::after arrow */
  overflow: visible;
}

/* Arrow chevron pointing from card toward center icon */
.timeline-card::after {
  content: '';
  position: absolute;
  top: 14px; /* vertically centers in the header bar */
  width: 0;
  height: 0;
}
.timeline-step--left .timeline-card::after {
  right: -13px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 13px solid var(--color-teal);
}
.timeline-step--right .timeline-card::after {
  left: -13px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 13px solid var(--color-teal);
}

.timeline-card-header {
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 13px 20px;
}

.timeline-card-body {
  padding: 20px 24px;
  background: var(--color-white);
}
.timeline-card-body p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.65;
  margin-bottom: 12px;
}
.timeline-card-body p:last-of-type { margin-bottom: 0; }
.timeline-card-body a:not(.btn-timeline) {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: underline;
}

.btn-timeline {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-timeline:hover { background: var(--color-deep-teal); color: var(--color-white); }

.register-details {
  background: #E9E6DF;
  padding: 80px 24px;
}
.register-details-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.register-details-inner > div {
  background: #fff;
  padding: 40px 36px;
  text-align: center;
}
.register-details h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1C1B1A;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-teal);
}
.register-details p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}
.register-details p strong { color: #1C1B1A; }
.register-details p:last-child { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-light-gray);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 40px 20px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--color-teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--color-gray);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ===== DOWNLOADS ===== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.download-card {
  background: var(--color-white);
  border: 2px solid var(--color-teal);
  border-radius: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.download-card h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.download-card p {
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 20px;
  flex: 1;
}
.download-card .btn { font-size: 14px; padding: 10px 20px; margin-top: auto; align-self: flex-start; }

/* ===== REGISTER PAGE DATES SECTION ===== */
.register-dates-heading {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 3px;
}
.mountain-divider--cta .line {
  background: var(--color-teal);
  opacity: 0.7;
}
.cta-section .mountain-divider--cta {
  margin: 24px auto;
}
.cta-section .cta-body {
  font-size: 22px;
  margin-bottom: 0;
}
/* Gap before button only — register page CTA has no button so this avoids over-spacing */
.cta-section .btn-reg-pack {
  margin-top: 36px;
}
.cta-section .cta-phone {
  margin-top: 12px;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
}

/* ===== SCHEDULE ===== */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid var(--color-light-gray);
}
.schedule-tab {
  padding: 14px 32px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.schedule-tab.active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}
.schedule-day { display: none; }
.schedule-day.active { display: block; }

.schedule-table {
  width: 100%;
  max-width: 640px;
  margin: 32px auto 0;
  border-collapse: collapse;
}
.schedule-table tr { border-bottom: 1px solid var(--color-light-gray); }
.schedule-table tr:last-child { border-bottom: none; }
.schedule-table td {
  padding: 14px 12px;
  font-size: 16px;
  vertical-align: top;
}
.schedule-table td:first-child {
  font-weight: 700;
  color: var(--color-teal);
  white-space: nowrap;
  width: 140px;
  font-size: 15px;
}
.schedule-day-header {
  font-family: var(--font-heading);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--color-navy);
  text-align: center;
  padding: 32px 0 8px;
  letter-spacing: 0.05em;
}
.schedule-date {
  text-align: center;
  color: var(--color-gray);
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
}
.contact-info h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 24px;
}
.contact-info-block {
  margin-bottom: 24px;
}
.contact-info-block h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: 6px;
}
.contact-info-block p { font-size: 15px; margin: 0; color: var(--color-gray); }

.contact-form-wrap h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-dark);
  transition: border-color 0.2s;
  background: var(--color-white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== INFO REQUEST SECTION (Register page form — not CTA) ===== */
.info-request-section {
  background: #0B0B0D;
  color: #E9E6DF;
  padding: 100px 24px;
  text-align: center;
}
.info-request-section .cta-heading,
.info-request-title {
  font-size: clamp(28px, 4vw, 44px);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.info-request-heading {
  display: block;
  font-size: 0.5em;
  line-height: 2;
  color: #E9E6DF;
}
.info-request-desc {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.6;
  color: #E9E6DF;
}
.info-request-sub {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: 40px;
}

/* ===== INFO REQUEST CARD + FORM ===== */
.info-request-card {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px 52px;
  text-align: left;
}
.info-request-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
}
.info-request-form {
  text-align: left;
}
/* Override global 2-col .form-row grid for single-field rows in this form */
.info-request-form .form-row:not(.form-row-2):not(.form-checkboxes) {
  display: block;
}
.info-request-form .form-group label:not(.checkbox-label),
.info-request-form .form-label-block {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #444;
  margin-bottom: 6px;
}
.form-label-note {
  font-weight: 400;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #777;
}
.info-request-form .req { color: var(--color-brick); }
.info-request-form input[type="text"],
.info-request-form input[type="email"],
.info-request-form input[type="tel"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #CCC;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: #222;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.info-request-form input:focus {
  outline: none;
  border-color: #19B39B;
  box-shadow: 0 0 0 3px rgba(25, 179, 155, 0.15);
}
.info-request-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
/* Grid items don't collapse margins like block — reset inner margin to avoid double spacing */
.info-request-form .form-row-2 .form-group {
  margin-bottom: 0;
}
.info-request-form .form-row {
  margin-bottom: 20px;
}
.info-request-form .form-checkboxes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 4px;
}
.checkbox-label {
  display: block;
  color: #333;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  line-height: 1.5;
}
/* Override global .form-group label uppercase — needs higher specificity */
.form-group .checkbox-label {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  margin-bottom: 0;
}
.checkbox-label input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -3px;
  width: 16px;
  height: 16px;
  accent-color: #19B39B;
  cursor: pointer;
}
.form-submit { text-align: center; margin-top: 8px; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-elevated);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  max-width: 640px;
  margin: 0 auto;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-success p {
  font-size: 18px;
  color: var(--color-bone);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}



/* ===== ABOUT PAGE ===== */
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 56px;
  align-items: start;
}
.about-sidebar-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-teal);
  margin-bottom: 20px;
}
.about-sidebar-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== LOCATION PAGE ===== */
.location-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0;
}
.location-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-list {
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--color-off-white);
  border-left: 4px solid var(--color-teal);
  padding: 28px 32px;
  margin-bottom: 28px;
  border-radius: 0 6px 6px 0;
}
.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px;
}
.blog-card {
  border: 1px solid var(--color-light-gray);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 6px;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-excerpt { font-size: 15px; color: var(--color-gray); }
.blog-card-date { font-size: 13px; color: var(--color-gray); margin-top: 12px; }

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  font-size: 18px;
  line-height: 1.8;
}
.blog-post-meta {
  font-size: 13px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-light-gray);
}

/* ===== SEO PAGES (TN/NC landing) ===== */
.seo-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}
.location-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 40px 0;
}
.location-photo-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 4px;
}
.location-photo-grid .featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/6;
}

/* ===== CRAIG PAGE ===== */
.craig-page-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.craig-page-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--color-teal);
  margin: 0 auto 32px;
}
.craig-page-photo img { width: 100%; height: 100%; object-fit: cover; }
.podcast-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.podcast-links .btn { font-size: 15px; padding: 12px 24px; }

/* ===== PRIVACY ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.privacy-content h2 {
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 32px 0 12px;
  letter-spacing: 0.05em;
}
.privacy-content p, .privacy-content ul {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.8;
}
.privacy-content ul { padding-left: 24px; margin-bottom: 16px; }


/* Nav close button — mobile only */
.nav-close-item { display: none; }
.nav-close-btn { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  /* NAV */
  /* Full-screen centered mobile menu */
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 13, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 80px;
    z-index: 1999;
    gap: 0;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    overflow-y: auto;
  }
  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; flex-direction: row; align-items: center; }
  .nav-logo img { height: 88px !important; }
  .nav-menu a {
    padding: 18px 0;
    display: block;
    color: #E9E6DF !important;
    font-size: 22px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    border: none !important;
    width: 100%;
    transition: color 0.2s;
  }
  .nav-menu a:hover { color: #E8A623 !important; }
  .nav-menu .btn-register {
    margin: 32px auto 0;
    padding: 14px 40px;
    text-align: center;
    background-image: linear-gradient(to right, #C0392B, #F37B1F, #E8A623);
    background-size: 200% auto;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 3px;
    width: auto;
    display: inline-block;
    align-self: center;
    transition: background-position ease-in-out 0.2s;
    font-size: 16px;
    letter-spacing: 0.12em;
  }
  .nav-menu .btn-register:hover { background-position: right center !important; color: var(--color-white) !important; }
  .nav-close-item { display: block; list-style: none; text-align: center; }
  .nav-close-btn { display: flex; }

  /* Close button inside nav menu */
  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
    background: none;
    border: none;
    color: var(--color-mute);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
  }
  .nav-close-btn:hover { color: var(--color-bone); }
  .nav-close-btn .close-x {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: relative;
  }
  .nav-close-btn .close-x::before,
  .nav-close-btn .close-x::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }
  .nav-close-btn .close-x::before { transform: rotate(45deg); }
  .nav-close-btn .close-x::after { transform: rotate(-45deg); }

  /* HERO */
  .hero-content { padding: 50px 20px 20px; }
  .hero h2 { font-size: 40px; line-height: 1.15; letter-spacing: 1px; }
  .hero-eyebrow { font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero-date .date-line1 { font-size: 18px; }
  .hero-date .date-line2 { font-size: 15px; }
  .mountain-divider .line { width: 60px; }
  .mountain-divider img { width: 60px; }

  /* VIDEO SECTION — video first on mobile */
  .video-section { padding: 48px 20px; }
  .video-section-inner { grid-template-columns: 1fr; gap: 28px; }
  .video-section-text { order: 2; }
  .video-wrap { order: 1; }
  .video-section-heading { font-size: 24px; }
  .video-section p { font-size: 17px; }

  /* REGISTRATION INCLUDES — single col, circle left + text right */
  .includes-section { padding: 48px 20px; }
  .includes-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 480px;
  }
  .include-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 12px 0;
    border-bottom: none;
  }
  .include-photo {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    margin: 0;
  }
  .include-label { text-align: left; font-size: 14px; margin: 0; max-width: none; flex: 1; }

  /* PRICING BLOCK — stack vertically on mobile */
  .pricing-block { flex-direction: column; gap: 4px; margin: 20px auto 32px; }
  .pricing-label-top { font-size: 22px; }
  .pricing-amount { font-size: 52px; }
  .pricing-label-bottom { font-size: 22px; }

  /* CRAIG SECTION — tighten on mobile */
  .craig-section { padding: 48px 20px; }
  .craig-title { font-size: 24px; }
  .craig-photo { width: 130px; height: 130px; margin: 4px 0 16px 20px; }
  .craig-body { font-size: 16px; }
  .craig-reason-title { font-size: 16px; }
  .craig-reason p { font-size: 16px; }
  .location-circle { width: 110px; height: 110px; }

  /* LOCATION */
  .location-section { padding: 60px 20px; }
  .location-circle { width: 160px; height: 160px; margin: 0 auto 20px; }
  .location-heading { font-size: 28px; }
  .location-body { font-size: 16px; }

  /* TESTIMONIALS */
  .testimonial-strip { padding: 60px 20px; }
  .testimonial-quote p { font-size: 17px; line-height: 1.6; }
  .testimonial-quote cite { font-size: 16px; }
  .info-request-card { padding: 36px 24px; }
  .info-request-form .form-row-2 { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 70px 20px; }
  .cta-heading { font-size: 28px; }
  .cta-body { font-size: 17px; }

  /* PHOTO STRIP — 5 cols × 2 rows on mobile */
  .photo-strip { overflow: hidden; }
  .photo-strip-inner { grid-template-columns: repeat(5, 1fr); min-width: 0; grid-template-rows: repeat(2, 80px); }
  .photo-strip-inner img { height: 80px; }

  /* FOOTER */
  .footer-nav { flex-wrap: wrap; gap: 8px 16px; justify-content: center; }
  .footer-nav a { font-size: 13px; }

  /* DOWNLOADS */
  .downloads-grid { grid-template-columns: 1fr; }

  /* OTHER INNER PAGES */
  .register-details-inner { grid-template-columns: 1fr; gap: 20px; }
  .register-details-inner > div { padding: 32px 24px; }

  /* Timeline: collapse to icon-left / card-right on mobile */
  .timeline-step {
    grid-template-columns: 52px 1fr;
    gap: 0 12px;
    margin-bottom: 24px;
  }
  .timeline-step--left .timeline-card,
  .timeline-step--right .timeline-card   { grid-column: 2; grid-row: 1; }
  .timeline-step--left .timeline-connector,
  .timeline-step--right .timeline-connector { grid-column: 1; grid-row: 1; }
  .timeline-step--left .timeline-empty,
  .timeline-step--right .timeline-empty  { display: none; }
  /* Spine on mobile: connector is 52px wide, icon is 52px, center at 26px */
  .timeline-connector::before { left: 26px; transform: none; }
  .timeline-step:first-child .timeline-connector::before { top: 34px; height: calc(100% + 6px); }
  .timeline-step:last-child .timeline-connector::before  { top: 0; height: 34px; }
  /* Arrows on mobile: all cards are to the right, so all arrows point left */
  .timeline-step--left .timeline-card::after,
  .timeline-step--right .timeline-card::after {
    display: block;
    left: -11px;
    right: auto;
    top: 14px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 11px solid var(--color-teal);
    border-left: none;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar-photo { margin: 0 auto 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Tighten hero further on small phones */
  .hero h2 { font-size: 34px; letter-spacing: 0; }
  .hero-eyebrow { font-size: 12px; letter-spacing: 2px; }
  .video-section-heading { font-size: 22px; }
  .timeline-card-header { font-size: 16px; padding: 11px 16px; }
  .timeline-card-body { padding: 14px 16px; }
  .featuring-speakers { gap: 16px; }
  .speaker-card img { width: 260px; height: 282px; }
  .cta-heading { font-size: 24px; }
}
