/*
 * alquemie-custom.css
 * The Alquemie · thealquemie.com
 *
 * Place at: /wp-content/themes/twentytwentyfour/assets/css/alquemie-custom.css
 * Enqueued via functions.php — see accompanying snippet.
 *
 * Table of contents:
 *   1. Design tokens (CSS variables)
 *   2. Base / reset
 *   3. Typography scale
 *   4. Eyebrow / section labels
 *   5. Section headings
 *   6. Body text
 *   7. Dividers
 *   8. Pullquote band
 *   9. Corner brackets
 *  10. Buttons and CTAs
 *  11. Session cards
 *  12. For Whom grid
 *  13. Approach list
 *  14. Waitlist band
 *  15. About strip
 *  16. Hero layout (homepage)
 *  17. Responsive overrides
 * ─────────────────────────────────────────────────────────────────────────── */


/* ── 1. DESIGN TOKENS ──────────────────────────────────────────────────────── */

:root {
  --plum-deep:   #1E0F2E;
  --plum-royal:  #3A1D5C;
  --plum-mid:    #2A1445;
  --plum-muted:  #7A6878;
  --gold:        #C9A84C;
  --gold-soft:   #EEE0B8;
  --gold-dim:    #9E7E3A;
  --sage:        #8FAF9F;
  --cream:       #FBF7F2;
  --blush:       #D4A5A5;
  --text-body:   #FBF7F2;
  --text-muted:  #C4B8C8;
}


/* ── 2. BASE / RESET ────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--plum-deep);
  color: var(--text-body);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}


/* ── 3. TYPOGRAPHY SCALE ────────────────────────────────────────────────────── */

/* Shared font stack fallbacks */
.cormorant {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.jost {
  font-family: 'Jost', sans-serif;
}


/* ── 4. EYEBROW / SECTION LABELS ────────────────────────────────────────────── */

/* The small uppercase label above a heading.
   Used as .eyebrow (hero) and .section-label (all other sections).
   Text color: #EEE0B8. Stars (.eyebrow-star) stay #C9A84C and sit slightly larger. */

.eyebrow,
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.eyebrow {
  margin-bottom: 1.75rem;
}

/* Stars inside eyebrow and section labels */
.eyebrow-star,
.label-star {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0;
  display: inline-block;
  vertical-align: middle;
}


/* ── 5. SECTION HEADINGS ─────────────────────────────────────────────────────── */

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--cream);
}


/* ── 6. BODY TEXT ────────────────────────────────────────────────────────────── */

/* Unified to 1rem across all body copy contexts */

.section-body {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 620px;
}

.section-body p {
  margin-bottom: 1.25rem;
}

.section-body strong {
  font-weight: 500;
  color: var(--cream);
}

/* Paragraph text inside forwhom grid, approach list, about strip */
.forwhom-text,
.approach-body,
.about-body,
.hero-body {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

.forwhom-text strong,
.about-body strong {
  font-weight: 500;
  color: var(--cream);
}

.about-body p {
  margin-bottom: 1.1rem;
}

.hero-body {
  max-width: 440px;
  margin-bottom: 3rem;
}

/* Session card body text sits slightly tighter */
.session-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  flex: 1;
}


/* ── 7. DIVIDERS ─────────────────────────────────────────────────────────────── */

.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 5rem;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.18);
}

.divider-glyph {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  opacity: 0.5;
}


/* ── 8. PULLQUOTE BAND ───────────────────────────────────────────────────────── */

.pullquote-band {
  position: relative;
  z-index: 1;
  background: rgba(58,29,92,0.3);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 5rem;
  text-align: center;
}

.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.pullquote-attr {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
}


/* ── 9. CORNER BRACKETS ──────────────────────────────────────────────────────── */

.bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.45;
}

.bracket-tl { top: 0; left: 0; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.bracket-tr { top: 0; right: 0; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.bracket-bl { bottom: 0; left: 0; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.bracket-br { bottom: 0; right: 0; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }


/* ── 10. BUTTONS AND CTAs ────────────────────────────────────────────────────── */

.cta-primary {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--plum-deep);
  background: var(--gold);
  padding: 1.1rem 2rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.cta-primary:hover {
  background: var(--gold-soft);
}

.cta-secondary {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.1rem 2rem;
  border: 1px solid rgba(201,168,76,0.3);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.cta-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--plum-muted);
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  transition: color 0.2s;
}

.cta-ghost:hover {
  color: var(--text-muted);
}


/* ── 11. SESSION CARDS ───────────────────────────────────────────────────────── */

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

.session-card {
  position: relative;
  padding: 2.5rem 2.25rem;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(42,20,69,0.35);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.session-card.featured {
  border-color: rgba(201,168,76,0.4);
  background: rgba(58,29,92,0.4);
}

.session-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.session-card.featured .session-tag {
  color: var(--gold);
}

.session-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1.15;
}

.session-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.session-price strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}

.session-detail {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-muted);
}

.session-cta {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.5rem;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.session-card .session-cta {
  color: var(--text-muted);
  border: 1px solid rgba(201,168,76,0.25);
}

.session-card .session-cta:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.session-card.featured .session-cta {
  color: var(--plum-deep);
  background: var(--gold);
  border: none;
}

.session-card.featured .session-cta:hover {
  background: var(--gold-soft);
}


/* ── 12. FOR WHOM GRID ───────────────────────────────────────────────────────── */

.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(201,168,76,0.15);
}

.forwhom-item {
  padding: 2rem 2.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
}

.forwhom-item:nth-child(2n) { border-right: none; }
.forwhom-item:nth-last-child(-n+2) { border-bottom: none; }

.forwhom-marker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.6rem;
}


/* ── 13. APPROACH LIST ───────────────────────────────────────────────────────── */

.approach-list {
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

.approach-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  align-items: start;
}

.approach-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.12);
}

.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  padding-top: 0.25rem;
}

.approach-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}


/* ── 14. WAITLIST BAND ───────────────────────────────────────────────────────── */

.waitlist-band {
  position: relative;
  z-index: 1;
  background: rgba(42,20,69,0.5);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 5rem;
  text-align: center;
}

.waitlist-inner {
  max-width: 540px;
  margin: 0 auto;
}

.waitlist-band .section-heading {
  margin-bottom: 1rem;
}

.waitlist-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.waitlist-input {
  flex: 1;
  background: rgba(30,15,46,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.9rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-input::placeholder {
  color: var(--plum-muted);
}

.waitlist-input:focus {
  border-color: rgba(201,168,76,0.6);
}

.waitlist-btn {
  background: var(--gold);
  border: none;
  color: var(--plum-deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.waitlist-btn:hover {
  background: var(--gold-soft);
}

.waitlist-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--plum-muted);
}


/* ── 15. ABOUT STRIP ─────────────────────────────────────────────────────────── */

.about-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.about-name-block {
  text-align: right;
  padding-right: 5rem;
  border-right: 1px solid rgba(201,168,76,0.18);
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.about-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  line-height: 1.8;
}


/* ── 16. HERO LAYOUT (homepage only) ────────────────────────────────────────── */

/* Layout and CTA stacking — shared.
   Grain overlay and mirror CSS remain in the homepage Custom HTML block
   since they are not reused on any other page. */

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  z-index: 1;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.3) 70%, transparent);
}

.hero-right-inner {
  position: relative;
  width: 380px;
  height: 480px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--gold-soft);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--cream);
  display: block;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 320px;
}


/* ── 17. SECTIONS (shared container) ────────────────────────────────────────── */

.section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 5rem;
}


/* ── 18. RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 1.5rem 5rem 2rem; }

  .section { padding: 4rem 2rem; }

  .divider { padding: 0 2rem; }

  .sessions-grid { grid-template-columns: 1fr; }

  .forwhom-grid { grid-template-columns: 1fr; }
  .forwhom-item { border-right: none; }

  .about-strip { grid-template-columns: 1fr; }
  .about-name-block {
    text-align: left;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(201,168,76,0.18);
    padding-bottom: 2rem;
  }

  .waitlist-band { padding: 4rem 2rem; }
  .pullquote-band { padding: 4rem 2rem; }

  .waitlist-form { flex-direction: column; }
  .waitlist-input {
    border-right: 1px solid rgba(201,168,76,0.3);
    border-bottom: none;
  }

}
