/* sessions.css — Owns: session discovery page styles only.
   Does NOT own: global theme tokens (theme.css), header, footer.
*/

/* === HEADER LINK === */
.wordmark-link {
  text-decoration: none;
  color: inherit;
}

.footer-wordmark {
  text-decoration: none;
  color: inherit;
}

/* === SESSIONS HERO === */
.sessions-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 2.5rem 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.sessions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(42, 92, 63, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184, 132, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.sessions-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.sessions-hero-label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
  margin-bottom: 2rem;
}

.sessions-hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.sessions-hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.sessions-hero-sub {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

/* === WHAT TO EXPECT === */
.sessions-what {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-2xl) 2.5rem;
}

.sessions-what-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 3rem;
  align-items: start;
}

.sessions-section-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.3rem;
  opacity: 0.7;
}

.sessions-what-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.sessions-what-text {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.72);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

.sessions-pillars {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.sessions-pillar {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 2rem;
  align-items: baseline;
}

.sessions-pillar-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.sessions-pillar-desc {
  font-size: var(--text-base);
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
  line-height: 1.65;
}

/* === OFFERINGS === */
.offerings {
  background: var(--bg-warm);
  padding: var(--space-2xl) 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offerings-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.offerings-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.offerings-section-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

.offerings-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* === OFFERING CARD === */
.offering-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.offering-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.offering-card--featured {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}

.offering-card--featured:hover {
  border-color: var(--accent-light);
}

.offering-featured-tag {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: var(--gold);
  color: var(--fg);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
}

.offering-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.offering-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

.offering-card--featured .offering-tag {
  color: rgba(245, 240, 232, 0.45);
}

.offering-price {
  text-align: right;
}

.offering-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.offering-card--featured .offering-amount {
  color: var(--gold-light);
}

.offering-unit {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  font-weight: 300;
  display: block;
  margin-top: 0.25rem;
}

.offering-card--featured .offering-unit {
  color: rgba(245, 240, 232, 0.4);
}

.offering-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.offering-card--featured .offering-name {
  color: var(--bg);
}

.offering-desc {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.offering-card--featured .offering-desc {
  color: rgba(245, 240, 232, 0.6);
}

.offering-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.offering-card--featured .offering-details {
  border-top-color: rgba(245, 240, 232, 0.12);
}

.offering-details li {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.offering-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}

.offering-card--featured .offering-details li {
  color: rgba(245, 240, 232, 0.5);
}

.offering-card--featured .offering-details li::before {
  color: var(--gold-light);
}

.offering-cta {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.offering-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.offering-cta--featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--fg);
}

.offering-cta--featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--fg);
}

/* === INTAKE === */
.intake {
  background: var(--bg);
  padding: var(--space-2xl) 2.5rem;
}

.intake-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.intake-section-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.intake-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.intake-sub {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 340px;
  margin-bottom: 3rem;
}

.intake-note {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  font-style: italic;
  opacity: 0.75;
}

/* === FORM === */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.form-input {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--border);
}

.form-input:focus {
  border-color: var(--accent);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6459' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.form-submit {
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent);
  color: var(--bg);
}

/* === SUCCESS STATE === */
.intake-success {
  padding: 3rem;
  border: 1px solid var(--border);
  text-align: center;
}

.intake-success-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.intake-success-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1rem;
}

.intake-success-body {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === ERROR STATE === */
.intake-error {
  background: rgba(200, 80, 60, 0.08);
  border: 1px solid rgba(200, 80, 60, 0.3);
  color: #8B2500;
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .intake-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .intake-sub {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sessions-hero {
    padding: 8rem 1.5rem 4rem;
    min-height: auto;
  }

  .sessions-what {
    padding: var(--space-xl) 1.5rem;
  }

  .sessions-what-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sessions-section-num {
    font-size: var(--text-xl);
  }

  .sessions-pillars {
    gap: 1.25rem;
  }

  .sessions-pillar {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .offerings {
    padding: var(--space-xl) 1.5rem;
  }

  .offerings-grid {
    max-width: 100%;
  }

  .intake {
    padding: var(--space-xl) 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sessions-hero-headline {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .offering-top {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .offering-price {
    text-align: left;
  }
}
