.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
}

@media (max-width: 600px) {
  .wrap { padding: 5rem 1.25rem 4rem; }
}

.pass-image {
  display: flex;
  justify-content: center;
  padding: 3rem 0 2rem;
}

.pass-image img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 32px;
}

.hero {
  padding: 1rem 0 4rem;
  border-bottom: 1px solid #2a2a2a;
  text-align: center;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: #f1faee;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

.hero p strong { color: #f1faee; font-weight: 500; }

.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid #2a2a2a;
}

.section:last-of-type { border-bottom: none; }

.section-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #f1faee;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section p {
  font-size: 0.95rem;
  color: #6b6b6b;
  line-height: 1.85;
  max-width: 560px;
}

.section p strong { color: #f1faee; font-weight: 500; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 580px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  transition: border-color 0.25s;
}

.pillar:hover { border-color: #444; }

.pillar-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #6b6b6b;
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1faee;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.88rem;
  color: #6b6b6b;
  line-height: 1.75;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 580px) { .cards { grid-template-columns: 1fr; } }

.card {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  transition: border-color 0.25s;
}

.card:hover { border-color: #444; }

.card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1faee;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.88rem;
  color: #6b6b6b;
  line-height: 1.75;
}

.closing {
  padding: 4rem 0 5rem;
}

.closing p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: #6b6b6b;
  line-height: 1.6;
  max-width: 500px;
  font-style: italic;
}

.closing p em {
  color: #f1faee;
  font-style: normal;
  font-weight: 500;
}

/* active nav */
.nav__links a.active { color: #f1faee !important; }
.nav__links a:not(.active) { color: #6b6b6b !important; }
