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

    :root {
      --ink:         #201D19;
      --ink-soft:     #6E6459;
      --jade:        #24463A;
      --jade-deep:   #163026;
      --jade-light:  #3C6656;
      --terracotta:  #C6572E;
      --terracotta-d:#A8451F;
      --gold:        #B98B3E;
      --cream:       #FBF6ED;
      --cream-deep:  #F2E8D6;
      --paper:       #FFFDF9;
      --line:        #E7DCC8;
      --white:       #FFFFFF;

      --font-display: 'Fraunces', Georgia, serif;
      --font-body:    'Manrope', sans-serif;

      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 26px;
      --radius-xl: 999px;

      --shadow-md: 0 10px 34px rgba(32,29,25,0.10);
      --shadow-lg: 0 26px 64px rgba(22,48,38,0.18);

      --grad-terracotta: linear-gradient(135deg, #D97845, #C6572E);

      --transition: 0.24s ease;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    picture { display: block; }
    a { color: inherit; text-decoration: none; }

    :focus-visible {
      outline: 3px solid var(--terracotta);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }

    .skip-link {
      position: absolute; top: -100px; left: 1rem;
      background: var(--jade); color: var(--white);
      padding: 0.5rem 1rem; border-radius: var(--radius-sm);
      font-size: 0.875rem; font-weight: 600; z-index: 9999;
      transition: top var(--transition);
    }
    .skip-link:focus { top: 1rem; }

    h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; color: var(--ink); font-optical-sizing: auto; }
    h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); font-weight: 650; letter-spacing: -0.01em; }
    h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 650; }
    h3 { font-size: 1.2rem; font-weight: 650; }
    p  { color: var(--ink-soft); }

    .section-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--terracotta);
      margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem;
    }
    .section-label::before { content: ''; width: 22px; height: 1.5px; background: var(--gold); display: inline-block; }

    .container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.75rem; }
    section { padding: 5.5rem 0; }

    .divider { display: flex; align-items: center; justify-content: center; gap: 0.9rem; padding: 0 0 0; }
    .divider::before, .divider::after { content: ''; height: 1px; width: 64px; background: var(--line); }
    .divider span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }

    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.9rem 2.1rem;
      border-radius: var(--radius-xl);
      font-size: 0.95rem; font-weight: 700;
      cursor: pointer; border: 2px solid transparent;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    }
    .btn-terracotta { background: var(--grad-terracotta); color: var(--white); box-shadow: 0 10px 26px rgba(198,87,46,0.35); }
    .btn-terracotta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(198,87,46,0.42); }
    .btn-jade { background: var(--jade); color: var(--cream); }
    .btn-jade:hover { background: var(--jade-deep); }
    .btn-outline { background: transparent; color: var(--jade); border-color: var(--line); }
    .btn-outline:hover { border-color: var(--jade); }
    .btn-white { background: var(--white); color: var(--jade); }
    .btn-white:hover { background: var(--cream-deep); }
    .btn-lg { padding: 1.05rem 2.5rem; font-size: 1rem; }
    .btn-block { width: 100%; justify-content: center; }

    /* NAV */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(251,246,237,0.0);
      transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    }
    #nav.scrolled { background: rgba(251,246,237,0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
    .nav-logo { font-family: var(--font-display); font-size: 1.15rem; font-weight: 650; color: var(--ink); display: flex; align-items: center; gap: 0.6rem; }
    .nav-logo-char { width: 34px; height: 34px; background: var(--jade); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--terracotta); font-weight: 700; flex-shrink: 0; }
    .site-nav { display: flex; align-items: center; gap: 0.1rem; }
    .site-nav a { position: relative; color: var(--ink); font-size: 0.87rem; font-weight: 600; padding: 0.5rem 0.8rem; }
    .site-nav a::after { content: ''; position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.2rem; height: 2px; background: var(--terracotta); transform: scaleX(0); transition: transform var(--transition); }
    .site-nav a:hover::after { transform: scaleX(1); }
    .nav-cta .btn { padding: 0.6rem 1.35rem; font-size: 0.84rem; margin-left: 0.6rem; }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 0.5rem; }

    /* HERO */
    .hero { position: relative; padding-top: 7rem; overflow: hidden; }
    .hero::before {
      content: ''; position: absolute; top: -120px; right: -160px; width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(198,87,46,0.14), transparent 70%); pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; bottom: -140px; left: -140px; width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(36,70,58,0.10), transparent 70%); pointer-events: none;
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center; padding-bottom: 4.5rem; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--line); padding: 0.45rem 0.95rem; border-radius: var(--radius-xl); font-size: 0.78rem; font-weight: 700; color: var(--jade); margin-bottom: 1.4rem; }
    .hero-eyebrow .stars { color: var(--terracotta); letter-spacing: 1px; }
    .hero-content h1 { margin-bottom: 1.4rem; }
    .hero-content h1 em { font-style: italic; color: var(--terracotta); }
    .hero-content p { font-size: 1.1rem; max-width: 500px; margin-bottom: 2.1rem; }
    .hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
    .hero-photo-wrap { position: relative; }
    .hero-photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--paper); }
    .hero-photo-frame img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }
    .hero-badge { position: absolute; left: -1.8rem; bottom: -1.6rem; background: var(--paper); border-radius: var(--radius-md); padding: 1rem 1.3rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.8rem; border: 1px solid var(--line); }
    .hero-badge-score { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--jade); line-height: 1; }
    .hero-badge-meta { font-size: 0.72rem; color: var(--ink-soft); line-height: 1.35; }
    .hero-badge-meta strong { display: block; color: var(--ink); font-size: 0.78rem; }

    /* TRUST STRIP */
    .trust-strip { background: var(--jade); padding: 1.2rem 0; }
    .trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.2rem; }
    .trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; font-weight: 600; color: rgba(251,246,237,0.9); }
    .trust-item svg { flex-shrink: 0; color: var(--terracotta); }
    .trust-sep { width: 1px; height: 18px; background: rgba(251,246,237,0.18); }

    /* SECTION HEAD */
    .section-head { text-align: center; margin-bottom: 3.2rem; }
    .section-head.left { text-align: left; margin-bottom: 2.4rem; }
    .section-head h2 { margin-bottom: 0.8rem; }
    .section-head p { font-size: 1.03rem; max-width: 600px; margin: 0 auto; }
    .section-head.left p { margin: 0; }

    /* USP BAND */
    .usp-section { background: var(--jade-deep); color: var(--cream); }
    .usp-section .section-label { color: var(--gold); }
    .usp-section .section-label::before { background: var(--terracotta); }
    .usp-section h2 { color: var(--white); }
    .usp-section .section-head p { color: rgba(251,246,237,0.68); }
    .usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
    .usp-card { background: rgba(251,246,237,0.05); border: 1px solid rgba(251,246,237,0.12); border-radius: var(--radius-lg); padding: 1.9rem; }
    .usp-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(198,87,46,0.18); color: var(--terracotta); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
    .usp-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.05rem; }
    .usp-card p { color: rgba(251,246,237,0.65); font-size: 0.9rem; }

    /* PROGRAMS */
    .programs-section { background: var(--cream); }
    .programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .program-card { background: var(--paper); border-radius: var(--radius-lg); padding: 2.1rem; border: 1px solid var(--line); position: relative; overflow: hidden; }
    .program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-terracotta); }
    .program-badge { display: inline-block; background: var(--cream-deep); color: var(--jade); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: var(--radius-xl); margin-bottom: 1.1rem; }
    .program-card h3 { margin-bottom: 0.55rem; }
    .program-card p { font-size: 0.92rem; margin-bottom: 1.3rem; }
    .program-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .program-features li { font-size: 0.86rem; color: var(--ink-soft); display: flex; gap: 0.55rem; }
    .program-features li::before { content: '✓'; color: var(--terracotta); font-weight: 700; }

    /* PRICING */
    .pricing-section { background: var(--paper); }
    .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.7rem; max-width: 720px; margin: 0 auto; }
    .price-card { border-radius: var(--radius-lg); padding: 2.3rem; text-align: center; border: 2px solid var(--line); background: var(--cream); }
    .price-card.highlight { background: var(--jade); border-color: var(--jade); color: var(--white); }
    .price-tag { font-family: var(--font-display); font-size: 3.1rem; font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 0.3rem; }
    .price-card.highlight .price-tag { color: var(--gold); }
    .price-period { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
    .price-card.highlight .price-period { color: rgba(251,246,237,0.6); }
    .price-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .price-card.highlight .price-name { color: var(--white); }
    .price-desc { font-size: 0.87rem; margin-bottom: 1.5rem; }
    .price-card.highlight .price-desc { color: rgba(251,246,237,0.65); }
    .pricing-note { text-align: center; margin-top: 1.7rem; font-size: 0.85rem; color: var(--ink-soft); }

    .cost-calc { max-width: 500px; margin: 2.8rem auto 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 2rem; text-align: center; }
    .cost-calc h3 { font-size: 1.05rem; margin-bottom: 1.1rem; }
    .cost-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.3rem; text-align: left; }
    .cost-calc-field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
    .cost-calc-field select {
      width: 100%; padding: 0.65rem 0.8rem; border: 1.5px solid var(--line); border-radius: var(--radius-md);
      font-family: var(--font-body); font-size: 0.88rem; color: var(--ink); background: var(--paper);
    }
    .cost-calc-field select:focus { outline: none; border-color: var(--terracotta); }
    .cost-calc-result { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--terracotta); }
    .cost-calc-sub { display: block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--ink-soft); margin-top: 0.2rem; }
    @media (max-width: 480px) { .cost-calc-row { grid-template-columns: 1fr; } }

    /* ABOUT */
    .about-section { background: var(--cream); }
    .about-inner { display: grid; grid-template-columns: 400px 1fr; gap: 3.8rem; align-items: start; }
    .about-photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--paper); }
    .about-photo-frame img { width: 100%; height: 490px; object-fit: cover; object-position: center top; }
    .about-content .about-bio { font-size: 1.02rem; margin-bottom: 1.15rem; }
    .about-credentials { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 1.7rem; }
    .about-credentials li { font-size: 0.82rem; color: var(--jade); font-weight: 700; background: var(--cream-deep); padding: 0.5rem 0.9rem; border-radius: var(--radius-xl); }
    .rating-line { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--ink); margin-bottom: 1.7rem; }
    .rating-line a { color: var(--terracotta); font-weight: 700; }

    /* REVIEWS */
    .reviews-section { background: var(--paper); }
    .wyzant-badge { display: flex; align-items: center; gap: 1.1rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem 1.7rem; max-width: 460px; margin: 0 auto 3rem; }
    .wyzant-badge .stars { color: var(--terracotta); font-size: 1.2rem; letter-spacing: 2px; }
    .wyzant-badge-text { font-size: 0.85rem; color: var(--ink-soft); }
    .wyzant-badge-text strong { color: var(--ink); font-size: 0.95rem; display: block; }
    .wyzant-badge a { color: var(--terracotta); font-weight: 700; }

    .carousel { position: relative; max-width: 720px; margin: 0 auto; }
    .review-card {
      background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem;
      min-height: 220px; display: flex; align-items: center; justify-content: center;
    }
    .review-inner { display: flex; flex-direction: column; align-items: center; text-align: center; transition: opacity 0.25s ease; }
    .review-inner.fade { opacity: 0; }
    .review-stars { color: var(--terracotta); margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
    .review-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); font-style: italic; margin-bottom: 1rem; max-width: 540px; }
    .review-author { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
    .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; }
    .carousel-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--jade); transition: background var(--transition); }
    .carousel-arrow:hover { background: var(--cream-deep); }
    .carousel-dots { display: flex; gap: 0.5rem; }
    .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; }
    .carousel-dot.active { background: var(--terracotta); width: 22px; border-radius: var(--radius-xl); transition: width var(--transition), background var(--transition); }

    /* RESOURCES */
    .resources-section { background: var(--cream); }
    .resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .resource-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; }
    .resource-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.7rem; display: block; }
    .resource-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
    .resource-card p { font-size: 0.88rem; }

    /* FAQ */
    .faq-section { background: var(--paper); }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
    .faq-item { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
    .faq-item summary {
      cursor: pointer; list-style: none; padding: 1.15rem 1.5rem; font-weight: 700; font-size: 0.98rem;
      color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--terracotta); font-weight: 400; flex-shrink: 0; transition: transform var(--transition); }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item-body { padding: 0 1.5rem 1.3rem; font-size: 0.92rem; color: var(--ink-soft); }

    /* BOOK (merged contact + schedule) */
    .book-section { background: var(--cream); }
    .book-layout { display: grid; grid-template-columns: 300px 1fr; gap: 2.6rem; align-items: start; }
    .book-detail-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; position: sticky; top: 6rem; }
    .book-detail-card h3 { font-size: 1.05rem; margin-bottom: 1.1rem; }
    .book-detail-row { display: flex; justify-content: space-between; gap: 0.8rem; padding: 0.6rem 0; border-top: 1px solid var(--line); font-size: 0.85rem; }
    .book-detail-row:first-of-type { border-top: none; }
    .book-detail-row span:first-child { color: var(--ink-soft); }
    .book-detail-row span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
    .book-detail-row a { color: var(--terracotta); }
    .book-main { background: var(--paper); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
    .book-main > h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
    .book-main > p.book-sub { font-size: 0.88rem; margin-bottom: 1.4rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
    .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 0.75rem 0.95rem; border: 1.5px solid var(--line); border-radius: var(--radius-md);
      font-family: var(--font-body); font-size: 0.9rem; color: var(--ink); background: var(--cream); width: 100%;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--terracotta); }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-submit-row .btn { margin-top: 0.4rem; }
    .form-note { font-size: 0.75rem; color: var(--ink-soft); text-align: center; margin-top: 0.8rem; }
    .book-divider { display: flex; align-items: center; gap: 1rem; margin: 2.2rem 0 1.4rem; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
    .book-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
    .booking-widget-wrap { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 460px; }
    .booking-placeholder { height: 100%; min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2.5rem; gap: 0.9rem; }
    .booking-placeholder-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cream-deep); color: var(--terracotta); display: flex; align-items: center; justify-content: center; }
    .booking-placeholder h4 { font-size: 1.05rem; color: var(--ink); }
    .booking-placeholder p { font-size: 0.88rem; max-width: 360px; }
    @media (max-width: 1024px) { .book-layout { grid-template-columns: 1fr; } .book-detail-card { position: static; } }

    /* FOOTER */
    footer { background: var(--jade-deep); padding: 2.8rem 0 1.8rem; }
    .footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(251,246,237,0.1); margin-bottom: 1.5rem; }
    .footer-brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 650; color: var(--white); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
    .footer-brand-char { width: 30px; height: 30px; background: var(--terracotta); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--white); font-weight: 700; }
    .footer-brand-p { font-size: 0.82rem; color: rgba(251,246,237,0.5); max-width: 320px; }
    .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
    .footer-links a { font-size: 0.85rem; color: rgba(251,246,237,0.65); }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { font-size: 0.78rem; color: rgba(251,246,237,0.35); }

    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .hero-photo-frame img { height: 380px; }
      .hero-photo-wrap { max-width: 460px; }
      .hero-badge { left: 1rem; bottom: -1.4rem; }
      .about-inner { grid-template-columns: 1fr; }
      .about-photo-frame img { height: 400px; }
      .about-photo-frame { max-width: 460px; }
      .schedule-inner { grid-template-columns: 1fr; }
      .usp-grid { grid-template-columns: repeat(2, 1fr); }
      .resources-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 860px) {
      .programs-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
      .contact-inner { grid-template-columns: 1fr; }
      .usp-grid { grid-template-columns: 1fr; }
      .resources-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) {
      section { padding: 3.5rem 0; }
      .site-nav, .nav-cta { display: none; }
      .nav-toggle { display: flex; }
      .site-nav.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--cream); align-items: center; justify-content: center; gap: 1.2rem; z-index: 99; }
      .site-nav.open a { font-size: 1.3rem; }
      .form-row { grid-template-columns: 1fr; }
      .wyzant-badge { flex-direction: column; text-align: center; }
    }

    /* INNER PAGES */
    .page-hero { padding: 8.5rem 0 3.5rem; background: var(--cream); position: relative; overflow: hidden; }
    .page-hero::before {
      content: ''; position: absolute; top: -100px; right: -120px; width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(198,87,46,0.12), transparent 70%); pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .breadcrumb { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
    .breadcrumb a { color: var(--jade); font-weight: 600; }
    .breadcrumb span[aria-hidden="true"] { color: var(--line); }
    .page-hero h1 { margin-bottom: 1.1rem; max-width: 16ch; }
    .page-hero h1 em { font-style: italic; color: var(--terracotta); }
    .page-hero-lead { font-size: 1.1rem; max-width: 620px; margin-bottom: 1.8rem; }
    .page-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
    .content-section { background: var(--paper); }
    .content-wrap { max-width: 720px; margin: 0 auto; }
    .content-wrap h2 { margin: 2.4rem 0 0.9rem; font-size: clamp(1.45rem, 2.6vw, 1.85rem); }
    .content-wrap h2:first-child { margin-top: 0; }
    .content-wrap p { margin-bottom: 1.1rem; font-size: 1.02rem; }
    .content-wrap ul { margin: 0 0 1.3rem 1.1rem; color: var(--ink-soft); }
    .content-wrap li { margin-bottom: 0.45rem; }
    .content-cta {
      margin-top: 2.6rem; padding: 1.8rem; border-radius: var(--radius-lg);
      background: var(--cream); border: 1px solid var(--line); text-align: center;
    }
    .content-cta h2 { margin: 0 0 0.6rem; font-size: 1.45rem; }
    .content-cta p { margin-bottom: 1.2rem; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .related-card {
      display: block; background: var(--cream); border: 1px solid var(--line);
      border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color var(--transition), transform var(--transition);
    }
    .related-card:hover { border-color: var(--jade); transform: translateY(-2px); }
    .related-card h3 { margin-bottom: 0.45rem; font-size: 1.05rem; }
    .related-card p { font-size: 0.88rem; margin: 0; }
    .program-card-link { display: inline-block; margin-top: 1.2rem; font-size: 0.88rem; font-weight: 700; color: var(--terracotta); }
    .program-card-link:hover { text-decoration: underline; }
    .resource-card a { color: inherit; }
    .resource-card .resource-link { display: inline-block; margin-top: 0.9rem; font-size: 0.86rem; font-weight: 700; color: var(--terracotta); }
    @media (max-width: 860px) { .related-grid { grid-template-columns: 1fr; } }
