*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d2044;
  --blue:   #1a3a7a;
  --bright: #1e6fc8;
  --accent: #f5a623;
  --white:  #ffffff;
  --light:  #f0f4fa;
  --text:   #1a1a2e;
  --muted:  #5a6a85;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.nav-phone {
  display: flex; align-items: center; gap: .5rem;
  background: white; color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: .4rem 1rem; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s;
}
.nav-phone:hover { background: var(--accent); color: var(--navy); }
.nav-links {
  display: flex; align-items: center; gap: .2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: .95rem; letter-spacing: .04em;
  padding: .4rem .8rem; border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-social { display: flex; gap: 1rem; }
.nav-social a { color: rgba(255,255,255,.7); transition: color .2s; }
.nav-social a:hover { color: var(--accent); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .3rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

@media (max-width: 900px) {
  .nav-links, .nav-social { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem 2rem 2rem; gap: .5rem; }
  .hamburger { display: flex; }
}

/* ─── SHARED ─── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 5rem 2rem; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bright);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase; color: var(--navy); line-height: 1.08;
}
.section-title.light { color: var(--white); }

/* ─── HERO ─── */
.hero {
  background:
    linear-gradient(160deg, rgba(13,32,68,.55) 0%, rgba(26,58,122,.3) 55%, rgba(13,32,68,.55) 100%),
    url("/images/cdlshorty_logo.webp") center 40% / cover no-repeat,
    var(--navy);
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 2rem clamp(20rem, 48vw, 34rem);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; justify-content: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 820px; }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white); letter-spacing: .02em;
  text-transform: uppercase; line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,.55), 0 2px 6px rgba(0,0,0,.4);
}
.hero-sub {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem; max-width: 680px; margin: 1.25rem auto 0;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.hero .cta-btn { margin-top: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,.35); }

@media (max-width: 700px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(13,32,68,.82) 0%, rgba(13,32,68,.55) 35%, rgba(13,32,68,.1) 65%, rgba(13,32,68,.25) 100%),
      url("/images/cdlshorty_logo.webp") 35% bottom / cover no-repeat,
      var(--navy);
    padding: 1.75rem 1.25rem;
    min-height: 500px;
  }
}

/* ─── INTRO BAND ─── */
.intro-band {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  text-align: center; padding: 2rem;
  font-size: 1rem; line-height: 1.75;
}

/* ─── BENEFITS ─── */
.benefits { background: var(--navy); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.benefit-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 1.75rem;
  transition: background .25s, transform .25s;
}
.benefit-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: .75rem; }
.benefit-card h3 {
  color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 1.15rem; text-transform: uppercase; margin-bottom: .5rem;
}
.benefit-card p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.65; }

/* ─── ACCORDION ─── */
.pillars { background: var(--light); }
.pillars-inner { max-width: 860px; margin: 0 auto; }
.accordion { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .6rem; }
.acc-item { border: 1px solid #d0daea; border-radius: 6px; overflow: hidden; background: white; }
.acc-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1rem; letter-spacing: .02em;
  color: var(--navy); text-align: left;
  transition: background .2s;
}
.acc-btn:hover { background: var(--light); }
.acc-btn .acc-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bright); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; transition: transform .3s;
}
.acc-btn[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 1.4rem 1.4rem; color: var(--muted); line-height: 1.75; font-size: .95rem; }
.acc-body.open { display: block; }
.acc-body strong { color: var(--navy); }
.acc-body blockquote { border-left: 3px solid var(--bright); padding-left: .8rem; margin: .8rem 0; font-style: italic; color: var(--blue); }

/* ─── PROMISE ─── */
.promise {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center; padding: 4rem 2rem;
}
.promise p { color: rgba(255,255,255,.82); max-width: 700px; margin: 1.5rem auto; font-size: 1.05rem; line-height: 1.75; }
.promise strong { color: var(--white); }
.cta-btn {
  display: inline-block; margin-top: 1.5rem;
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  padding: .85rem 2.5rem; border-radius: 4px;
  transition: background .2s, transform .2s;
}
.cta-btn:hover { background: #ffc145; transform: translateY(-2px); }

/* ─── PROGRAM CARDS ─── */
.programs { background: var(--navy); }
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.prog-card {
  background: white; border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.prog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.prog-header { background: var(--blue); color: white; padding: 1.25rem; text-align: center; }
.prog-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; background: var(--accent); color: var(--navy);
  display: inline-block; padding: .2rem .7rem; border-radius: 3px; margin-bottom: .6rem;
}
.prog-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1.2rem; text-transform: uppercase; line-height: 1.1; }
.prog-price { color: rgba(255,255,255,.8); font-size: .92rem; margin-top: .4rem; }
.prog-body { padding: 1.25rem; flex: 1; }
.prog-body p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: .75rem; }
.prog-features { list-style: none; }
.prog-features li { font-size: .88rem; color: var(--text); padding: .3rem 0; display: flex; align-items: flex-start; gap: .5rem; }
.prog-features li::before { content: '✓'; color: var(--bright); font-weight: 600; flex-shrink: 0; }
.prog-footer { padding: 1.25rem; border-top: 1px solid #eee; }
.prog-btn {
  display: block; width: 100%; text-align: center;
  background: var(--navy); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; padding: .7rem; border-radius: 4px;
  border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.prog-btn:hover { background: var(--bright); }
.prog-btn.active { background: var(--accent); color: var(--navy); }

/* ─── CALENDLY EMBED PANEL ─── */
.calendly-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--white);
  border-radius: 10px;
  margin-top: 0;
  transition: max-height .45s ease, opacity .3s ease, margin-top .45s ease;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.calendly-panel.open {
  max-height: 1100px;
  opacity: 1;
  margin-top: 2.5rem;
}
.calendly-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--blue); color: white;
  border-radius: 10px 10px 0 0;
}
.calendly-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.25rem;
  letter-spacing: .04em; text-transform: uppercase;
  color: white; margin: 0;
}
.calendly-close {
  background: rgba(255,255,255,.15); color: white;
  border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; line-height: 1;
  transition: background .2s;
}
.calendly-close:hover { background: var(--accent); color: var(--navy); }
.calendly-inline-widget {
  min-width: 320px; height: 950px;
}
@media (max-width: 700px) {
  .calendly-inline-widget { height: 1050px; }
  .calendly-panel.open { max-height: 1200px; }
}

/* ─── VIRTUAL ─── */
.virtual-programs { background: var(--light); }
.virtual-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.vprog-card {
  background: var(--navy); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.vprog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.vprog-header { background: var(--blue); padding: 1.5rem; text-align: center; }
.vprog-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1.4rem; text-transform: uppercase; color: white; line-height: 1.1; }
.vprog-price { color: var(--accent); font-weight: 600; margin-top: .4rem; font-size: .95rem; }
.vprog-body { padding: 1.5rem; flex: 1; }
.vprog-note { font-size: .82rem; color: var(--accent); margin-bottom: .75rem; line-height: 1.5; }
.vprog-body p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.65; margin-bottom: .75rem; }
.vprog-features { list-style: none; }
.vprog-features li { color: rgba(255,255,255,.8); font-size: .88rem; padding: .25rem 0; display: flex; gap: .5rem; }
.vprog-features li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.vprog-footer { padding: 1.25rem; }
.vprog-btn {
  display: block; width: 100%; text-align: center; background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .92rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: .7rem; border-radius: 4px;
  border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.vprog-btn:hover { background: #ffc145; }
.vprog-btn.active { background: var(--navy); color: var(--white); }

/* ─── YOUTUBE ─── */
.youtube { background: var(--white); }
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.yt-grid > .yt-card:first-child {
  grid-column: 1 / -1;
}
.yt-grid > .yt-card:first-child .yt-title {
  font-size: 1.25rem; font-weight: 600;
  padding: .3rem 0;
}
.yt-grid > .yt-card:first-child .yt-info { padding: 1.2rem 1.4rem; }
.yt-grid > .yt-card:first-child .yt-play { width: 72px; height: 72px; }
.yt-grid > .yt-card:first-child .yt-play svg { width: 28px; height: 28px; }
@media (max-width: 780px) {
  .yt-grid { grid-template-columns: 1fr; }
  .yt-grid > .yt-card:first-child { grid-column: auto; }
  .yt-grid > .yt-card:first-child .yt-title { font-size: 1rem; }
  .yt-grid > .yt-card:first-child .yt-info { padding: .9rem 1rem; }
}
.yt-card {
  border: 1px solid #e0e8f0; border-radius: 8px; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none; color: inherit;
}
.yt-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); transform: translateY(-3px); }
.yt-thumb {
  position: relative; aspect-ratio: 16/9; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-play {
  position: absolute; width: 52px; height: 52px; background: rgba(0,0,0,.7);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.yt-card:hover .yt-play { background: #ff0000; }
.yt-play svg { fill: white; width: 20px; height: 20px; margin-left: 3px; }
.yt-info { padding: .9rem 1rem; }
.yt-title { font-weight: 500; font-size: .88rem; color: var(--navy); line-height: 1.45; }
.yt-subscribe {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 2rem;
  background: #ff0000; color: white; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .7rem 1.8rem; border-radius: 4px; transition: background .2s;
}
.yt-subscribe:hover { background: #cc0000; }

/* ─── INTERIOR PAGE HERO ─── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E") repeat;
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white); text-transform: uppercase; line-height: 1.05;
  position: relative;
}
.page-hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-top: 1.2rem; position: relative;
}
.page-hero-tags span {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.85);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 500;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}

/* ─── PROSE SECTION ─── */
.prose-section { background: white; }
.prose-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
@media (max-width: 760px) { .prose-layout { grid-template-columns: 1fr; gap: 2rem; } }
.prose-img {
  width: 100%; border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.prose-content p {
  font-size: 1rem; line-height: 1.8; color: #3a4a60; margin-bottom: 1.25rem;
}
.prose-content p:last-child { margin-bottom: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 1.2rem; color: white; text-transform: uppercase; margin-bottom: .5rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.65; }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: .85rem; transition: background .2s;
}
.footer-social a:hover { background: var(--bright); }
footer h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: .92rem; letter-spacing: .08em; text-transform: uppercase;
  color: white; margin-bottom: .75rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: .4rem; }
footer ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer ul a:hover { color: var(--accent); }
.footer-contact p { font-size: .88rem; margin-bottom: .5rem; line-height: 1.55; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }
