.info-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.info-page > main {
  flex: 1;
}

.info-header {
  padding: 0.85rem 1.25rem;
}

.td-main {
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 1.25rem clamp(4rem, 8vw, 6rem);
}

/* ——— Hero band ——— */
.td-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}

.td-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.td-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.td-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 55, 44, 0.6) 0%,
    rgba(18, 55, 44, 0.42) 45%,
    rgba(18, 55, 44, 0.82) 100%
  );
}

.td-hero-content {
  position: relative;
  z-index: 1;
  width: min(38rem, calc(100% - 2.5rem));
  padding: 6.5rem 0 3rem;
}

.td-hero .eyebrow {
  color: var(--gold-soft);
}

.td-hero-content h1 {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  color: var(--cream);
}

.td-hero-content .td-lede {
  color: rgba(248, 245, 236, 0.9);
}

.td-lede {
  margin: 0;
  color: var(--ink-muted);
}

.td-section {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.td-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.15rem 0 0.5rem;
}

.td-icon {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.td-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.td-section h2,
.td-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  color: var(--teal-deep);
}

.td-section-sub {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
}

.td-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.td-card {
  background: #fff;
  border: 1px solid rgba(26, 46, 40, 0.08);
  border-left: 3px solid var(--teal-soft);
  border-radius: 8px;
  padding: 1.35rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-left-color 0.3s ease;
}

.td-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(18, 55, 44, 0.12);
  border-left-color: var(--gold);
}

.td-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal-deep);
  font-family: var(--font-body);
}

.td-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}

.td-card-meta {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 500;
}

.td-card-link {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal-soft);
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.td-card-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.td-spotlight {
  position: relative;
  border-radius: 10px;
  padding: clamp(1.75rem, 5vw, 2.75rem);
  background: linear-gradient(180deg, rgba(18, 55, 44, 0.72), rgba(18, 55, 44, 0.85)),
    url("assets/calm-water.jpg") center / cover no-repeat;
  color: var(--cream);
}

.td-spotlight .eyebrow {
  color: var(--gold-soft);
}

.td-spotlight .td-icon {
  background: var(--gold);
  color: var(--teal-deep);
}

.td-spotlight h2,
.td-spotlight .td-heading h2 {
  color: var(--cream);
}

.td-spotlight p {
  margin: 0;
  max-width: 46rem;
  color: rgba(248, 245, 236, 0.88);
}

.td-spotlight .td-card-link {
  color: var(--gold-soft);
}

.td-spotlight .td-card-link:hover {
  color: #fff;
  border-color: #fff;
}

@media (min-width: 640px) {
  .td-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .td-card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
