/* ============================================================
     RESET
  ============================================================ */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  /* ============================================================
     DESIGN TOKENS
  ============================================================ */
  :root {
    --onyx:    #1A1A1A;
    --gold:    #C9A84C;
    --ivory:   #FEFCF9;
    --linen:   #E8E0D4;
    --stone:   #7A7065;
    --white:   #FFFFFF;
    --gold-lt: rgba(201,168,76,0.12);
  }

  /* ============================================================
     BASE TYPOGRAPHY
  ============================================================ */
  body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: var(--onyx);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
  }

  h1 { font-size: clamp(44px, 7vw, 88px); }
  h2 { font-size: clamp(30px, 4.5vw, 56px); }
  h3 { font-size: clamp(22px, 3vw, 34px); }
  h4 { font-size: clamp(18px, 2.5vw, 26px); }

  p {
    color: var(--stone);
    line-height: 1.95;
    margin-bottom: 18px;
  }
  p:last-child { margin-bottom: 0; }

  em { font-style: italic; }
  strong { font-weight: 600; }

  .gold      { color: var(--gold); }
  .gold-em   { color: var(--gold); font-style: italic; font-family: 'Cormorant Garamond', serif; }
  .white     { color: var(--white); }

  /* Eyebrow label */
  .eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  /* Gold rule */
  .gold-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
  }

  /* Pull-quote */
  .pull-quote {
    border-left: 2px solid var(--gold);
    padding: 18px 28px;
    margin: 36px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--onyx);
    line-height: 1.5;
    background: #FEFCF9;
  }

  /* ============================================================
     PAGE VISIBILITY
  ============================================================ */
  .page         { display: none; }
  .page.active  { display: block; }

  /* ============================================================
     BUTTONS
  ============================================================ */
  .btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 30px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .btn-gold          { background: var(--gold);    color: var(--onyx);  }
  .btn-gold:hover    { background: #b8923e; }

  .btn-outline       { background: transparent; color: var(--gold);  border: 1px solid var(--gold);  }
  .btn-outline:hover { background: var(--gold); color: var(--onyx); }

  .btn-white         { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.6); }
  .btn-white:hover   { background: var(--white); color: var(--onyx); }

  /* ============================================================
     LAYOUT HELPERS
  ============================================================ */
  .container     { max-width: 1100px; margin: 0 auto; }
  .container-sm  { max-width: 740px;  margin: 0 auto; }
  .container-xs  { max-width: 640px;  margin: 0 auto; }

  .section        { padding: 100px 60px; }
  .section-dark   { background: var(--onyx); }
  .section-linen  { background: var(--linen); }
  .section-white  { background: var(--white); }

  .section-dark h1,
  .section-dark h2,
  .section-dark h3,
  .section-dark h4 { color: var(--white); }
  .section-dark p   { color: rgba(255,255,255,0.65); }

  .text-center { text-align: center; }
  .mt8  { margin-top: 8px; }
  .mt16 { margin-top: 16px; }
  .mt24 { margin-top: 24px; }
  .mt32 { margin-top: 32px; }
  .mt40 { margin-top: 40px; }
  .mt48 { margin-top: 48px; }
  .mb8  { margin-bottom: 8px; }
  .mb16 { margin-bottom: 16px; }
  .mb24 { margin-bottom: 24px; }
  .mb32 { margin-bottom: 32px; }
  .mb40 { margin-bottom: 40px; }

  /* Horizontal gold gradient divider */
  .gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 64px 0;
  }

  /* ============================================================
     PHOTO PLACEHOLDERS
  ============================================================ */
  .photo {
    background:
      radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,0.6), transparent 60%),
      linear-gradient(150deg, var(--linen), var(--ivory));
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  /* subtle brand monogram watermark on empty placeholders */
  .photo:not(.has-img)::after {
    content: 'N';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    line-height: 1;
    color: rgba(201,168,76,0.10);
    pointer-events: none;
  }
  /* real image fills the same box with no border/padding, cropped to fit */
  .photo.has-img { padding: 0; border-color: transparent; }
  .photo.has-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* favour the upper part of the frame so heads/faces aren't cropped
       (portrait photos default-cropped at 50% cut off heads) */
    object-position: center 25%;
    display: block;
  }

  /* ============================================================
     NAVIGATION
  ============================================================ */
  #nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px;
    transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
  }

  #nav.scrolled {
    background: var(--ivory);
    border-bottom: 1px solid var(--linen);
    padding: 14px 60px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.05);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
    border: none;
    background: none;
  }
  #nav.scrolled .nav-logo { color: var(--onyx); }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
  #nav.scrolled .nav-links a { color: var(--stone); }
  #nav.scrolled .nav-links a:hover,
  #nav.scrolled .nav-links a.active { color: var(--gold); }

  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: background 0.3s;
  }
  #nav.scrolled .nav-hamburger span { background: var(--onyx); }

  /* ============================================================
     ================================================
     HOME PAGE
     ================================================
  ============================================================ */

  /* Hero */
  .home-hero {
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, transparent 55%), var(--onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 40px 100px;
    position: relative;
  }
  .home-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  }

  .home-hero .eyebrow { font-size: 9px; margin-bottom: 20px; }

  .home-hero h1 {
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .home-hero h1 em { color: var(--gold); font-style: italic; }

  .home-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    line-height: 2;
    max-width: 480px;
    margin: 20px auto 40px;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Home Intro */
  .home-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .home-intro-grid h2 em { color: var(--gold); }

  /* Pillars */
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px;
    max-width: 960px;
    margin: 0 auto;
  }
  .pillar-item h3 {
    font-size: 30px;
    margin: 0 0 10px;
    color: var(--onyx);
  }

  /* Cards */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 44px auto 0;
  }
  .card {
    background: var(--ivory);
    border: 1px solid var(--linen);
    padding: 32px 24px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .card::before {
    content:'';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s;
  }
  .card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.09); }
  .card:hover::before { background: var(--gold); }
  .card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-style: italic;
    font-weight: 300;
    color: var(--linen);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
  }
  .card h4 { font-size: 20px; color: var(--onyx); margin-bottom: 10px; }
  .card p   { font-size: 12px; margin-bottom: 14px; }
  .card-link {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* Speaking teaser */
  .speaking-teaser h2 { margin-bottom: 14px; }
  .speaking-teaser h2 em { color: var(--gold); }
  .speaking-teaser-sub {
    max-width: 560px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.6);
  }

  /* Email opt-in */
  .optin-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .optin-form input {
    padding: 13px 18px;
    border: 1px solid var(--linen);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--onyx);
    outline: none;
    min-width: 180px;
    transition: border 0.3s;
  }
  .optin-form input:focus { border-color: var(--gold); }

  /* ============================================================
     ================================================
     MY STORY PAGE
     ================================================
  ============================================================ */
  .story-hero {
    min-height: 52vh;
    background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, transparent 55%), var(--onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 90px;
  }
  .story-hero h1 { color: var(--white); }
  .story-hero h1 em { color: var(--gold); }

  .story-body {
    padding: 80px 60px;
    max-width: 820px;
    margin: 0 auto;
  }
  .story-body h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--onyx);
    margin: 60px 0 20px;
  }
  .story-body h2:first-child { margin-top: 0; }
  .story-body h3 {
    font-size: 24px;
    font-style: italic;
    color: var(--gold);
    margin: 40px 0 16px;
  }
  .story-body p { font-size: 14.5px; }

  /* ============================================================
     ================================================
     NEW ART OF LIVING PAGE
     ================================================
  ============================================================ */
  .phil-hero {
    min-height: 60vh;
    background: linear-gradient(160deg, rgba(201,168,76,0.08) 0%, transparent 60%), var(--onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 100px;
  }
  .phil-hero h1 { color: var(--white); }
  .phil-hero h1 em { color: var(--gold); }
  .phil-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-top: 14px;
  }

  .phil-opening { padding: 80px 60px; }
  .phil-opening p { font-size: 15px; line-height: 2; }

  .pillar-block { padding: 100px 60px; }
  .pillar-block-dark { background: var(--onyx); }
  .pillar-block:nth-of-type(even):not(.pillar-block-dark) { background: var(--white); }
  .pillar-block:nth-of-type(odd):not(.pillar-block-dark)  { background: var(--ivory); }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    font-weight: 300;
    font-style: italic;
    color: rgba(201,168,76,0.18);
    line-height: 1;
    margin-bottom: -20px;
  }

  /* ============================================================
     ================================================
     MOM + EMPIRE PAGE
     ================================================
  ============================================================ */
  .mom-hero {
    min-height: 52vh;
    background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, transparent 55%), var(--onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 90px;
  }
  .mom-hero h1 { color: var(--white); }
  .mom-hero h1 em { color: var(--gold); }
  .mom-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    max-width: 460px;
  }

  .mom-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .topic-card {
    background: var(--ivory);
    border: 1px solid var(--linen);
    border-top: 3px solid var(--gold);
    padding: 28px 24px;
  }
  .topic-card h4 { font-size: 19px; color: var(--onyx); margin-bottom: 10px; }
  .topic-card p  { font-size: 12.5px; }

  /* ============================================================
     ================================================
     SPEAKING PAGE
     ================================================
  ============================================================ */
  .speaking-hero {
    min-height: 60vh;
    background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, transparent 55%), var(--onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 100px;
  }
  .speaking-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 4.5vw, 50px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    max-width: 900px;
  }
  .speaking-headline .hl { color: var(--gold); }

  .speaking-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .speaking-body-grid .lead-text { font-size: 15px; color: var(--onyx); line-height: 2; }
  .speaking-body-grid .lead-text em {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    color: var(--gold);
  }

  /* ============================================================
     ================================================
     CONTACT PAGE
     ================================================
  ============================================================ */
  .contact-hero {
    min-height: 44vh;
    background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, transparent 55%), var(--onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 90px;
  }
  .contact-hero h1 { color: var(--white); }
  .contact-hero h1 em { color: var(--gold); }
  .contact-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 18px;
    max-width: 420px;
  }

  .paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .path-card {
    background: var(--white);
    border: 1px solid var(--linen);
    border-top: 3px solid var(--gold);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }
  .path-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-style: italic;
    font-weight: 300;
    color: var(--linen);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
  }
  .path-card h3 { font-size: 22px; color: var(--onyx); margin-bottom: 10px; }
  .path-card p  { font-size: 12.5px; margin-bottom: 24px; }
  .path-btn     { width: 100%; text-align: center; display: block; margin-top: auto; }

  /* ============================================================
     FORMS
  ============================================================ */
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--onyx);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--linen);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    color: var(--onyx);
    outline: none;
    transition: border 0.3s;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--gold); }
  .form-group textarea { min-height: 110px; resize: vertical; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Dark form variant (speaking page) */
  .form-dark label { color: rgba(255,255,255,0.7); }
  .form-dark input,
  .form-dark textarea,
  .form-dark select { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: var(--white); }
  .form-dark input::placeholder,
  .form-dark textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-dark input:focus,
  .form-dark textarea:focus,
  .form-dark select:focus { border-color: var(--gold); }
  .form-dark select option { background: var(--onyx); color: var(--white); }

  /* ============================================================
     FOOTER
  ============================================================ */
  footer {
    background: var(--onyx);
    padding: 60px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    border: none;
    background: none;
  }
  .footer-tagline {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
  }
  .footer-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  }
  .footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-nav a {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
  }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 960px) {
    #nav { padding: 18px 30px; }
    #nav.scrolled { padding: 14px 30px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--onyx);
      align-items: center;
      justify-content: center;
      gap: 36px;
      z-index: 9998;
    }
    .nav-links.open a {
      font-size: 12px;
      color: var(--white);
      letter-spacing: 4px;
    }
    .nav-links.open a:hover { color: var(--gold); }

    .section, .phil-opening, .pillar-block,
    .story-body, .speaking-body-grid + section { padding: 60px 30px; }

    .home-intro-grid,
    .speaking-body-grid,
    .paths-grid { grid-template-columns: 1fr; gap: 40px; }

    .pillars-grid  { grid-template-columns: 1fr; gap: 44px; }
    .cards-grid    { grid-template-columns: 1fr 1fr; }
    .mom-topics-grid { grid-template-columns: 1fr; }
    .form-row      { grid-template-columns: 1fr; }
    footer         { padding: 48px 30px; }
    .story-body    { padding: 60px 30px; }
    .phil-opening  { padding: 60px 30px; }
  }

  @media (max-width: 600px) {
    .cards-grid  { grid-template-columns: 1fr; }
    .hero-btns   { flex-direction: column; align-items: center; }
    .optin-form  { flex-direction: column; align-items: center; }
    .optin-form input { width: 100%; max-width: 320px; }
    .footer-nav  { gap: 16px; }
  }

  /* ============================================================
     ADDED: hero photo tag, full-width photo band, press bar
  ============================================================ */
  .home-hero { overflow: hidden; }
  .hero-photo-tag {
    position: absolute;
    bottom: 18px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201,168,76,0.7);
    border: 1px dashed rgba(201,168,76,0.45);
    padding: 7px 16px;
    white-space: nowrap;
    pointer-events: none;
  }
  .photo-band { padding: 0 60px; background: var(--ivory); }
  .photo-band .photo { height: 460px; max-width: 1100px; margin: 0 auto; }

  .press-bar { background: var(--white); padding: 56px 60px; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); }
  .press-logos {
    display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
    max-width: 1000px; margin: 24px auto 0;
  }
  .press-logos .photo { height: 70px; flex: 1 1 150px; min-width: 130px; }

  @media (max-width: 600px) {
    .hero-photo-tag { font-size: 7px; letter-spacing: 2px; white-space: normal; text-align: center; max-width: 80%; }
    .photo-band { padding: 0 30px; }
    .photo-band .photo { height: 300px; }
    .press-bar { padding: 44px 30px; }
  }


  /* ============================================================
     ADDED v2: nav CTA, footer social, scroll reveal
  ============================================================ */
  .nav-cta {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 9px 18px !important;
    border-radius: 40px;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--onyx) !important; border-bottom-color: var(--gold) !important; }
  #nav.scrolled .nav-cta { color: var(--gold) !important; }
  #nav.scrolled .nav-cta:hover { color: var(--onyx) !important; }

  .footer-social { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }
  .footer-social a { color: rgba(255,255,255,0.55); transition: color 0.3s; display: inline-flex; }
  .footer-social a:hover { color: var(--gold); }
  .footer-social svg { width: 20px; height: 20px; fill: currentColor; }
  .footer-email {
    font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
    color: var(--gold); text-decoration: none;
  }
  .footer-email:hover { text-decoration: underline; }

  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in-view { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  }


  /* ============================================================
     ADDED v3: design-upgrade layer
  ============================================================ */
  /* Full-bleed hero photo + gradient overlay + slow zoom */
  .home-hero, .speaking-hero, .story-hero, .phil-hero, .mom-hero, .contact-hero { position: relative; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(160deg, rgba(201,168,76,0.12), transparent 55%), var(--onyx);
    background-size: cover; background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.55) 100%);
  }
  .home-hero > div:not(.hero-bg),
  .speaking-hero > *:not(.hero-bg),
  .story-hero > div:not(.hero-bg),
  .phil-hero > div:not(.hero-bg),
  .mom-hero > div:not(.hero-bg),
  .contact-hero > div:not(.hero-bg) { position: relative; z-index: 2; }
  .hero-photo-tag { z-index: 3; }
  @keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

  /* Headline gold accent underline */
  .accent-line { width: 64px; height: 2px; background: var(--gold); margin: 22px auto 0; }
  .accent-line.left { margin-left: 0; }

  /* Thin gold hairline between sections */
  .hairline { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45), transparent); max-width: 1100px; margin: 0 auto; }

  /* Refined image treatment */
  .photo { border-radius: 4px; box-shadow: 0 18px 50px rgba(26,26,26,0.06); }
  .photo:not(.hero-photo-tag) { transition: box-shadow 0.4s ease, transform 0.4s ease; }

  /* Gallery grid */
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
  .gallery-grid .photo { height: 320px; }

  /* Offset editorial 2-up */
  .two-up { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px; max-width: 1100px; margin: 0 auto; align-items: stretch; }
  .two-up .photo { height: 100%; min-height: 360px; }

  /* Inline story photo */
  .story-photo { height: 440px; margin: 40px 0; }
  .story-photo.wide { height: 420px; }

  /* Pillar photo */
  .pillar-photo { height: 320px; margin-top: 32px; }

  /* Contact portrait band */
  .contact-portrait { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; }
  .contact-portrait .photo { height: 340px; }

  /* Staggered child reveals */
  .reveal .card, .reveal .pillar-item, .reveal .topic-card, .reveal .path-card, .reveal .gallery-grid .photo {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in-view .card, .reveal.in-view .pillar-item, .reveal.in-view .topic-card,
  .reveal.in-view .path-card, .reveal.in-view .gallery-grid .photo { opacity: 1; transform: none; }
  .reveal.in-view .card:nth-child(1), .reveal.in-view .pillar-item:nth-child(1),
  .reveal.in-view .topic-card:nth-child(1), .reveal.in-view .path-card:nth-child(1),
  .reveal.in-view .gallery-grid .photo:nth-child(1) { transition-delay: 0.05s; }
  .reveal.in-view .card:nth-child(2), .reveal.in-view .pillar-item:nth-child(2),
  .reveal.in-view .topic-card:nth-child(2), .reveal.in-view .path-card:nth-child(2),
  .reveal.in-view .gallery-grid .photo:nth-child(2) { transition-delay: 0.13s; }
  .reveal.in-view .card:nth-child(3), .reveal.in-view .pillar-item:nth-child(3),
  .reveal.in-view .topic-card:nth-child(3), .reveal.in-view .path-card:nth-child(3),
  .reveal.in-view .gallery-grid .photo:nth-child(3) { transition-delay: 0.21s; }
  .reveal.in-view .card:nth-child(4), .reveal.in-view .topic-card:nth-child(4),
  .reveal.in-view .gallery-grid .photo:nth-child(4) { transition-delay: 0.29s; }
  .reveal.in-view .gallery-grid .photo:nth-child(5) { transition-delay: 0.37s; }
  .reveal.in-view .gallery-grid .photo:nth-child(6) { transition-delay: 0.45s; }

  @media (max-width: 760px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .photo { height: 240px; }
    .two-up { grid-template-columns: 1fr; }
    .two-up .photo { min-height: 240px; }
    .contact-portrait { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
    .reveal .card, .reveal .pillar-item, .reveal .topic-card, .reveal .path-card, .reveal .gallery-grid .photo {
      opacity: 1 !important; transform: none !important; transition: none;
    }
  }


  /* ============================================================
     THEME: warm-editorial (Jenna-inspired) — brand palette kept
  ============================================================ */
  :root { --peachtint: rgba(201,168,76,0.10); --linen-2:#efe8db; }

  .script {
    font-family: 'Caveat', cursive;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
  }
  .script-lg { font-size: clamp(26px, 4vw, 40px); display: inline-block; }

  /* Marker-highlight underline behind key words */
  .hl {
    background-image: linear-gradient(180deg, transparent 58%, rgba(201,168,76,0.34) 58%, rgba(201,168,76,0.34) 92%, transparent 92%);
    padding: 0 3px;
    border-radius: 1px;
  }
  .hl-strong { background-image: linear-gradient(180deg, transparent 55%, rgba(201,168,76,0.5) 55%, rgba(201,168,76,0.5) 92%, transparent 92%); }

  /* Pill buttons (friendlier) */
  .btn { border-radius: 40px; }

  /* Doodle accents */
  .doodle { display: inline-block; color: var(--gold); }
  .doodle svg { width: 100%; height: 100%; display: block; fill: none; stroke: var(--gold); }
  .aster { width: 26px; height: 26px; }
  .aster svg { fill: var(--gold); stroke: none; }

  /* Warm tint section */
  .section-tint { background: linear-gradient(160deg, var(--peachtint), transparent 60%), var(--ivory); }

  /* Airy two-column hero (home) */
  .hero-warm {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--peachtint), transparent 55%), var(--ivory);
    display: flex; align-items: center;
    padding: 150px 60px 90px;
    position: relative; overflow: hidden;
  }
  .hero-warm-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px;
    align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
  }
  .hero-warm h1 { color: var(--onyx); letter-spacing: 1px; margin: 6px 0 0; }
  .hero-warm h1 em { font-style: italic; color: var(--onyx); }
  .hero-warm .lead {
    font-size: 15px; color: var(--stone); line-height: 2;
    max-width: 460px; margin: 22px 0 32px;
  }
  .hero-warm .microline {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--stone); margin-top: 30px;
  }
  .hero-warm .microline b { color: var(--onyx); font-weight: 600; }

  /* Portrait blob */
  .blob {
    position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 4/5;
  }
  .blob::before {
    content: ''; position: absolute; inset: -6% -6% -6% -6%;
    background: linear-gradient(160deg, var(--linen), var(--linen-2));
    border-radius: 46% 54% 48% 52% / 55% 48% 52% 45%;
    z-index: 0;
  }
  .blob .photo {
    position: relative; z-index: 1; width: 100%; height: 100%;
    border-radius: 46% 54% 48% 52% / 55% 48% 52% 45%;
    border: 1px dashed var(--gold);
  }
  .blob .aster { position: absolute; z-index: 2; top: -14px; right: 6%; width: 34px; height: 34px; }
  .blob .aster.b2 { top: auto; bottom: 4%; right: auto; left: -14px; width: 26px; height: 26px; }

  /* Stages bar */
  .stages-bar { background: var(--onyx); padding: 30px 60px; text-align: center; }
  .stages-bar .eyebrow { color: var(--gold); margin-bottom: 12px; }
  .stages-bar .names {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(16px, 2.4vw, 24px); color: #fff; line-height: 1.7;
  }
  .stages-bar .names span { white-space: nowrap; }
  .stages-bar .names i { color: var(--gold); font-style: normal; padding: 0 10px; }
  .stages-bar { padding-top: 46px; padding-bottom: 46px; }
  .stages-photos {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1000px; margin: 28px auto 0;
  }
  .stages-photos figure { margin: 0; }
  .stages-photos .photo { height: 320px; border-radius: 6px; }
  .stages-photos figcaption {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(15px, 2vw, 20px); color: #fff; margin-top: 14px;
  }
  @media (max-width: 700px) {
    .stages-photos { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }
    .stages-photos .photo { height: 340px; }
  }

  /* Freebie / quiz teaser card */
  .invite-card {
    background: var(--onyx); border-radius: 18px; padding: 60px 50px;
    max-width: 960px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  }
  .invite-card::after {
    content:''; position:absolute; inset:0;
    background: radial-gradient(circle at 15% 20%, rgba(201,168,76,0.18), transparent 40%);
  }
  .invite-card > * { position: relative; z-index: 1; }
  .invite-card h2, .invite-card .script { color: #fff; }
  .invite-card h2 em, .invite-card .hl { color: var(--gold); }
  .invite-card p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 14px auto 28px; }

  /* Friendly footer social labels */
  .footer-friend { display: grid; grid-template-columns: repeat(4,auto); gap: 26px; justify-content: center; }
  .footer-friend a {
    font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); text-decoration: none; transition: color .3s; display: inline-flex; align-items: center; gap: 8px;
  }
  .footer-friend a:hover { color: var(--gold); }
  .footer-friend svg { width: 15px; height: 15px; fill: currentColor; }

  @media (max-width: 900px) {
    .hero-warm { padding: 130px 30px 70px; min-height: auto; }
    .hero-warm-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-warm .lead, .blob { margin-left: auto; margin-right: auto; }
    .hero-warm .hero-btns { justify-content: center; }
    .stages-bar, .invite-card { padding-left: 30px; padding-right: 30px; }
    .footer-friend { grid-template-columns: 1fr 1fr; gap: 18px; }
  }


  /* THEME nav: solid ivory always */
  #nav { background: var(--ivory); border-bottom: 1px solid var(--linen); padding: 16px 60px; }
  #nav .nav-logo { color: var(--onyx); }
  #nav .nav-links a { color: var(--stone); }
  #nav .nav-links a:hover, #nav .nav-links a.active { color: var(--gold); }
  #nav .nav-hamburger span { background: var(--onyx); }
  #nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.05); padding: 12px 60px; }


  /* THEME: interior light heroes */
  .story-hero, .phil-hero, .mom-hero, .contact-hero {
    background: linear-gradient(160deg, var(--peachtint), transparent 55%), var(--ivory);
    text-align: center;
  }
  .story-hero h1, .phil-hero h1, .mom-hero h1, .contact-hero h1,
  .story-hero h1 em, .phil-hero h1 em, .mom-hero h1 em, .contact-hero h1 em { color: var(--onyx); }
  .phil-hero-sub, .mom-hero-sub, .contact-hero-sub { color: var(--stone); }
  .story-hero .script, .phil-hero .script, .mom-hero .script, .contact-hero .script { display: block; margin-bottom: 4px; }


  /* THEME: speaking hero -> light warm */
  .speaking-hero { background: linear-gradient(160deg, var(--peachtint), transparent 55%), var(--ivory); }
  .speaking-hero .script { display: block; margin-bottom: 14px; }
  .speaking-headline { color: var(--onyx); }
  .speaking-headline .hl { color: var(--onyx); }
