/* =============================================================
   Advancing Care in Advanced Breast Cancer — Design System
   Style: Accessible & Ethical (WCAG-oriented)
   Brand kit: clinical cellular signal — mulberry + clinical pink
   Type: Inter (Frutiger / Neue Haas Grotesk / Arial-based system)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --font:          'Inter', Arial, 'Helvetica Neue', Helvetica, system-ui, sans-serif;

  /* Brand palette (official brand kit) */
  --mulberry:      #5A2746;  /* Primary Authority */
  --mulberry-700:  #471D37;
  --clinical-pink: #D96C8A;  /* Disease-area Accent */
  --deep-rose:     #A83F63;  /* Contrast / Emphasis */
  --soft-blush:    #F7D6DF;  /* Background Tint */
  --warm-ivory:    #F7F1ED;  /* Clarity / Background */

  /* Working aliases */
  --magenta:       #A83F63;
  --rose:          #A83F63;  /* primary CTA (AA on white) */
  --rose-600:      #8E3252;
  --rose-soft:     #F7D6DF;
  --rose-tint:     #FBEFE9;

  /* Neutral / clinical */
  --ink:           #2A1922;
  --ink-soft:      #5A4751;
  --muted:         #897680;
  --line:          #EFE4E5;
  --surface:       #FFFFFF;
  --bg:            #FFFFFF;
  --bg-2:          #F7F1ED;  /* Warm Ivory — subtle, light section tint */

  /* Semantic */
  --primary:       var(--rose);
  --primary-ink:   #FFFFFF;
  --success:       #0E7C5A;
  --success-soft:  #E3F6EE;
  --danger:        #C0271F;
  --danger-soft:   #FCEBEA;
  --ring:          #A83F63;

  /* Scale */
  --radius:        14px;
  --radius-sm:     10px;
  --radius-lg:     22px;
  --shadow-sm:     0 1px 2px rgba(42,16,28,.06), 0 1px 3px rgba(42,16,28,.05);
  --shadow:        0 6px 20px -8px rgba(90,39,70,.24), 0 2px 8px -4px rgba(42,16,28,.10);
  --shadow-lg:     0 24px 60px -24px rgba(90,39,70,.38);
  --container:     1240px;
  --header-h:      92px;

  --gradient:      linear-gradient(135deg, var(--mulberry) 0%, var(--deep-rose) 70%, #B94970 100%);
  --gradient-soft: linear-gradient(135deg, var(--soft-blush), var(--warm-ivory));

  /* Brand is a light identity — render light regardless of OS dark mode. */
  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--mulberry); text-decoration-color: color-mix(in srgb, var(--mulberry) 35%, transparent); text-underline-offset: 3px; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font); line-height: 1.12; letter-spacing: -0.018em; color: var(--ink); font-weight: 700; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -120px; z-index: 200;
  background: var(--mulberry); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 100px); }
.section--tint { background: var(--bg-2); }
.section--snug-top { padding-top: 0; } /* avoids doubled gap when two .sections stack */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--mulberry);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--rose); border-radius: 2px; }

.section__head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 52px); }
.section__head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 14px; color: var(--mulberry); }
.section__head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  min-height: 48px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--mulberry); border-color: rgba(255,255,255,.6); }
.btn--light:hover { background: var(--rose-tint); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--rose); color: var(--mulberry); }
.btn--block { width: 100%; }
.btn--lg { min-height: 54px; font-size: 1.05rem; padding: 0 30px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 42px; height: 42px; flex: none; border-radius: 50%; object-fit: cover; }
.brand__logo { height: 72px; width: auto; display: block; }
@media (max-width: 560px) { .brand__logo { height: 54px; } }
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__txt b { font-family: var(--font); font-size: .98rem; font-weight: 700; letter-spacing: -.01em; }
.brand__txt span { font-size: .72rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) { font-size: .95rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; padding: 9px 14px; border-radius: 999px; transition: color .15s, background-color .15s; }
.nav a:not(.btn):hover { color: var(--mulberry); background: var(--rose-soft); }
.nav__cta { margin-left: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; align-items: center; justify-content: center; color: var(--ink); transition: background-color .2s, border-color .2s; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle[aria-expanded="true"] { background: var(--rose-soft); border-color: var(--clinical-pink); color: var(--mulberry); }

/* ---------- Hero (official creative: pearl bg + photoreal cell) ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; color: var(--ink);
  background: #FBF3F4 url('../img/hero-bg.jpg') no-repeat right center / cover; }
.hero::before { /* readability wash behind the copy */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(255,251,250,.94) 0%, rgba(255,251,250,.82) 44%, rgba(255,251,250,0) 72%); }
.hero__inner { display: grid; grid-template-columns: minmax(0, 640px) 1fr; gap: 24px; align-items: center;
  padding-block: clamp(56px, 9vw, 110px); min-height: clamp(440px, 56vh, 620px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.85); border: 1px solid var(--line);
  color: var(--mulberry); box-shadow: var(--shadow-sm); backdrop-filter: blur(3px);
}
.pill svg { width: 15px; height: 15px; color: var(--deep-rose); }

/* Brand lockup headline — mirrors the approved creative */
.lockup { display: flex; flex-direction: column; gap: 2px; }
.lockup__top { font-size: clamp(2.4rem, 5.8vw, 3.9rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.02; color: var(--mulberry); }
.lockup__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lockup__care { font-size: clamp(2.4rem, 5.8vw, 3.9rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.06; color: var(--deep-rose); }
.lockup__divider { width: 2px; align-self: stretch; background: var(--clinical-pink); border-radius: 2px; margin-block: 8px; }
.lockup__in { font-size: clamp(.78rem, 1.4vw, .95rem); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mulberry); line-height: 1.45; }
.lockup__year { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px;
  font-size: clamp(.85rem, 1.5vw, 1rem); font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--deep-rose); }
.lockup__year::before, .lockup__year::after { content: ""; width: 34px; height: 2px; background: var(--clinical-pink); border-radius: 2px; }

.hero__lead { font-size: 1.07rem; line-height: 1.7; color: var(--ink-soft); margin-top: 20px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; }
.hero__meta-i { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: var(--ink-soft); }
.hero__meta-i svg { width: 18px; height: 18px; color: var(--deep-rose); flex: none; }
.hero__meta-i b { color: var(--ink); font-weight: 600; }

/* Countdown (lives in the CTA band, on gradient) */
.countdown { display: flex; justify-content: center; gap: 12px; margin: 26px 0 4px; }
.countdown__unit { min-width: 78px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; backdrop-filter: blur(3px); }
.countdown__num { font-weight: 800; font-size: 1.9rem; line-height: 1; font-variant-numeric: tabular-nums; color: #fff; }
.countdown__lbl { font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.8); margin-top: 7px; }

/* ---------- Detail cards ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.fact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fact-card__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--rose-soft); color: var(--mulberry); margin-bottom: 14px; }
.fact-card__icon svg { width: 23px; height: 23px; }
.fact-card h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; font-family: var(--font); }
.fact-card p { font-family: var(--font); font-weight: 600; font-size: 1.12rem; color: var(--ink); margin-top: 5px; }
.fact-card span { font-size: .9rem; color: var(--ink-soft); }

/* Hybrid attendance modes */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.mode { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.mode:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mode__ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--rose-soft); color: var(--mulberry); }
.mode__ic svg { width: 23px; height: 23px; }
.mode b { font-size: 1.08rem; display: block; }
.mode p { color: var(--ink-soft); font-size: .95rem; margin-top: 5px; }
@media (max-width: 760px) { .modes { grid-template-columns: 1fr; } }

/* ---------- Topics grid ---------- */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.topic { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.topic::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gradient); transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.topic:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.topic:hover::before { transform: scaleY(1); }
.topic__n { font-family: var(--font); font-weight: 800; font-size: 1rem; color: var(--rose); }
.topic h3 { font-size: 1.18rem; margin: 8px 0 8px; }
.topic p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Agenda timeline ---------- */
.agenda { max-width: 880px; margin-inline: auto; }
.agenda__body { max-width: 70ch; }
.agenda__item { display: grid; grid-template-columns: 116px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.agenda__item:first-child { border-top: 0; }
.agenda__time { font-family: var(--font); font-variant-numeric: tabular-nums; }
.agenda__time b { display: block; font-size: 1.05rem; color: var(--mulberry); font-weight: 700; }
.agenda__time span { font-size: .82rem; color: var(--muted); }
.agenda__body { position: relative; padding-left: 26px; }
.agenda__body::before { content: ""; position: absolute; left: 0; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: var(--surface); border: 3px solid var(--rose); }
.agenda__body::after { content: ""; position: absolute; left: 6px; top: 19px; bottom: -28px; width: 1px; background: var(--line); }
.agenda__item:last-child .agenda__body::after { display: none; }
.agenda__body h3 { font-size: 1.16rem; }
.agenda__body .desc { color: var(--ink-soft); font-size: .96rem; margin-top: 3px; }
.agenda__speaker { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.agenda__speaker .role { font-weight: 500; color: var(--muted); font-size: .82rem; padding: 2px 9px; border-radius: 999px; background: var(--rose-soft); }

/* ---------- Faculty ---------- */
.faculty { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fac-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.fac-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fac-photo { width: 128px; height: 128px; border-radius: 50%; margin: 0 auto 16px; object-fit: cover; display: block; }
.fac-card h3 { font-size: 1.1rem; }
.fac-card .fac-role { color: var(--mulberry); font-weight: 600; font-size: .88rem; margin: 4px 0 10px; }
.fac-card .fac-bio { color: var(--ink-soft); font-size: .9rem; }
.faculty__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; }

/* ---------- Registration ---------- */
.register { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: start; }
.register > * { min-width: 0; } /* grid items default to min-width:auto — long email/text would force overflow */
.register a[href^="mailto:"] { overflow-wrap: anywhere; }
.register__aside h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-top: 14px; }
.register__aside p { color: var(--ink-soft); margin-top: 14px; }
.benefits { margin-top: 26px; display: grid; gap: 14px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit svg { width: 22px; height: 22px; color: var(--success); flex: none; margin-top: 1px; }
.benefit b { font-family: var(--font); display: block; font-size: .98rem; }
.benefit span { color: var(--ink-soft); font-size: .9rem; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font); font-weight: 600; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--rose); }
.field .hint { font-size: .82rem; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rose) 18%, transparent);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); background: var(--danger-soft); }
.field .error { font-size: .82rem; color: var(--danger); font-weight: 500; display: none; align-items: center; gap: 6px; }
.field .error.show { display: flex; }
.field .error svg { width: 14px; height: 14px; }

.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  position: relative; display: flex; align-items: center; gap: 11px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; background: var(--bg);
  font-family: var(--font); font-weight: 600; font-size: .96rem; transition: border-color .15s, background-color .15s;
}
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice__dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--muted); flex: none; display: grid; place-items: center; transition: border-color .15s; }
.choice__dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--rose); transform: scale(0); transition: transform .15s ease; }
.choice:has(input:checked) { border-color: var(--rose); background: var(--rose-soft); }
.choice:has(input:checked) .choice__dot { border-color: var(--rose); }
.choice:has(input:checked) .choice__dot::after { transform: scale(1); }
.choice:has(input:focus-visible) { outline: 3px solid var(--ring); outline-offset: 2px; }

.form-foot { margin-top: 24px; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 18px; font-size: .9rem; color: var(--ink-soft); }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--rose); flex: none; }
.form-privacy { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; }

/* EventsAir registration panel */
.reg-panel__ic { width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 16px; display: grid; place-items: center; background: var(--soft-blush); color: var(--mulberry); }
.reg-panel__ic svg { width: 28px; height: 28px; }
.reg-panel__facts { display: grid; gap: 9px; text-align: left; margin: 20px 0 22px; }
.reg-panel__fact { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 12px 15px; background: var(--warm-ivory); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .92rem; }
.reg-panel__fact svg { width: 18px; height: 18px; color: var(--deep-rose); flex: none; }
.reg-panel__fact b { font-weight: 600; color: var(--ink); }
.reg-panel__fact span { margin-left: auto; color: var(--ink-soft); text-align: right; min-width: 0; overflow-wrap: anywhere; }

/* Alerts */
.alert { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: .95rem; }
.alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert--success { background: var(--success-soft); color: var(--success); border: 1px solid color-mix(in srgb, var(--success) 30%, transparent); }
.alert--error { background: var(--danger-soft); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 30%, transparent); }
.alert b { font-family: var(--font); }

/* ---------- Partners / Sponsors ---------- */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.partner { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.partner__role { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.partner__logo {
  margin: 14px auto 8px; font-family: var(--font); font-weight: 800; font-size: 1.5rem;
  letter-spacing: -.01em; color: var(--mulberry); padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--rose-tint); display: inline-block;
}
.partner__img { height: 64px; width: auto; margin: 16px auto 10px; display: block; object-fit: contain; }
.partner__name { font-size: .9rem; color: var(--ink-soft); }

/* Email address: always one line at a fixed 13px */
.email-line, .footer .f-link--email { font-size: 13px !important; white-space: nowrap; overflow-wrap: normal; letter-spacing: -.02em; }
.hero__meta-i { flex-wrap: wrap; } /* lets the email link break onto its own (single) line instead of overflowing */

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.c-card__hours { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: .85rem; color: var(--muted); }
.c-card__hours svg { width: 14px; height: 14px; color: var(--deep-rose); }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.c-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px; text-align: center; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.c-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--clinical-pink); }
.c-card__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--rose-soft); color: var(--mulberry);
  display: grid; place-items: center; margin: 0 auto 14px; }
.c-card__ic svg { width: 24px; height: 24px; }
.c-card h3 { font-size: 1.08rem; }
.c-card p { color: var(--ink-soft); font-size: .92rem; margin-top: 6px; overflow-wrap: anywhere; }
.c-card .c-card__go { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 600; font-size: .9rem; color: var(--deep-rose); }
.c-card .c-card__go svg { width: 15px; height: 15px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } .contact-grid > * { min-width: 0; } }
@media (max-width: 480px) { .c-card { padding-inline: 12px; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gradient); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 60px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 14px auto 28px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding-block: 48px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer a { color: rgba(255,255,255,.75); text-decoration: none; display: block; padding: 5px 0; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer .f-link { display: flex; align-items: center; gap: 9px; min-width: 0; overflow-wrap: anywhere; }
.footer .f-link svg { width: 16px; height: 16px; color: var(--clinical-pink); flex: none; }
.footer .footer__logo { display: inline-block; width: fit-content; line-height: 0; background: #fff; border-radius: 12px; padding: 12px 18px; }
.footer__logo img { height: 64px; width: auto; display: block; }
.footer__brand p { font-size: .92rem; max-width: 36ch; margin-top: 14px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- Brand values strip ---------- */
.values { background: var(--gradient); color: #fff; position: relative; overflow: hidden; }
.values::after { content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.4px, transparent 1.4px);
  background-size: 18px 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%); mask-image: linear-gradient(90deg, transparent, #000 70%); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.value { display: flex; gap: 14px; align-items: flex-start; padding: 30px 26px; border-left: 1px solid rgba(255,255,255,.16); }
.value:first-child { border-left: 0; }
.value__ic { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); }
.value__ic svg { width: 21px; height: 21px; color: #fff; }
.value b { display: block; font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: -.01em; }
.value span { color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.5; }
@media (max-width: 880px) { .values__grid { grid-template-columns: 1fr 1fr; }
  .value:nth-child(3) { border-left: 0; } .value { border-top: 1px solid rgba(255,255,255,.14); } .value:nth-child(-n+2){border-top:0;} }
@media (max-width: 520px) { .values__grid { grid-template-columns: 1fr; } .value { border-left: 0; } .value:not(:first-child){border-top:1px solid rgba(255,255,255,.14);} }

/* Cellular signal accent — soft glow used behind hero card */
.cell-orb { position: absolute; border-radius: 50%; filter: blur(2px);
  background: radial-gradient(circle at 38% 32%, var(--soft-blush), var(--clinical-pink) 45%, var(--deep-rose) 78%); }

/* ---------- Reveal animation ----------
   Guarded by .js: without JavaScript content is always visible. With JS, a
   one-shot CSS entrance plays on load — final state is ALWAYS visible, so
   content can never be trapped behind an observer that didn't fire. */
.js .reveal { animation: revealIn .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero { background-position: 82% center; }
  .hero::before { background: linear-gradient(180deg, rgba(255,251,250,.93) 0%, rgba(255,251,250,.86) 100%); }
  .register { grid-template-columns: 1fr; gap: 32px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .faculty { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 10px 18px 18px; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform .28s ease, visibility .28s; visibility: hidden; }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a:not(.btn) { padding: 15px 12px; font-size: 1.02rem; border-radius: 0; }
  .nav > a:not(.btn) + a:not(.btn) { border-top: 1px solid var(--line); }
  .nav__cta { margin: 14px 0 0; }
  .nav-toggle { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .facts, .topics, .faculty, .partners, .form-grid, .choice-row { grid-template-columns: 1fr; }
  .agenda__item { grid-template-columns: 1fr; gap: 8px; }
  .agenda__body { padding-left: 0; }
  .agenda__body::before, .agenda__body::after { display: none; }
  .countdown { flex-wrap: wrap; }
  .countdown__unit { min-width: 64px; }
}
