:root{
  --navy:#0E1B2E;
  --navy-soft:#152A45;
  --paper:#F7F8FA;
  --paper-dim:#EDEFF3;
  --ink:#1B2333;
  --slate:#5B6478;
  --line:#E1E4EA;
  --gold:#B8912F;
  --teal:#0E6E5C;
  --teal-dark:#0A5548;
  --white:#FFFFFF;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  line-height:1.6;
  font-size:clamp(14.5px, 1.4vw, 15.5px);
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){ *{animation:none !important; transition:none !important;} }
a{color:inherit; text-decoration:none;}
ul,ol{list-style:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1120px; margin:0 auto; padding:0 28px;}
.mono{font-family:'JetBrains Mono', monospace;}
h1,h2,h3{font-family:'Fraunces', serif; letter-spacing:-0.01em; color:var(--navy);}

@media (max-width:640px){
  .wrap{padding:0 20px;}
}

/* ===== HEADER ===== */
header{
  position:sticky; top:0; z-index: 60;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.topbar{ background:var(--navy); }
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 28px; font-size:12.5px; color:#AEB6C8;
  gap:12px; flex-wrap:wrap;
}
.topbar-contact{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.topbar-contact a{ color:#D5DAE5; }
.topbar-contact a:hover{ color:var(--gold); }
.topbar .divider{ color:#3A4258; }
.topbar-social{ display:flex; gap:16px; }
.topbar-social a{ color:#AEB6C8; }
.topbar-social a:hover{ color:var(--gold); }
@media (max-width:640px){ .topbar-social{ display:none; } }
@media (max-width:420px){ .topbar-inner{ font-size:11.5px; padding:8px 20px; } }

.nav{
  display:flex; align-items:center; justify-content:space-between; padding:18px 28px;
  background:rgba(247,248,250,0.92); backdrop-filter:blur(10px);
  position:relative;
}
.logo{display:flex; align-items:center; gap:10px; font-family:'Fraunces',serif; font-weight:600; font-size:18px; color:var(--navy);}
.logo .mark{
  width:30px; height:30px; border-radius:7px; background:var(--navy);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  color:var(--gold); font-family:'JetBrains Mono',monospace; font-weight:700; font-size:14px;
}
.nav-links{display:flex; gap:32px; font-size:14px; color:var(--slate); font-weight:500;}
.nav-links a:hover{color:var(--navy);}
.nav-cta{
  background:var(--navy); color:var(--white); font-weight:600; font-size:13.5px;
  padding:11px 20px; border-radius:6px; white-space:nowrap;
}
.nav-cta:hover{background:var(--teal-dark);}

/* mobile nav toggle */
.nav-toggle{
  display:none; width:38px; height:38px; border-radius:8px; border:1px solid var(--line);
  background:var(--white); align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
}
.nav-toggle span{ display:block; width:18px; height:2px; background:var(--navy); position:relative; }
.nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--navy); transition:transform .2s ease;
}
.nav-toggle span::before{ top:-6px; }
.nav-toggle span::after{ top:6px; }

@media (max-width:760px){
  .nav-links{
    display:none; flex-direction:column; gap:2px;
    position:absolute; top:100%; left:0; right:0;
    background:var(--white); border-bottom:1px solid var(--line);
    padding:14px 28px 20px; 
    box-shadow: 0 12px 24px rgba(14, 27, 46, 0.08);
  }
  .nav-links.open{ display: flex; }
  .nav-links a{ padding:10px 0; border-bottom:1px solid var(--paper-dim); }
  .nav-toggle{ display:flex; }
}
@media (max-width:420px){
  .nav{ padding:16px 20px; }
  .logo{ font-size:16px; }
  .nav-cta{ padding:9px 14px; font-size:12.5px; }
}

/* ===== HERO ===== */
.hero{padding:clamp(56px,9vw,96px) 28px 0; border-bottom:1px solid var(--line);}
.hero-inner{max-width:680px; margin:0 auto; text-align:center;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.04em; color:var(--teal);
  text-transform:uppercase; margin-bottom:24px;
}
.eyebrow::before, .eyebrow::after{content:""; width:20px; height:1px; background:var(--teal); opacity:0.5;}
h1{font-size:clamp(30px,6vw,54px); line-height:1.1; font-weight:600;}
h1 .accent{color:var(--teal); font-style:italic;}
.hero p.lead{
  margin:22px auto 0; font-size:clamp(15px,2vw,17px); color:var(--slate); max-width:52ch;
}
.hero-actions{display:flex; gap:14px; margin-top:34px; justify-content:center; flex-wrap:wrap;}
.btn-primary{
  background:var(--navy); color:var(--white); font-weight:600; font-size:15px;
  padding:15px 26px; border-radius:7px; display:inline-block;
}
.btn-primary:hover{background:var(--teal-dark);}
.btn-ghost{
  border:1px solid var(--line); color:var(--navy); font-weight:600; font-size:15px;
  padding:15px 26px; border-radius:7px; background:var(--white); display:inline-block;
}
.btn-ghost:hover{border-color:var(--navy);}
@media (max-width:480px){
  .hero-actions{ flex-direction:column; }
  .hero-actions a{ width:100%; text-align:center; }
}

.stat-bar{
  margin-top:clamp(36px,6vw,64px); border-top:1px solid var(--line);
  display:grid; grid-template-columns:repeat(4,1fr);
}
.stat-bar div{
  padding:26px 12px; text-align:center; border-right:1px solid var(--line);
}
.stat-bar div:last-child{border-right:none;}
.stat-bar b{display:block; font-family:'Fraunces',serif; font-size:clamp(20px,3vw,26px); color:var(--navy); font-weight:600;}
.stat-bar span{font-size:12px; color:var(--slate);}
@media (max-width:640px){
  .stat-bar{grid-template-columns:repeat(2,1fr);}
  .stat-bar div{border-bottom:1px solid var(--line); border-right:1px solid var(--line);}
  .stat-bar div:nth-child(2n){border-right:none;}
}

/* ===== SECTION shared ===== */
section{padding:clamp(48px,8vw,80px) 28px;}
.section-head{max-width:600px; margin-bottom:clamp(28px,5vw,48px);}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.kicker{
  font-family:'JetBrains Mono',monospace; font-size:11.5px; color:var(--gold);
  text-transform:uppercase; letter-spacing:0.08em; margin-bottom:12px; font-weight:600;
}
.section-head h2{font-size:clamp(24px,4vw,34px); font-weight:600; margin-bottom:14px;}
.section-head p{color:var(--slate); font-size:clamp(14px,2vw,15.5px);}

/* ===== WHY CHOOSE US ===== */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px; }
@media (max-width:820px){ .why-grid{ grid-template-columns:1fr; } }
.why-card{
  background:var(--white); border:1px solid var(--line); border-radius:14px; padding:28px;
}
.why-icon{
  width:42px; height:42px; border-radius:10px; background:var(--paper-dim); color:var(--teal);
  display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700;
  margin-bottom:18px;
}
.why-card h3{ font-size:18px; font-weight:600; margin-bottom:10px; }
.why-card p{ font-size:14px; color:var(--slate); }

/* ===== ABOUT / OUTCOMES ===== */
.about{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.about-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(28px,5vw,56px); align-items:start;}
@media (max-width:820px){.about-grid{grid-template-columns:1fr;}}
.about-grid p{color:var(--slate); margin-bottom:16px; font-size:clamp(14px,2vw,15.5px);}
.about-grid strong{color:var(--navy);}
.outcome-card{
  background:var(--paper); border:1px solid var(--line); border-radius:10px;
  padding:18px 20px; margin-bottom:12px; display:flex; gap:14px; align-items:flex-start;
}
.outcome-card .num{
  font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--teal); font-weight:700;
  flex-shrink:0; padding-top:2px;
}
.outcome-card h4{font-family:'Inter',sans-serif; font-size:14.5px; font-weight:600; color:var(--navy); margin-bottom:4px;}
.outcome-card p{font-size:13.5px; color:var(--slate); margin:0;}

/* ===== CURRICULUM (multi-track grid, e.g. full curriculum overview page) ===== */
.curriculum-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:32px;
  align-items:start;
}
@media (max-width:1100px){
  .curriculum-grid{ grid-template-columns:1fr; gap:40px; }
}

.curriculum-track{
  min-width:0;
  padding:28px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:14px;
}
.curriculum-track.featured{
  border:2px solid var(--teal);
  position:relative;
}
.curriculum-track.featured::before{
  content:"RECOMMENDED";
  position:absolute;
  top:-12px;
  right:22px;
  padding:5px 10px;
  border-radius:4px;
  background:var(--teal);
  color:var(--white);
  font-family:'JetBrains Mono',monospace;
  font-size:10px;
  letter-spacing:0.08em;
}
@media (max-width:600px){
  .curriculum-track{ padding:22px 18px; }
  .curriculum-track.featured::before{ right:14px; font-size:9px; }
}

.track-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.track-label{
  display:block;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  color:var(--teal);
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.track-header h3{
  margin-top:6px;
  font-size:clamp(20px,3vw,25px);
  font-weight:600;
}
.track-duration{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  color:var(--slate);
  white-space:nowrap;
  padding-top:5px;
}
.track-description{
  color:var(--slate);
  font-size:14px;
  line-height:1.7;
  margin-bottom:32px;
  max-width:60ch;
}
@media (max-width:600px){
  .track-duration{ white-space:normal; padding-top:0; }
}

/* ===== TIMELINE (used inside a track, or standalone on a single-program page) ===== */
.curriculum-timeline{
  position:relative;
  padding-left:36px;
}
.curriculum-timeline::before{
  content:"";
  position:absolute;
  left:11px;
  top:6px;
  bottom:6px;
  width:1px;
  background:var(--line);
}
.module{
  position:relative;
  padding-bottom:36px;
}
.module:last-child{ padding-bottom:0; }
.module::before{
  content:"";
  position:absolute;
  left:-36px;
  top:2px;
  width:23px;
  height:23px;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--teal);
  box-sizing:border-box;
}
.module.capstone::before{ background:var(--teal); }
.module-head{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:6px;
  flex-wrap:wrap;
}
.module-head .tag{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  color:var(--slate);
  text-transform:uppercase;
  letter-spacing:0.04em;
}
.module h3{ font-size:clamp(16px,2.5vw,19px); font-weight:600; line-height:1.3; }
.module p{ color:var(--slate); font-size:14px; line-height:1.65; max-width:60ch; margin-top:4px; }
.module .sessions{
  margin-top:10px; display:flex; gap:8px 20px; flex-wrap:wrap; font-size:13px; color:var(--slate);
}
.module .sessions b{ color:var(--navy); font-weight:600; }

@media (max-width:600px){
  .curriculum-timeline{ padding-left:32px; }
  .curriculum-timeline::before{ left:9px; }
  .module::before{ left:-32px; width:20px; height:20px; }
  .module h3{ font-size:16.5px; }
  .module p{ font-size:13.5px; }
  .module .sessions{ display:flex; flex-direction:column; gap:4px; }
}

/* ===== PROGRAMS ===== */
#programs{background:var(--navy); color:var(--white);}
#programs .section-head h2{color:var(--white);}
#programs .kicker{color:var(--gold);}
#programs .section-head p{color:#AEB6C8;}

.programs-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch;
}
@media (max-width:920px){ .programs-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .programs-grid{grid-template-columns:1fr;} }

.program-card{
  background:var(--white); color:var(--ink); border-radius:14px; padding:28px;
  display:flex; flex-direction:column; border:2px solid transparent;
}
.program-card.free{ border-color:var(--gold); }
.program-top{
  display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; gap:10px;
}
.badge{
  font-family:'JetBrains Mono',monospace; font-size:10.5px; text-transform:uppercase; letter-spacing:0.04em;
  background:var(--paper-dim); color:var(--slate); padding:4px 10px; border-radius:20px; font-weight:600;
}
.badge-free{ background:rgba(184,145,47,0.14); color:var(--gold); }
.program-card .duration{font-size:12px; color:var(--slate); white-space:nowrap;}
.program-card h3{font-size:19px; font-weight:600; margin-bottom:8px;}
.program-card p{font-size:14px; color:var(--slate); flex-grow:1; margin-bottom:18px;}
.program-price{
  font-family:'Fraunces',serif; font-weight:600; font-size:clamp(24px,3vw,30px); color:var(--navy); margin-bottom:18px;
}
.program-price span{font-size:13px; color:var(--slate); font-weight:400; font-family:'Inter',sans-serif;}
.program-card .full{width:100%; text-align:center; display:block;}
.program-actions{ display:flex; flex-direction:column; gap:10px; }
.link-more{
  font-size:13px; font-weight:600; color:var(--teal); text-align:center; padding:4px 0;
}
.link-more:hover{ color:var(--teal-dark); text-decoration:underline; }

.scholarship-note{
  margin-top:32px; text-align:center; font-size:13.5px; color:#AEB6C8;
}

/* ===== APPLY FORM ===== */
.apply-form{
  max-width:600px; margin:0 auto; text-align:left;
  background:var(--white); border:1px solid var(--line); border-radius:14px;
  padding:clamp(22px,4vw,36px);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
@media (max-width:560px){ .form-row{grid-template-columns:1fr; gap:0;} }

.form-group{margin-bottom:20px;}
.form-group label{
  display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:7px;
}
.form-group label .optional{color:var(--slate); font-weight:400;}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%; font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink);
  background:var(--paper); border:1px solid var(--line); border-radius:8px;
  padding:12px 14px; outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--teal); box-shadow:0 0 0 3px rgba(14,110,92,0.12);
}
.form-group textarea{resize:vertical; min-height:90px;}

.apply-form .full{width:100%; text-align:center; border:none; cursor:pointer; font-family:'Inter',sans-serif;}
.form-note{
  text-align:center; font-size:12.5px; color:var(--slate); margin-top:14px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px; }
@media (max-width:820px){ .testimonials-grid{ grid-template-columns:1fr; } }
.testimonial-card{
  background:var(--white); border:1px solid var(--line); border-radius:14px; padding:28px;
  display:flex; flex-direction:column;
}
.stars{ color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:14px; }
.quote{ font-size:14.5px; color:var(--ink); line-height:1.6; flex-grow:1; margin-bottom:20px; font-style:italic; }
.testimonial-who{ display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid var(--line); }
.avatar{
  width:38px; height:38px; border-radius:50%; background:var(--paper-dim); color:var(--slate);
  display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; flex-shrink:0;
}
.t-name{ font-size:14px; font-weight:600; color:var(--navy); }
.t-role{ font-size:12.5px; color:var(--slate); margin-top:1px; }

/* ===== FAQ ===== */
.faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
.faq-item summary{
  cursor:pointer; font-family:'Fraunces',serif; font-weight:600; font-size:clamp(15px,2vw,16.5px); color:var(--navy);
  display:flex; justify-content:space-between; align-items:center; gap:12px; list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; color:var(--teal); font-size:20px; font-weight:400; font-family:'Inter',sans-serif; flex-shrink:0;}
.faq-item[open] summary::after{content:"–";}
.faq-item p{margin-top:12px; color:var(--slate); font-size:14.5px; max-width:62ch;}

/* ===== FINAL CTA ===== */
.final-cta{
  text-align:center; background:var(--paper-dim); border-top:1px solid var(--line);
}
.final-cta h2{font-size:clamp(26px,4.5vw,38px); margin-bottom:14px;}
.final-cta p{color:var(--slate); max-width:48ch; margin:0 auto 30px;}

/* ===== COURSE PAGE — HERO ===== */
.course-hero{ padding:clamp(44px,8vw,64px) 28px 0; border-bottom:1px solid var(--line); }
.course-hero-inner{ max-width:760px; margin:0 auto; text-align:center; }
.course-hero h1{ font-size:clamp(28px,5.5vw,50px); line-height:1.1; margin-top:18px; }
.course-hero .lead{ margin-top:20px; font-size:clamp(15px,2vw,17px); color:var(--slate); max-width:56ch; margin-left:auto; margin-right:auto; }
.course-hero-actions{ display:flex; gap:14px; margin-top:32px; justify-content:center; flex-wrap:wrap; }
@media (max-width:480px){
  .course-hero-actions{ flex-direction:column; }
  .course-hero-actions a{ width:100%; text-align:center; }
}

.feature-pills{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:40px; padding-bottom:48px;
}
.feature-pill{
  display:flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--line);
  border-radius:30px; padding:10px 18px; font-size:13px; font-weight:600; color:var(--navy);
}
.feature-pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--teal); flex-shrink:0; }

/* ===== COURSE PAGE — OVERVIEW / OUTCOMES ===== */
.course-overview{ max-width:760px; }
.course-overview p{ color:var(--slate); font-size:clamp(14px,2vw,15.5px); margin-bottom:14px; }
.outcomes-list{ margin-top:18px; display:flex; flex-direction:column; gap:12px; max-width:720px; }
.outcomes-list li{ display:flex; gap:14px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
.outcomes-list .num{
  font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--teal); font-weight:700;
  background:var(--paper-dim); width:26px; height:26px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; margin-top:1px;
}

/* ===== COURSE PAGE — COHORT BANNER ===== */
.cohort-banner{
  background:var(--navy); color:var(--white); border-radius:16px; padding:clamp(24px,4vw,36px) clamp(24px,4vw,40px);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px;
  margin:clamp(36px,6vw,56px) 0;
}
.cohort-banner .info .label{ font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--gold); text-transform:uppercase; letter-spacing:0.06em; }
.cohort-banner .info h3{ color:var(--white); font-size:clamp(19px,3vw,24px); margin-top:8px; }
.cohort-banner .info .meta{ margin-top:6px; font-size:13.5px; color:#AEB6C8; }
.cohort-banner .actions{ display:flex; gap:12px; flex-wrap:wrap; }
.cohort-banner .btn-primary{ background:var(--gold); color:var(--navy); }
.cohort-banner .btn-primary:hover{ background:#CBA23F; }
@media (max-width:560px){
  .cohort-banner{ flex-direction:column; align-items:flex-start; }
  .cohort-banner .actions{ width:100%; }
  .cohort-banner .actions a{ width:100%; text-align:center; }
}

/* ===== COURSE PAGE — CAREER PATHWAYS ===== */
.career-pills{ display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.career-pill{
  background:var(--white); border:1px solid var(--line); border-radius:10px;
  padding:14px 20px; font-size:14px; font-weight:600; color:var(--navy);
}

/* ===== COURSE PAGE — PRICING TIERS ===== */
.pricing-tiers{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; }
@media (max-width:820px){ .pricing-tiers{ grid-template-columns:1fr; } }
.tier-card{
  background:var(--white); border:1px solid var(--line); border-radius:14px; padding:28px; text-align:center;
}
.tier-card.featured{ border-color:var(--gold); box-shadow:0 0 0 1px var(--gold); }
.tier-card .tier-label{ font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--slate); text-transform:uppercase; letter-spacing:0.05em; }
.tier-card .tier-price{ font-family:'Fraunces',serif; font-weight:600; font-size:clamp(26px,4vw,32px); color:var(--navy); margin:12px 0 4px; }
.tier-card .tier-note{ font-size:12.5px; color:var(--slate); margin-bottom:20px; }

/* ===== COURSE PAGE — HELP / CONTACT BANNER ===== */
/* .help-banner = simple centered CTA banner (e.g. "Still have questions?") */
.help-banner{
  background:var(--paper-dim); border-radius:16px; padding:clamp(28px,5vw,44px); text-align:center; margin:0 0 24px;
}
.help-banner h3{ font-size:clamp(19px,3vw,22px); margin-bottom:10px; }
.help-banner p{ color:var(--slate); font-size:14.5px; margin-bottom:22px; }

/* .contact-banner = card containing an actual contact form (distinct from .help-banner CTA) */
.contact-banner{
  padding:clamp(20px,4vw,24px) clamp(20px,4vw,28px);
  border:1px solid var(--line);
  background:var(--white);
  border-radius:16px;
}
.contact-banner .section-head{ margin-bottom:18px; }
.contact-banner h3{ font-size:clamp(19px,3vw,22px); margin:4px 0; }
.contact-banner .section-head p{ font-size:13px; margin:0; }

.contact-form .form-row{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:10px;
}
@media (max-width:600px){
  .contact-form .form-row{ grid-template-columns:1fr; }
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%; box-sizing:border-box; padding:10px 12px; font-size:13px;
  border:1px solid var(--line); border-radius:6px; background:var(--white); color:var(--navy);
  font-family:inherit; outline:none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:var(--teal); box-shadow:0 0 0 3px rgba(14,110,92,0.12);
}
.contact-form textarea{
  display:block; width:100%; height:70px; min-height:70px; resize:vertical; margin-bottom:10px;
}
.contact-form .btn-primary{
  display:block; margin:0 auto; padding:10px 18px; font-size:13px; border:0; cursor:pointer; width:100%; max-width:220px;
}
@media (max-width:600px){
  .contact-banner{ padding:22px 18px; }
  .contact-form .btn-primary{ width:100%; max-width:none; }
}

/* ===== FOOTER ===== */
footer{background:var(--navy); color:#AEB6C8; padding:clamp(40px,7vw,64px) 28px 28px;}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.1);
}
@media (max-width:760px){ .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;} }
@media (max-width:480px){ .footer-grid{grid-template-columns:1fr; row-gap:28px;} }
.footer-brand .logo{color:var(--white); margin-bottom:14px;}
.footer-brand p{font-size:13.5px; color:#8B94AC; max-width:34ch;}
.footer-col h4{
  font-family:'JetBrains Mono',monospace; font-size:11.5px; color:var(--gold); text-transform:uppercase;
  letter-spacing:0.06em; margin-bottom:16px;
}
.footer-col ul{display:flex; flex-direction:column; gap:10px;}
.footer-col a{font-size:13.5px; color:#C3C9DA;}
.footer-col a:hover{color:var(--white);}
.footer-social{ display:flex; gap:16px; margin-top:18px; }
.footer-social a{ font-size:13px; color:#C3C9DA; }
.footer-social a:hover{ color:var(--gold); }
.footer-hours{ font-size:13.5px; color:#8B94AC; }
.footer-legal-row{ padding:20px 0; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-legal-row .legal{ display:flex; gap:24px; flex-wrap:wrap; }
.footer-legal-row .legal a{ font-size:12.5px; color:#8B94AC; }
.footer-legal-row .legal a:hover{ color:var(--white); }

.footer-bottom{
  padding-top:24px; display:flex; justify-content:space-between; align-items:center;
  font-size:12.5px; color:#7C86A0; flex-wrap:wrap; gap:12px;
}
@media (max-width:480px){
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}







/* ----- This is the form select styling ----- */



.form-select{margin-bottom:20px;}
.form-select label{
  display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:7px;
}
.form-select label .optional{color:var(--slate); font-weight:400;}

.form-select input,
.form-select select,
.form-select textarea{
  width:100%; font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink);
  background:var(--paper); border:1px solid var(--line); border-radius:8px;
  padding:12px 14px; outline:none;
}
.form-select input:focus,
.form-select select:focus,
.form-select textarea:focus{
  border-color:var(--teal); box-shadow:0 0 0 3px rgba(14,110,92,0.12);
}
.form-select textarea{resize:vertical; min-height:90px;}
