:root {
    --gold: #C9922A;
    --gold-light: #e8b96a;
    --gold-dark: #8B6344;
    --sage: #e8f0e5;
    --sage-dark: #B8C9B2;
    --sage-deep: #5a7a63;
    --cream: #F5EDD8;
    --blush: #E8C8B8;
    --mauve: #C4A09A;
    --white: #ffffff;
    --off-white: #fafaf8;
    --charcoal: #2a2a2a;
    --text: #3d3228;
    --text-light: #6b5a4a;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 8px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,146,42,0.15);
    transition: all 0.3s ease;
  }

  .nav-logo img {
    height: 100px;
    width: auto;
  }

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

  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: white !important;
    padding: 10px 24px;
    letter-spacing: 0.1em;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-dark) !important; color: white !important; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-top: 93px;
    overflow: hidden;
    background: #e8f0e5;
  }

  .hero-bg { display: none; }

  /* Decorative sage arc behind photo */
  .hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201,146,42,0.08);
    z-index: 0;
  }

  .hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 60px 40px 60px 80px;
    line-height: 1.5;
  }

  .hero-left::after { display: none; }

  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px 40px 20px;
  }

  .hero-right img {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 4px solid rgba(201,146,42,0.5);
    box-shadow: 0 0 0 12px rgba(255,255,255,0.6), 0 24px 60px rgba(0,0,0,0.12);
  }

  .hero-right::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(201,146,42,0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 8px;
    display: block;
    line-height: 1.9;
    text-align: left;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 460px;
    margin-bottom: 32px;
    text-align: left;
    color: var(--text-light);
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 28px;
  }

  .btn-rounded {
    border-radius: 50px !important;
    padding: 16px 48px !important;
    font-size: 13px !important;
    letter-spacing: 0.18em !important;
  }

  .btn-primary {
    background: var(--gold);
    color: white;
    padding: 15px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 14px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-1px);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
    min-height: 600px;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(212,224,208,0.15), transparent 30%);
    pointer-events: none;
  }

  /* CREDENTIAL STRIP */
  .credentials {
    background: var(--sage);
    padding: 18px 60px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .cred-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cred-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    letter-spacing: 0.02em;
  }

  .cred-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    margin-top: 1px;
    display: block;
  }

  .cred-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.5);
  }

  /* SECTION SHARED */
  section {
    padding: 100px 80px;
  }

  .section-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
  }

  .problem .section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .meet .section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .section-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .section-headline em {
    font-style: italic;
    color: var(--gold);
  }

  /* PROBLEM SECTION */
  .problem {
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 70px 80px 60px;
  }

  .problem-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .problem-text p strong {
    color: var(--text);
    font-weight: 500;
  }

  .problem-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
  }

  .problem-card {
    background: transparent;
    border-left: none;
    border-bottom: 1px solid rgba(201,146,42,0.2);
    padding: 32px 0;
    position: relative;
  }

  .problem-card:last-child {
    border-bottom: none;
  }

  .problem-card:nth-child(even) {
    background: transparent;
  }



  .problem-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--charcoal);
    font-style: italic;
    padding-top: 0;
  }

  /* MEET KARLYN */
  .meet {
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-bottom: 60px;
  }


  .meet-image {
    position: relative;
  }

  .meet-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .meet-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--sage);
    z-index: -1;
  }

  .meet-image::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background: var(--sage);
    opacity: 0.2;
    z-index: -1;
  }

  .meet-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .meet-quote {
    border-left: 3px solid var(--gold);
    padding: 20px 28px;
    margin: 32px 0;
    background: #f7ede8;
  }

  .meet-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--charcoal);
    margin: 0;
  }

  .credential-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }

  .badge {
    background: var(--off-white);
    border: 1px solid rgba(201,146,42,0.25);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    text-transform: uppercase;
  }

  /* FREE METHOD */
  .free-method {
    background: var(--sage);
    text-align: center;
    padding: 60px 80px 100px 80px;
  }

  .free-method .section-headline {
    color: var(--charcoal);
    margin-bottom: 16px;
  }

  .free-method .section-eyebrow {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .free-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 28px;
  }

  .free-card {
    background: rgba(255,255,255,0.55);
    padding: 48px 32px;
    text-align: left;
    border-top: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: default;
  }

  .free-card:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-top-color: var(--gold);
  }

  .free-card:hover .free-letter {
    opacity: 0.7;
    transform: scale(1.05);
  }

  .free-letter {
    transition: all 0.3s ease;
  }

  .free-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
    margin-bottom: 12px;
    display: block;
  }

  .free-word {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
    display: block;
  }

  .free-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
  }

  /* TALKS */
  .talks {
    background: var(--off-white);
    padding: 60px 80px 60px 80px;
  }

  .talks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .talks .section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .talks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .talk-card {
    background: white;
    padding: 32px 36px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .talk-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
    transform: translateY(-3px);
  }

  .talk-card:nth-child(1) { border-left-color: var(--gold); }
  .talk-card:nth-child(2) { border-left-color: var(--sage-dark); }
  .talk-card:nth-child(3) { border-left-color: var(--blush); }
  .talk-card:nth-child(4) { border-left-color: var(--mauve); }
  .talk-card:nth-child(5) { border-left-color: var(--gold-dark); }

  .talk-card:nth-child(1):hover { background: #fdf8f0; }
  .talk-card:nth-child(2):hover { background: #f4f7f3; }
  .talk-card:nth-child(3):hover { background: #fdf3ef; }
  .talk-card:nth-child(4):hover { background: #faf5f4; }
  .talk-card:nth-child(5):hover { background: #f7f2ed; }

  .talk-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
  }

  .talk-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 10px;
  }

  .talk-subtitle {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
  }

  .talk-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
  }

  .talk-card:hover .talk-desc {
    max-height: 300px;
    opacity: 1;
    margin-top: 14px;
  }

  .talk-takeaways {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .talk-card:hover .talk-takeaways {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
    padding-top: 16px;
  }

  .talk-takeaway {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  .talk-takeaway::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 9px;
  }

  .talk-hover-hint {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-top: 12px;
    transition: opacity 0.3s ease;
    display: block;
  }

  .talk-card:hover .talk-hover-hint {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
  }

  .talk-card-last {
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 44px 40px;
    border-left: 4px solid var(--gold);
    grid-column: span 2;
  }

  .talk-card-last p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 700px;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--sage);
    padding: 60px 80px 60px 80px;
    overflow: hidden;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .testimonials .section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .testimonials .section-headline {
    color: var(--charcoal);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial {
    padding: 40px 36px;
    background: var(--off-white);
    position: relative;
  }

  .testimonial:nth-child(2) {
    background: #f7ede8;
  }

  .testimonial::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 28px;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    padding-top: 32px;
  }

  .testimonial-author {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
  }

  .testimonial-role {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 1px;
    display: block;
  }

  /* AUDIENCES */
  .audiences {
    background: var(--sage);
    padding: 80px;
    text-align: center;
  }

  .audiences .section-headline {
    margin-bottom: 48px;
  }

  .audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .audience-tag {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--charcoal);
  }

  .audience-tag:nth-child(3n+2) {
    background: rgba(232,200,184,0.5);
    border-color: rgba(232,200,184,0.8);
  }

  /* BOOKING CTA */
  .booking-cta {
    background: white;
    padding: 70px 80px 120px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .booking-cta-left .section-headline {
    margin-bottom: 20px;
  }

  .booking-cta .section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .booking-cta-left p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .booking-details {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .booking-detail {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .booking-detail::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* CONTACT FORM */
  .booking-form {
    background: #f7ede8;
    padding: 48px;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 32px;
  }

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

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: white;
    border: 1px solid rgba(201,146,42,0.2);
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  /* FOOTER */
  footer {
    background: var(--sage);
    padding: 36px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .footer-brand img {
    height: 90px;
    width: auto;
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal);
  }

  .footer-nav h4 {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav a {
    font-size: 13px;
    font-weight: 300;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nav a:hover { color: var(--gold); }

  .footer-bottom {
    background: var(--sage);
    padding: 20px 80px;
    border-top: 1px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: 0.05em;
  }

  /* FADE IN ANIMATIONS */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    nav { padding: 16px 32px; }
    .nav-links { gap: 24px; }
    section { padding: 80px 40px; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 60vh; }
    .hero-left { padding: 60px 40px; }
    .problem, .meet { grid-template-columns: 1fr; }
    .talks-grid { grid-template-columns: 1fr 1fr; }
    .free-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .booking-cta { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr 1fr; gap: 40px; }
    .credentials { padding: 28px 40px; gap: 32px; }
  }

  @media (max-width: 640px) {
    /* NAV */
    nav { padding: 8px 20px; overflow: visible; }
    .nav-links { display: none; }
    .nav-logo img { height: 70px; }
    .nav-right { display: none; }
    

    /* HERO */
    .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 40px; }
    .hero-right { padding: 20px 40px 0; }
    .hero-right img { width: 260px; height: 260px; }
    .hero-right::before { width: 290px; height: 290px; }
    .hero-left { padding: 32px 24px; align-items: center; text-align: center; background: #e8f0e5; }
    .hero-headline { font-size: 34px; }
    .hero-sub { font-size: 15px; text-align: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-rounded { width: 100%; text-align: center; }
    .hero-eyebrow { font-size: 10px; text-align: center; }
    .hero-pre-eyebrow { text-align: center; }
    .hero::before, .hero::after { display: none; }

    /* CREDENTIALS */
    .credentials { padding: 16px 12px; gap: 14px; flex-wrap: nowrap; overflow-x: auto; }
    .cred-number { font-size: 16px; }
    .cred-label { font-size: 9px; letter-spacing: 0.1em; }
    .cred-divider { height: 20px; }

    /* SECTIONS */
    section { padding: 48px 24px; }
    .problem { padding: 48px 24px; display: flex; flex-direction: column; gap: 0; }
    .problem-text { order: 1; }
    .problem-cards { order: 2; margin-top: 28px; }
    .meet { grid-template-columns: 1fr; gap: 32px; }
    .meet-image { display: none; }
    .section-headline { font-size: 32px; }

    /* TALKS - fix stacking */
    .talks { padding: 48px 24px 48px; }
    .talks-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .talks-header .section-eyebrow { margin-bottom: 8px; }
    .talks-header h2 { margin-bottom: 0; font-size: 28px; }

    .talk-card { padding: 28px 24px; grid-column: unset !important; max-width: 100% !important; width: 100%; }
    .talk-title { font-size: 20px; }
    .talk-subtitle { font-size: 11px; }
    .talk-hover-hint { font-size: 10px; }

    /* TESTIMONIALS */
    .testimonials { padding: 48px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial { padding: 32px 24px; }

    /* BOOKING */
    .booking-cta { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }
    .booking-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    /* FOOTER */
    footer { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
    .footer-brand img { height: 70px; }

    /* LOGO BANNER */
    .logo-banner-label { font-size: 10px; }

    /* BUTTONS */
    .btn-primary, .btn-outline { padding: 14px 28px; font-size: 11px; }
  }

  /* Extra small phones */
  @media (max-width: 380px) {
    .hero-headline { font-size: 30px; }
    .section-headline { font-size: 28px; }
    .credentials { gap: 10px; }
    .talk-title { font-size: 20px; }
  }

  /* SCROLLING LOGO BANNER */
  .logo-banner {
    background: white;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201,146,42,0.15);
    border-bottom: 1px solid rgba(201,146,42,0.15);
    position: relative;
  }

  .logo-banner::before,
  .logo-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .logo-banner::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
  }

  .logo-banner::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
  }

  .logo-banner-label {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .logo-track-wrapper {
    overflow: hidden;
  }

  .logo-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
  }

  .logo-track:hover {
    animation-play-state: paused;
  }

  .logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    opacity: 0.65;
    filter: grayscale(30%);
    transition: opacity 0.3s, filter 0.3s;
  }

  .logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  .logo-item img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
  }

  @keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


  

  .hero-pre-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }

  .highlight {
    background: linear-gradient(120deg, rgba(201,146,42,0.2) 0%, rgba(201,146,42,0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
    padding: 0 2px;
  }

  .problem-lines p {
    margin-bottom: 4px !important;
    line-height: 1.5 !important;
  }
  .problem-text p {
    margin-bottom: 6px;
    line-height: 1.6;
  }

  @media (max-width: 640px) {
    .talk-card .talk-desc {
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    }
    .talk-card .talk-takeaways {
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    }
    .talk-card .talk-hover-hint {
      opacity: 0.6;
    }
    .talk-card.mobile-open .talk-desc {
      max-height: 400px !important;
      opacity: 1 !important;
      margin-top: 14px !important;
    }
    .talk-card.mobile-open .talk-takeaways {
      max-height: 300px !important;
      opacity: 1 !important;
      margin-top: 16px !important;
      padding-top: 16px !important;
    }
    .talk-card.mobile-open .talk-hover-hint {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      margin: 0;
    }
    .talk-hover-hint::after {
      content: ' — tap to expand';
    }
    .talk-card {
      cursor: pointer;
    }
  }

  /* ACCORDION STYLES */
  .accordion-section {
    border-top: 1px solid rgba(201,146,42,0.2);
  }

  .accordion-item {
    border-bottom: 1px solid rgba(201,146,42,0.2);
    overflow: hidden;
  }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 20px;
  }

  .accordion-header:hover .accordion-title {
    color: var(--gold);
  }

  .accordion-header:hover .accordion-toggle {
    background: var(--gold);
    color: white;
  }

  .accordion-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
  }

  .accordion-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-transform: uppercase;
    flex-shrink: 0;
    width: 70px;
  }

  .accordion-title-wrap {
    flex: 1;
  }

  .accordion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 4px;
    transition: color 0.3s;
  }

  .accordion-subtitle {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .accordion-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .accordion-item.open .accordion-toggle {
    background: var(--gold);
    color: white;
    transform: rotate(45deg);
  }

  .accordion-item.open .accordion-title {
    color: var(--gold);
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .accordion-item.open .accordion-body {
    max-height: 500px;
    opacity: 1;
  }

  .accordion-content {
    padding: 0 0 28px 84px;
  }

  .accordion-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .accordion-takeaways {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(201,146,42,0.15);
  }

  .accordion-takeaway {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  .accordion-takeaway::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 9px;
  }

  /* Season accordion colors */
  .accordion-item[data-color="sage"] .accordion-num,
  .accordion-item[data-color="sage"] .accordion-toggle,
  .accordion-item[data-color="sage"].open .accordion-title { color: var(--sage-dark); }
  .accordion-item[data-color="sage"] .accordion-toggle { border-color: var(--sage-dark); }
  .accordion-item[data-color="sage"].open .accordion-toggle { background: var(--sage-dark); color: white; }
  .accordion-item[data-color="sage"] .accordion-header:hover .accordion-title { color: var(--sage-dark); }

  .accordion-item[data-color="blush"] .accordion-num,
  .accordion-item[data-color="blush"] .accordion-toggle,
  .accordion-item[data-color="blush"].open .accordion-title { color: var(--mauve); }
  .accordion-item[data-color="blush"] .accordion-toggle { border-color: var(--mauve); }
  .accordion-item[data-color="blush"].open .accordion-toggle { background: var(--mauve); color: white; }
  .accordion-item[data-color="blush"] .accordion-header:hover .accordion-title { color: var(--mauve); }

  .accordion-item[data-color="mauve"] .accordion-num,
  .accordion-item[data-color="mauve"] .accordion-toggle,
  .accordion-item[data-color="mauve"].open .accordion-title { color: var(--blush); }
  .accordion-item[data-color="mauve"] .accordion-toggle { border-color: var(--mauve); }
  .accordion-item[data-color="mauve"].open .accordion-toggle { background: var(--mauve); color: white; }

  @media (max-width: 640px) {
    .accordion-title { font-size: 20px; }
    .accordion-content { padding: 0 0 24px 0; }
    .accordion-num { width: 44px; font-size: 11px; }
  }

  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201,146,42,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .social-icon:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* FOOTER SOCIAL */
  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-social .social-icon {
    border-color: rgba(201,146,42,0.3);
    color: var(--gold);
  }

  .footer-social .social-icon:hover {
    background: var(--gold);
    color: white;
  }

  /* OPTIN SECTION */
  .optin {
    background: var(--off-white);
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .optin-left .section-eyebrow { margin-bottom: 16px; }
  .optin-left h2 { margin-bottom: 16px; }
  .optin-left p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 28px;
  }

  .optin-right {
    background: white;
    border: 1px solid rgba(201,146,42,0.2);
    padding: 48px 40px;
    text-align: center;
  }

  .optin-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
  }

  .optin-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-style: italic;
  }

  .optin-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
  }

  /* BOOKING CTA left align to top */
  .booking-cta {
    align-items: start !important;
  }

  @media (max-width: 640px) {
    .social-icons { display: none; }
    .optin { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
    .optin-right { padding: 32px 24px; }
  }

  /* ── HAMBURGER ── */
  .ham-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1000;
    flex-shrink: 0;
  }
  .ham-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .ham-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .ham-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .ham-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .mobile-menu.active { display: flex; }
  .mobile-menu a {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mob-cta {
    background: var(--gold);
    color: white !important;
    padding: 14px 40px;
    border-radius: 50px;
    margin-top: 8px;
  }
  .mobile-menu .mob-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
  }

  @media (max-width: 640px) {
    .ham-btn { display: flex; }
    .nav-right { display: none !important; }
  }

/* =====================================================================
   EXPANDED BRAND ADDITIONS  (nav dropdown, keynote pathways, formats,
   category badges, resource cards, meeting-planner, a11y)
   ===================================================================== */

/* --- Accessibility: visible focus + reduced motion --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.accordion-header:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .logo-track { animation: none !important; }
}

/* --- NAV DROPDOWN (desktop) --- */
.nav-links li.has-dropdown { position: relative; }

.nav-links .dropdown-toggle {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-links .dropdown-toggle:hover,
.nav-links li.has-dropdown:hover .dropdown-toggle { color: var(--gold); }

.nav-links .dropdown-toggle .caret {
  border: solid var(--gold);
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -2px;
}
.nav-links li.has-dropdown:hover .dropdown-toggle .caret,
.nav-links .dropdown-toggle[aria-expanded="true"] .caret { transform: rotate(-135deg); margin-top: 2px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: #fff;
  border: 1px solid rgba(201,146,42,0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
  border-radius: 10px;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid rgba(201,146,42,0.18);
  border-top: 1px solid rgba(201,146,42,0.18);
}
.nav-links li.has-dropdown:focus-within .dropdown-menu,
.nav-links li.has-dropdown:hover .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 6px;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible { background: var(--sage); color: var(--gold-dark); }
.dropdown-menu .dropdown-note {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 1px;
}

/* --- MOBILE MENU: expandable submenu --- */
.mobile-menu .mob-group { width: 100%; text-align: center; }
.mobile-menu .mob-sub-toggle {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu .mob-sub-toggle .caret {
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.mobile-menu .mob-sub-toggle[aria-expanded="true"] .caret { transform: rotate(-135deg); }
.mobile-menu .mob-submenu {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  padding-top: 4px;
}
.mobile-menu .mob-submenu.open { display: flex; }
.mobile-menu .mob-submenu a {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}

/* --- KEYNOTE PATHWAY CARDS ("Choose Your Experience") --- */
.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head-center .section-eyebrow { display: block; }
.section-head-center .section-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-top: 8px;
}

.pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.pathway-card {
  background: #fff;
  border: 1px solid rgba(201,146,42,0.18);
  border-top: 3px solid var(--gold);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pathway-card:nth-child(2) { border-top-color: var(--sage-deep); }
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}
.pathway-card .pathway-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pathway-card .pathway-statement {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-dark);
  margin-bottom: 18px;
  line-height: 1.35;
}
.pathway-card .pathway-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 28px;
  flex-grow: 1;
}
.pathway-card .btn-outline { align-self: flex-start; }

/* --- CATEGORY BADGE (not color-only: text + shape) --- */
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(201,146,42,0.35);
  color: var(--gold-dark);
  border-radius: 50px;
  margin-bottom: 16px;
}
.cat-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.cat-badge.cat-org {
  border-color: rgba(90,122,99,0.45);
  color: var(--sage-deep);
}
/* second shape cue so category is not signalled by color alone */
.cat-badge.cat-org::before { border-radius: 1px; background: var(--sage-deep); }

/* --- FEATURED KEYNOTE CARDS --- */
.featured-keynotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.kn-card {
  background: #fff;
  border: 1px solid rgba(201,146,42,0.15);
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kn-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,0.08); }
.kn-card .kn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
}
.kn-card .kn-subtitle {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.kn-card .kn-desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

/* --- AVAILABLE FORMATS --- */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.format-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(201,146,42,0.18);
  border-top: 2px solid var(--gold);
  padding: 34px 30px;
}
.format-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.format-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}
.formats-note {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
}

/* --- RESOURCE CARDS ("Continue the Conversation") --- */
.resource-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.resource-card {
  background: #fff;
  border: 1px solid rgba(201,146,42,0.2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.resource-card.is-upcoming {
  background: var(--off-white);
  border-style: dashed;
}
.resource-card .res-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.resource-card.is-upcoming .res-tag { color: var(--text-light); }
.resource-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.resource-card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-grow: 1;
}
.res-upcoming-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(201,146,42,0.25);
  padding: 12px 18px;
  align-self: flex-start;
  border-radius: 50px;
}

/* --- SECONDARY / COLLEGE LINK BLOCK --- */
.secondary-lane {
  background: var(--off-white);
  border: 1px solid rgba(201,146,42,0.18);
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
}
.secondary-lane h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.secondary-lane p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 560px;
}

/* --- SIMPLE HERO for interior pages --- */
.page-hero {
  background: var(--sage);
  padding: 150px 80px 80px;
  text-align: center;
}
.page-hero .section-eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  margin: 8px auto 22px;
  max-width: 900px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .page-hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 32px;
}
.page-hero .hero-buttons { justify-content: center; }

/* --- GENERIC prose section --- */
.prose-section { background: #fff; }
.prose-narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.prose-narrow p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 18px;
}
.emphasis-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: var(--gold-dark);
  max-width: 820px;
  margin: 8px auto 0;
  text-align: center;
}

/* --- MEETING PLANNERS --- */
.mp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.mp-card {
  background: #fff;
  border: 1px solid rgba(201,146,42,0.18);
  padding: 36px 34px;
}
.mp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.mp-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 14px;
}
.mp-card .mp-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-light);
}
.mp-headshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.mp-headshots img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(201,146,42,0.2);
}

/* --- RESPONSIVE for new components --- */
@media (max-width: 1024px) {
  .pathways,
  .featured-keynotes,
  .formats-grid,
  .resource-cards,
  .mp-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 40px 64px; }
}
@media (max-width: 640px) {
  .nav-links .dropdown-menu { display: none; }
  .page-hero { padding: 120px 24px 52px; }
  .pathway-card,
  .kn-card,
  .format-card,
  .resource-card,
  .mp-card { padding: 30px 24px; }
  .secondary-lane { padding: 28px 24px; }
  .mp-headshots { grid-template-columns: 1fr; }
  .mp-headshots img { height: 320px; }
}

/* --- ABOUT: Her Story two-column with photo --- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.story-photo { position: relative; }
.story-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(201,146,42,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.story-photo::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
  z-index: -1;
}
.story-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-photo { max-width: 460px; margin: 0 auto; }
}
