/* ── SHARED PAGE HEADER ──────────────────── */
.info-header {
  padding: 140px 48px 80px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.info-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

.info-header-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.info-header-title em {
  font-style: italic;
}

.info-header-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto;
}

/* ── INTRO ───────────────────────────────── */
.tac-intro-section {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}

.tac-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.tac-intro-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
}

/* ── BODY BLOCKS ─────────────────────────── */
.tac-body {
  background: var(--cream);
  padding: 80px 48px;
}

.tac-body-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.tac-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 48px;
  background: var(--cream);
  padding: 52px 48px;
  align-items: start;
}

.tac-block-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  padding-top: 4px;
}

.tac-block-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--deep-brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tac-block-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tac-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tac-list li {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.tac-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-size: 12px;
}

.tac-callout {
  background: var(--warm-white);
  border-left: 2px solid var(--border);
  padding: 24px 28px;
  margin-top: 4px;
}

.tac-callout-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 10px;
}

.tac-callout-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.drawer-link.active,
.drawer-sub-link.active {
  color: var(--earth);
  font-weight: 500;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .info-header { padding: 120px 24px 64px; }
  .tac-intro-section { padding: 48px 24px; }
  .tac-body { padding: 64px 24px; }
  .tac-block {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 40px 24px;
  }
  .tac-block-num { font-size: 28px; }
}

@media (max-width: 480px) {
  .info-header { padding: 110px 16px 52px; }
  .tac-intro-section { padding: 40px 16px; }
  .tac-body { padding: 48px 16px; }
  .tac-block { padding: 32px 16px; }
}