:root{
    --cream:#FAF9F6;
    --cream-2:#F5F5F5;
    --white:#FFFFFF;
    --paper:#F5F5F5;
    --charcoal:#3A3A3A;
    --ink:#2E2E2E;
    --body-text:#4A4A4A;
    --muted:#8C8C8C;
    --blue:#3D6FE0;
    --line:#E4E0D6;
    --btn-dark:#383838;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Lora', Georgia, serif;
    color:var(--body-text);
    background:var(--white);
    line-height:1.65;
  }
  h1,h2,h3,.nav-link,.eyebrow,.btn,.logo{
    font-family:'Montserrat', sans-serif;
  }
  a{color:var(--blue); text-decoration:none;}
  img{max-width:100%; display:block;}

  .container{
    max-width:1240px;
    margin:0 auto;
    padding:0 60px;
  }

  /* ---------- NAV ---------- */
  header{
    position:sticky;
    top:0;
    background:var(--white);
    z-index:100;
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 60px;
    max-width:1240px;
    margin:0 auto;
  }
  .logo{
    font-weight:700;
    font-size:1.25rem;
    color:var(--ink);
    letter-spacing:.2px;
  }
  .logo span{font-weight:500;}
  nav ul{
    list-style:none;
    display:flex;
    gap:26px;
    margin:0;
    padding:0;
  }
  nav a{
    color:var(--muted);
    font-size:.8rem;
    letter-spacing:1px;
    font-weight:500;
    text-transform:uppercase;
    white-space:nowrap;
    transition:color .2s ease;
  }
  nav a:hover{color:var(--ink);}
  .nav-cta{
    border:1.5px solid var(--ink);
    padding:13px 22px;
    font-size:.78rem;
    letter-spacing:1.2px;
    font-weight:600;
    text-transform:uppercase;
    color:var(--ink);
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--ink); color:var(--white);}
  .nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px;
    height:32px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
  }
  .nav-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:var(--ink);
  }

  /* ---------- GENERIC ---------- */
  .eyebrow{
    color:var(--blue);
    font-size:.85rem;
    letter-spacing:2.5px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:18px;
    display:block;
  }
  section{padding:110px 0;}
  .bg-cream{background:var(--cream);}
  .bg-paper{background:var(--paper);}
  .bg-white{background:var(--white);}

  h1{
    font-size:2.6rem;
    line-height:1.2;
    color:var(--ink);
    font-weight:500;
    margin:0 0 28px;
  }
  h2{
    font-size:2.1rem;
    color:var(--ink);
    font-weight:500;
    line-height:1.25;
    margin:0 0 24px;
  }
  .lede{
    font-size:1.2rem;
    color:var(--body-text);
  }
  .quote-italic{
    font-style:italic;
    color:var(--muted);
    font-size:1.15rem;
  }
  .btn{
    display:inline-block;
    background:var(--btn-dark);
    color:var(--white);
    padding:18px 30px;
    font-size:.8rem;
    letter-spacing:1.5px;
    font-weight:600;
    text-transform:uppercase;
    border:none;
    cursor:pointer;
  }
  .btn:hover{background:var(--ink);}

  /* ---------- HERO ---------- */
  .hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
    padding:0;
    min-height:680px;
  }
  .hero-text{
    background:var(--cream);
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:90px 80px;
  }
  .hero-text h1{max-width:560px;}
  .hero-text p{max-width:520px; margin:0 0 18px;}
  .hero-visual{
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at 70% 35%, rgba(255,255,255,.55), transparent 55%),
      linear-gradient(135deg, #cdbfa3 0%, #efe7d8 45%, #f7f3ea 100%);
  }
  .hero-visual svg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }

  /* ---------- QUOTE BAND ---------- */
  .quote-band{
    text-align:center;
    padding:130px 0;
  }
  .quote-band blockquote{
    font-style:italic;
    font-size:2rem;
    line-height:1.5;
    color:var(--ink);
    max-width:900px;
    margin:0 auto 36px;
  }
  .quote-band p{
    max-width:680px;
    margin:0 auto;
    color:var(--muted);
    font-size:1.05rem;
  }

  /* ---------- TWO COL (paradox / about) ---------- */
  .split{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:80px;
    align-items:center;
  }
  .split.reverse{grid-template-columns:1.05fr 0.95fr;}
  .split.reverse .split-visual{order:2;}
  .split-visual{
    aspect-ratio:4/5;
    border-radius:2px;
    overflow:hidden;
    position:relative;
  }
  .split-visual svg{width:100%; height:100%; display:block;}
  .split-text p{margin:0 0 20px;}

  .visual-paradox{
    background:linear-gradient(160deg,#2c3142 0%, #6f7a93 50%, #f1ead9 100%);
    aspect-ratio:0.81;
    max-height:620px;
  }
  .visual-research{
    background:linear-gradient(150deg,#aab6c4 0%, #dfe4ea 60%, #f4f1e9 100%);
    aspect-ratio:16/7;
  }
  .visual-journal{
    background:linear-gradient(150deg,#e7dcc3 0%, #cdbb95 60%, #efe6d2 100%);
    aspect-ratio:1.5;
    max-height:400px;
  }

  /* ---------- ABOUT ---------- */
  .about-wrap{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:60px;
    align-items:start;
  }
  .about-photo{
    width:220px;
    height:220px;
    border-radius:50%;
    background:linear-gradient(160deg,#9aa3b0,#dfe1e6);
    border:8px solid #fff;
    box-shadow:0 0 0 1px var(--line);
  }
  .about-wrap p{margin:0 0 20px;}

  /* ---------- FIELD MOMENTS / SUBSCRIBE ---------- */
  .fm-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
  }
  .subscribe-form{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-width:480px;
    margin-top:30px;
  }
  .subscribe-form input[type="email"]{
    padding:18px 20px;
    border:1px solid #d8d4c8;
    background:var(--white);
    font-family:'Lora', serif;
    font-size:1rem;
    color:var(--ink);
  }
  .subscribe-form input[type="email"]::placeholder{color:var(--muted);}
  .subscribe-form button{width:100%;}
  .form-note{font-size:.9rem; color:var(--muted); margin-top:4px; text-align:center;}

  /* ---------- RESEARCH ---------- */
  .research-head{text-align:center; max-width:760px; margin:0 auto 60px;}
  .research-head h2{font-size:2.2rem;}
  .research-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px 80px;
    margin-top:70px;
  }
  .research-item h3{
    font-family:'Montserrat', sans-serif;
    font-size:1.05rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--ink);
    font-weight:600;
    margin:0 0 14px;
  }
  .research-item p{margin:0; color:var(--body-text);}

  /* ---------- WORK TOGETHER ---------- */
  .wt-intro{
    max-width:820px;
    margin:0 auto 70px;
    text-align:center;
  }
  .wt-intro h2{font-size:2.2rem;}
  .wt-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
  }
  .wt-card-visual{
    aspect-ratio:4/3;
    margin-bottom:24px;
  }
  .wt-card h3{
    font-family:'Montserrat', sans-serif;
    font-size:1.3rem;
    font-weight:500;
    color:var(--ink);
    margin:0 0 14px;
  }
  .wt-card p{margin:0; font-size:.98rem;}
  .wt-cta{text-align:center; margin-top:70px;}

  .v-chairs{background:linear-gradient(150deg,#bba47e 0%, #e7dcc4 50%, #f6f1e4 100%);}
  .v-mic{background:linear-gradient(150deg,#1c1c1c 0%, #4a3a2a 60%, #8a6f4d 100%);}
  .v-path{background:linear-gradient(150deg,#3c4a36 0%, #7a8f6a 55%, #cdd9bd 100%);}

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--ink);
    color:#cfcfcf;
    padding:60px 0 36px;
  }
  .footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:24px;
  }
  footer .logo{color:#fff;}
  footer nav ul{gap:26px;}
  footer nav a{color:var(--muted);}
  footer nav a:hover{color:#fff;}
  .footer-bottom{
    margin-top:40px;
    padding-top:24px;
    border-top:1px solid #444;
    font-size:.8rem;
    color:var(--muted);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .container{padding:0 28px;}
    .nav-inner{padding:18px 24px;}
    .nav-toggle{display:flex;}
    nav ul{
      display:none;
      position:absolute;
      top:100%;
      left:0;
      right:0;
      flex-direction:column;
      gap:0;
      background:var(--white);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      padding:10px 24px;
    }
    nav.open ul{display:flex;}
    nav ul li{padding:14px 0; border-bottom:1px solid var(--line);}
    nav ul li:last-child{border-bottom:none;}
    header{position:sticky;}
    .nav-inner{position:relative; flex-wrap:wrap;}
    .hero{grid-template-columns:1fr;}
    .hero-text{padding:60px 32px;}
    .hero-visual{min-height:340px;}
    h1{font-size:1.9rem;}
    h2{font-size:1.6rem;}
    .split, .split.reverse{grid-template-columns:1fr;}
    .split.reverse .split-visual{order:0;}
    .about-wrap{grid-template-columns:1fr; }
    .about-photo{order:-1;}
    .fm-wrap{grid-template-columns:1fr;}
    .research-grid{grid-template-columns:1fr;}
    .wt-grid{grid-template-columns:1fr;}
    section{padding:70px 0;}
    .quote-band blockquote{font-size:1.4rem;}
  }

/* ---------- JOIN (final CTA before footer) ---------- */
.join-section{
  text-align:center;
  padding:100px 0;
}
.join-section h2{font-size:2.2rem; margin-bottom:36px;}
.join-form{
  max-width:620px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.join-form input{
  padding:20px 22px;
  border:1px solid #d8d4c8;
  background:var(--white);
  font-family:'Lora', serif;
  font-size:1rem;
  color:var(--ink);
  width:100%;
}
.join-form input::placeholder{color:var(--muted);}
.join-form button{width:100%; padding:20px 30px;}

/* ---------- FOOTER SOCIAL ---------- */
.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
  margin:30px 0 26px;
}
.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid #5a5a5a;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#cfcfcf;
}
.footer-social a:hover{border-color:#fff; color:#fff;}
.footer-social svg{width:16px; height:16px; fill:currentColor;}
.footer-email{
  text-align:center;
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:.95rem;
  color:#fff;
  letter-spacing:.3px;
}
.footer-copy{
  text-align:center;
  font-size:.82rem;
  color:var(--muted);
  margin-top:18px;
  padding-top:0;
  border-top:none;
}
footer .footer-inner.stacked{
  flex-direction:column;
  text-align:center;
  gap:10px;
}

/* ====================================================== */
/* ===============  WORKSHOP / MOMENT PAGE  ============== */
/* ====================================================== */
.moment-hero{
  background:
    linear-gradient(165deg, rgba(20,20,18,.72), rgba(20,20,18,.55)),
    url('images/hero-neuron.jpg') center/cover no-repeat;
  color:#fff;
  text-align:center;
  padding:160px 40px 130px;
}
.moment-hero .eyebrow{color:#cfd6f0;}
.moment-hero h1{
  color:#fff;
  font-size:3.1rem;
  max-width:840px;
  margin:0 auto 18px;
}
.moment-hero .subtitle{
  font-family:'Montserrat', sans-serif;
  font-size:1rem;
  letter-spacing:1px;
  color:#e7e2cf;
  text-transform:uppercase;
  margin-bottom:0;
}

.moment-intro{
  max-width:760px;
  margin:0 auto;
  padding:100px 40px 20px;
  text-align:center;
}
.moment-intro p{font-size:1.15rem; margin:0 0 20px;}
.moment-intro .quote-italic{font-size:1.3rem; margin-top:30px;}

.moment-block{
  max-width:760px;
  margin:0 auto;
  padding:70px 40px;
  border-top:1px solid var(--line);
}
.moment-block .block-eyebrow{
  font-family:'Montserrat', sans-serif;
  font-size:1.4rem;
  font-weight:600;
  color:var(--ink);
  margin:0 0 24px;
  display:flex;
  align-items:center;
  gap:12px;
}
.moment-block p{margin:0 0 20px; font-size:1.08rem;}
.moment-block ul{
  margin:0 0 24px;
  padding-left:22px;
}
.moment-block li{
  margin-bottom:12px;
  font-size:1.08rem;
}
.moment-block .emphasis{
  font-style:italic;
  color:var(--ink);
  font-size:1.15rem;
}
.moment-block .question{
  font-style:italic;
  color:var(--muted);
  font-size:1.1rem;
  margin-top:26px;
}

.moment-cta{
  text-align:center;
  padding:100px 40px 140px;
  max-width:700px;
  margin:0 auto;
}
.moment-cta p{font-size:1.1rem; margin-bottom:36px;}

@media (max-width: 980px){
  .moment-hero{padding:90px 24px 70px;}
  .moment-hero h1{font-size:2.1rem;}
  .moment-block, .moment-intro, .moment-cta{padding-left:24px; padding-right:24px;}
}

/* ---------- LOGO IMAGE ---------- */
.logo-img{height:24px; width:auto; display:block;}
footer .logo-img{height:26px; filter:brightness(0) invert(1);}

/* ---------- REAL PHOTO FILLS (override placeholder gradients) ---------- */
.hero-visual, .visual-paradox, .visual-research, .visual-journal{
  background:none;
}
.hero-visual img, .visual-paradox img, .visual-research img, .visual-journal img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ---------- WORK TOGETHER REAL PHOTOS ---------- */
.v-chairs, .v-mic, .v-path{background:none;}
.wt-card-visual img{width:100%; height:100%; object-fit:cover; display:block;}

/* ---------- ABOUT PHOTO (real image) ---------- */
.about-photo{
  overflow:hidden;
  background:none;
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ---------- Paradox heading size tweak ---------- */
#paradox h2{font-size:1.85rem;}
