/* ============================================
   The Authentic Communicator — Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:    #1a1a1a;
  --ink:         #2b2b2b;
  --slate:       #4a4a5a;
  --mid:         #7a7a8a;
  --pale:        #c8c8d0;
  --off-white:   #f7f6f3;
  --cream:       #efede8;
  --white:       #ffffff;
  --gold:        #b89a5e;
  --gold-light:  #d4b97a;
  --section-alt: #f2f0eb;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --radius: 6px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { color: var(--slate); }
a { color: inherit; text-decoration: none; }

/* ─── Layout ─── */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

section { padding: 96px 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white) !important;
}
.btn-primary:hover {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,26,0.15);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--pale);
}
.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,200,208,.25);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.28;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 0 100px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-content h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 28px;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ─── WHO THIS IS FOR ─── */
#for { background: var(--white); }

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.for-left h2 { margin-bottom: 20px; }
.for-left p { font-size: 1.05rem; max-width: 420px; }
.for-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
}
.for-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 10px;
}

/* ─── DIFFERENTIATOR ─── */
#difference {
  background: var(--section-alt);
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}
.diff-left h2 { margin-bottom: 0; }
.diff-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--charcoal);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 28px;
  font-style: italic;
}
.diff-body p { margin-bottom: 16px; font-size: 1.05rem; }
.diff-body p:last-child { margin-bottom: 0; }

/* ─── METHOD ─── */
#method { background: var(--charcoal); }
#method .section-label { color: var(--gold-light); }
#method h2 { color: var(--white); margin-bottom: 16px; }
.method-intro { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; margin-bottom: 60px; }
.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.method-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 40px 36px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.method-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1;
}
.method-card h3 { color: var(--white); margin-bottom: 14px; font-size: 1.3rem; }
.method-card p { color: rgba(255,255,255,0.62); font-size: 0.97rem; line-height: 1.7; }

/* ─── OFFERS ─── */
#offers { background: var(--white); }
.offers-header { text-align: center; margin-bottom: 64px; }
.offers-header h2 { margin-bottom: 16px; }
.offers-header p { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.offer-card {
  border: 1px solid var(--cream);
  border-radius: 12px;
  padding: 48px 44px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.offer-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.offer-card.featured {
  background: var(--section-alt);
  border-color: transparent;
}
.offer-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.offer-card h3 { margin-bottom: 16px; color: var(--charcoal); }
.offer-card > p { font-size: 0.98rem; margin-bottom: 28px; }
.offer-details { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.offer-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--slate);
}
.offer-details li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.offer-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.offer-price span { font-size: 0.9rem; font-family: var(--font-sans); color: var(--mid); }

/* ─── ABOUT ─── */
#about { background: var(--section-alt); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 { margin-bottom: 20px; }
.about-left .section-label { display: block; }
.about-accent {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-top: 28px;
}
.about-photo-wrapper {
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.about-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: var(--cream);
  display: block;
}
.about-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.about-body p { margin-bottom: 20px; font-size: 1.02rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── STORY / QUOTE ─── */
#story { background: var(--charcoal); padding: 80px 0; }
.story-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.story-inner .section-label { color: var(--gold-light); }
.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  color: var(--white);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 28px;
}
.story-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header h2 { margin-bottom: 12px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 18px; left: 28px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.testimonial-placeholder {
  font-style: italic;
  opacity: 0.5;
}

/* ─── WORKSHOPS (FUTURE) ─── */
#workshops { background: var(--cream); }
.workshops-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.workshops-text h2 { margin-bottom: 14px; }
.workshops-text p { max-width: 520px; font-size: 1.02rem; }
.workshops-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--pale);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.waitlist-ui {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  background: var(--white);
  padding: 8px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 480px;
  border: 1px solid var(--pale);
}
.waitlist-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 20px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}
.waitlist-ui .btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
}

/* ─── FINAL CTA ─── */
#cta { background: var(--charcoal); padding: 100px 0; text-align: center; }
#cta h2 { color: var(--white); margin-bottom: 20px; }
#cta p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto 44px; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--gold); }

/* ─── DIVIDER ─── */
.divider { width: 48px; height: 2px; background: var(--gold); margin: 24px 0; }

/* ─── RESPONSIVE ─── */
/* ─── MOBILE NAV ─── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .for-grid,
  .diff-inner,
  .offers-grid,
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .method-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .mobile-menu-btn { display: block; }
  .nav-links { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 20px;
    text-align: center;
  }
  .nav-links.active { display: flex; }
  
  .workshops-inner { flex-direction: column; }
}
