/* ============================================================ */
/* BUILD NEW ROOMS — STYLESHEET                                   */
/* Navy + gold + cream brand. Architectural blueprint aesthetic. */
/* ============================================================ */


/* ============================================================ */
/* 1. CSS VARIABLES                                               */
/* ============================================================ */
:root {
  --navy: #0A1A3A;
  --navy-light: #16244A;
  --gold: #D4A24C;
  --gold-bright: #E2B560;
  --cream: #F5EBD7;
  --cream-warm: #FAF3E4;
  --black: #1A1A1A;
  --gray: #6B6B6B;
}


/* ============================================================ */
/* 2. RESET & BASE                                                */
/* ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover, a:focus {
  color: var(--gold-bright);
}


/* ============================================================ */
/* 3. TYPOGRAPHY                                                  */
/* ============================================================ */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}


/* ============================================================ */
/* 4. LAYOUT CONTAINERS                                           */
/* ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================================ */
/* 5. HERO SECTION                                                */
/* ============================================================ */
.hero {
  background-color: var(--navy);
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 162, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--cream);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.eyebrow-centered {
  text-align: center;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.4;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  padding: 18px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(212, 162, 76, 0.25);
}

.cta-button:hover, .cta-button:focus {
  background-color: var(--gold-bright);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 162, 76, 0.35);
}

.cta-button-large {
  padding: 22px 56px;
  font-size: 17px;
}

.hero-cover {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover-image {
  max-width: 100%;
  width: 420px;
  transform: rotate(3deg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(212, 162, 76, 0.15);
  transition: transform 0.3s ease;
}

.cover-image:hover {
  transform: rotate(0deg);
}


/* ============================================================ */
/* 6. PULL QUOTE SECTION                                          */
/* ============================================================ */
.pull-quote {
  background-color: var(--navy);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
  border-bottom: 1px solid rgba(212, 162, 76, 0.2);
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  color: var(--cream);
}


/* ============================================================ */
/* 7. ABOUT THE BOOK SECTION                                      */
/* ============================================================ */
.about-book {
  background-color: var(--cream-warm);
  padding: 100px 0;
  color: var(--black);
}

.section-heading {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 32px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.column p {
  margin-bottom: 20px;
  color: var(--black);
}

.column p:last-child {
  margin-bottom: 0;
}

.column strong {
  color: var(--navy);
  font-weight: 600;
}

.gold-bullets {
  list-style: none;
  padding: 0;
}

.gold-bullets li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  color: var(--black);
}

.gold-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background-color: var(--gold);
}


/* ============================================================ */
/* 8. ABOUT THE AUTHOR SECTION                                    */
/* ============================================================ */
.about-author {
  background-color: var(--navy);
  color: var(--cream);
  padding: 100px 0;
}

.about-author .two-column {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.author-photo-column {
  display: flex;
  justify-content: center;
}

.author-photo {
  max-width: 100%;
  width: 100%;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.section-heading-gold {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--gold);
  margin-bottom: 32px;
  line-height: 1.2;
}

.about-author p {
  color: var(--cream);
  margin-bottom: 20px;
}

.about-author .column strong,
.about-author p strong {
  color: var(--gold) !important;
  font-weight: 600;
}

.about-author em {
  color: var(--gold);
  font-style: italic;
}

.author-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-top: 16px;
}


/* ============================================================ */
/* 9. THREE TIERS SECTION                                         */
/* ============================================================ */
.three-tiers {
  background-color: var(--navy);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
}

.three-tiers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 162, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.section-heading-centered {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--cream);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.card {
  background-color: var(--navy-light);
  border: 1px solid var(--gold);
  padding: 40px 32px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 162, 76, 0.15);
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.card p {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
}


/* ============================================================ */
/* 9.5 SPEAKING TEASER SECTION                                    */
/* ============================================================ */
.speaking-teaser {
  background-color: var(--navy);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
}

.speaking-teaser .section-heading-centered {
  color: var(--cream);
  margin-bottom: 24px;
}

.speaking-teaser-body {
  color: var(--cream);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.speaking-teaser-body strong {
  color: var(--gold);
  font-weight: 600;
}


/* ============================================================ */
/* 10. BUY THE BOOK SECTION                                       */
/* ============================================================ */
.buy-section {
  background-color: var(--cream-warm);
  color: var(--black);
  padding: 100px 0;
  text-align: center;
}

.buy-section .section-heading-centered {
  color: var(--navy);
  margin-bottom: 24px;
}

.buy-subheading {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.buy-tagline {
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
}


/* ============================================================ */
/* 11. COHORT 1 APPLICATION SECTION                               */
/* ============================================================ */
.cohort-section {
  background-color: var(--navy);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
  position: relative;
}

.cohort-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 162, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.cohort-section > .container-narrow {
  position: relative;
  z-index: 1;
}

.cohort-section .section-heading-centered {
  color: var(--cream);
  margin-bottom: 24px;
}

.cohort-body {
  color: var(--cream);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.7;
  text-align: left;
}

.cohort-body strong {
  color: var(--gold);
  font-weight: 600;
}

.cohort-body em {
  color: var(--gold);
}

.cohort-section .cta-button-large {
  margin-top: 16px;
}

.cohort-coming-soon {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 40px;
  background-color: transparent;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.cohort-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
}


/* ============================================================ */
/* 12. FOOTER                                                     */
/* ============================================================ */
.footer {
  background-color: var(--navy);
  color: var(--cream);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
}

.footer p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--cream);
}

.footer-marks {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-connect {
  margin-top: 16px;
  margin-bottom: 16px;
}

.footer-connect a,
.footer-contact a {
  color: var(--gold);
  font-weight: 600;
}


/* ============================================================ */
/* 13. RESPONSIVE                                                 */
/* ============================================================ */
@media (max-width: 1024px) {
  .hero-container,
  .two-column {
    gap: 48px;
  }

  .about-author .two-column {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-cover {
    order: 2;
  }

  .cover-image {
    width: 300px;
  }

  .two-column,
  .about-author .two-column {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .author-photo-column {
    max-width: 320px;
    margin: 0 auto;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pull-quote,
  .about-book,
  .about-author,
  .three-tiers,
  .speaking-teaser,
  .buy-section,
  .cohort-section {
    padding: 70px 0;
  }

  .cohort-body {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow,
  .hero-container {
    padding: 0 20px;
  }

  .cover-image {
    width: 240px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 15px;
  }

  .cta-button-large {
    padding: 18px 40px;
    font-size: 16px;
  }
}
