/* ===========================================================================
   College Essay Bootcamp - mobile first (base = ~390px), then min-width up.
   =========================================================================== */

:root{
  --navy:#0b3a72;
  --blue:#1565c0;
  --blue-lt:#4a9fe0;
  --sky:#8fcdf4;
  --gold:#ffc422;
  --gold-dk:#e0a400;
  --ink:#0f1720;
  --body:#3d4854;
  --muted:#6b7684;
  --line:#e3e8ee;
  --bg:#ffffff;
  --soft:#f5f8fb;
  --ok:#12805c;
  --err:#c0392b;
  --radius:14px;
  --shadow:0 6px 28px rgba(11,58,114,.13);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  color:var(--body);background:var(--bg);
  font-size:17px;line-height:1.62;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--blue)}

.wrap{width:100%;max-width:1080px;margin:0 auto;padding:0 20px}
.narrow{max-width:720px}

h1,h2,h3{color:var(--ink);line-height:1.14;letter-spacing:-.02em}
h1{font-family:'Anton',Impact,sans-serif;font-weight:400;letter-spacing:.01em;
   font-size:clamp(2.3rem,9vw,4.4rem);line-height:1.02;text-transform:uppercase}
h2{font-size:clamp(1.6rem,5.4vw,2.4rem);font-weight:800;margin-bottom:14px}
h3{font-size:1.12rem;font-weight:700;margin-bottom:6px}
p{margin-bottom:14px}
p:last-child{margin-bottom:0}

/* mobile: center everything */
section{padding:52px 0;text-align:center}
@media (min-width:768px){ section{padding:76px 0} }

.kicker{
  font-size:.76rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
  color:var(--blue);margin-bottom:12px;
}
.lede{font-size:1.1rem;color:var(--body);max-width:62ch;margin-left:auto;margin-right:auto}
.lede + .lede{margin-top:14px}
.lede strong{color:var(--ink)}
/* Long-form body copy reads left-aligned. Headings above it stay centered. */
.prose-left .lede{text-align:left;max-width:58ch}

/* ---------- hero ---------- */
.hero{
  position:relative;color:#fff;text-align:center;padding:44px 0 40px;
  background:linear-gradient(168deg,#0b3a72 0%,#1565c0 46%,#4a9fe0 100%);
  overflow:hidden;
}
.hero::after{
  content:'';position:absolute;left:0;right:0;bottom:0;height:5px;
  background:linear-gradient(90deg,var(--gold),#ffe08a,var(--gold));
}
.hero .wrap{position:relative;z-index:2}
.hero .brandrow{
  font-size:.72rem;font-weight:800;letter-spacing:.2em;text-transform:uppercase;
  color:var(--sky);margin-bottom:18px;
}
.hero h1{color:#fff;margin-bottom:6px;text-shadow:0 2px 22px rgba(0,0,0,.22)}
.hero h1 .gold{color:var(--gold);display:block}
.hero .sub{
  font-size:1.16rem;font-weight:600;color:#e8f4ff;margin:12px auto 22px;max-width:32ch;
}
.chips{display:flex;flex-direction:column;gap:9px;align-items:center;margin-bottom:24px}
.chip{
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.3);
  border-radius:100px;padding:8px 18px;font-size:.95rem;font-weight:600;color:#fff;
  backdrop-filter:blur(3px);
}
.chip b{color:var(--gold)}
@media (min-width:600px){ .chips{flex-direction:row;flex-wrap:wrap;justify-content:center} }

/* ---------- product card: features, then price ---------- */
.product{
  background:#fff;border:2px solid #c8d0da;border-radius:var(--radius);
  max-width:520px;margin:26px auto 0;overflow:hidden;text-align:left;
}
.feature-list{list-style:none;margin:0;padding:22px 24px}
.feature-list li{
  position:relative;padding-left:30px;margin-bottom:11px;font-size:1rem;color:var(--ink);
}
.feature-list li:last-child{margin-bottom:0;color:var(--muted)}
.feature-list li::before{
  content:'';position:absolute;left:2px;top:.44em;width:14px;height:8px;
  border-left:2.5px solid var(--ok);border-bottom:2.5px solid var(--ok);
  transform:rotate(-45deg);
}
.product-price{
  border-top:1px solid var(--line);background:#fff;
  padding:20px 24px 22px;text-align:center;
}
.product-price .btn{width:100%}
@media (min-width:600px){ .product-price .btn{width:100%;min-width:0} }

/* The price is type, not a control. Gold is reserved for the button so there is
   only one clickable-looking thing in this band. */
.pricetag{
  display:block;margin:0 0 4px;color:var(--ink);
}
.pricetag .amt{
  font-family:'Anton',Impact,sans-serif;font-weight:400;
  font-size:3.4rem;line-height:1;letter-spacing:.005em;
}
@media (min-width:768px){ .pricetag .amt{font-size:4rem} }
.pricenote{font-size:.94rem;color:var(--muted);margin-bottom:16px;font-weight:500}
.hero .pricenote{color:#e8f4ff}

/* ---------- buttons ---------- */
.btn{
  display:block;width:100%;text-align:center;cursor:pointer;
  background:var(--gold);color:#1a1200;font-family:inherit;font-size:1.06rem;font-weight:800;
  border:0;border-radius:12px;padding:17px 26px;text-decoration:none;
  transition:transform .12s,background .12s;
  min-height:56px;
}
.btn:hover{background:#ffd150;transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn[disabled]{opacity:.6;cursor:not-allowed;transform:none}
.btn-line{font-size:.87rem;color:var(--muted);margin-top:10px}
.hero .btn-line{color:#cfe6ff}
@media (min-width:600px){ .btn{display:inline-block;width:auto;min-width:320px} }

.cta-band{background:var(--soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.cta-band h2{margin-bottom:8px}

/* ---------- cards ---------- */
.grid{display:grid;grid-template-columns:1fr;gap:16px;margin-top:28px;text-align:left}
@media (min-width:768px){ .grid.two{grid-template-columns:1fr 1fr} .grid.four{grid-template-columns:1fr 1fr} }
@media (min-width:1000px){ .grid.four{grid-template-columns:repeat(4,1fr)} }

.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;box-shadow:0 2px 10px rgba(15,23,32,.045);
}
.card .daytag{
  display:inline-block;background:var(--navy);color:#fff;border-radius:6px;
  font-size:.68rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  padding:4px 10px;margin-bottom:12px;
}
.card p{font-size:.97rem;color:var(--body)}

/* ---------- instructors ---------- */
.who{background:var(--soft)}
.person{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:24px;text-align:left;
}
.person .nm{font-family:'Anton',Impact,sans-serif;font-weight:400;font-size:1.35rem;
  color:var(--ink);letter-spacing:.01em;line-height:1.15;margin-bottom:3px}
.person .rl{font-size:.87rem;font-weight:700;color:var(--blue);
  text-transform:uppercase;letter-spacing:.06em;margin-bottom:12px}
.person p{font-size:.97rem}

/* ---------- for you / not for you ---------- */
.qual{display:grid;grid-template-columns:1fr;gap:16px;margin-top:26px;text-align:left}
@media (min-width:768px){ .qual{grid-template-columns:1fr 1fr} }
.qual .box{border-radius:var(--radius);padding:22px;border:1px solid var(--line)}
.qual .box.yes{background:#f2f9f5;border-color:#c9e6d6}
.qual .box.no{background:#fbf6f4;border-color:#eddcd6}
.qual h3{margin-bottom:12px}
.qual ul{list-style:none;padding:0}
.qual li{position:relative;padding-left:28px;margin-bottom:9px;font-size:.97rem}
.qual li:last-child{margin-bottom:0}
.qual .yes li::before{content:'✓';position:absolute;left:0;top:-1px;color:var(--ok);font-weight:900}
.qual .no li::before{content:'✕';position:absolute;left:2px;top:-1px;color:#b4634c;font-weight:900}

/* ---------- details strip ---------- */
.details{display:grid;grid-template-columns:1fr;gap:0;border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;margin-top:26px;text-align:left;background:#fff}
.details > div{padding:16px 20px;border-bottom:1px solid var(--line)}
.details > div:last-child{border-bottom:0}
@media (min-width:768px){
  .details{grid-template-columns:repeat(4,1fr)}
  .details > div{border-bottom:0;border-right:1px solid var(--line)}
  .details > div:last-child{border-right:0}
}
.details .lb{font-size:.68rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  color:var(--muted);margin-bottom:4px}
.details .vl{font-weight:700;color:var(--ink);font-size:1rem;line-height:1.35}
.details .vl a{color:var(--blue);text-decoration:none}
.details .vl a:hover{text-decoration:underline}

/* ---------- when & where: map left, rows right ---------- */
.event-wrap{display:grid;grid-template-columns:1fr;gap:24px;align-items:center;text-align:left}
@media (min-width:860px){ .event-wrap{grid-template-columns:1.05fr .95fr;gap:40px} }

.event-map{
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  height:300px;background:#e9eef4;
}
.event-map{position:relative}
.event-map iframe{position:relative;z-index:2;width:100%;height:100%;border:0;display:block;background:transparent}
.map-fallback{
  position:absolute;inset:0;z-index:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:5px;padding:24px;text-align:center;
}
.map-fallback .mf-name{font-weight:700;color:var(--ink);font-size:1.05rem}
.map-fallback .mf-addr{color:var(--muted);font-size:.95rem}
.map-fallback a{margin-top:8px;font-weight:700;color:var(--blue);text-decoration:none;font-size:.95rem}
.map-fallback a:hover{text-decoration:underline}
@media (min-width:860px){ .event-map{height:420px} }

.event-info .kicker,.event-info h2{text-align:left}
.event-info h2{margin-bottom:18px}

.ev{border-top:1px solid var(--line);padding:15px 0}
.ev:first-of-type{border-top:0;padding-top:0}
.ev:last-of-type{padding-bottom:0}
.ev .k{
  font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--blue);font-weight:800;margin-bottom:5px;
}
.ev .v{color:var(--ink);font-size:1.02rem;line-height:1.45;font-weight:600}
.ev .v small{display:inline-block;color:var(--muted);font-size:.92rem;font-weight:500;margin-top:2px}
.ev .v a{color:var(--ink);text-decoration:none;border-bottom:1.5px solid var(--cyan)}
.ev .v a:hover{color:var(--blue)}

/* ---------- form ---------- */
.formsec{background:linear-gradient(170deg,#0b3a72,#1565c0)}
.formsec h2,.formsec .kicker{color:#fff}
.formsec .kicker{color:var(--sky)}
.formsec .lede{color:#dceaf7}
.formcard{
  background:#fff;border-radius:18px;padding:26px 20px;margin-top:26px;
  text-align:left;box-shadow:var(--shadow);
}
@media (min-width:768px){ .formcard{padding:34px 34px} }
/* the submit button stays centered in the card at every width */
.formcard .btn{display:block;width:100%;max-width:420px;margin-left:auto;margin-right:auto}
.frow{display:grid;grid-template-columns:1fr;gap:14px;margin-bottom:14px}
@media (min-width:600px){ .frow.two{grid-template-columns:1fr 1fr} }
.field label{display:block;font-size:.83rem;font-weight:700;color:var(--ink);
  margin-bottom:5px;letter-spacing:.01em}
.field label .opt{font-weight:500;color:var(--muted);text-transform:none;letter-spacing:0}
.field input,.field select,.field textarea{
  width:100%;font-family:inherit;font-size:16px;color:var(--ink);
  border:1.5px solid var(--line);border-radius:10px;padding:13px 14px;background:#fff;
  min-height:50px;transition:border-color .14s,box-shadow .14s;
}
.field textarea{min-height:84px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0;border-color:var(--blue);box-shadow:0 0 0 3px rgba(21,101,192,.14)}
.field input::placeholder,.field textarea::placeholder{color:#9aa5b1}
.field.bad input,.field.bad select{border-color:var(--err)}
.errmsg{display:none;color:var(--err);font-size:.82rem;font-weight:600;margin-top:5px}
.field.bad .errmsg{display:block}

.consent{display:flex;gap:11px;align-items:flex-start;margin:4px 0 18px;
  background:var(--soft);border:1px solid var(--line);border-radius:10px;padding:13px 15px}
.consent input{width:20px;height:20px;min-height:0;flex:0 0 auto;margin-top:2px;accent-color:var(--blue)}
.consent label{font-size:.83rem;line-height:1.5;color:var(--muted);font-weight:500}

.formnote{font-size:.83rem;color:var(--muted);margin-top:14px;text-align:center}
.formstatus{display:none;border-radius:10px;padding:13px 15px;margin-bottom:16px;
  font-size:.92rem;font-weight:600}
.formstatus.show{display:block}
.formstatus.err{background:#fdf0ee;color:var(--err);border:1px solid #f3d3cd}

/* ---------- faq ---------- */
.faq{text-align:left;max-width:720px;margin:26px auto 0}
.faq details{border:1px solid var(--line);border-radius:10px;padding:0;margin-bottom:10px;background:#fff}
.faq summary{cursor:pointer;font-weight:700;color:var(--ink);padding:16px 18px;
  list-style:none;font-size:1rem;position:relative;padding-right:44px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+';position:absolute;right:18px;top:13px;
  font-size:1.5rem;font-weight:400;color:var(--blue);line-height:1}
.faq details[open] summary::after{content:'−'}
.faq .ans{padding:0 18px 17px;font-size:.97rem;color:var(--body)}

/* ---------- footer ---------- */
footer{background:var(--ink);color:#9aa5b1;padding:34px 0;text-align:center;font-size:.87rem}
footer a{color:#cfd8e3;text-decoration:none}
footer a:hover{text-decoration:underline}
footer .ftname{color:#fff;font-weight:700;font-size:1rem;margin-bottom:6px}
footer .ftlinks{margin-top:14px;display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* ---------- legal pages ---------- */
.legal{text-align:left;max-width:760px;margin:0 auto;padding:44px 20px 60px}
.legal h1{font-family:inherit;font-weight:800;text-transform:none;letter-spacing:-.02em;
  font-size:clamp(1.8rem,6vw,2.5rem);color:var(--ink);margin-bottom:8px;line-height:1.15}
.legal .upd{color:var(--muted);font-size:.9rem;margin-bottom:28px}
.legal h2{font-size:1.2rem;margin:28px 0 10px}
.legal p,.legal li{font-size:1rem}
.legal ul{margin:0 0 14px 20px}
.legal li{margin-bottom:7px}
.legal .back{display:inline-block;margin-bottom:22px;font-weight:700;text-decoration:none}

/* ---------- reveal ---------- */
.rv{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.rv.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .rv{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* ---------- tap-target hardening (mobile) ---------- */
footer .ftlinks a,
footer #ftEmail, footer #ftPhone, footer a[id^="ft"]{
  display:inline-block;padding:11px 8px;min-height:44px;line-height:22px;
}
footer .ftlinks{gap:8px}
.details .vl a{display:inline-block;padding:2px 0;min-height:44px}
.consent input{width:24px;height:24px}
.consent label{padding:2px 0}
