:root {
  --ink: #0a1628;
  --navy: #0f2744;
  --navy-mid: #1a3a5c;
  --slate: #5c6f84;
  --mist: #e8eef4;
  --paper: #f7f5f1;
  --gold: #b8954a;
  --gold-soft: #d4bc7a;
  --brown: #5a3a24;
  --white: #ffffff;
  --max: 68rem;
  --font-display: "Literata", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  padding: 0.5rem 0.75rem;
}

/* —— Header —— */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.25rem 1.5rem;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.35rem;
  object-fit: cover;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: flex-end;
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
}

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

/* —— Nav dropdown —— */
.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.88;
  cursor: pointer;
}

.nav__dropdown-toggle:hover {
  opacity: 1;
}

.nav__dropdown-toggle svg {
  width: 0.8rem;
  height: 0.8rem;
  transition: transform 0.2s ease;
}

.nav__dropdown.is-open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.75rem;
  min-width: 13rem;
  padding: 0.4rem;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.6rem;
  box-shadow: 0 20px 44px -14px rgba(15, 39, 68, 0.4);
  z-index: 40;
}

.nav__dropdown.is-open .nav__submenu {
  display: block;
}

.nav__submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.4rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 1;
  text-decoration: none;
}

.nav__submenu a:hover,
.nav__submenu a[aria-current="page"] {
  background: var(--mist);
  color: var(--navy);
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(10, 22, 40, 0.96);
  color: var(--white);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header--on-hero {
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 149, 74, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(26, 58, 92, 0.5), transparent 60%),
    linear-gradient(165deg, #07101c 0%, var(--navy) 48%, #152a45 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 25%, black, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(7, 16, 28, 0.65), transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4.5rem;
  width: 100%;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.15s;
}

.hero__logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero__wordmark {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.35s;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-soft);
}

/* —— Eyebrow labels —— */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex: none;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero__lede {
  max-width: 42ch;
  margin: 0 0 2.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.5s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.65s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* —— Sections —— */
.section {
  padding: 4.5rem 1.5rem;
}

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

.section--accent {
  background: linear-gradient(155deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--ink);
}

.section--accent .eyebrow,
.section--accent .section__title {
  color: var(--ink);
}

.section--accent .section__lede {
  color: rgba(10, 22, 40, 0.72);
}

.section--accent .step h3 {
  color: var(--ink);
}

.section--accent .step p {
  color: rgba(10, 22, 40, 0.7);
}

.section--accent .step::before {
  color: var(--navy);
}

.section--accent .step::after {
  background: rgba(10, 22, 40, 0.22);
}

.section--accent .chip {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(10, 22, 40, 0.18);
  color: var(--ink);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section__lede {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: var(--slate);
}

.page-hero {
  background: linear-gradient(155deg, #0a1a2e 0%, var(--navy) 55%, #17324f 100%);
  color: var(--white);
  padding: 8rem 1.5rem 3.5rem;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}

/* —— Offer cards —— */
.offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  gap: 1.5rem;
}

.offer {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.85rem;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.85rem;
  box-shadow: 0 1px 2px rgba(15, 39, 68, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 149, 74, 0.4);
  box-shadow: 0 24px 48px -20px rgba(15, 39, 68, 0.28);
}

.offer__icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 1.5rem;
  border-radius: 0.65rem;
  background: var(--mist);
  color: var(--navy);
}

.offer__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.offer__code {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.offer h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  color: var(--navy);
}

.offer p {
  margin: 0;
  color: var(--slate);
}

.offer ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.offer li + li {
  margin-top: 0.35rem;
}

/* —— Plan router —— */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0 0;
}

.route-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.85rem;
  box-shadow: 0 1px 2px rgba(15, 39, 68, 0.04);
}

.route-card__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.1rem;
  border-radius: 0.6rem;
  background: var(--mist);
  color: var(--navy);
}

.route-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.route-card__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.route-card__a {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate);
  flex: 1;
}

.route-card__result {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(15, 39, 68, 0.15);
  font-size: 0.8rem;
  color: var(--slate);
  text-decoration: none;
}

.route-card__result strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

/* —— Plan comparison table —— */
.plan-table-wrap {
  margin-top: 2.25rem;
  overflow-x: auto;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 39, 68, 0.1);
  background: var(--white);
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 40rem;
}

.plan-table th,
.plan-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
}

.plan-table tbody tr:last-child th,
.plan-table tbody tr:last-child td {
  border-bottom: none;
}

.plan-table tbody tr:nth-child(even) {
  background: rgba(232, 238, 244, 0.4);
}

.plan-table thead th {
  vertical-align: top;
  background: var(--navy);
  color: var(--white);
  border-bottom: none;
}

.plan-table thead th:first-child {
  background: var(--navy);
}

.plan-table__code {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
}

.plan-table__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-table__price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.plan-table__price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.plan-table__price-note {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.plan-table__cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.plan-table__cta:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.plan-table tbody th {
  font-weight: 600;
  color: var(--navy-mid);
  white-space: nowrap;
}


.plan-table .is-yes svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--navy);
}

.plan-table .is-no {
  color: rgba(92, 111, 132, 0.5);
}

/* —— Method steps —— */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 2rem;
  counter-reset: step;
  margin-top: 2.5rem;
}

.step {
  position: relative;
  padding-top: 2.75rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.step::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 2.6rem;
  right: 0;
  height: 1px;
  background: rgba(15, 39, 68, 0.14);
}

@media (max-width: 720px) {
  .step::after {
    display: none;
  }
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* —— Chips —— */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 39, 68, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-mid);
  background: var(--white);
}

/* —— Icon benefit grid —— */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.icon-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.75rem;
}

.icon-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--navy);
}

.icon-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.icon-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate);
}

/* —— FAQ accordion —— */
.faq {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 39, 68, 0.12);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 1.25rem;
  color: var(--slate);
  max-width: 42rem;
}

.faq-group__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--brown);
  margin: 2.25rem 0 0.65rem;
}

.faq-group__title:first-child {
  margin-top: 0;
}

/* —— Book catalog —— */
.book-groups {
  display: grid;
  gap: 3rem;
}

.book-group__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1.35rem;
}

.book-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 1.75rem 1.5rem;
}

.book-card {
  display: flex;
  flex-direction: column;
}

.book-card__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.book-card__cover {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0.5rem;
  background: var(--mist);
  box-shadow: 0 10px 26px -10px rgba(15, 39, 68, 0.35);
  margin-bottom: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-card__link:hover .book-card__cover,
.book-card__link:focus-visible .book-card__cover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px -12px rgba(184, 149, 74, 0.55);
}

.book-card__link:hover .book-card__title,
.book-card__link:focus-visible .book-card__title {
  color: var(--gold);
}

.book-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 0.35rem;
  transition: color 0.2s ease;
}

.book-card__author {
  font-size: 0.82rem;
  color: var(--slate);
  margin: 0 0 0.2rem;
}

.book-card.is-unavailable .book-card__cover {
  opacity: 0.85;
}

.book-card__status {
  font-size: 0.82rem;
  margin: 0.2rem 0 0;
}

.muted {
  color: var(--slate);
}

.note {
  margin-top: 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(15, 39, 68, 0.12);
  font-size: 0.95rem;
  color: var(--slate);
  max-width: 40rem;
}

/* —— Form —— */
.form {
  display: grid;
  gap: 1.25rem;
  max-width: 34rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(15, 39, 68, 0.2);
  border-radius: 0.4rem;
  background: var(--white);
  color: var(--ink);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.form__submit {
  justify-self: start;
}

.form__status {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0.85rem 0 0;
}

.form__status[data-tone="ok"] {
  color: #2f6b4f;
}

.form__status[data-tone="error"] {
  color: #8a2f2f;
}

.form-row--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-context {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  max-width: 36rem;
  border-left: 3px solid var(--gold);
  background: rgba(184, 149, 74, 0.08);
  color: var(--navy-mid);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* —— Contact —— */
.contact-block {
  display: grid;
  gap: 1.5rem;
}

.contact-block a {
  font-weight: 600;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li + li {
  margin-top: 0.75rem;
}

.contact-list span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.15rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 1.5rem;
  font-size: 0.92rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* —— Publications —— */
.pub-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pub-card {
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(15, 39, 68, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.pub-card:hover {
  border-color: rgba(184, 149, 74, 0.35);
  box-shadow: 0 16px 32px -18px rgba(15, 39, 68, 0.22);
}

.pub-card__journal {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.pub-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.pub-card__title a {
  color: inherit;
  text-decoration: none;
}

.pub-card__title a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pub-card__meta {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
}

/* —— Journal logos —— */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.journal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.85rem;
  box-shadow: 0 1px 2px rgba(15, 39, 68, 0.04);
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 149, 74, 0.4);
  box-shadow: 0 24px 48px -20px rgba(15, 39, 68, 0.28);
}

.journal-card__logo {
  display: block;
  width: 100%;
  max-width: 13rem;
  height: 4.75rem;
  object-fit: contain;
  object-position: center;
}

.journal-card__meta {
  margin: 0;
  min-height: 2.6em;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--slate);
}

/* —— Team —— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: 0.85rem;
  box-shadow: 0 1px 2px rgba(15, 39, 68, 0.04);
}

.team-card__photo {
  flex: none;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px rgba(15, 39, 68, 0.4);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.15rem;
}

.team-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
}

.team-card__orcid {
  font-size: 0.8rem;
  margin: 0.6rem 0 0;
}

.team-card__orcid a {
  color: var(--gold);
}

@media (max-width: 640px) {
  .nav {
    gap: 0.25rem 0.75rem;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .brand__name {
    display: none;
  }

  .site-header--on-hero .brand__name {
    display: none;
  }
}
