/* ─────────────────────────────────────────
   Monaco Matchmaking — Theme
   Typography: Cormorant Garamond + Jost
   Palette: Navy, Ivory, Brass, Stone
───────────────────────────────────────── */

:root {
  --navy: #1a1f3d;
  --navy-light: #252b4d;
  --ivory: #faf8f4;
  --ivory-dark: #f0ece4;
  --brass: #b8966a;
  --brass-light: #d4b88a;
  --stone: #8c8680;
  --text: #1a1a1a;
  --text-mid: #4a4845;
  --text-light: #7a7672;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid rgba(26,31,61,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--navy);
}
.nav-location {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

/* ── Section Labels ── */
.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: var(--brass);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.section-title {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 6rem;
  background: var(--ivory);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--brass);
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 400px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  height: 500px;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}
.hero-shape-2 {
  width: 200px;
  height: 200px;
  border: 1px solid var(--brass);
  top: 20%;
  right: 10%;
  transform: rotate(15deg);
  opacity: 0.4;
}
.hero-shape-3 {
  width: 100px;
  height: 100px;
  background: var(--brass);
  bottom: 20%;
  left: 20%;
  opacity: 0.15;
  transform: rotate(-20deg);
}
.hero-quote {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
}
.hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}

/* ── Philosophy ── */
.philosophy {
  background: var(--navy);
  color: var(--ivory);
  padding: 7rem 2.5rem;
}
.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
}
.philosophy-label { padding-top: 0.5rem; }
.philosophy-label .section-num { color: var(--brass-light); }
.philosophy-label .section-title { color: rgba(250,248,244,0.4); }
.philosophy-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--ivory);
}
.philosophy-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--brass-light);
  text-transform: uppercase;
}

/* ── Process ── */
.process {
  padding: 7rem 2.5rem;
  background: var(--ivory);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-label {
  margin-bottom: 4rem;
}
.process-overline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone);
  margin-top: 0.5rem;
}
.process-steps {
  border-top: 1px solid rgba(26,31,61,0.1);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: start;
}
.step-divider {
  height: 1px;
  background: rgba(26,31,61,0.08);
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.7;
}

/* ── Membership ── */
.membership {
  background: var(--ivory-dark);
  padding: 7rem 2.5rem;
}
.membership-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.membership-label {
  margin-bottom: 4rem;
}
.membership-overline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone);
  margin-top: 0.5rem;
}
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tier {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  position: relative;
}
.tier-featured {
  background: var(--navy);
  color: var(--ivory);
}
.tier-badge {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184,150,106,0.3);
  padding-bottom: 1rem;
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.tier-featured .tier-name { color: var(--ivory); }
.tier-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
}
.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.tier-featured .tier-price { color: var(--ivory); }
.tier-period {
  font-size: 0.85rem;
  color: var(--stone);
}
.tier-duration {
  font-size: 0.75rem;
  color: var(--stone);
  margin-bottom: 2rem;
}
.tier-features {
  list-style: none;
  border-top: 1px solid rgba(26,31,61,0.1);
  padding-top: 1.5rem;
}
.tier-featured .tier-features {
  border-top-color: rgba(250,248,244,0.1);
}
.tier-features li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}
.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 0.7rem;
}
.tier-featured .tier-features li { color: rgba(250,248,244,0.7); }

/* ── Testimonial ── */
.testimonial {
  background: var(--navy);
  padding: 7rem 2.5rem;
  text-align: center;
}
.testimonial-inner { max-width: 700px; margin: 0 auto; }
.testimonial-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.testimonial-attribution {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Closing ── */
.closing {
  padding: 8rem 2.5rem;
  background: var(--ivory);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.closing-sub {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 3rem 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.footer-note {
  font-size: 0.7rem;
  color: var(--stone);
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .membership-tiers { grid-template-columns: 1fr; }
  .step { grid-template-columns: 50px 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .footer-note { text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .philosophy, .process, .membership, .testimonial, .closing { padding: 5rem 1.5rem; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-number { font-size: 1.5rem; }
}