@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --primary: #C5ABA3;
  --dark: #2D2E32;
  --bg: #FAF9F7;
  --border: #e8e5e0;
  --muted: #6b6860;
  --muted-light: #9a9690;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-logo img { height: 32px; display: block; }
.nav-btns { display: flex; gap: 10px; align-items: center; }
.btn { display: inline-block; font-family: 'Inter', sans-serif; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; padding: 11px 28px; border-radius: 0; cursor: pointer; text-decoration: none; border: 1px solid var(--dark); background: transparent; color: var(--dark); transition: background .2s, color .2s; }
.btn:hover { background: var(--dark); color: #fff; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: #b09890; border-color: #b09890; }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #1a1b1e; }

/* HERO VIDEO */
.hero {
  position: relative;
  height: 90vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* CRED BAR */
.credbar {
  background: var(--dark);
  padding: 20px 48px;
  display: flex;
  gap: 0;
}
.credbar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.credbar-item:first-child { padding-left: 0; }
.credbar-item:last-child { border-right: none; }
.credbar-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}
.credbar-text {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* SECTIONS */
.section { padding: 64px 48px; }
.section-cream { background: #f5f2ef; }
.section-dark { background: var(--dark); color: #fff; }
.section-white { background: #fff; }
.eyebrow {
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: rgba(255,255,255,.35); }
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-dark h2 { color: #fff; }
.body-copy {
  font-size: .82rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 640px;
}
.section-dark .body-copy { color: rgba(255,255,255,.55); }

/* THREE CTA BOXES */
.cta-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.cta-box {
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
  background: #fff;
}
.cta-box:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.cta-box-icon { margin-bottom: 16px; line-height: 1; }
.cta-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--dark);
}
.cta-box-desc { font-size: .72rem; color: var(--muted); line-height: 1.6; }

/* COURSE CARDS */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.course-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: #fff;
  text-decoration: none;
  display: block;
  transition: border-color .2s;
}
.course-card:hover { border-color: var(--primary); }
.course-card-level { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 10px; }
.course-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 12px;
}
.course-card-desc { font-size: .72rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.course-card-fee {
  font-size: .6rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .02em;
}
.course-card-meta {
  font-size: .6rem;
  color: var(--muted-light);
  border-top: 1px solid #f0ede8;
  padding-top: 10px;
  line-height: 1.8;
}
.course-card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
}

/* IMAGES */
.img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 28px;
}
.img-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 28px;
}
.campus-item { position: relative; }
.campus-item img { width: 100%; height: 320px; object-fit: cover; display: block; }
.campus-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: 24px 20px 16px;
  color: #fff;
}
.campus-label-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 4px;
}
.campus-label-desc { font-size: .65rem; color: rgba(255,255,255,.7); line-height: 1.5; }

/* FORM */
.form-wrap {
  background: #f5f2ef;
  padding: 56px 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  width: 100%;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid var(--border);
  padding: 11px 14px;
  font-size: .8rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  border-radius: 0;
  outline: none;
  width: 100%;
  min-width: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--primary); }
.form-field textarea { resize: vertical; min-height: 100px; }
.checkbox-row { display: block; overflow: hidden; margin-top: 8px; font-size: .74rem; color: var(--muted); line-height: 1.5; }
.checkbox-row input[type="checkbox"] { float: left; margin-top: 3px; margin-right: 10px; width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-row label { display: block; overflow: hidden; text-transform: none !important; letter-spacing: normal !important; font-size: .74rem !important; color: var(--muted); line-height: 1.6; }

/* COUNTDOWN */
.countdown-wrap {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  justify-content: center;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.countdown-label { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-light); margin-top: 6px; }
.countdown-sep { font-size: 2.4rem; color: var(--border); align-self: flex-start; margin-top: 6px; }

/* ACCORDION FAQ */
.accordion { border: 1px solid var(--border); margin-top: 24px; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 500;
}
.acc-q:hover { background: #f8f7f5; }
.acc-arrow { color: var(--primary); font-size: 1rem; transition: transform .2s; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-a {
  padding: 0 24px 18px;
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.7;
  display: none;
}
.acc-item.open .acc-a { display: block; }

/* ADMISSIONS CONTACT */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.contact-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contact-card:hover { border-color: var(--primary); }
.contact-card-icon { margin-bottom: 12px; line-height: 1; }
.contact-card-type {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-card-value { font-size: .8rem; font-weight: 500; color: var(--dark); }
.contact-card-value a { color: var(--dark); text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 3px; }
.contact-card-note { font-size: .68rem; color: var(--muted-light); margin-top: 6px; }

/* FINAL CTA */
.final-cta {
  background: #f5f2ef;
  padding: 72px 48px;
  text-align: center;
}
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.final-cta-body { font-size: .8rem; color: var(--muted); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.final-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--dark);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo img { height: 24px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-decoration: none;
}
.footer-links a:hover { color: rgba(255,255,255,.65); }
.footer-copy { font-size: .6rem; color: rgba(255,255,255,.25); letter-spacing: .08em; }

/* COURSE PAGE HERO */
.course-hero {
  background: var(--dark);
  padding: 64px 48px 48px;
}
.course-hero-level {
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.course-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.course-hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.course-hero-meta span { font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .08em; }
.course-hero-accred { font-size: .58rem; color: rgba(255,255,255,.3); margin-top: 10px; letter-spacing: .06em; }

/* COURSE ALERT BANNER */
.course-alert {
  background: var(--primary);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.course-alert-text { font-size: .68rem; color: #fff; letter-spacing: .06em; }
.course-alert .btn { white-space: nowrap; background: #fff; color: var(--dark); border-color: #fff; flex-shrink: 0; }
.course-alert .btn:hover { background: #f0ede8; }

/* COURSE TWO-COL */
.course-body {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.course-main { flex: 1; padding: 44px 48px; border-right: 1px solid var(--border); }
.course-sidebar { width: 300px; flex-shrink: 0; padding: 44px 32px; }
.course-modules { margin-top: 28px; }
.course-module {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0ede8;
  font-size: .72rem;
  color: #3a3835;
}
.course-module:last-child { border-bottom: none; }
.module-dot { width: 6px; height: 6px; background: var(--primary); flex-shrink: 0; }
.quick-facts-table { width: 100%; border-collapse: collapse; }
.quick-facts-table tr td:first-child {
  font-size: .58rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 0;
  border-bottom: 1px solid #f5f3f0;
  vertical-align: top;
}
.quick-facts-table tr td:last-child {
  font-size: .68rem;
  color: var(--dark);
  padding: 8px 0 8px 10px;
  border-bottom: 1px solid #f5f3f0;
  line-height: 1.5;
}
.quick-facts-table tr:last-child td { border-bottom: none; }
.sidebar-actions { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }

/* THANK YOU PAGE */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  text-align: center;
}
.thankyou-inner { max-width: 520px; }
.thankyou-check {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.4rem;
  color: #fff;
}
.thankyou-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.thankyou-inner p { font-size: .82rem; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

/* APPLY PAGE HERO */
.apply-hero {
  background: var(--dark);
  padding: 72px 48px;
  text-align: center;
}
.apply-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}
.apply-hero p { font-size: .82rem; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 56px; }
  .nav-btns .btn:first-child { display: none; }
  .section { padding: 44px 20px; }
  .credbar { padding: 16px 20px; flex-wrap: wrap; }
  .credbar-item { flex: 0 0 100%; padding: 8px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .course-grid { grid-template-columns: 1fr; }
  .cta-boxes { grid-template-columns: 1fr; }
  .img-row { grid-template-columns: 1fr; }
  .img-row img { height: 200px; }
  .campus-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 16px; }
  .form-grid { grid-template-columns: 1fr; width: 100%; }
  .form-field.full { grid-column: 1; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; /* prevent iOS zoom */ }
  .final-cta { padding: 48px 20px; }
  .final-btns { flex-direction: column; align-items: stretch; }
  .final-btns .btn { text-align: center; width: 100%; }
  .hero-content h1 { font-size: 2.2rem; }
  .course-body { flex-direction: column; }
  .course-sidebar { width: 100%; border-top: 1px solid var(--border); }
  .course-hero { padding: 44px 20px 36px; }
  .course-alert { padding: 12px 20px; flex-direction: column; align-items: flex-start; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .countdown-wrap { gap: 12px; }
  .countdown-num { font-size: 2.2rem; }
}
