/* sessions/style.css — page-specific additions, layered on top of ../style.css */

/* ── Page header (lighter than the homepage hero — no full-bleed image) ─────── */
.page-header {
  padding: 10rem 2.5rem 4.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.page-title em { color: var(--accent); font-style: italic; }
.page-tagline {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 auto;
}

/* ── Package sections ─────────────────────────────────────────────────────── */
.pkg-section {
  padding: 0 2.5rem 5rem;
}
.pkg-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pkg-grid--sports {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 820px;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}
.pkg-card:hover { border-color: var(--accent-dim); }

.pkg-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.pkg-price {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pkg-price-note {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pkg-meta {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.pkg-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pkg-meta li:last-child { border-bottom: none; }
.pkg-meta span:first-child { color: var(--text-muted); }
.pkg-meta span:last-child { color: var(--text); text-align: right; }

.pkg-desc {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.pkg-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pkg-cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  text-decoration: none;
}

/* ── Details / policies ───────────────────────────────────────────────────── */
.details-section {
  padding: 0 2.5rem 6rem;
}
.details-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.detail-item h4 {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.detail-item p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.detail-item ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.9;
}
.detail-item ul span {
  color: var(--text-muted);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .page-header { padding: 8rem 1.5rem 3.5rem; }
  .pkg-section { padding: 0 1.5rem 3.5rem; }
  .details-section { padding: 0 1.5rem 4rem; }
}
