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

:root {
  --navy: #2a354d;
  --navy-dark: #1e2738;
  --navy-light: #3a4a63;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --text-dark: #1a202c;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; padding-top: 68px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
}
.nav-logo { height: 28px; display: block; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.2s;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--white); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }

.mobile-overlay {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { color: var(--white); text-decoration: none; font-size: 1.4rem; font-weight: 500; }

/* ── TYPOGRAPHY ── */
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; line-height: 1.2; }
h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; line-height: 1.3; }
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.9rem; display: block; }
.eyebrow.light { color: rgba(255,255,255,0.55); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 0.85rem 2.25rem; border-radius: 2px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; cursor: pointer; border: 2px solid transparent; }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* ── MATCHMAKING PAGE ── */
.hero {
  background: var(--navy); min-height: calc(100vh - 68px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem;
}
.hero-logo { width: min(360px, 75vw); margin-bottom: 2rem; }
.hero-tagline { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.8vw, 2rem); color: var(--white); max-width: 580px; line-height: 1.45; font-weight: 400; margin-bottom: 1rem; }
.hero-sub { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 460px; line-height: 1.7; margin-bottom: 2.5rem; }

/* Press */
.press-strip { background: var(--off-white); padding: 2.5rem 2rem; text-align: center; }
.press-strip .eyebrow { color: var(--text-light); margin-bottom: 1.5rem; }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; }
.press-logo-img { height: 120px; width: auto; object-fit: contain; opacity: 0.7; mix-blend-mode: multiply; transition: opacity 0.2s; }
.press-logo-img:hover { opacity: 1; }
.press-logo-text { font-size: 0.8rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.04em; font-style: italic; }

/* Value props */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 3rem; }
.value-card h3 { color: var(--navy); margin-bottom: 0.65rem; }
.value-card p { color: var(--text-mid); line-height: 1.75; font-size: 0.95rem; }

/* How it works */
.hiw { background: var(--navy); }
.hiw h2 { color: var(--white); text-align: center; margin-bottom: 3rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2.5rem; }
.step { text-align: center; }
.step-num { width: 44px; height: 44px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-family: 'Playfair Display', serif; font-size: 1rem; color: rgba(255,255,255,0.85); }
.step h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

/* Testimonials */
.testimonials { background: var(--off-white); }
.testimonials h2 { text-align: center; margin-bottom: 0.4rem; }
.testimonials .sub { text-align: center; color: var(--text-light); margin-bottom: 2.75rem; font-size: 0.95rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.t-card { background: var(--white); padding: 1.75rem; border-radius: 3px; box-shadow: 0 1px 16px rgba(0,0,0,0.05); }
.t-card p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); font-style: italic; }
.t-card p::before { content: '\201C'; }
.t-card p::after  { content: '\201D'; }

/* Pricing */
.pricing-band { background: var(--navy); text-align: center; }
.pricing-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.pricing-band .sub { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; font-size: 0.95rem; }
.price-cards { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; margin-bottom: 1.5rem; }
.p-card { border: 1px solid rgba(255,255,255,0.18); border-radius: 3px; padding: 1.75rem 3rem; min-width: 180px; }
.p-card .who { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.p-card .amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--white); }
.men-pricing { display: flex; flex-direction: column; min-width: 240px; text-align: left; }
.men-pricing .who { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.men-option { border: 1px solid rgba(255,255,255,0.18); border-radius: 3px; padding: 1.25rem 1.5rem; }
.men-option .opt-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.men-option .opt-amount { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); line-height: 1; }
.men-option .opt-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; line-height: 1.4; }
.or-divider { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0; color: rgba(255,255,255,0.5); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.15); }

/* FAQ */
.faq h2 { text-align: center; margin-bottom: 2.75rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; cursor: pointer; font-weight: 500; font-size: 1rem; color: var(--navy); gap: 1rem; }
.faq-icon { font-size: 1.4rem; color: var(--navy); transition: transform 0.25s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.4rem; color: var(--text-mid); line-height: 1.8; font-size: 0.93rem; }
.faq-item.open .faq-a { display: block; }

/* CTA band */
.cta-band { background: var(--navy); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.6); max-width: 440px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--navy); padding: 4rem 2rem 3.5rem; text-align: center; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 600; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: 3px; overflow: hidden; aspect-ratio: 4/5; background: var(--navy-light); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p { color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1rem; }
.about-copy .personal-note { color: var(--text-light); font-size: 0.88rem; margin-top: 0.5rem; }

/* ── WORK WITH DANNY PAGE ── */
.wwd-hero { background: var(--navy); padding: 5rem 2rem 4rem; text-align: center; }
.wwd-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1rem; font-weight: 600; }
.wwd-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.wwd-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.wwd-img { border-radius: 3px; overflow: hidden; aspect-ratio: 3/4; background: var(--navy-light); }
.wwd-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wwd-copy p { color: var(--text-mid); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1.1rem; }
.wwd-copy p:last-child { margin-bottom: 0; }
.coaching { background: var(--off-white); }
.coaching h2 { text-align: center; margin-bottom: 0.5rem; }
.coaching .sub { text-align: center; color: var(--text-mid); max-width: 520px; margin: 0 auto 2.75rem; line-height: 1.7; font-size: 0.95rem; }
.c-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.c-card { background: var(--white); padding: 2.25rem; border-radius: 3px; box-shadow: 0 1px 16px rgba(0,0,0,0.05); }
.c-card .c-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.c-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.c-card p { color: var(--text-mid); line-height: 1.75; font-size: 0.93rem; margin-bottom: 0.75rem; }
.c-card p:last-child { margin-bottom: 0; }
.c-pricing { background: var(--navy); text-align: center; }
.c-pricing h2 { color: var(--white); margin-bottom: 0.75rem; }
.c-pricing .sub { color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; font-size: 0.95rem; }
.c-price-row { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; margin-bottom: 2.75rem; }
.cp-box { border: 1px solid rgba(255,255,255,0.18); border-radius: 3px; padding: 1.75rem 2.5rem; }
.cp-box .label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.6rem; }
.cp-box .amt { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--white); }
.cp-box .detail { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.c-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── LAST DATE PAGE ── */
.pod-hero { background: var(--navy); padding: 4rem 2rem; }
.pod-hero-inner { display: grid; grid-template-columns: auto 1fr; gap: 3.5rem; align-items: center; max-width: 860px; margin: 0 auto; }
.pod-cover { width: 200px; height: 200px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: #0d0d0d; display: flex; align-items: center; justify-content: center; }
.pod-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 0.75rem; font-weight: 600; }
.pod-text p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.75rem; font-size: 0.95rem; }
.listen-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.listen-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 0.55rem 1.1rem; border-radius: 2px; font-size: 0.8rem; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; }
.listen-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.pod-about { background: var(--white); }
.pod-about h2 { margin-bottom: 1rem; }
.pod-about p { color: var(--text-mid); line-height: 1.8; font-size: 0.97rem; margin-bottom: 1rem; }
.pod-about p:last-child { margin-bottom: 0; }
.guest-section { background: var(--off-white); text-align: center; }
.guest-section h2 { margin-bottom: 0.75rem; }
.guest-section p { color: var(--text-mid); max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.7; font-size: 0.95rem; }

/* ── CONTACT PAGE ── */
.contact-wrap { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 860px; width: 100%; }
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; font-size: 0.95rem; }
.social-list { display: flex; flex-direction: column; gap: 0.85rem; }
.social-item { display: flex; align-items: center; gap: 0.65rem; color: var(--navy); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: opacity 0.2s; }
.social-item:hover { opacity: 0.65; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-light); }
.fg input, .fg textarea { border: 1.5px solid var(--border); border-radius: 2px; padding: 0.7rem 0.9rem; font-family: 'Inter', sans-serif; font-size: 0.93rem; color: var(--text-dark); outline: none; transition: border-color 0.2s; }
.fg input:focus, .fg textarea:focus { border-color: var(--navy); }
.fg textarea { resize: vertical; min-height: 110px; }
.btn-submit { background: var(--navy); color: var(--white); padding: 0.85rem 2rem; border: none; border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
.btn-submit:hover { background: var(--navy-dark); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); text-align: center; padding: 2rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: rgba(255,255,255,0.8); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-split, .wwd-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { aspect-ratio: 4/5; }
  .wwd-img { aspect-ratio: 4/5; }
  .pod-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .pod-cover { width: 160px; height: 160px; margin: 0 auto; }
  .listen-btns { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 520px) {
  nav { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 1.25rem; }
}
