/* ============================================================
   Youth Tech China Trek — light "teen camp × tech" theme (v1)
   Used by index.html only; form pages still use style.css.
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --paper:   #fdfcf8;
  --paper2:  #f6f4ec;
  --ink:     #17251c;
  --ink-soft:#4b5c52;
  --green:   #16a34a;
  --green-dk:#15803d;
  --green-bg:#e8f7ee;
  --amber:   #f59e0b;
  --amber-bg:#fef3d8;
  --sky:     #0891b2;
  --sky-bg:  #e0f4fa;
  --coral:   #ef4444;
  --coral-bg:#fde8e8;
  --card:    #ffffff;
  --line:    #e7e3d8;
  --shadow:  0 10px 30px rgba(23,37,28,0.08);
  --shadow-lg: 0 18px 50px rgba(23,37,28,0.13);
  --radius:  16px;
  --radius-lg: 24px;
  --max-w: 1160px;
  --transition: 0.25s ease;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .display { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: var(--green-dk); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-alt { background: var(--paper2); }

/* Marker highlight */
.hl {
  background: linear-gradient(transparent 58%, rgba(245,158,11,0.45) 58%, rgba(245,158,11,0.45) 92%, transparent 92%);
  padding: 0 2px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer; text-decoration: none;
  transition: all var(--transition); border: 2px solid transparent;
}
.btn-primary { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(22,163,74,0.35); }
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); transform: translateY(-2px); }
.btn-outline { background: #fff; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-amber { background: var(--amber); border-color: var(--amber); color: #221703; box-shadow: 0 6px 18px rgba(245,158,11,0.35); }
.btn-amber:hover { background: #d97706; border-color: #d97706; transform: translateY(-2px); }
.full-width { width: 100%; }

/* Sticker badges */
.sticker {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.sticker-green { background: var(--green-bg); color: var(--green-dk); }
.sticker-amber { background: var(--amber-bg); color: #b45309; }
.sticker-sky   { background: var(--sky-bg); color: var(--sky); }
.sticker-coral { background: var(--coral-bg); color: #b91c1c; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,252,248,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--green); color: #fff !important; padding: 10px 20px;
  border-radius: 999px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--green-dk); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* ---------- HERO ---------- */
.hero { padding: 150px 0 60px; position: relative; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0;
}
.hb1 { width: 480px; height: 480px; background: #d3f0de; top: -140px; right: -120px; }
.hb2 { width: 380px; height: 380px; background: #fdeccc; bottom: -160px; left: -120px; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-title { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.13rem; color: var(--ink-soft); max-width: 560px; margin-bottom: 26px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hp-chip {
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-soft);
  font-size: 0.85rem; font-weight: 600; padding: 7px 15px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(23,37,28,0.05);
}
.hp-chip strong { color: #b45309; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }

/* Polaroid collage */
.hero-collage { position: relative; min-height: 460px; }
.polaroid {
  position: absolute; background: #fff; padding: 10px 10px 34px;
  border-radius: 10px; box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; aspect-ratio: 4/5; }
.polaroid .pcap {
  position: absolute; bottom: 8px; left: 0; right: 0; text-align: center;
  font-size: 0.78rem; font-weight: 600; color: var(--ink-soft);
  font-family: 'Space Grotesk', sans-serif;
}
.polaroid:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 5; }
.pl1 { width: 56%; top: 0; left: 2%; transform: rotate(-4deg); z-index: 2; }
.pl2 { width: 52%; top: 12%; right: 0; transform: rotate(3.5deg); z-index: 1; }
.pl3 { width: 58%; bottom: 0; left: 12%; transform: rotate(2deg); z-index: 3; }
.hero-collage .sticker-float {
  position: absolute; z-index: 6; font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(23,37,28,0.2));
}
.sf1 { top: -14px; right: 18%; transform: rotate(12deg); }
.sf2 { bottom: 10%; right: 4%; transform: rotate(-8deg); }
/* Typographic fallback when no photos exist yet */
.hero-collage.no-photos { display: none; }
.hero-grid.no-photos { grid-template-columns: 1fr; text-align: center; }
.hero-grid.no-photos .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-grid.no-photos .hero-badges,
.hero-grid.no-photos .hero-proof,
.hero-grid.no-photos .hero-actions { justify-content: center; }

/* ---------- TICKER ---------- */
.ticker {
  display: block; text-decoration: none;
  background: var(--amber-bg); color: #92510a;
  border-bottom: 1px solid #f2d9a4;
  overflow: hidden; padding: 12px 0; margin-top: 73px;
}
.ticker:hover { background: #fdeec4; color: #7c4408; }
.ticker-track {
  display: flex; gap: 44px; white-space: nowrap; width: max-content;
  animation: tickerScroll 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 44px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- PROOF BANNER ---------- */
.proof-banner { padding: 56px 0; }
.proof-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 34px 38px;
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
}
.proof-stats { display: flex; gap: 30px; align-items: center; }
.proof-stat { text-align: center; }
.proof-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--green-dk); line-height: 1; }
.proof-label { font-size: 0.78rem; color: var(--ink-soft); font-weight: 600; margin-top: 4px; }
.proof-quote-wrap { border-left: 3px solid var(--amber); padding-left: 22px; min-height: 74px; position: relative; }
.cb-quote { display: none; font-size: 1rem; color: var(--ink-soft); font-style: italic; }
.cb-quote.active { display: block; }
.cb-quote-attr { display: block; margin-top: 6px; font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--ink); }
.proof-soldout { margin-bottom: 10px; }

/* ---------- SECTION HEADERS ---------- */
.sec-tag { display: block; text-align: center; margin-bottom: 14px; }
.sec-title { text-align: center; font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 14px; }
.sec-sub { text-align: center; color: var(--ink-soft); max-width: 640px; margin: 0 auto 46px; font-size: 1.05rem; }
.left .sec-tag, .left .sec-title, .left .sec-sub { text-align: left; margin-left: 0; }

/* ---------- CAMERA ROLL ---------- */
.camroll { padding: 70px 0; }
.camroll-scroll {
  display: flex; gap: 18px; overflow-x: auto; padding: 16px 24px 26px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.camroll-scroll::-webkit-scrollbar { height: 8px; }
.camroll-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.cam-item {
  flex: 0 0 auto; width: 250px; scroll-snap-align: center;
  background: #fff; border-radius: 14px; padding: 8px 8px 12px;
  box-shadow: var(--shadow); transform: rotate(var(--tilt, 0deg));
  transition: transform var(--transition);
}
.cam-item:hover { transform: rotate(0deg) scale(1.03); }
.cam-item img { border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.cam-cap { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); padding: 8px 6px 0; font-family: 'Space Grotesk', sans-serif; }

/* ---------- REELS / VIDEO ---------- */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.reel-card {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 9/16;
  box-shadow: var(--shadow-lg); text-decoration: none; display: block;
  background: linear-gradient(160deg, #14532d, #16a34a 55%, #86efac);
  transition: transform var(--transition);
}
.reel-card:nth-child(2) { background: linear-gradient(160deg, #7c2d12, #f59e0b 55%, #fde68a); }
.reel-card:nth-child(3) { background: linear-gradient(160deg, #164e63, #0891b2 55%, #a5f3fc); }
.reel-card:hover { transform: translateY(-6px); }
.reel-card video, .reel-card img.reel-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: space-between; padding: 18px; color: #fff; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), transparent 30%, transparent 60%, rgba(0,0,0,0.55));
}
.reel-top { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.85rem; }
.reel-play {
  align-self: center; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  border: 2px solid rgba(255,255,255,0.7);
}
.reel-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.reels-follow { text-align: center; margin-top: 34px; }

/* ---------- WHY ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.08rem; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; }
.why-intro { max-width: 760px; margin: 0 auto 44px; text-align: center; color: var(--ink-soft); font-size: 1.1rem; }
.why-intro p + p { margin-top: 14px; }

/* ---------- MOMENTS ---------- */
.moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.moment-card {
  background: #fff; border-radius: var(--radius); padding: 20px 22px;
  border: 1.5px solid var(--line); box-shadow: var(--shadow);
  display: flex; gap: 14px; align-items: flex-start;
  transform: rotate(var(--tilt, 0deg));
  transition: transform var(--transition);
}
.moment-card:hover { transform: rotate(0) translateY(-3px); }
.moment-icon { font-size: 1.7rem; flex-shrink: 0; }
.moment-text { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.moments-note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 24px; }

/* ---------- ITINERARY ---------- */
.itin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.itin-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 26px 24px;
  border: 1.5px solid var(--line); box-shadow: var(--shadow); position: relative;
}
.itin-day {
  display: inline-block; background: var(--ink); color: #fdfcf8;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.8rem;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.itin-theme { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.itin-desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 14px; }
.itin-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.itin-tags span { background: var(--green-bg); color: var(--green-dk); font-size: 0.73rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.itin-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 36px auto 0; }
.itin-extra { display: flex; gap: 16px; background: var(--paper2); border-radius: var(--radius); padding: 20px 22px; }
.itin-extra-icon { font-size: 1.7rem; }
.itin-extra strong { font-family: 'Space Grotesk', sans-serif; }
.itin-extra p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 4px; }
.itin-note { text-align: center; color: var(--ink-soft); font-size: 0.82rem; margin-top: 28px; }

/* ---------- LEADS ---------- */
.leads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; }
.lead-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px; display: flex; gap: 22px; align-items: flex-start;
}
.lead-avatar { flex-shrink: 0; }
.lead-avatar img { width: 92px; height: 92px; max-width: none; border-radius: 50%; object-fit: cover; border: 3px solid var(--green-bg); }
.lead-info h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 8px; }
.lead-linkedin { color: var(--sky); display: inline-flex; }
.lead-title { color: var(--green-dk); font-weight: 700; font-size: 0.9rem; margin: 2px 0; }
.lead-location { color: var(--ink-soft); font-size: 0.82rem; margin-bottom: 10px; }
.lead-info p { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 28px 26px; position: relative;
}
.testi-deco { font-family: Georgia, serif; font-size: 3rem; line-height: 0.5; color: var(--amber); margin-bottom: 18px; }
.testi-highlight { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 12px; }
.testi-quote { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green-bg); color: var(--green-dk);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
}
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-role, .testi-loc { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- COHORTS ---------- */
.cohort-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cohort-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 26px 22px; display: flex; flex-direction: column;
  transition: transform var(--transition);
}
.cohort-card:hover { transform: translateY(-4px); }
.cohort-featured { border-color: var(--green); border-width: 2px; }
.cohort-holiday { border-color: var(--amber); border-width: 2px; background: #fffdf4; }
.cohort-card h3 { font-size: 1.5rem; margin: 12px 0 8px; }
.cohort-sub { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 16px; flex-grow: 1; }
.cohort-rows { margin-bottom: 18px; }
.cohort-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 0.87rem; }
.cohort-row span:first-child { color: var(--ink-soft); }
.cohort-row span:last-child { font-weight: 700; }
.cohort-note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 26px; }
.cohort-note a { font-weight: 700; }

/* ---------- PRICING ---------- */
.price-banner {
  display: flex; gap: 16px; align-items: flex-start; max-width: 760px; margin: 0 auto 36px;
  background: var(--amber-bg); border: 1.5px solid #f4d9a0; border-radius: var(--radius);
  padding: 20px 24px; font-size: 0.95rem;
}
.price-banner .pb-icon { font-size: 1.5rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 0 auto 20px; }
.price-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px; text-align: center;
}
.price-card.featured { border-color: var(--green); border-width: 2px; }
.price-badge { margin-bottom: 8px; }
.price-deadline { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 18px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0 22px; }
.price-row > span:first-child { color: var(--ink-soft); font-size: 0.92rem; text-align: left; }
.price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--ink); }
.currency-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 30px; }
.currency-label { font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); }
.currency-label.active { color: var(--green-dk); }
.currency-toggle {
  width: 52px; height: 28px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--line); position: relative; transition: background var(--transition);
}
.currency-toggle.active { background: var(--green); }
.currency-toggle-knob {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.25); transition: left var(--transition);
}
.currency-toggle.active .currency-toggle-knob { left: 27px; }
.pricing-currency-note { text-align: center; color: var(--ink-soft); font-size: 0.82rem; margin-bottom: 40px; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 860px; margin: 0 auto 40px; }
.inc-col { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow); }
.inc-col h4 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 14px; font-size: 1.02rem; }
.inc-col ul { list-style: none; }
.inc-col li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 0.9rem; color: var(--ink-soft); }
.inc-col li:last-child { border-bottom: none; }
.pd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 860px; margin: 0 auto; }
.pd-item { background: var(--paper2); border-radius: var(--radius); padding: 20px 22px; }
.pd-header { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
.pd-item p { color: var(--ink-soft); font-size: 0.88rem; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; }
.whatsapp-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 980px; margin: 0 auto; align-items: start; }
.faq-category { grid-column: 1 / -1; margin-top: 18px; }
.faq-cat-label { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--green-dk); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.faq-item { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.faq-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- OTHER DATES FORM ---------- */
.od-callout {
  max-width: 760px; margin: 0 auto; background: var(--card); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px 42px; text-align: center;
}
.od-title { font-size: 1.6rem; margin: 14px 0 10px; }
.od-desc { color: var(--ink-soft); margin-bottom: 28px; }
.od-form { text-align: left; }
.od-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.od-field { margin-bottom: 16px; }
.od-field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.od-hint { font-weight: 400; color: var(--ink-soft); }
.od-field input[type="text"], .od-field input[type="email"], .od-field select, .od-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
.od-field input:focus, .od-field select:focus { outline: 2px solid var(--green); border-color: var(--green); }
.od-weeks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.od-week { display: block; cursor: pointer; }
.od-week input { position: absolute; opacity: 0; }
.od-week span {
  display: block; text-align: center; padding: 10px 6px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  transition: all var(--transition);
}
.od-week input:checked + span { background: var(--green-bg); border-color: var(--green); color: var(--green-dk); }
.od-submit { margin-top: 8px; }
.od-success { padding: 30px 0 10px; }
.od-success-icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--green-bg); color: var(--green-dk); font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.od-footer { margin-top: 22px; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #d6e2da; padding: 56px 0 30px; margin-top: 40px; }
.footer a { color: #a7c3b2; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; margin-bottom: 36px; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-col-title { font-weight: 700; color: #fff; margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a { display: block; padding: 3px 0; font-size: 0.88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; font-size: 0.8rem; color: #8ba695; }

/* ---------- ANIMATIONS ---------- */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-collage { min-height: 420px; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .itin-grid { grid-template-columns: 1fr 1fr; }
  .cohort-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .leads-grid { grid-template-columns: 1fr; max-width: 560px; }
  .proof-card { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: 1fr 1fr; }
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 72px; right: 16px; left: 16px; flex-direction: column;
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .why-grid, .itin-grid, .cohort-grid, .moments-grid, .od-form-grid { grid-template-columns: 1fr; }
  .od-weeks-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid, .includes-grid, .pd-grid, .faq-grid { grid-template-columns: 1fr; }
  .itin-extras { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .proof-stats { justify-content: center; }
  .hero { padding-top: 120px; }
}

/* ---------- BIG ROTATING SHOWCASE (replaces camera-roll strip) ---------- */
.showcase-frame {
  position: relative;
  height: min(76vh, 700px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.show-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%; /* bias toward faces in portrait shots */
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 6s ease;
}
.show-slide.active { opacity: 1; transform: scale(1); }
.show-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer; z-index: 3;
  background: rgba(255,255,255,0.85); color: var(--ink);
  font-size: 1.9rem; line-height: 1; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(23,37,28,0.25);
  transition: background var(--transition), transform var(--transition);
}
.show-nav:hover { background: #ffffff; transform: translateY(-50%) scale(1.07); }
.show-prev { left: 18px; }
.show-next { right: 18px; }
.show-caption {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: rgba(253,252,248,0.92); color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.02rem;
  padding: 10px 18px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(23,37,28,0.2);
  max-width: min(70%, 460px);
}
.show-dots {
  position: absolute; right: 20px; bottom: 26px; z-index: 3;
  display: flex; gap: 8px;
}
.show-dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,0.55);
  transition: background var(--transition), transform var(--transition);
}
.show-dot.active { background: #ffffff; transform: scale(1.25); }
@media (max-width: 720px) {
  .showcase-frame { height: min(64vh, 480px); }
  .show-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .show-caption { left: 12px; bottom: 12px; font-size: 0.88rem; padding: 8px 14px; }
  .show-dots { right: 12px; bottom: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .show-slide { transition: opacity 0.2s ease; transform: none; }
}

/* ---------- BALANCED PHOTO HERO (contained media card, symmetric columns) ---------- */
.hero-photo { padding: 56px 0 64px; min-height: 0; display: block; overflow: visible; }
.hero-photo .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center;
}
.hero-photo .hero-copy { max-width: none; }
.hero-media {
  position: relative; width: 100%;
  height: clamp(500px, 66vh, 660px);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.hero-media .show-slide { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media .show-caption { left: 18px; right: auto; bottom: 18px; z-index: 3; }
.hero-media .show-dots { right: 18px; bottom: 24px; }
.hero-media .show-prev { left: 14px; }
.hero-media .show-next { right: 14px; }
.hero-photo.no-photos .container { grid-template-columns: 1fr; }
.hero-photo.no-photos .hero-copy { text-align: center; }
.hero-photo.no-photos .hero-badges,
.hero-photo.no-photos .hero-proof,
.hero-photo.no-photos .hero-actions { justify-content: center; }
@media (max-width: 980px) {
  .hero-photo { padding-top: 30px; }
  .hero-photo .container { grid-template-columns: 1fr; gap: 30px; }
  .hero-media { order: -1; height: 52vh; }
}

/* ---------- FAQ ACCORDION (native details/summary) ---------- */
details.faq-item { padding: 0; }
details.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 20px 48px 20px 24px; position: relative;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 600;
  color: var(--green-dk); transition: transform var(--transition);
}
details.faq-item[open] summary::after { content: '–'; }
details.faq-item .faq-a { padding: 0 24px 20px; }
details.faq-item .faq-a p { color: var(--ink-soft); font-size: 0.9rem; }
details.faq-item .faq-a p + p { margin-top: 8px; }

/* Hero graduation highlight (replaces the four proof chips) */
.hero-grad {
  background: var(--amber-bg);
  border: 1.5px solid #f2d9a4;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 1.04rem;
  line-height: 1.5;
  color: #5b4310;
  margin-bottom: 30px;
  max-width: 560px;
}
.hero-grad strong { color: #17251c; }
.hero-photo.no-photos .hero-grad { margin-left: auto; margin-right: auto; }

/* Hero badges: bigger + outlined for contrast on the pale background */
.hero-badges .sticker {
  font-size: 0.84rem;
  padding: 8px 16px;
  border: 1.5px solid currentColor;
  box-shadow: 0 2px 8px rgba(23,37,28,0.06);
}

/* Footer canonical facts paragraph (AI/SEO extractable summary) */
.footer-about { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0 4px; margin-top: 8px; }
.footer-about p { font-size: 0.76rem; color: #8ba695; line-height: 1.6; max-width: 900px; }

/* ---------- STATIC ANNOUNCEMENT BAR (replaces the marquee ticker) ---------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; text-align: center;
  margin-top: 73px; padding: 11px 18px;
  background: var(--green-bg); color: var(--green-dk);
  border-bottom: 1px solid #d7ecdd;
  font-weight: 600; font-size: 0.93rem; text-decoration: none;
  transition: background var(--transition);
}
.announce:hover { background: #ddf2e5; }
.announce strong { font-weight: 800; }
.announce-badge {
  background: var(--green); color: #fff;
  border-radius: 999px; padding: 2px 11px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 720px) { .announce { font-size: 0.82rem; padding: 10px 14px; } }

/* Other-dates form: native date pickers */
.od-field input[type="date"] {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
.od-field input[type="date"]:focus { outline: 2px solid var(--green); border-color: var(--green); }
.od-datehint { font-size: 0.82rem; color: var(--ink-soft); margin: -6px 0 16px; text-align: left; }

/* Repeatable travel-window rows */
.od-range {
  display: grid; grid-template-columns: 1fr auto 1fr 34px;
  gap: 8px; align-items: center; margin-bottom: 10px;
}
.od-range input[type="date"] {
  width: 100%; padding: 11px 12px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.92rem; background: #fff; color: var(--ink);
}
.od-range input[type="date"]:focus { outline: 2px solid var(--green); border-color: var(--green); }
.od-range-to { color: var(--ink-soft); font-size: 0.85rem; }
.od-remove {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-soft); cursor: pointer; font-size: 0.8rem;
}
.od-remove:hover { border-color: var(--coral); color: var(--coral); }
.od-add-range {
  background: none; border: none; color: var(--green-dk); font-weight: 700;
  font-size: 0.88rem; cursor: pointer; padding: 4px 0; margin-bottom: 6px; font-family: inherit;
}
.od-add-range:hover { color: var(--ink); }
@media (max-width: 720px) { .od-range { grid-template-columns: 1fr auto 1fr 30px; } }
