/* ── STUDENTS PAGE ──────────────────────────────────────────── */

.students-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* Nav */
.st-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(44,24,16,0.08);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.st-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.st-nav-logo svg { height: 32px; width: auto; }

.st-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.st-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.st-nav-links a:hover { color: var(--mahogany); }
.st-nav-links a.active { color: var(--mahogany); font-weight: 500; }

/* Hero */
.st-hero {
  padding: 80px 40px 72px;
  text-align: center;
  position: relative;
}

.st-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

.st-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.st-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--mahogany);
  line-height: 1.1;
  margin-bottom: 20px;
}

.st-hero h1 em {
  font-style: italic;
  color: var(--brass);
}

.st-hero-sub {
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

.st-badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--cream-deep);
  color: var(--ink-muted);
  border: 1px solid rgba(44,24,16,0.1);
}

.st-badge svg { flex-shrink: 0; }

/* Cards Section */
.st-cards {
  padding: 72px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.st-cards-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.st-cards-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--mahogany);
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.2;
}

.st-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.st-card {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid rgba(44,24,16,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.st-card:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(44,24,16,0.08);
}

.st-card:nth-child(even) {
  padding-left: 48px;
}

.st-card-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-card-icon-text {
  font-size: 28px;
  line-height: 1;
}

.st-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--mahogany);
  line-height: 1.2;
}

.st-card-body {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
}

.st-card-body p { margin-bottom: 12px; }
.st-card-body p:last-child { margin-bottom: 0; }

.st-highlight {
  font-weight: 500;
  color: var(--mahogany);
}

.st-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.st-price-tag .big {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}

.st-price-tag .note {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
}

/* Punch Card Section */
.st-punch {
  background: var(--mahogany);
  padding: 72px 40px;
}

.st-punch-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.st-punch-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.st-punch-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.st-punch-heading em {
  font-style: italic;
  color: var(--brass);
}

.st-punch-desc {
  font-size: 14px;
  color: rgba(245,239,230,0.7);
  line-height: 1.7;
  font-weight: 300;
}

/* Punch card visual */
.st-punch-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.st-punch-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.st-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196,149,106,0.15);
  border: 1.5px solid rgba(196,149,106,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--brass);
  transition: background 0.2s;
}

.st-dot.filled {
  background: var(--brass);
  color: var(--mahogany);
}

.st-dot.free {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--mahogany);
  font-size: 9px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.st-punch-caption {
  text-align: center;
  font-size: 11px;
  color: rgba(196,149,106,0.5);
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Location Banner */
.st-location {
  background: var(--cream-deep);
  border-top: 1px solid rgba(44,24,16,0.06);
  border-bottom: 1px solid rgba(44,24,16,0.06);
  padding: 56px 40px;
}

.st-location-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.st-loc-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.st-loc-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--mahogany);
  line-height: 1.2;
  margin-bottom: 16px;
}

.st-loc-heading em {
  font-style: italic;
  color: var(--brass);
}

.st-loc-body {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.st-walk-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--mahogany);
  padding: 16px 20px;
  border-radius: 8px;
}

.st-walk-icon {
  flex-shrink: 0;
}

.st-walk-text {
  font-size: 13px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.5;
}

.st-walk-text strong {
  color: var(--brass);
  font-weight: 600;
}

.st-loc-map-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st-map-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.st-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mahogany);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.st-step-text {
  padding-top: 4px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.5;
}

.st-step-text strong {
  color: var(--mahogany);
  font-weight: 500;
}

/* Footer */
.st-footer {
  background: var(--cream-deep);
  border-top: 1px solid rgba(44,24,16,0.1);
  padding: 28px 40px;
}

.st-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.st-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--mahogany);
}

.st-footer-sep { color: var(--brass); }

.st-footer-address {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 300;
}

.st-footer-meta {
  font-size: 11px;
  color: rgba(92,61,46,0.5);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 768px) {
  .st-nav { padding: 16px 24px; }
  .st-nav-links { display: none; }
  .st-hero { padding: 56px 24px 56px; }
  .st-cards { padding: 56px 24px; }
  .st-card-grid { grid-template-columns: 1fr; }
  .st-card { border-bottom: 1px solid rgba(44,24,16,0.08); padding: 32px 0; }
  .st-card:nth-child(odd) { border-right: none; padding-right: 0; }
  .st-card:nth-child(even) { padding-left: 0; }
  .st-punch { padding: 56px 24px; }
  .st-punch-inner { grid-template-columns: 1fr; gap: 40px; }
  .st-location { padding: 56px 24px; }
  .st-location-inner { grid-template-columns: 1fr; gap: 40px; }
  .st-footer { padding: 24px; }
  .st-footer-inner { flex-direction: column; align-items: flex-start; }
  .st-club-cta { padding: 40px 24px; }
  .st-club-cta-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Rambler Club CTA (students page) ── */
.st-club-cta {
  padding: 56px 60px;
  background: #3D1F0F;
  color: #F5ECD7;
}

.st-club-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.st-club-eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4956A;
  margin-bottom: 10px;
  font-weight: 500;
}

.st-club-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: #F5ECD7;
  margin-bottom: 12px;
}

.st-club-title em { font-style: italic; color: #C4956A; }

.st-club-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245,236,215,0.7);
  margin-bottom: 16px;
  max-width: 480px;
}

.st-club-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.st-club-perks li {
  font-size: 13px;
  color: rgba(245,236,215,0.65);
  padding-left: 16px;
  position: relative;
}

.st-club-perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C4956A;
  font-size: 12px;
}

.st-club-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.st-club-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #C4956A;
  color: #3D1F0F;
  border-radius: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.st-club-btn:hover { background: #D4A97A; }

.st-club-free {
  font-size: 11px;
  color: rgba(245,236,215,0.4);
}