*{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0f1e35;
  --navy-mid:#162845;
  --navy-light:#1e3a5f;
  --gold:#b8902e;
  --gold-light:#d4a84b;
  --cream:#f8f5ef;
  --warm-white:#fdfaf5;
  --text:#1a1a2e;
  --text-muted:#5a6275;
  --text-light:#8a919e;
  --rule:#d4c9b0;
  --card-border:#e8e2d6;
}
html{scroll-behavior:smooth}
body{
  font-family:'DM Sans',sans-serif;
  background:var(--warm-white);
  color:var(--text);
  font-size:16px;
  line-height:1.7;
}

/* NAV */

.top-strip{
  position:sticky;top:0;z-index:110;
  background:var(--navy-light);
  border-bottom:1px solid rgba(184,144,46,0.35);
}
.top-strip-inner{
  max-width:1140px;margin:0 auto;
  padding:8px 32px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.top-strip-tagline{
  color:rgba(248,245,239,0.88);
  font-size:0.76rem;letter-spacing:0.04em;
}
.top-strip-contact{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.top-strip-contact a{
  color:rgba(248,245,239,0.82);
  text-decoration:none;font-size:0.75rem;letter-spacing:0.04em;
}
.top-strip-contact a:hover{color:var(--gold-light)}
.top-strip-cta{
  padding:6px 12px;border:1px solid rgba(184,144,46,0.55);
  text-transform:uppercase;letter-spacing:0.08em;font-weight:500;
}
.top-strip-cta:hover{background:rgba(184,144,46,0.18);}

.nav{
  position:sticky;top:42px;z-index:100;
  background:rgba(15,30,53,0.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(184,144,46,0.3);
}
.nav-inner{
  max-width:1140px;margin:0 auto;
  padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.brand{
  font-family:'Playfair Display',serif;
  font-size:1.25rem;font-weight:700;
  color:var(--cream);letter-spacing:0.01em;
  text-decoration:none;
}
.brand span{color:var(--gold)}
.nav-links{display:flex;align-items:center;justify-content:flex-end;gap:24px;flex-wrap:nowrap;margin-left:40px}
.nav-links a{
  display:inline-flex;align-items:center;
  font-size:0.82rem;font-weight:500;
  color:rgba(248,245,239,0.7);
  text-decoration:none;letter-spacing:0.08em;
  text-transform:uppercase;
  line-height:1;
  white-space:nowrap;
  transition:color 0.2s;
}
.nav-links a:hover{color:var(--gold-light)}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: #0b1d33;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b1d33;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 29, 51, 0.94) 0%, rgba(11, 29, 51, 0.82) 42%, rgba(11, 29, 51, 0.48) 100%),
    linear-gradient(180deg, rgba(11, 29, 51, 0.35) 0%, rgba(11, 29, 51, 0.72) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.hero-eyebrow{
  font-size:0.75rem;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:20px;
  display:flex;align-items:center;gap:10px;
}
.hero-eyebrow::before{
  content:'';display:block;width:28px;height:1px;
  background:var(--gold);
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,4vw,3.4rem);
  font-weight:700;line-height:1.15;
  color:var(--cream);
  margin-bottom:24px;
}
.hero h1 em{
  font-style:italic;color:var(--gold-light);
}
.hero-lead{
  font-size:1.05rem;line-height:1.8;
  color:rgba(248,245,239,0.72);
  max-width:520px;margin-bottom:36px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:64px;}
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 28px;
  background:var(--gold);color:#0f1e35;
  font-size:0.85rem;font-weight:500;
  letter-spacing:0.06em;text-transform:uppercase;
  text-decoration:none;border:none;cursor:pointer;
  transition:background 0.2s,transform 0.15s;
}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-1px)}
.btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;
  border:1px solid rgba(184,144,46,0.5);
  color:var(--gold-light);
  font-size:0.85rem;font-weight:500;
  letter-spacing:0.06em;text-transform:uppercase;
  text-decoration:none;background:transparent;cursor:pointer;
  transition:border-color 0.2s,color 0.2s;
}
.btn-outline:hover{border-color:var(--gold-light);color:var(--cream)}

/* CONTACT CARD in hero */
.contact-card{
  background:var(--cream);
  border-top:3px solid var(--gold);
  padding:0 0 0 0;
  position:relative;
  transform:translateY(32px);
  box-shadow:0 24px 64px rgba(0,0,0,0.35);
}
.card-photo-wrap{position:relative;overflow:hidden;background:#162845;}
.john-card-photo{
  display:block;
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:center top;
  border-top:4px solid var(--gold);
  background:#10233d;
}
.card-body{padding:28px 28px 32px;}
.card-title{
  font-family:'Playfair Display',serif;
  font-size:1rem;font-weight:700;
  color:var(--navy);margin-bottom:4px;
}
.card-subtitle{
  font-size:0.78rem;color:var(--gold);
  letter-spacing:0.08em;text-transform:uppercase;
  margin-bottom:24px;
  padding-bottom:16px;
  border-bottom:1px solid var(--card-border);
}
.contact-list{display:flex;flex-direction:column;gap:12px;}
.contact-row{
  display:flex;align-items:flex-start;gap:12px;
  font-size:0.84rem;
  color:var(--text);text-decoration:none;
}
.contact-row:hover .contact-val{color:var(--gold)}
.contact-icon{
  width:30px;height:30px;flex-shrink:0;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  margin-top:1px;
}
.contact-icon svg{width:14px;height:14px;fill:var(--gold)}
.contact-val{color:var(--text);line-height:1.4;transition:color 0.2s;}
.contact-label{
  font-size:0.72rem;text-transform:uppercase;
  letter-spacing:0.08em;color:var(--text-muted);
  display:block;margin-bottom:1px;
}

@media (max-width: 980px) {
  .john-card-photo {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .john-card-photo {
    height: 260px;
  }
}

/* STATS BAR */
.stats-bar{
  background:var(--navy-mid);
  padding:32px;
}
.stats-inner{
  max-width:1140px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;
}
.stat-item{
  text-align:center;
  padding:16px 24px;
  border-right:1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child{border-right:none}
.stat-num{
  font-family:'Playfair Display',serif;
  font-size:2rem;font-weight:700;
  color:var(--gold-light);display:block;
}
.stat-label{
  font-size:0.78rem;color:rgba(248,245,239,0.6);
  letter-spacing:0.06em;text-transform:uppercase;
}

/* SECTION SCAFFOLDING */
.section{padding:88px 32px;}
.section-inner{max-width:1140px;margin:0 auto;}
.section-tag{
  font-size:0.72rem;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:14px;
  display:flex;align-items:center;gap:10px;
}
.section-tag::before{
  content:'';display:block;width:24px;height:1px;
  background:var(--gold);
}
.section-heading{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:700;line-height:1.2;
  color:var(--navy);margin-bottom:16px;
}
.section-rule{
  width:48px;height:2px;
  background:var(--gold);
  margin-bottom:32px;
}
.section-lead{
  font-family:'Libre Baskerville',serif;
  font-size:1.05rem;line-height:1.9;
  color:var(--text-muted);
  max-width:680px;
}

/* MBE SECTION */
#mbe{background:var(--warm-white);}
.mbe-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-top:56px;
  align-items:start;
}
.mbe-intro{
  font-family:'Libre Baskerville',serif;
  font-size:1rem;line-height:1.95;
  color:#3a3a4a;
}
.mbe-intro p{margin-bottom:1.2em;}
.subject-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.subject-pill{
  background:var(--navy);
  color:var(--cream);
  padding:10px 16px;
  font-size:0.8rem;
  letter-spacing:0.04em;
  border-left:3px solid var(--gold);
  transition:background 0.2s;
}
.subject-pill:hover{background:var(--navy-light)}
.subjects-label{
  font-size:0.75rem;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:14px;
  grid-column:1/-1;
}

/* STUDY SEQUENCE */
#study-sequence{
  background:var(--navy);
  position:relative;overflow:hidden;
}
#study-sequence::before{
  content:'';position:absolute;
  top:-80px;right:-80px;
  width:400px;height:400px;
  border-radius:50%;
  border:1px solid rgba(184,144,46,0.08);
  pointer-events:none;
}
#study-sequence .section-heading{color:var(--cream)}
#study-sequence .section-rule{background:var(--gold)}
#study-sequence .section-lead{color:rgba(248,245,239,0.65)}
#study-sequence .section-tag{color:var(--gold-light)}
#study-sequence .section-tag::before{background:var(--gold-light)}
.phases{display:flex;flex-direction:column;gap:0;margin-top:56px;}
.phase{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:0;
  position:relative;
}
.phase:not(:last-child) .phase-line{
  position:absolute;left:39px;top:44px;bottom:-1px;
  width:1px;background:rgba(184,144,46,0.25);
}
.phase-num{
  display:flex;flex-direction:column;
  align-items:center;
  padding-top:4px;
}
.phase-circle{
  width:40px;height:40px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;
  font-size:0.9rem;font-weight:700;
  color:var(--gold);
  background:var(--navy);
  position:relative;z-index:1;
  flex-shrink:0;
}
.phase-content{
  padding:0 0 48px 24px;
}
.phase-label{
  font-size:0.72rem;letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold);margin-bottom:6px;
  display:block;
}
.phase-title{
  font-family:'Playfair Display',serif;
  font-size:1.15rem;font-weight:700;
  color:var(--cream);margin-bottom:10px;
}
.phase-desc{
  font-size:0.9rem;line-height:1.75;
  color:rgba(248,245,239,0.6);
}

/* DAILY PLANNER */
#daily-planner{background:var(--cream);}
.planner-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:56px;
}
.day-card{
  background:var(--warm-white);
  border:1px solid var(--card-border);
  border-top:3px solid var(--navy);
  padding:28px 24px;
  transition:box-shadow 0.2s,transform 0.2s;
}
.day-card:hover{
  box-shadow:0 12px 40px rgba(15,30,53,0.1);
  transform:translateY(-3px);
}
.day-card:nth-child(2){border-top-color:var(--gold)}
.day-card:nth-child(3){border-top-color:var(--navy-light)}
.day-period{
  font-size:0.72rem;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--text-muted);margin-bottom:8px;display:block;
}
.day-title{
  font-family:'Playfair Display',serif;
  font-size:1.1rem;font-weight:700;
  color:var(--navy);margin-bottom:14px;
}
.day-items{list-style:none;display:flex;flex-direction:column;gap:8px;}
.day-items li{
  font-size:0.85rem;color:var(--text-muted);
  padding-left:16px;position:relative;line-height:1.5;
}
.day-items li::before{
  content:'';position:absolute;left:0;top:8px;
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);
}
.planner-note{
  margin-top:32px;
  padding:20px 24px;
  background:var(--navy);
  border-left:3px solid var(--gold);
}
.planner-note p{
  font-size:0.9rem;line-height:1.7;
  color:rgba(248,245,239,0.75);
}
.planner-note strong{color:var(--gold-light)}

/* PERFORMANCE TEST */
#performance-test{background:var(--warm-white);}
.pt-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:72px;
  margin-top:56px;
  align-items:start;
}
.pt-content p{
  font-family:'Libre Baskerville',serif;
  font-size:1rem;line-height:1.9;
  color:#3a3a4a;
  margin-bottom:1.2em;
}
.pt-pillars{
  display:flex;flex-direction:column;gap:20px;
  margin-top:36px;
}
.pt-pillar{
  display:flex;gap:20px;align-items:flex-start;
  padding:20px 20px;
  border:1px solid var(--card-border);
  background:var(--cream);
  transition:border-color 0.2s;
}
.pt-pillar:hover{border-color:var(--gold)}
.pillar-icon{
  width:42px;height:42px;flex-shrink:0;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
}
.pillar-icon svg{width:18px;height:18px;fill:var(--gold)}
.pillar-name{
  font-size:0.88rem;font-weight:500;
  color:var(--navy);margin-bottom:4px;letter-spacing:0.02em;
}
.pillar-desc{
  font-size:0.82rem;color:var(--text-muted);line-height:1.6;
}
.pt-cta-box{
  background:var(--navy);
  padding:40px 36px;
  position:sticky;top:88px;
}
.pt-cta-box h3{
  font-family:'Playfair Display',serif;
  font-size:1.5rem;font-weight:700;
  color:var(--cream);margin-bottom:8px;
}
.pt-cta-tagline{
  font-size:0.82rem;color:var(--gold-light);
  letter-spacing:0.06em;text-transform:uppercase;
  margin-bottom:20px;display:block;
}
.pt-cta-divider{
  width:36px;height:1px;background:rgba(184,144,46,0.4);
  margin-bottom:24px;
}
.pt-cta-box p{
  font-size:0.88rem;line-height:1.75;
  color:rgba(248,245,239,0.65);
  margin-bottom:28px;
}
.cta-actions{display:flex;flex-direction:column;gap:12px;}

/* VISUAL ROTATOR */
#initiative-visuals{background:var(--cream);}
.visuals-inner{display:flex;flex-direction:column;align-items:center;text-align:center;}
.visuals-inner .section-lead{max-width:760px;}
.visual-rotator-wrap{
  position:relative;
  width:min(100%,960px);
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.visual-rotator{
  position:relative;
  width:min(100%,760px);
  aspect-ratio:16/10;
  margin:0;
  border:1px solid var(--card-border);
  background:#fff;
  overflow:hidden;
  box-shadow:0 16px 48px rgba(15,30,53,0.12);
}
.rotator-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  opacity:0;
  transition:opacity 1.2s ease;
}
.rotator-image.is-active{opacity:1;}
.visual-arrow{
  width:48px;
  height:48px;
  border:1px solid var(--navy);
  border-radius:50%;
  background:#fff;
  color:var(--navy);
  display:grid;
  place-items:center;
  font-size:1.5rem;
  line-height:1;
  cursor:pointer;
  transition:all 0.2s ease;
}
.visual-arrow:hover{
  background:var(--navy);
  color:var(--cream);
}
.visual-arrow:focus-visible{
  outline:3px solid rgba(184,144,46,0.5);
  outline-offset:2px;
}
@media (max-width: 720px){
  .visual-rotator-wrap{
    width:100%;
    gap:10px;
  }

  .visual-arrow{
    width:40px;
    height:40px;
    font-size:1.2rem;
  }
}

/* FOOTER */
footer{
  background:var(--navy);
  border-top:1px solid rgba(184,144,46,0.2);
  padding:40px 32px;
}
.footer-inner{
  max-width:1140px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:16px;
}
.footer-brand{
  font-family:'Playfair Display',serif;
  font-size:1rem;font-weight:700;
  color:var(--cream);
}
.footer-brand span{color:var(--gold)}
.footer-copy{
  font-size:0.78rem;color:rgba(248,245,239,0.4);
  letter-spacing:0.04em;
}
.footer-links{display:flex;gap:24px;}
.footer-links a{
  font-size:0.78rem;color:rgba(248,245,239,0.5);
  text-decoration:none;letter-spacing:0.06em;
  text-transform:uppercase;transition:color 0.2s;
}
.footer-links a:hover{color:var(--gold-light)}

.footer-sponsor{
  display:flex;align-items:center;gap:10px;
  font-size:0.78rem;color:rgba(248,245,239,0.5);
  letter-spacing:0.04em;
}
.footer-sponsor a{display:inline-flex;align-items:center}
.footer-sponsor img{height:26px;width:auto;display:block}

.footer-contact{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.footer-contact a{
  font-size:0.78rem;color:rgba(248,245,239,0.68);
  text-decoration:none;letter-spacing:0.04em;
}
.footer-contact a:hover{color:var(--gold-light)}
.footer-signup{
  border:1px solid rgba(184,144,46,0.5);
  padding:6px 12px;text-transform:uppercase;letter-spacing:0.08em;
}
.footer-tagline{
  width:100%;
  font-size:0.8rem;
  color:rgba(248,245,239,0.75);
  letter-spacing:0.03em;
}


.footer-inner-balanced{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  justify-items:center;
  gap:22px;
}
.footer-inner-balanced .footer-brand,
.footer-inner-balanced .footer-tagline,
.footer-inner-balanced .footer-copy{
  text-align:center;
}
.footer-inner-balanced .footer-links{
  justify-content:center;
  flex-wrap:wrap;
  row-gap:12px;
}
.footer-balance-row{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:center;
  gap:28px;
}
.footer-inner-balanced .footer-sponsor{justify-self:start;}
.footer-inner-balanced .footer-contact{justify-self:end;justify-content:flex-end;}

@media (max-width: 980px){
  .footer-balance-row{grid-template-columns:1fr;gap:16px;}
  .footer-inner-balanced .footer-sponsor,
  .footer-inner-balanced .footer-contact{justify-self:center;justify-content:center;text-align:center;}
}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-left>*{animation:fadeUp 0.6s ease both}
.hero-eyebrow{animation-delay:0.1s}
.hero h1{animation-delay:0.2s}
.hero-lead{animation-delay:0.3s}
.hero-actions{animation-delay:0.4s}
.contact-card{animation:fadeUp 0.6s 0.3s ease both}

/* RESPONSIVE */
@media(max-width:940px){
  .top-strip-inner{padding:8px 20px;flex-direction:column;align-items:flex-start}
  .nav{top:74px}
  .hero-inner{grid-template-columns:1fr;gap:40px}
  .contact-card{transform:translateY(0);margin-bottom:32px;max-width:420px}
  .mbe-grid{grid-template-columns:1fr}
  .planner-grid{grid-template-columns:1fr}
  .pt-layout{grid-template-columns:1fr}
  .pt-cta-box{position:static}
  .stats-inner{grid-template-columns:1fr}
  .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.08)}
  .stat-item:last-child{border-bottom:none}
  .nav-links{display:none}
}
@media(max-width:640px){
  .top-strip-tagline{font-size:0.7rem}
  .top-strip-contact{gap:10px}
  .section{padding:64px 20px}
  .hero{min-height:auto;padding:36px 16px 46px}
  .subject-grid{grid-template-columns:1fr}
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 48px 18px 56px;
  }

  .hero-video-bg iframe {
    width: 160vw;
    height: 90vw;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 36px 16px 46px;
  }

  .hero-video-bg iframe {
    width: 220vw;
    height: 123.75vw;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11, 29, 51, 0.9) 0%, rgba(11, 29, 51, 0.82) 55%, rgba(11, 29, 51, 0.92) 100%);
  }
}


/* MBE REGIMEN SEQUENCE PAGE */
/* PAGE-SPECIFIC */
.page-hero{
  background:var(--navy);
  padding:72px 32px 60px;
  position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 90% at 85% 30%, rgba(184,144,46,0.06) 0%, transparent 65%);
  pointer-events:none;
}
.page-hero-inner{max-width:1140px;margin:0 auto;position:relative;}
.breadcrumb{
  display:flex;align-items:center;gap:10px;
  font-size:0.75rem;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  margin-bottom:32px;
}
.breadcrumb a{color:rgba(248,245,239,0.4);text-decoration:none;transition:color 0.2s;}
.breadcrumb a:hover{color:var(--gold-light)}
.breadcrumb span{color:rgba(248,245,239,0.65)}
.breadcrumb-sep{color:rgba(248,245,239,0.25)}
.hero-kicker{
  font-size:0.72rem;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:16px;
  display:flex;align-items:center;gap:10px;
}
.hero-kicker::before{content:'';display:block;width:24px;height:1px;background:var(--gold);}
.page-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:700;line-height:1.15;
  color:var(--cream);margin-bottom:20px;
}
.page-hero h1 em{font-style:italic;color:var(--gold-light);}
.hero-lead{
  font-size:1rem;line-height:1.8;
  color:rgba(248,245,239,0.65);
  max-width:560px;margin-bottom:36px;
}
.hero-meta{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
  padding-top:24px;
  border-top:1px solid rgba(184,144,46,0.2);
}
.meta-pill{
  font-size:0.75rem;color:rgba(248,245,239,0.5);
  letter-spacing:0.04em;
}
.meta-pill strong{color:rgba(248,245,239,0.85);font-weight:500;}
.meta-dot{width:3px;height:3px;border-radius:50%;background:rgba(184,144,46,0.35);}

/* MAIN CONTENT AREA */
.content-wrap{
  max-width:1140px;margin:0 auto;
  padding:64px 32px 96px;
  display:grid;
  grid-template-columns:1fr 300px;
  gap:56px;
  align-items:start;
}

/* SCHEDULE TABLE */
.schedule-card{
  background:#fff;
  border:1px solid var(--card-border);
  border-top:4px solid var(--gold);
  box-shadow:0 4px 40px rgba(15,30,53,0.07);
}
.schedule-card-header{
  background:var(--navy);
  padding:20px 28px;
  display:flex;justify-content:space-between;align-items:center;
}
.sch-title{
  font-family:'Playfair Display',serif;
  font-size:1rem;font-weight:700;
  color:var(--cream);
}
.sch-subtitle{
  font-size:0.72rem;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--gold-light);margin-top:3px;
}
.day-header-row{
  display:grid;
  grid-template-columns:90px repeat(7,1fr);
  background:var(--navy-mid);
  border-bottom:2px solid var(--gold);
}
.day-header-row div{
  padding:10px 6px;
  font-size:0.7rem;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold);text-align:center;
}
.day-header-row div:first-child{
  text-align:left;padding-left:16px;color:rgba(248,245,239,0.4);
}
.week-block{border-bottom:1px solid var(--card-border);}
.week-block:last-child{border-bottom:none;}
.week-row{
  display:grid;
  grid-template-columns:90px repeat(7,1fr);
  min-height:34px;
}
.week-row:nth-child(2){background:rgba(248,245,239,0.4);}
.week-row:nth-child(3){background:rgba(248,245,239,0.6);}
.week-label-cell{
  background:var(--navy);
  display:flex;align-items:center;
  padding:0 0 0 16px;
  font-size:0.68rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold-light);
  border-right:1px solid rgba(184,144,46,0.3);
}
.blank-cell{
  border-right:1px solid var(--card-border);
  display:flex;align-items:center;justify-content:center;
  font-size:0.7rem;color:var(--text-light);
  letter-spacing:0.05em;
  min-height:34px;
}
.blank-cell:last-child{border-right:none;}
.note-cell{
  grid-column:2/-1;
  padding:6px 12px;
  font-size:0.72rem;
  font-family:'Libre Baskerville',serif;
  font-style:italic;
  color:var(--text-muted);
  line-height:1.5;
  border-left:2px solid var(--gold);
  display:flex;align-items:center;
  background:rgba(184,144,46,0.04);
}
/* Week 1 — instructions inline */
.week1-instructions{
  background:rgba(15,30,53,0.03);
  border-bottom:1px solid var(--card-border);
}

/* Week 10 special */
.week10-finale{
  display:grid;
  grid-template-columns:90px 1fr 1fr 4fr;
  min-height:100px;
  border-bottom:none;
}
.finale-label{
  background:var(--navy);
  display:flex;align-items:center;
  padding:0 0 0 16px;
  font-size:0.68rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold-light);
  border-right:1px solid rgba(184,144,46,0.3);
}
.finale-good,.finale-ready{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:12px 8px;
  text-align:center;
  border-right:1px solid var(--card-border);
}
.finale-word{
  font-family:'Playfair Display',serif;
  font-size:0.85rem;font-weight:700;
  color:var(--navy);line-height:1.3;
}
.finale-word em{color:var(--gold);font-style:normal;}
.finale-note{
  padding:14px 20px;
  font-family:'Libre Baskerville',serif;
  font-size:0.78rem;font-style:italic;
  color:var(--text-muted);
  line-height:1.7;
  display:flex;align-items:center;
}

/* SIDEBAR */
.sidebar{}
.download-box{
  background:var(--navy);
  border-top:3px solid var(--gold);
  padding:32px 28px;
  margin-bottom:24px;
}
.dl-icon{
  width:48px;height:48px;
  background:rgba(184,144,46,0.15);
  border:1px solid rgba(184,144,46,0.3);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.dl-icon svg{width:22px;height:22px;stroke:var(--gold);fill:none;stroke-width:1.5;}
.dl-label{
  font-size:0.7rem;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--gold);margin-bottom:8px;display:block;
}
.dl-title{
  font-family:'Playfair Display',serif;
  font-size:1.05rem;font-weight:700;
  color:var(--cream);margin-bottom:8px;
}
.dl-desc{
  font-size:0.82rem;line-height:1.65;
  color:rgba(248,245,239,0.6);
  margin-bottom:24px;
}
.btn-download{
  display:flex;align-items:center;justify-content:center;gap:10px;
  width:100%;padding:14px 20px;
  background:var(--gold);color:var(--navy);
  font-size:0.82rem;font-weight:500;
  letter-spacing:0.08em;text-transform:uppercase;
  text-decoration:none;
  transition:background 0.2s,transform 0.15s;
}
.btn-download:hover{background:var(--gold-light);transform:translateY(-1px);}
.btn-download svg{width:15px;height:15px;stroke:var(--navy);fill:none;stroke-width:2;}
.dl-note{
  margin-top:12px;
  font-size:0.72rem;color:rgba(248,245,239,0.35);
  text-align:center;letter-spacing:0.02em;
}

/* SIDEBAR INFO CARDS */
.info-card{
  background:#fff;
  border:1px solid var(--card-border);
  border-left:3px solid var(--navy);
  padding:20px 20px;
  margin-bottom:16px;
}
.info-card-label{
  font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--gold);margin-bottom:10px;display:block;
}
.info-card-body{
  font-family:'Libre Baskerville',serif;
  font-size:0.82rem;line-height:1.75;
  color:var(--text-muted);
}
.info-card-body strong{color:var(--navy);}

.key-rule{
  display:flex;gap:12px;align-items:flex-start;
  margin-bottom:10px;
}
.key-rule:last-child{margin-bottom:0}
.kr-num{
  width:22px;height:22px;flex-shrink:0;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-size:0.65rem;font-weight:700;
  color:var(--gold);margin-top:1px;
}
.kr-text{
  font-size:0.8rem;line-height:1.6;
  color:var(--text-muted);
  font-family:'Libre Baskerville',serif;
}

.contact-mini{
  background:var(--cream);
  border:1px solid var(--card-border);
  padding:20px;
  margin-top:16px;
}
.contact-mini-label{
  font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--text-light);margin-bottom:14px;display:block;
}
.contact-mini a{
  display:block;font-size:0.8rem;color:var(--gold);
  text-decoration:none;margin-bottom:6px;
  transition:color 0.2s;
}
.contact-mini a:hover{color:var(--navy)}

/* RESPONSIVE */
@media(max-width:900px){
  .content-wrap{grid-template-columns:1fr;gap:32px;}
  .page-hero{padding:48px 20px 40px;}
  .content-wrap{padding:40px 20px 64px;}
  .day-header-row,.week-row{grid-template-columns:72px repeat(7,1fr);}
  .week-label-cell{font-size:0.6rem;padding-left:8px;}
  .week10-finale{grid-template-columns:72px 1fr 1fr 3fr;}
}
@media(max-width:600px){
  .day-header-row,.week-row{grid-template-columns:56px repeat(7,1fr);}
  .blank-cell{font-size:0.58rem;}
  .note-cell{font-size:0.65rem;}
  .schedule-card{overflow-x:auto;}
}
