/* ============================================================
   The Cruising Life Intensive — PUBLIC ($97) page
   Brand: navy #03172F / ocean #0063a3 / CTA yellow #F3C125, Montserrat.
   Tone: course-style sell, forward/additive, no em dashes.
   ============================================================ */

:root {
  --navy:    #03172F;
  --ocean:   #0063a3;
  --ocean-dk:#004e82;
  --deep:    #445c90;
  --mid:     #6598C8;
  --pale:    #c2d1e9;
  --cta:     #F3C125;
  --cta-dk:  #d9a90f;
  --ink:     #16293d;
  --muted:   #51606f;
  --tint:    #eef3f9;
  --line:    #e1e8ef;
  --white:   #ffffff;
  --radius:  14px;
  --shadow:  0 18px 44px rgba(3, 23, 47, .14);
  --maxw:    1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; color: var(--navy); }
h1, h2 { font-family: "Anton", "Montserrat", sans-serif; font-weight: 400; text-transform: uppercase; }
h1 { font-size: clamp(2.15rem, 4.4vw, 3.2rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); letter-spacing: .015em; }
h3 { font-family: "Montserrat", sans-serif; font-size: 1.12rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--ocean); text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.tint { background: var(--tint); }
.section { padding: clamp(46px, 6vw, 84px) 0; }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.lead.wide-lead { max-width: 900px; }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--cta);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.02rem;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(3, 23, 47, .18);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--cta-dk); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(3, 23, 47, .28); }
.btn-lg { font-size: 1.1rem; padding: 18px 40px; }
.btn-outline { background: transparent; color: var(--ocean); border: 2px solid var(--ocean); box-shadow: none; }
.btn-outline:hover { background: var(--ocean); color: #fff; box-shadow: 0 10px 24px rgba(3, 23, 47, .18); }
@media (max-width: 480px){
  .btn { font-size: .9rem; padding: 13px 26px; }
  .btn-lg { font-size: .96rem; padding: 14px 30px; }
}

.microcopy { font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.cta-micro { color: #e7f0f8; }

.kicker {
  font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: .88rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ocean); margin: 0 0 .8rem;
}
.hero .kicker { color: var(--cta); }

/* ---------- Header (sticky, light) ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 var(--line), 0 6px 18px rgba(3,23,47,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; }
.brand img { height: 40px; width: auto; }
.site-nav { display: flex; gap: 36px; }
.site-nav a { color: var(--navy); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .02em; }
.site-nav a:hover { color: var(--ocean); }
.header-inner .btn { padding: 10px 22px; font-size: .82rem; box-shadow: none; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; }

@media (max-width: 780px){
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav {
    flex-direction: column; gap: 2px; max-height: 0; overflow: hidden;
    background: #fff; border-top: 1px solid var(--line);
    transition: max-height .25s ease;
  }
  .mobile-nav.is-open { display: flex; max-height: 400px; }
  .mobile-nav a { padding: 11px 24px; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: .8rem; border-bottom: 1px solid var(--line); }
  .mobile-nav .btn { margin: 12px 24px; padding: 12px 24px; font-size: .82rem; text-align: center; box-shadow: none; }
}
@media (max-width: 480px){ .header-inner .btn { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(90deg, rgba(3,23,47,.70) 0%, rgba(3,23,47,.50) 100%), url('assets/images/hero.webp');
  background-size: cover; background-position: center 70%;
  color: #fff;
  padding: clamp(52px, 6vw, 92px) 0 clamp(64px, 8vw, 92px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.hero-grid > * { min-width: 0; }
.hero-logo { width: 176px; height: auto; display: block; margin: 0 0 22px; }
.hero-copy h1 { color: #fff; }
.hero-copy .sub { font-size: 1.22rem; font-weight: 600; color: #eaf4fc; margin: 0 0 1.3rem; }
@media (max-width: 480px){
  .hero-logo { width: 115px; }
  .hero-copy .sub { font-size: 1rem; }
  .lead { font-size: 1rem; }
}

/* Date/time pill — yellow, split into two clear segments with a divider */
.hero-dates { display: inline-flex; align-items: center; gap: 14px; background: var(--cta); border: none; border-radius: 999px; padding: 12px 26px; margin: 0 0 1.4rem; }
.hero-dates .hd-date, .hero-dates .hd-time { font-weight: 800; font-size: 1rem; letter-spacing: .01em; color: var(--navy); white-space: nowrap; }
.hero-dates .hd-divider { width: 1px; height: 18px; background: rgba(3,23,47,.3); flex: 0 0 auto; }
@media (max-width: 480px){
  .hero-dates { flex-wrap: wrap; gap: 8px; padding: 12px 20px; }
  .hero-dates .hd-divider { display: none; }
}

/* Countdown — now lives inside the final CTA band, sized to match that section's weight. */
.cta-band .kicker { color: var(--cta); }
.countdown-heading { color: #fff; margin-bottom: 20px; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 90px)); justify-content: center; gap: 14px; max-width: 420px; margin: 0 auto 28px; }
.countdown-grid div { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 10px; padding: 12px 8px; text-align: center; min-width: 0; }
.countdown-grid span { display: block; font-size: 1.8rem; font-weight: 900; color: #fff; }
.countdown-grid em { display: block; font-style: normal; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #cfe3f2; margin-top: 2px; }
.final-cta-lead { margin-top: 36px; }
@media (max-width: 480px){
  .countdown-grid { gap: 8px; max-width: 100%; }
  .countdown-grid div { padding: 8px 4px; border-radius: 8px; }
  .countdown-grid span { font-size: 1.35rem; }
  .countdown-grid em { font-size: .58rem; letter-spacing: .03em; }
}

/* ---------- Why the Intensive (text left, value grid right) ---------- */
.why-grid { display: grid; grid-template-columns: 35fr 65fr; gap: 56px; align-items: center; text-align: left; }
.why-copy .lead { max-width: none; }
@media (max-width: 900px){ .why-grid { grid-template-columns: 1fr; gap: 32px; } }

.value-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left; }
.value-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 6px rgba(3,23,47,.05);
}
.value-grid li strong { display: block; font-family: "Anton", "Montserrat", sans-serif; font-weight: 400; font-size: 1.2rem; color: var(--ocean); margin: 0 0 8px; letter-spacing: .01em; text-transform: uppercase; }
.value-grid li span { display: block; font-size: .94rem; font-weight: 500; color: var(--muted); line-height: 1.5; }
@media (max-width: 560px){ .value-grid { grid-template-columns: 1fr; } }

/* ---------- About Us (photo collage + copy) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; text-align: left; }
.about-copy .lead { max-width: none; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 1.6rem; }
.metrics-grid > div { display: flex; flex-direction: column; }
.metric-num { font-size: 2.6rem; font-weight: 900; color: var(--ocean); line-height: 1.1; }
.metric-label { font-size: .82rem; font-weight: 600; color: var(--muted); margin-top: 4px; }
@media (max-width: 640px){ .metrics-grid { grid-template-columns: 1fr; gap: 18px; } }
.who-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 12px;
  aspect-ratio: 1 / 1;
}
.who-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; box-shadow: 0 10px 24px rgba(3,23,47,.16); }
.who-collage .c1 { grid-column: 1 / 5; grid-row: 1 / 4; }
.who-collage .c2 { grid-column: 5 / 7; grid-row: 1 / 4; }
.who-collage .c3 { grid-column: 1 / 3; grid-row: 4 / 7; }
.who-collage .c4 { grid-column: 3 / 7; grid-row: 4 / 7; }
.hosted-photo-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 24px rgba(3,23,47,.16); aspect-ratio: 4 / 3; }
.hosted-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hosted-cta { margin-top: 1.6rem; }
@media (max-width: 900px){
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-copy { order: 1; }
  .who-collage { order: 2; }
}

/* ---------- Register card + form embed ---------- */
.reg-card { background: rgba(255,255,255,.92); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 18px 10px; color: var(--ink); }
.reg-card .reg-head { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 0 0 14px; text-align: center; }
.reg-heading { display: block; color: var(--ocean); font-family: "Anton", "Montserrat", sans-serif; font-size: 1.9rem; font-weight: 400; letter-spacing: .005em; text-transform: uppercase; }
.reg-sub { display: block; color: var(--muted); font-size: .92rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
.form-embed { min-height: 320px; }
.form-embed iframe { width: 100%; border: none; border-radius: 8px; }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Agenda tabs ---------- */
.agenda-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.agenda-tab { background: #fff; border: 1px solid var(--line); color: var(--navy); font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .88rem; padding: 12px 22px; border-radius: 999px; cursor: pointer; transition: background .15s, color .15s; }
.agenda-tab.is-active { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.agenda-tab .tab-short { display: none; }

@media (max-width: 560px){
  .agenda-tabs { flex-wrap: nowrap; gap: 8px; width: 100%; }
  .agenda-tab { flex: 1 1 0; padding: 12px 6px; font-size: .82rem; text-align: center; white-space: nowrap; }
  .agenda-tab .tab-full { display: none; }
  .agenda-tab .tab-short { display: inline; }
}
.agenda-panel { display: none; max-width: 820px; margin: 0 auto; }
.agenda-panel.is-active { display: block; }
.agenda-theme { text-align: center; font-weight: 800; color: var(--ocean); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; margin-bottom: 10px; }
.agenda-blurb { text-align: center; max-width: 640px; margin: 0 auto 26px; color: var(--muted); font-size: .98rem; }
.agenda-blurb strong { color: var(--navy); }
.agenda-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.agenda-list li { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.agenda-list .time { flex: 0 0 auto; font-weight: 900; color: var(--ocean); font-size: 1.05rem; min-width: 52px; }
.agenda-list strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.agenda-list p { margin: 0; color: var(--muted); font-size: .94rem; }
@media (max-width: 560px){ .agenda-list li { flex-direction: column; gap: 6px; } }

/* ---------- Speakers (dark, image-backed, distinct from the light/tint sections) ---------- */
.speakers-dark {
  position: relative;
  background: linear-gradient(160deg, rgba(0,78,130,.93) 0%, rgba(3,23,47,.96) 100%), url('assets/images/cta.webp');
  background-size: cover; background-position: center;
  color: #fff;
}
.speakers-dark .kicker { color: var(--cta); }
.speakers-dark h2 { color: #fff; }
.speakers-dark .lead { color: #dcebf6; }
.speaker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.speaker { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 18px 16px 20px; text-align: center; backdrop-filter: blur(2px); }
.speaker-photo {
  width: 104px; height: 104px; margin: 0 auto 14px;
  border-radius: 50%; border: 2px dashed rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  overflow: hidden;
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.speaker-photo.photo-chrisb img { object-position: center 45%; }
.speaker-photo.photo-keith img { object-position: center 40%; }
@media (max-width: 480px) {
  .speaker-photo.photo-chrisb img { object-position: center 30%; }
  .speaker-photo.photo-keith img { object-position: center 60%; }
}
.speaker:not(.tbd) .speaker-photo:has(img) { border-style: solid; border-color: rgba(255,255,255,.3); }
.speaker strong { display: block; color: #fff; font-size: .98rem; margin-bottom: 4px; }
.speaker .role { display: block; color: #cfe0ee; font-size: .82rem; line-height: 1.5; }
.more-speakers-line { text-align: center; font-weight: 700; color: var(--ocean); margin-top: 28px; }
.speaker.tbd .speaker-photo { border-style: dashed; }
.speaker.tbd .role em { font-style: italic; color: var(--cta); }
@media (max-width: 900px){ .speaker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .speaker-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; } }

/* ---------- Testimonials ---------- */
.testimonials-bg {
  position: relative;
  background: linear-gradient(160deg, rgba(0,78,130,.90) 0%, rgba(3,23,47,.94) 100%), url('assets/images/testimonials-bg.webp');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: #fff;
}
.testimonials-bg .kicker { color: var(--cta); }
.testimonials-bg h2 { color: #fff; }
.testimonials-bg .lead { color: #dcebf6; }
@media (max-width: 900px){ .testimonials-bg { background-attachment: scroll; } }

.testimonial-videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 44px; }
.video-card { display: block; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: #fff; text-decoration: none; transition: transform .15s ease; }
.video-card:hover { transform: translateY(-3px); }
.video-thumb {
  display: block; position: relative; aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, rgba(0,78,130,.93) 0%, rgba(3,23,47,.96) 100%);
  background-size: cover; background-position: center;
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%; background: rgba(230,230,230,.35);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 8px 20px rgba(3,23,47,.2);
}
.play-btn::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}
.video-meta { display: block; padding: 16px 18px; }
.video-meta strong { display: block; color: var(--navy); font-size: .98rem; margin-bottom: 6px; }
.video-meta span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.5; }
@media (max-width: 900px){ .testimonial-videos { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

.testimonial-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; box-shadow: 0 2px 6px rgba(3,23,47,.05); }
.quote-card p { color: var(--ink); font-size: .95rem; margin: 0 0 16px; }
.quote-card footer strong { display: block; color: var(--ocean); font-size: .92rem; }
.quote-card footer span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
@media (max-width: 900px){ .testimonial-quotes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .testimonial-quotes { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(rgba(3,23,47,.72), rgba(3,23,47,.88)), url('assets/images/hero.webp'); background-size: cover; background-position: center 70%; color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #e7f0f8; margin: 0 auto 1.6rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 32px auto 0; }
.faq-group { color: var(--ocean); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; margin: 26px 0 12px; }
.faq-group:first-child { margin-top: 0; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ocean); font-size: 1.4rem; font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; color: var(--muted); padding: 30px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer img { height: 44px; width: auto; max-width: 60%; }
.footer-right { text-align: right; font-size: .84rem; color: var(--muted); line-height: 1.9; }
.site-footer strong { color: var(--navy); }
.site-footer a { color: var(--ocean); font-size: .84rem; font-weight: 600; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
