/* ============================================================
   SkinCourses Canada — shared stylesheet
   Palette drawn from the logo: deep navy, terracotta rose,
   blush skin tones, warm cream.
   ============================================================ */

:root {
  --navy: #1C3557;
  --navy-deep: #142842;
  --navy-soft: #33507A;
  --rose: #C2695A;
  --rose-dark: #A9503F;
  --blush: #F4DDD3;
  --blush-deep: #EEC2AE;
  --peach: #F9EFE9;
  --cream: #FDFAF7;
  --ink: #2A2F3A;
  --ink-soft: #5A6272;
  --line: #E8DCD3;
  --shadow: 0 10px 30px rgba(28, 53, 87, 0.10);
  --shadow-soft: 0 4px 14px rgba(28, 53, 87, 0.07);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16.5px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
}

img { max-width: 100%; display: block; }

a { color: var(--rose-dark); }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { width: 46px; height: 46px; }

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.1;
}

.brand-name .accent { color: var(--rose); }

.brand-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover { color: var(--rose-dark); }

.nav-links a.active { border-bottom-color: var(--rose); }

.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--rose-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover { background: var(--blush); transform: translateY(-2px); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--blush) 0%, transparent 60%),
    radial-gradient(700px 420px at -10% 110%, #E7EDF5 0%, transparent 55%),
    var(--cream);
  padding: 84px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--blush);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { text-align: center; }

.hero-art img {
  width: min(360px, 80%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(28, 53, 87, 0.18));
}

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 34px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--blush-deep);
}

.stat-label { font-size: 0.88rem; opacity: 0.85; }

/* ---------- Sections ---------- */

.section { padding: 88px 0; }

.section-alt { background: var(--peach); }

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 10px 0 16px;
}

.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(28,53,87,0.08);
  pointer-events: none;
}

.about-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 40, 66, 0.82));
}

.about-copy h3 { font-size: 1.25rem; margin: 26px 0 8px; }
.about-copy h3:first-of-type { margin-top: 0; }
.about-copy p { color: var(--ink-soft); }

.checklist {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
}

.checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* ---------- Cards ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blush);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card h3 { font-size: 1.25rem; margin-bottom: 12px; }

.card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Course outline ---------- */

.course {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 38px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.course-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

.tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}

.tag-rose { background: var(--blush); color: var(--rose-dark); }
.tag-navy { background: #E3EAF3; color: var(--navy); }

.course h3 { font-size: 1.55rem; margin-bottom: 12px; }

.course > div > p { color: var(--ink-soft); margin-bottom: 20px; }

.course h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.course ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.course ul li {
  padding-left: 24px;
  position: relative;
  color: var(--ink);
  font-size: 0.97rem;
}

.course ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.course-aside {
  background: var(--peach);
  border-radius: 14px;
  padding: 26px;
  align-self: start;
}

.course-aside dl { display: grid; gap: 14px; }

.course-aside dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.course-aside dd { font-weight: 600; color: var(--navy); }

.course-aside .btn { width: 100%; text-align: center; margin-top: 20px; padding: 12px 0; }

/* ---------- Calendar ---------- */

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.cal-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
}

.cal-nav { display: flex; gap: 10px; }

.cal-btn {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: "Inter", sans-serif;
}

.cal-btn:hover { background: var(--blush); }

.cal-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cal-legend span { display: inline-flex; align-items: center; gap: 8px; }

.dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.dot-suture { background: var(--rose); }
.dot-biopsy { background: var(--navy); }
.dot-mixed  { background: #D9A441; }

.calendar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cal-weekdays, .cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-weekdays {
  background: var(--navy);
  color: #fff;
}

.cal-weekdays div {
  padding: 12px 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cal-day {
  min-height: 108px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 8px;
  font-size: 0.85rem;
  position: relative;
  background: #fff;
}

.cal-week .cal-day:last-child { border-right: none; }

.cal-day.other-month { background: #FAF5F0; color: #B9AFa6; }

.cal-day .day-num { font-weight: 600; color: var(--ink-soft); }

.cal-day.today .day-num {
  background: var(--rose);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.cal-event {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  color: #fff;
  font-family: "Inter", sans-serif;
  transition: filter 0.15s;
}

.cal-event:hover { filter: brightness(1.12); }

.cal-event.type-suture { background: var(--rose); }
.cal-event.type-biopsy { background: var(--navy); }
.cal-event.type-mixed  { background: #C08A2D; }

.cal-event small { display: block; font-weight: 500; opacity: 0.85; }

/* Upcoming list */

.event-list { display: grid; gap: 18px; margin-top: 26px; }

.event-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
}

.event-date {
  text-align: center;
  background: var(--peach);
  border-radius: 12px;
  padding: 10px 6px;
}

.event-date .d {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1;
}

.event-date .m {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.planned-event .event-date .d {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.event-info h3 { font-size: 1.14rem; margin-bottom: 4px; }

.event-info p { font-size: 0.9rem; color: var(--ink-soft); }

.school-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #E3EAF3;
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 7px;
}

/* ---------- Modal ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 66, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-backdrop.open { display: flex; }

.modal {
  background: var(--cream);
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.modal h3 { font-size: 1.4rem; margin: 8px 0 16px; }

.modal-meta { display: grid; gap: 10px; margin-bottom: 22px; }

.modal-meta div { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink); }

.modal-meta .ico { flex: 0 0 22px; }

.modal p.desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 24px; }

/* ---------- Registration form ---------- */

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.field { display: grid; gap: 7px; }

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.field label .req { color: var(--rose); }

.field input,
.field select,
.field textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(194, 105, 90, 0.15);
}

.field textarea { resize: vertical; min-height: 96px; }

.field .hint { font-size: 0.78rem; color: var(--ink-soft); }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
  grid-column: 1 / -1;
}

.consent input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--rose); }

.form-error {
  display: none;
  grid-column: 1 / -1;
  background: #FBE9E7;
  border: 1px solid #E7B3AA;
  color: #8C3A2B;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-error.show { display: block; }

.event-preview {
  grid-column: 1 / -1;
  background: var(--peach);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--navy);
  display: none;
}

.event-preview.show { display: block; }

.success-card {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 60px 44px;
}

.success-card.show { display: block; }

.success-card .big { font-size: 3rem; margin-bottom: 14px; }

.success-card h2 { margin-bottom: 14px; }

.success-card p { color: var(--ink-soft); margin-bottom: 10px; }

.success-summary {
  text-align: left;
  background: var(--peach);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 0.95rem;
}

.success-summary div { padding: 4px 0; }

.success-summary strong { color: var(--navy); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
  color: #fff;
  text-align: center;
  padding: 78px 0;
}

.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }

.cta-band p { opacity: 0.85; max-width: 36em; margin: 0 auto 32px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: #C8D2E0;
  padding: 56px 0 30px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; display: grid; gap: 9px; }

.footer-grid a { color: #C8D2E0; text-decoration: none; }

.footer-grid a:hover { color: #fff; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img { width: 44px; height: 44px; background: #fff; border-radius: 50%; }

.footer-brand span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, var(--blush) 0%, transparent 60%),
    var(--cream);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 12px 0 14px; }

.page-hero p { color: var(--ink-soft); max-width: 42em; font-size: 1.08rem; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { width: min(240px, 60%); }
  .cards-grid { grid-template-columns: 1fr; }
  .course { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 72px 1fr; }
  .event-row .btn { grid-column: 1 / -1; text-align: center; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 6%;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }

  .cal-day { min-height: 84px; }
  .cal-event small { display: none; }
}

/* 2026 editorial refresh — shared across all four pages. */
:root {
  --navy: #172f49;
  --navy-deep: #102438;
  --navy-soft: #304d68;
  --rose: #ad503e;
  --rose-dark: #923e2e;
  --cream: #fcfaf7;
  --peach: #f2eee8;
  --blush: #f2ded3;
  --ink-soft: #59636c;
  --line: #deded6;
  --radius: 8px;
  --shadow-soft: none;
}
.container { width: min(1240px, 90%); }
h1, h2 { letter-spacing: -.045em; }
p { text-wrap: pretty; }
.site-header { background: rgba(252,250,247,.97); }
.nav { min-height: 92px; padding: 17px 0; }
.brand img { width: 52px; height: 52px; }
.brand-name { font-size: 1.5rem; letter-spacing: -.04em; }
.brand-sub { font-size: .75rem; letter-spacing: .23em; margin-top: 5px; }
.nav-links { gap: 30px; }
.nav-links a { font-size: .875rem; }
.nav-cta { background: var(--navy); border-radius: 5px; padding: 12px 23px !important; }
.nav-cta:hover { background: var(--rose); }
.btn { border-radius: 5px; padding: 14px 23px; font-size: .875rem; min-height: 48px; }
.btn-primary span { margin-left: 20px; }
.btn-outline { border: 1px solid #acb3b8; }
.hero { background: var(--cream); padding: 56px 0 64px; }
.hero-grid { grid-template-columns: 1.08fr 1fr; gap: 64px; }
.eyebrow { background: none; border-radius: 0; padding: 0; font-size: .75rem; letter-spacing: .16em; margin-bottom: 22px; display: flex; gap: 12px; align-items: center; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; flex-shrink: 0; }
.hero h1 { font-size: clamp(3rem, 5.4vw, 4.65rem); line-height: 1.06; margin-bottom: 28px; font-weight: 400; }
.hero h1 em { font-weight: 600; }
.hero p.lead { max-width: 29em; font-size: 1.0625rem; line-height: 1.8; margin-bottom: 30px; }
.hero-actions { gap: 12px; }
.hero-art { position: relative; margin: 0; height: 560px; border-radius: 6px 6px 70px 6px; overflow: hidden; background: var(--navy); }
.hero-art img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 59%; filter: none; }
.hero-art::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(10,26,39,.85)); pointer-events: none; }
.hero-art figcaption { position: absolute; inset: auto 32px 30px; z-index: 1; text-align: left; color: white; display: grid; gap: 12px; }
.hero-art figcaption > span:nth-child(2) { font-family: 'Fraunces', Georgia, serif; font-size: 1.7rem; line-height: 1.25; letter-spacing: -.02em; }
.photo-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .17em; }
.photo-location { font-size: .8125rem; color: #e5e9ec; }
.stats-band { padding: 31px 0; }
.stats-grid { gap: 0; text-align: left; }
.stats-grid > div { padding: 0 32px; border-left: 1px solid #405265; }
.stats-grid > div:first-child { padding-left: 0; border-left: 0; }
.stat-num { color: #fff; font-size: 2.25rem; font-weight: 400; line-height: 1.3; }
.stat-label { color: #d9e2ea; opacity: 1; font-size: .875rem; margin-top: 5px; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; }
.section-head.center { max-width: 720px; }
.section-head.center .eyebrow { justify-content: center; }
.about-grid { grid-template-columns: .92fr 1.08fr; gap: 72px; }
.about-photo { box-shadow: none; border-radius: 5px; }
.about-photo img { width: 100%; height: 480px; object-fit: cover; object-position: center 65%; }
.about-photo figcaption { font-size: .8125rem; padding: 45px 24px 22px; }
.about-copy h3 { font-family: 'Inter', sans-serif; font-size: 1rem; letter-spacing: -.015em; }
.about-copy p, .checklist { font-size: 1rem; }
.checklist { border-top: 1px solid var(--line); padding-top: 22px; gap: 16px; }
.checklist li::before { background: transparent; color: var(--rose); }
.cards-grid { gap: 0; border-top: 1px solid #ccd0cc; border-bottom: 1px solid #ccd0cc; }
.card { padding: 34px; border: 0; border-right: 1px solid #ccd0cc; background: transparent; box-shadow: none; border-radius: 0; }
.card:first-child { padding-left: 0; }
.card:last-child { border-right: 0; }
.card:hover { transform: none; box-shadow: none; background: rgba(255,255,255,.35); }
.card-icon { width: auto; height: auto; display: block; border-radius: 0; background: none; font-family: 'Fraunces',Georgia,serif; color: var(--rose); font-size: 2rem; font-weight: 400; margin-bottom: 30px; }
.card h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 16px; }
.card p { font-size: 1rem; }
.workshop-story { background: var(--navy); color: #fff; }
.workshop-story .section-head { max-width: 760px; }
.workshop-story .section-head p { color: #d7e0e7; }
.workshop-story .eyebrow { color: #efb9a9; }
.workshop-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.workshop-shot { margin: 0; background: var(--navy-deep); border-radius: 5px; overflow: hidden; }
.workshop-shot img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.workshop-shot figcaption { min-height: 98px; padding: 20px 22px 22px; display: grid; gap: 8px; }
.workshop-shot figcaption > span:last-child { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; line-height: 1.35; }
.workshop-shot .photo-label { color: #efb9a9; }
.event-list { gap: 0; border-top: 1px solid var(--line); }
.event-row { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 24px 0; box-shadow: none; grid-template-columns: 88px 1fr auto; }
.event-date { background: var(--peach); border-radius: 4px; padding: 14px 6px; }
.event-date .d { font-size: 2rem; font-weight: 400; }
.event-date .m { display: block; margin-top: 7px; font-size: .75rem; letter-spacing: .07em; }
.event-info h3 { font-family: 'Inter',sans-serif; font-size: 1rem; line-height: 1.4; }
.school-badge { background: transparent; padding: 0; border-radius: 0; font-size: .8125rem; font-weight: 500; }
.cta-band { background: var(--navy); padding: 76px 0; border-bottom: 1px solid #34485b; }
.cta-band h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 400; }
.cta-band p { font-size: 1rem; }
.site-footer { padding: 64px 0 28px; }
.footer-grid { grid-template-columns: 1.3fr .65fr 1fr; gap: 64px; }
.footer-grid h4 { font-size: .75rem; }
.footer-grid a { overflow-wrap: anywhere; }
.footer-bottom { font-size: .8125rem; opacity: 1; color: #b6c4d0; }
.page-hero { background: var(--peach); padding: 62px 0; }
.page-hero h1 { font-size: clamp(2.8rem,5vw,4.25rem); font-weight: 400; }
.page-hero p { max-width: 44em; font-size: 1.0625rem; }
.course { padding: 40px; border-radius: 6px; border-top: 3px solid var(--navy); box-shadow: none; }
.course h3 { font-size: 1.85rem; font-weight: 400; }
.course h4 { font-size: .875rem; letter-spacing: .08em; }
.course-aside { border-radius: 4px; }
.course-aside dt { font-size: .75rem; }
.tag { font-size: .75rem; }
.cal-title { font-weight: 400; font-size: 2rem; }
.cal-btn { border-radius: 4px; min-height: 44px; }
.cal-day { min-width: 0; }
.cal-event { overflow-wrap: anywhere; border-radius: 3px; }
.cal-event.type-mixed { background: #866018; }
.calendar { box-shadow: none; border-radius: 5px; }
.form-wrap { max-width: 780px; border-radius: 6px; box-shadow: none; border-top: 3px solid var(--navy); }
.registration-note { padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid var(--line); font-size: .9375rem; color: var(--ink-soft); }
.field label { font-size: .875rem; }
.field input, .field select, .field textarea { min-width: 0; width: 100%; font-size: 1rem; border-radius: 4px; }
.field .hint { font-size: .875rem; }
.consent input { flex-shrink: 0; }
.modal { max-height: 90dvh; overflow-y: auto; }
.modal-close, .nav-toggle { min-width: 44px; min-height: 44px; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 5px; }
#about { scroll-margin-top: 110px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 300; background: var(--navy); color: white; padding: 12px 18px; }
.skip-link:focus { top: 12px; }
@media (max-width: 1100px) {
  .hero-grid { gap: 34px; }
  .hero-art { height: 530px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-grid { gap: 40px; }
  .footer-grid { gap: 30px; }
}
@media (max-width: 900px) {
  .nav { min-height: 80px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(2.6rem,5.5vw,4rem); }
  .hero-art { order: 0; height: 520px; }
  .hero-art img { width: 100%; }
  .hero-art figcaption { left: 22px; right: 20px; }
  .hero-art figcaption > span:nth-child(2) { font-size: 1.4rem; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid > div { padding: 0 18px; }
  .stat-num { font-size: 1.8rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo img { height: 440px; }
  .workshop-gallery { grid-template-columns: 1fr; }
  .workshop-shot figcaption { min-height: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .card, .card:first-child { padding: 28px 0; border-right: 0; border-bottom: 1px solid #ccd0cc; }
  .card:last-child { border-bottom: 0; }
  .card-icon { margin-bottom: 14px; }
  .course { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; max-width: 32em; }
}
@media (max-width: 620px) {
  .container { width: 89%; }
  .hero { padding: 40px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(2.7rem,10.5vw,3.8rem); }
  .hero .eyebrow { font-size: .75rem; letter-spacing: .11em; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .hero-art { height: 420px; border-bottom-right-radius: 48px; }
  .stats-band { padding: 26px 0; }
  .stats-grid { grid-template-columns: repeat(3,1fr); gap: 0; }
  .stats-grid > div { padding: 0 12px; }
  .stats-grid > div:nth-child(3) { padding-left: 12px; border-left: 1px solid #405265; }
  .stat-label { font-size: .75rem; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head.center { text-align: left; }
  .section-head.center .eyebrow { justify-content: flex-start; }
  .about-photo img { height: 390px; }
  .event-row { grid-template-columns: 68px minmax(0,1fr); gap: 16px; }
  .event-row .btn { grid-column: 2; justify-self: start; padding: 10px 20px; }
  .page-hero { padding: 40px 0; }
  .course { padding: 24px 20px; gap: 28px; }
  .course-aside { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-wrap, .success-card { padding: 26px 20px; }
  .cal-day { min-height: 70px; padding: 4px 2px; }
  .cal-weekdays div { padding: 12px 0; font-size: .75rem; letter-spacing: 0; }
  .cal-event { padding: 4px 2px; font-size: .75rem; }
  .cal-legend { gap: 14px; }
  .modal { padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.registration-empty h2 { font-size: 2rem; margin-bottom: 20px; }
.registration-empty p { margin: 20px 0; color: var(--ink-soft); overflow-wrap: anywhere; }
.success-section:not(:has(.success-card.show)) { display: none; }

/* Keep faces visible in the new workshop portrait. */
.about-photo img { object-position: center 35%; }
