/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xs);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: opacity 0.15s var(--ease);
}

.brand:hover {
  color: var(--text);
  opacity: 0.9;
}

.brand__text {
  font-size: 1.05rem;
}

.brand__logo {
  height: 2.4rem;
  width: auto;
  display: block;
}

.brand__logo--sm {
  height: 1.9rem;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #111 0%, #2b2f33 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.94);
}

.brand__mark--sm {
  width: 1.65rem;
  height: 1.65rem;
}

.brand__mark--sm::after {
  inset: 0.32rem;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-bar {
  width: 1.15rem;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.site-header.is-open .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    display: none;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
    color 0.18s var(--ease), transform 0.12s var(--ease), box-shadow 0.18s var(--ease);
  will-change: transform;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 6px 16px rgba(10, 14, 18, 0.18);
}

.btn--primary:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 10px 22px rgba(10, 14, 18, 0.22);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--text-subtle);
  background: var(--surface);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn--sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .hero {
    padding: 6.5rem 0 5rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(15, 118, 110, 0.14), transparent 60%),
    radial-gradient(500px 260px at 0% 20%, rgba(15, 118, 110, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .hero__grid {
    gap: 4.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero__badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ring);
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.05rem, 5.4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 20ch;
}

.hero__title em {
  font-style: normal;
  color: var(--accent-strong);
  background: linear-gradient(180deg, transparent 60%, var(--accent-ring) 60%);
  padding: 0 0.15em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero visual panel */
.hero__panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
  display: none;
}

@media (min-width: 900px) {
  .hero__panel {
    display: block;
  }
}

.hero__figure {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent-soft), var(--surface) 120%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 899px) {
  .hero__figure {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 5 / 4;
  }
}

.hero__panel-title {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.hero__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}

.hero__panel-list li::before {
  content: "✓";
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.conference-promo {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-soft), var(--surface) 58%);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.conference-promo:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.conference-promo__eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.conference-promo__title {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.25;
}

.conference-promo__meta {
  color: var(--text-muted);
}

.conference-promo__cta {
  font-weight: 600;
  color: var(--accent-strong);
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats__item {
  padding: 1.25rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.stats__item:first-child {
  border-top: 0;
}

@media (min-width: 640px) {
  .stats__item {
    border-top: 0;
    border-left: 1px solid var(--border);
  }

  .stats__item:first-child {
    border-left: 0;
  }
}

.stats__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stats__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

@media (min-width: 1200px) {
  .section {
    padding: 6rem 0;
  }
  .section--tight {
    padding: 4rem 0;
  }
}

.section--alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section__intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 38rem;
  font-size: 1rem;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  margin-bottom: 0.85rem;
}

.card__icon.card__icon--img {
  display: block;
  object-fit: cover;
  background: none;
  border: none;
  border-radius: 10px;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  min-height: 3.5rem;
}

.section--alt .card {
  background: var(--surface-2);
}

.card__title {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card__body {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}

/* Teaser card that is itself a link */
.card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card--link:hover,
.card--link:focus-visible {
  color: inherit;
}

.card--link:hover::before,
.card--link:focus-visible::before {
  opacity: 1;
}

.card__cta {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-strong);
  transition: transform 0.2s var(--ease);
}

.card--link:hover .card__cta {
  transform: translateX(2px);
}

/* ---------- Split / aside ---------- */
.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 320px);
    align-items: start;
    gap: 2.5rem;
  }
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.25rem 0;
}

.step-num {
  flex: 0 0 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 118, 110, 0.22);
  box-shadow: var(--shadow-xs);
}

.step-text {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.step-text strong {
  color: var(--text);
}

.aside {
  margin: 0;
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--accent-soft), #fff 120%);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  box-shadow: var(--shadow-xs);
}

.aside strong {
  color: var(--text);
}

/* ---------- CTA ---------- */
.cta {
  padding: 3rem 0 4rem;
}

.cta__panel {
  position: relative;
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(600px 220px at 50% -20%, var(--accent-ring), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cta__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 3.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.cta__text {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.cta__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-subtle);
}

.cta__meta a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.cta__meta a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.5rem;
  color: var(--text-muted);
}

.site-footer__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col__title {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.footer-col__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.footer-col__blurb {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 22rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s var(--ease);
}

.footer-list a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ---------- Page hero / prose ---------- */
.page-hero {
  position: relative;
  padding: 3.25rem 0 1.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 80% 0%, rgba(15, 118, 110, 0.1), transparent 60%);
  pointer-events: none;
}

.page-hero__eyebrow {
  position: relative;
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.page-hero__title {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-hero__lead {
  position: relative;
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.conference-banner {
  margin: 1.25rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 6;
}

.conference-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-columns {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .program-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.program-day {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.program-day__title {
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 700;
  background: var(--surface-alt);
}

.program-table {
  width: 100%;
  border-collapse: collapse;
}

.program-table th,
.program-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0.9rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
}

.program-table th {
  background: var(--surface-alt);
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.program-table tbody tr:hover {
  background: var(--accent-soft);
}

.program-table tbody tr:last-child td {
  border-bottom: 0;
}

.eoi-form {
  margin-top: 1.2rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-field span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-strong);
  outline: 2px solid var(--accent-ring);
  outline-offset: 1px;
}

.form-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.15rem 0 0.25rem;
  color: var(--text);
}

.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

.eoi-form__actions {
  margin-top: 0.5rem;
}

.about-grid {
  display: grid;
  gap: 1.15rem;
  padding: 1rem 0 3rem;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Profile cards ---------- */
.profiles .section__intro {
  margin-bottom: 1.5rem;
}

.profiles-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.profile-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.profile-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.profile-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.profile-card__avatar.profile-card__avatar--photo {
  display: block;
  object-fit: cover;
  object-position: center top;
  background: none;
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: 999px;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  min-height: 4rem;
}

.profile-card__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.profile-card__role {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.profile-card__role a {
  font-weight: 500;
}

.profile-card__contact {
  margin: 0;
}

.profile-card__contact > div {
  margin: 0 0 0.5rem;
}

.profile-card__contact > div:last-child {
  margin-bottom: 0;
}

.profile-card__contact dd {
  margin: 0;
  font-size: 0.9rem;
}

.profile-card__contact a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.profile-card__contact a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.profile-card__note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--border);
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.45;
}

/* ---------- Legal prose (privacy / terms) ---------- */
.legal {
  max-width: 44rem;
  padding: 1.25rem 0 3rem;
}

.legal__meta {
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.legal h3 {
  font-size: 0.98rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.legal ul,
.legal ol {
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.25rem;
}

.legal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 0;
}
