  :root {
    --ivory: #FFF4E6;
    --ivory-deep: #FBE8D3;
    --peach: #FFB5A7;
    --coral: #FF8C69;
    --coral-dark: #E86B4B;
    --honey: #E8B86B;
    --blush: #F4C2C2;
    --spring-green: #B8D4A8;
    --aqua: #A8DADC;
    --charcoal: #3D2C2C;
    --charcoal-soft: #6B5656;
    --frame-radius: 28px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Grain overlay — fixed, pointer-events: none, no GPU scroll repaint */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  .page-frame {
    border-radius: var(--frame-radius);
    overflow: hidden;
    background: var(--ivory);
    box-shadow: 0 30px 80px -30px rgba(61, 44, 44, 0.18);
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-weight: 500;
    color: var(--charcoal);
  }

  .serif { font-family: 'Fraunces', serif; }

  /* ============ NAV ============ */
  nav.top-nav {
    position: absolute;
    top: 32px; left: 0; right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ivory);
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  .logo span { font-style: italic; font-weight: 400; }
  .nav-links {
    display: flex; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 0.7; }
  .cta-pill {
    background: linear-gradient(135deg, var(--peach), var(--coral));
    color: var(--ivory);
    padding: 12px 26px;
    border-radius: 100px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px -5px rgba(255, 140, 105, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(255, 140, 105, 0.65);
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 92vh;
    min-height: 720px;
    background:
      radial-gradient(ellipse at 70% 40%, rgba(255, 181, 167, 0.55) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(232, 184, 107, 0.4) 0%, transparent 55%),
      linear-gradient(135deg, #FBE8D3 0%, #FFB5A7 60%, #FF8C69 100%);
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100' height='100' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    pointer-events: none;
  }

  .hero-subject {
    position: absolute;
    right: -40px; bottom: 0;
    width: 44%; height: 90%;
    background: url('../images/hero.png') center/cover no-repeat;
    border-top-left-radius: 40% 30%;
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
    z-index: 1;
  }

  .vertical-text {
    position: absolute;
    left: 40px; top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    display: flex; gap: 12px;
    font-family: 'Fraunces', serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--ivory);
    z-index: 3;
    pointer-events: none;
  }
  .vertical-text .outlined {
    color: transparent;
    -webkit-text-stroke: 1px var(--ivory);
  }

  .hero-content {
    position: relative;
    z-index: 5;
    padding: 180px 100px 0 140px;
    max-width: 780px;
  }
  .hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 244, 230, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 244, 230, 0.4);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(40px, 4.8vw, 76px);
    line-height: 1.02;
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: -0.015em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(61, 44, 44, 0.15);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--ivory);
  }
  .hero-sub {
    margin-top: 28px;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 244, 230, 0.92);
  }

  /* Testimonial card floating */
  .testimonial-card {
    position: absolute;
    right: 48px; bottom: 48px;
    width: 320px;
    padding: 20px;
    background: rgba(61, 44, 44, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 244, 230, 0.25);
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 20px 60px -20px rgba(61, 44, 44, 0.4);
  }
  .testimonial-thumb {
    position: relative;
    width: 100%; height: 140px;
    border-radius: 14px;
    background: url('../images/testimonial.png') center/cover;
    margin-bottom: 14px;
  }
  .play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: var(--ivory);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  .play-icon::before {
    content: '';
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent var(--coral);
    margin-left: 3px;
  }
  .testimonial-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 6px;
    opacity: 0.85;
  }
  .testimonial-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.45;
    color: var(--ivory);
    margin-bottom: 14px;
  }
  .social-row {
    display: flex; gap: 8px;
  }
  .social-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255, 244, 230, 0.2);
    border: 1px solid rgba(255, 244, 230, 0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: var(--ivory);
  }

  /* ============ SECTIONS ============ */
  section {
    padding: 120px 80px;
  }
  .section-head {
    text-align: center;
    margin-bottom: 72px;
  }
  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral-dark);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .section-title em {
    font-style: italic;
    color: var(--coral-dark);
    font-weight: 300;
  }
  .section-sub {
    max-width: 520px;
    margin: 20px auto 0;
    font-size: 17px;
    color: var(--charcoal-soft);
  }

  /* Programs */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .program-card {
    background: var(--ivory);
    border: 1px solid var(--ivory-deep);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
  }
  .program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(255, 140, 105, 0.3);
    border-color: var(--peach);
  }
  .program-image {
    height: 280px;
    background-size: cover;
    background-position: center;
  }
  .pc-1 { background-image: url('../images/program-mastermind.png'); }
  .pc-2 { background-image: url('../images/program-mentorship.png'); }
  .pc-3 { background-image: url('../images/program-executive.png'); }
  .pc-4 { background-image: url('../images/program-founders.png'); }

  .program-body { padding: 32px; }
  .program-meta {
    display: flex; gap: 16px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-dark);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .program-meta span + span::before {
    content: '•';
    margin-right: 16px;
    color: var(--honey);
  }
  .program-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .program-desc {
    color: var(--charcoal-soft);
    font-size: 15px;
    margin-bottom: 24px;
  }
  .program-link {
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .program-link::after {
    content: '→';
    transition: transform 0.2s;
  }
  .program-card:hover .program-link::after {
    transform: translateX(4px);
  }

  /* Members */
  .members-section {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  }
  .members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .member-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--blush);
  }
  .member-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .member-card:hover img { transform: scale(1.05); }
  .member-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(61,44,44,0.75) 0%, transparent 100%);
    color: var(--ivory);
  }
  .member-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .member-role {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  /* Quote / editorial */
  .quote-section {
    padding: 140px 80px;
    background: var(--peach);
    text-align: center;
  }
  .big-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.2;
    color: var(--charcoal);
    max-width: 900px;
    margin: 0 auto 32px;
    letter-spacing: -0.01em;
  }
  .quote-attr {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 600;
  }

  /* Footer */
  footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 100px 80px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 244, 230, 0.1);
  }
  .footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .footer-logo em { font-style: italic; color: var(--peach); }
  .footer-blurb {
    color: rgba(255, 244, 230, 0.7);
    max-width: 360px;
    font-size: 15px;
  }
  .newsletter {
    display: flex;
    margin-top: 28px;
    max-width: 400px;
    border-radius: 100px;
    overflow: hidden;
    background: rgba(255, 244, 230, 0.08);
    border: 1px solid rgba(255, 244, 230, 0.2);
  }
  .newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: var(--ivory);
    font-family: inherit;
    font-size: 14px;
    outline: none;
  }
  .newsletter input::placeholder { color: rgba(255,244,230,0.5); }
  .newsletter button {
    background: linear-gradient(135deg, var(--peach), var(--coral));
    border: none;
    color: var(--ivory);
    padding: 0 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .footer-col h4 {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--peach);
    margin-bottom: 20px;
    font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(255, 244, 230, 0.75);
    text-decoration: none;
    font-size: 14px;
  }
  .footer-col a:hover { color: var(--peach); }
  .footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 244, 230, 0.5);
    letter-spacing: 0.1em;
  }

  /* Criteria */
  .criteria-section {
    background: linear-gradient(180deg, var(--ivory) 0%, #FBE8D3 100%);
  }
  .criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .criteria-col h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--blush);
    letter-spacing: -0.01em;
  }
  .criteria-col ul { list-style: none; }
  .criteria-col li {
    padding: 14px 0 14px 34px;
    position: relative;
    font-size: 16px;
    line-height: 1.55;
    color: var(--charcoal);
  }
  .criteria-col.yes li::before {
    content: '';
    position: absolute;
    left: 0; top: 20px;
    width: 14px; height: 14px;
    background: linear-gradient(135deg, var(--peach), var(--coral));
    border-radius: 50%;
  }
  .criteria-col.no li { color: var(--charcoal-soft); }
  .criteria-col.no li::before {
    content: '';
    position: absolute;
    left: 0; top: 27px;
    width: 14px; height: 2px;
    background: var(--honey);
  }

  /* Benefits */
  .benefits-section { background: var(--ivory); }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .benefit {
    padding: 36px 30px;
    background: #FFF9EF;
    border: 1px solid #F5E7D1;
    border-radius: 20px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .benefit:hover {
    border-color: var(--peach);
    transform: translateY(-4px);
  }
  .benefit-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--peach), var(--honey));
    margin-bottom: 22px;
    box-shadow: 0 6px 20px -5px rgba(255,140,105,0.4);
  }
  .benefit h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .benefit p {
    color: var(--charcoal-soft);
    font-size: 15px;
    line-height: 1.55;
  }

  /* FAQ */
  .faq-section { background: #FBE8D3; }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-top: 1px solid rgba(61,44,44,0.13);
    padding: 28px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid rgba(61,44,44,0.13); }
  .faq-q {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--charcoal);
    letter-spacing: -0.01em;
  }
  .faq-a {
    font-size: 15px;
    color: var(--charcoal-soft);
    line-height: 1.65;
    max-width: 700px;
  }

  /* Final CTA */
  .cta-section {
    background:
      radial-gradient(ellipse at 30% 30%, rgba(255,181,167,0.55) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 70%, rgba(232,184,107,0.4) 0%, transparent 55%),
      linear-gradient(135deg, #FFB5A7 0%, #FF8C69 100%);
    color: var(--ivory);
    text-align: center;
    padding: 160px 80px;
    position: relative;
  }
  .cta-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.85;
    margin-bottom: 28px;
    font-weight: 500;
  }
  .cta-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.08;
    max-width: 800px;
    margin: 0 auto 28px;
    color: var(--ivory);
    letter-spacing: -0.015em;
  }
  .cta-sub {
    max-width: 540px;
    margin: 0 auto 44px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,244,230,0.92);
  }
  .cta-big-button {
    background: var(--ivory);
    color: var(--coral-dark);
    border: none;
    padding: 22px 44px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 20px 50px -10px rgba(61,44,44,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-big-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px -10px rgba(61,44,44,0.45);
  }
  .cta-secondary {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,244,230,0.8);
  }

  /* ============================================
     ===== LUXURY OVERHAUL =====
     Aesop / The Row / Loewe grammar:
     cream, charcoal, hairlines, italic, air.
     ============================================ */

  body { background: #F2E9DA; padding: 0; }
  .page-frame {
    border-radius: 0;
    box-shadow: none;
    background: #F7EFE1;
  }

  /* NAV */
  nav.top-nav { padding: 36px 56px; }
  .logo { color: var(--charcoal); text-shadow: none; font-weight: 500; font-size: 22px; letter-spacing: -0.01em; }
  .logo span { color: var(--charcoal); opacity: 0.55; }
  .nav-links a {
    color: var(--charcoal);
    text-shadow: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.22em;
    opacity: 0.8;
  }
  .nav-links a:hover { opacity: 1; }
  .cta-pill {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    padding: 13px 26px;
    box-shadow: none;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 400;
    border-radius: 100px;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .cta-pill:hover {
    background: var(--charcoal);
    color: #F7EFE1;
    box-shadow: none;
  }
  .cta-pill:active { transform: translateY(1px) scale(0.98); }

  .cta-big-button {
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .cta-big-button:active { transform: translateY(1px) scale(0.985); }
  .lang-btn { transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
  .nav-links a { transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
  .program-card, .journal-card, .article { transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
  .program-link { transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

  /* HERO */
  .hero {
    height: 100dvh;
    min-height: 720px;
    max-height: 920px;
    background: #F7EFE1;
    overflow: hidden;
  }
  .hero::after { display: none; }

  .hero-subject {
    width: 40%;
    height: calc(100% - 112px);
    right: 56px;
    bottom: 56px;
    top: 56px;
    border-top-left-radius: 0;
    border-radius: 2px;
    filter: none;
    mask-image: none;
    -webkit-mask-image: none;
    box-shadow: 0 40px 100px -40px rgba(61,44,44,0.25);
  }

  .vertical-text {
    left: 36px;
    font-size: 11px;
    font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: 0.42em;
    gap: 8px;
    color: var(--charcoal);
    opacity: 0.5;
  }
  .vertical-text .outlined {
    color: var(--charcoal);
    -webkit-text-stroke: 0;
    opacity: 0.5;
  }

  .hero-content {
    padding: 180px 60px 0 120px;
    max-width: 640px;
  }
  .hero-eyebrow {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 10px;
    letter-spacing: 0.32em;
    margin-bottom: 28px;
    display: block;
  }
  .hero-eyebrow::before {
    content: '— ';
    letter-spacing: 0;
  }
  .hero h1 {
    color: var(--charcoal);
    font-weight: 300;
    font-size: clamp(36px, 3.6vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-transform: none;
    text-shadow: none;
  }
  .hero h1 em {
    color: #8B7355;
    font-style: italic;
    font-weight: 300;
    opacity: 1;
  }
  .hero-sub {
    margin-top: 28px;
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
  }

  /* TESTIMONIAL CARD */
  .testimonial-card {
    right: 56px;
    bottom: 56px;
    background: rgba(42,31,31,0.94);
    border: none;
    border-radius: 2px;
    backdrop-filter: none;
    box-shadow: 0 30px 80px -30px rgba(42,31,31,0.5);
    width: 272px;
    padding: 18px;
  }
  .testimonial-thumb { border-radius: 2px; }
  .play-icon { background: #F7EFE1; }
  .play-icon::before { border-left-color: var(--charcoal); }
  .testimonial-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    opacity: 0.7;
  }
  .testimonial-quote {
    font-style: normal;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }
  .social-dot {
    background: transparent;
    border: 1px solid rgba(255,244,230,0.35);
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* SECTIONS — more air, numbered */
  section { padding: 160px 80px; }
  .section-head {
    text-align: left;
    max-width: 1240px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    align-items: start;
  }
  .section-head::before {
    content: attr(data-num);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.5;
    padding-top: 14px;
    border-top: 1px solid rgba(61,44,44,0.2);
  }
  .section-eyebrow {
    grid-column: 2;
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--charcoal);
    opacity: 0.6;
    font-weight: 400;
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .section-title {
    grid-column: 2;
    font-size: clamp(40px, 5vw, 76px);
    font-weight: 300;
    letter-spacing: -0.028em;
    line-height: 1.02;
    color: var(--charcoal);
  }
  .section-title em { font-weight: 300; opacity: 0.6; color: var(--charcoal); }
  .section-sub {
    grid-column: 2;
    margin: 28px 0 0;
    max-width: 520px;
    text-align: left;
    font-size: 15px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.6;
  }

  /* PROGRAMS — minimal, no card bg */
  .programs-grid { gap: 72px 56px; max-width: 1240px; }
  .program-card {
    background: transparent;
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(61,44,44,0.18);
    overflow: visible;
    padding-top: 32px;
  }
  .program-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--charcoal);
  }
  .program-image {
    height: 360px;
    border-radius: 2px;
    filter: saturate(0.95);
  }
  .program-body { padding: 28px 0 0; }
  .program-meta {
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--charcoal);
    opacity: 0.55;
    font-weight: 400;
  }
  .program-meta span + span::before { color: rgba(61,44,44,0.3); }
  .program-title {
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }
  .program-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--charcoal);
    opacity: 0.72;
    margin-bottom: 32px;
  }
  .program-link {
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--charcoal);
  }

  /* BIG QUOTE — dark editorial */
  .quote-section {
    background: #2A1F1F;
    padding: 200px 80px;
  }
  .big-quote {
    color: #F2E9DA;
    font-weight: 200;
    font-style: italic;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.22;
    max-width: 980px;
    letter-spacing: -0.015em;
  }
  .quote-attr {
    color: #F2E9DA;
    opacity: 0.55;
    font-size: 10px;
    letter-spacing: 0.3em;
    font-weight: 400;
  }

  /* CRITERIA */
  .criteria-section { background: #F7EFE1; }
  .criteria-grid { max-width: 1240px; gap: 120px; }
  .criteria-col h3 {
    font-size: 13px;
    font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(61,44,44,0.2);
    margin-bottom: 8px;
    color: var(--charcoal);
    opacity: 0.7;
  }
  .criteria-col li {
    font-size: 18px;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    line-height: 1.45;
    padding: 22px 0 22px 40px;
    border-bottom: 1px solid rgba(61,44,44,0.08);
    color: var(--charcoal);
  }
  .criteria-col.yes li::before {
    background: transparent;
    border: 1px solid var(--charcoal);
    width: 8px; height: 8px;
    top: 32px;
    left: 4px;
  }
  .criteria-col.no li::before {
    background: var(--charcoal);
    opacity: 0.4;
    width: 16px; height: 1px;
    top: 34px;
    left: 0;
  }
  .criteria-col.no li { opacity: 0.55; }

  /* MEMBERS */
  .members-section {
    background: #F7EFE1;
    padding-top: 0;
  }
  .members-grid { gap: 28px; max-width: 1240px; }
  .member-card {
    border-radius: 2px;
    aspect-ratio: 3/4.2;
  }
  .member-overlay {
    background: linear-gradient(0deg, rgba(42,31,31,0.9) 0%, transparent 100%);
    padding: 24px;
  }
  .member-name {
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .member-role {
    font-size: 9px;
    letter-spacing: 0.28em;
    opacity: 0.75;
  }

  /* BENEFITS — numbered, no card */
  .benefits-section { background: #F2E9DA; }
  .benefits-grid { gap: 0; max-width: 1240px; }
  .benefit {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(61,44,44,0.15);
    border-right: 1px solid rgba(61,44,44,0.15);
    border-radius: 0;
    padding: 40px 36px;
    position: relative;
    counter-increment: bnum;
  }
  .benefit:nth-child(3n) { border-right: none; }
  .benefit:nth-last-child(-n+3) { border-bottom: 1px solid rgba(61,44,44,0.15); }
  .benefit:hover { transform: none; border-color: rgba(61,44,44,0.4); }
  .benefits-grid { counter-reset: bnum; }
  .benefit-dot {
    display: none;
  }
  .benefit::before {
    content: "0" counter(bnum);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.55;
    display: block;
    margin-bottom: 28px;
  }
  .benefit h4 {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }
  .benefit p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--charcoal);
    opacity: 0.72;
  }

  /* FAQ */
  .faq-section { background: #F7EFE1; }
  .faq-list { max-width: 940px; margin: 0 auto; }
  .faq-item {
    padding: 36px 0;
    border-top: 1px solid rgba(61,44,44,0.15);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
  .faq-item:last-child { border-bottom: 1px solid rgba(61,44,44,0.15); }
  .faq-q {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.015em;
    margin-bottom: 0;
    color: var(--charcoal);
  }
  .faq-a {
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.72;
    max-width: none;
  }

  /* FINAL CTA */
  .cta-section {
    background: #F2E9DA;
    padding: 200px 80px;
  }
  .cta-eyebrow {
    color: var(--charcoal);
    opacity: 0.6;
    font-size: 10px;
    letter-spacing: 0.32em;
    font-weight: 400;
  }
  .cta-headline {
    color: var(--charcoal);
    font-weight: 200;
    font-style: italic;
    font-size: clamp(44px, 5.6vw, 88px);
    letter-spacing: -0.025em;
    line-height: 1.02;
    max-width: 900px;
  }
  .cta-sub {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 15px;
  }
  .cta-big-button {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    border-radius: 100px;
    padding: 20px 44px;
    font-size: 11px;
    letter-spacing: 0.3em;
    font-weight: 400;
    box-shadow: none;
  }
  .cta-big-button:hover {
    background: var(--charcoal);
    color: #F2E9DA;
    transform: none;
    box-shadow: none;
  }
  .cta-secondary {
    color: var(--charcoal);
    opacity: 0.5;
    font-size: 9px;
    letter-spacing: 0.3em;
  }

  /* JOURNAL PREVIEW */
  .journal-section { background: #F2E9DA; }
  .journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .journal-card {
    border-top: 1px solid rgba(61,44,44,0.18);
    padding-top: 32px;
    cursor: pointer;
    transition: border-color 0.3s;
    text-decoration: none;
    color: var(--charcoal);
  }
  .journal-card:hover { border-top-color: var(--charcoal); }
  .journal-card .j-meta {
    display: flex; gap: 16px; align-items: center;
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase; opacity: 0.6;
    margin-bottom: 20px;
  }
  .journal-card .j-cat { color: #8B7355; opacity: 1; font-weight: 500; }
  .journal-card .j-sep { opacity: 0.35; }
  .journal-card .j-title {
    font-family: 'Fraunces', serif;
    font-size: 24px; font-weight: 300;
    line-height: 1.15; letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 18px;
  }
  .journal-card:hover .j-title { font-style: italic; }
  .journal-card .j-excerpt {
    font-size: 14px; line-height: 1.6;
    opacity: 0.72;
  }
  .journal-more {
    margin-top: 72px;
    text-align: center;
    max-width: 1240px;
    margin-left: auto; margin-right: auto;
  }
  .journal-more a {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid var(--charcoal);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .journal-more a:hover { background: var(--charcoal); color: #F2E9DA; }

  /* LANGUAGE SWITCHER */
  .lang-switch {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-right: 24px;
    font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    font-weight: 400;
  }
  .lang-btn {
    background: transparent;
    border: none;
    color: var(--charcoal);
    opacity: 0.45;
    padding: 4px 8px;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    transition: opacity 0.2s;
  }
  .lang-btn:hover { opacity: 0.75; }
  .lang-btn--active { opacity: 1; }
  .lang-sep { opacity: 0.35; }
  .nav-right { display: flex; align-items: center; }

  /* DESIGNER TWEAKS */
  .hero h1 em { color: #8B7355; opacity: 1; }
  .section-title em { color: #8B7355; opacity: 1; }
  .cta-headline { color: var(--charcoal); }
  .cta-headline em { color: #8B7355; opacity: 1; }
  .program-title, .benefit h4, .faq-q, .member-name { color: var(--charcoal); }
  .member-role { font-variant: small-caps; letter-spacing: 0.22em; }
  body { font-optical-sizing: auto; }
  h1, h2, h3, h4, .big-quote, .cta-headline { font-optical-sizing: auto; }
  .section-head::before { font-feature-settings: "tnum", "lnum"; }
  .benefit::before { font-feature-settings: "tnum", "lnum"; }

  /* FOOTER */
  footer { background: #2A1F1F; padding: 120px 80px 50px; }
  .footer-logo { font-weight: 300; letter-spacing: -0.01em; }
  .footer-logo em { color: #F2E9DA; opacity: 0.55; font-weight: 300; }
  .footer-blurb { font-size: 14px; line-height: 1.65; }
  .newsletter { border-radius: 2px; border-color: rgba(255,244,230,0.25); }
  .newsletter input { font-size: 13px; }
  .newsletter button {
    background: #F2E9DA;
    color: var(--charcoal);
    border-radius: 0;
    padding: 0 28px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }
  .footer-col h4 {
    color: #F2E9DA;
    opacity: 0.6;
    font-size: 10px;
    letter-spacing: 0.3em;
    font-weight: 400;
  }
  .footer-col a { font-size: 13px; }
  .footer-bottom { font-size: 10px; letter-spacing: 0.28em; }

  /* Responsive */
  @media (max-width: 900px) {
    body { padding: 0; }
    nav.top-nav { padding: 20px 24px; top: 0; }
    .nav-links { display: none; }
    .hero { height: auto; min-height: 0; padding: 100px 0 40px; }
    .hero-content { padding: 40px 24px 0; max-width: 100%; }
    .hero-subject { position: relative; width: 100%; height: 420px; right: 0; bottom: 0; margin-top: 40px; }
    .vertical-text { display: none; }
    .testimonial-card { position: static; width: auto; margin: 40px 24px; }
    section { padding: 80px 24px; }
    .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 60px; }
    .section-eyebrow, .section-title, .section-sub { grid-column: 1; }
    .programs-grid { grid-template-columns: 1fr; gap: 48px; }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
    .criteria-grid { grid-template-columns: 1fr; gap: 48px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit { border-right: none !important; }
    .faq-item { grid-template-columns: 1fr; gap: 16px; }
    .footer-top { grid-template-columns: 1fr; }
    footer { padding: 60px 24px 30px; }
    .cta-section, .quote-section { padding: 100px 24px; }
  }
  /* HEADER */
  .journal-header {
    padding: 200px 80px 100px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(61,44,44,0.1);
  }
  .journal-inner {
    max-width: 1240px; margin: 0 auto;
    display: grid; grid-template-columns: 120px 1fr;
    gap: 48px; align-items: start;
  }
  .journal-num {
    font-family: 'Fraunces', serif;
    font-style: italic; font-weight: 300; font-size: 14px;
    color: var(--charcoal); opacity: 0.5;
    padding-top: 14px;
    border-top: 1px solid rgba(61,44,44,0.2);
  }
  .journal-eyebrow {
    font-size: 10px; letter-spacing: 0.32em;
    text-transform: uppercase; opacity: 0.6; margin-bottom: 24px;
  }
  .journal-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 200; line-height: 1.0;
    letter-spacing: -0.028em; color: var(--charcoal);
  }
  .journal-title em { font-style: italic; color: var(--taupe); }
  .journal-sub {
    margin-top: 32px; max-width: 540px;
    font-size: 16px; line-height: 1.6; opacity: 0.75;
  }

  /* FILTERS */
  .filters {
    padding: 40px 80px;
    background: var(--cream);
    border-bottom: 1px solid rgba(61,44,44,0.08);
  }
  .filters-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .chip {
    padding: 10px 20px; border-radius: 100px;
    border: 1px solid rgba(61,44,44,0.2);
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--charcoal); cursor: pointer;
    background: transparent;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
  }
  .chip:hover { border-color: var(--charcoal); }
  .chip--active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

  /* ARTICLES GRID */
  .articles {
    padding: 100px 80px 140px;
    max-width: 1240px; margin: 0 auto;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px 56px;
  }
  .article {
    border-top: 1px solid rgba(61,44,44,0.18);
    padding-top: 36px;
    cursor: pointer;
    transition: border-color 0.3s;
  }
  .article:hover { border-top-color: var(--charcoal); }
  .article-meta {
    display: flex; gap: 24px; align-items: center;
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase; opacity: 0.6;
    margin-bottom: 24px;
  }
  .article-meta .cat { color: var(--taupe); font-weight: 500; opacity: 1; }
  .article-meta .sep { opacity: 0.35; }
  .article-title {
    font-family: 'Fraunces', serif;
    font-size: 34px; font-weight: 300;
    line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--charcoal);
  }
  .article:hover .article-title { font-style: italic; }
  .article-excerpt {
    font-size: 15px; line-height: 1.6;
    opacity: 0.75; margin-bottom: 28px; max-width: 520px;
  }
  .article-author {
    font-size: 10px; letter-spacing: 0.28em;
    text-transform: uppercase; opacity: 0.55;
    font-style: italic;
    font-family: 'Fraunces', serif;
    letter-spacing: 0.1em;
    font-size: 13px;
    text-transform: none;
  }


  /* SINGLE ARTICLE */
  .single-article {
    background: var(--ivory);
    padding: 80px 0 160px;
  }
  .single-article-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .single-article-hero {
    margin: 0 -80px 48px;
    border-radius: 2px;
    overflow: hidden;
  }
  .single-article-hero img {
    width: 100%;
    height: auto;
    display: block;
  }
  .single-article-body {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.65;
    color: var(--charcoal);
  }
  .single-article-body p {
    margin-bottom: 1.4em;
  }
  .single-article-body h2,
  .single-article-body h3 {
    font-weight: 300;
    font-style: italic;
    margin: 2em 0 0.6em;
    letter-spacing: -0.015em;
  }
  .single-article-body h2 { font-size: 32px; }
  .single-article-body h3 { font-size: 24px; }
  .single-article-body blockquote {
    border-left: 1px solid var(--charcoal);
    padding-left: 24px;
    font-style: italic;
    color: #8B7355;
    margin: 2em 0;
    font-size: 22px;
    line-height: 1.45;
  }
  .single-article-body a {
    color: var(--charcoal);
    border-bottom: 1px solid rgba(61,44,44,0.3);
    text-decoration: none;
  }
  .single-article-body a:hover {
    border-bottom-color: var(--charcoal);
  }
  .single-article-author {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(61,44,44,0.2);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.75;
  }

  /* GENERIC PAGE */
  .page-header {
    padding: 200px 80px 80px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(61,44,44,0.1);
  }
  .page-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    align-items: start;
  }
  .page-header-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.5;
    padding-top: 14px;
    border-top: 1px solid rgba(61,44,44,0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  .page-header-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5.5vw, 84px);
    font-weight: 200;
    line-height: 1.0;
    letter-spacing: -0.028em;
    color: var(--charcoal);
  }
  .page-content {
    padding: 80px 24px 160px;
    background: var(--ivory);
  }
  .page-content-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .page-content-hero {
    margin-bottom: 48px;
    border-radius: 2px;
    overflow: hidden;
  }
  .page-content-hero img {
    width: 100%;
    height: auto;
    display: block;
  }
  .page-content-body {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.65;
    color: var(--charcoal);
  }
  .page-content-body p { margin-bottom: 1.4em; }
  .page-content-body h2,
  .page-content-body h3 {
    font-weight: 300;
    font-style: italic;
    margin: 1.6em 0 0.6em;
    letter-spacing: -0.015em;
  }
  .page-content-body h2 { font-size: 32px; }
  .page-content-body h3 { font-size: 24px; }
  .page-content-body a {
    color: var(--charcoal);
    border-bottom: 1px solid rgba(61,44,44,0.3);
    text-decoration: none;
  }
  .page-content-body a:hover { border-bottom-color: var(--charcoal); }
  .page-content-body ul, .page-content-body ol {
    margin: 0 0 1.4em 1.5em;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
  }
  .page-content-body li { margin-bottom: 8px; }

  @media (max-width: 900px) {
    .page-header { padding: 120px 24px 40px; }
    .page-header-inner { grid-template-columns: 1fr; gap: 16px; }
    .page-content { padding: 48px 24px 80px; }
  }


  /* SINGLE ARTICLE META FOOTER */
  .single-article-meta {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(61,44,44,0.2);
    font-family: 'Satoshi', sans-serif;
  }
  .single-article-taxrow {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(61,44,44,0.08);
    align-items: baseline;
  }
  .single-article-tax-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.55;
    font-weight: 500;
  }
  .single-article-tax-value {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    color: var(--charcoal);
  }
  .single-article-tax-value a {
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(61,44,44,0.3);
  }
  .single-article-tax-value a:hover { border-bottom-color: var(--charcoal); }
  .single-article-author-bio {
    display: block;
    margin-top: 6px;
    font-style: normal;
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
  }
  @media (max-width: 700px) {
    .single-article-taxrow { grid-template-columns: 1fr; gap: 4px; }
  }

  /* Polylang switcher reuses .lang-btn / .lang-sep markup; no extra CSS needed. */


  /* ───── Blog enhancements (tags, thumbnails, pagination, comments) ───── */
  .article-thumb {
    display: block;
    margin: -28px -28px 24px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #F4ECE3;
  }
  .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .article-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(74, 47, 31, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
  }
  .article-footer .article-author {
    margin-top: 0;
    font-style: italic;
    color: #4A2F1F;
  }
  .article-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .tag-chip {
    display: inline-block;
    font-size: 10px;
    padding: 4px 10px;
    background: #F4ECE3;
    border-radius: 999px;
    color: #6B5746;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
  }
  .tag-chip:hover {
    background: #E8B86B;
    color: #4A2F1F;
  }
  .single-article-tags {
    margin: 40px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(74, 47, 31, 0.08);
    border-bottom: 1px solid rgba(74, 47, 31, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .single-article-tags .tags-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8B7355;
    margin-right: 8px;
    font-weight: 500;
  }
  .single-article-tags .tag-chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Pagination */
  .articles .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
    grid-column: 1 / -1;
  }
  .articles .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: #FBF4ED;
    border: 1px solid rgba(74, 47, 31, 0.08);
    font-size: 14px;
    color: #4A2F1F;
    text-decoration: none;
    transition: all 0.2s;
  }
  .articles .nav-links .page-numbers:hover { background: #F4ECE3; }
  .articles .nav-links .page-numbers.current {
    background: #E8B86B;
    color: #4A2F1F;
    border-color: #E8B86B;
  }

  /* Polylang switcher: uses anchors instead of buttons. Style parity. */
  .lang-switch--polylang a.lang-btn { text-decoration: none; }

  /* ARTICLE CARDS — enhanced with thumb, tags, pagination */
  .article-thumb {
    display: block;
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 2px;
  }
  .article-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .article:hover .article-thumb img { transform: scale(1.03); }

  .article-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(61,44,44,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }
  .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .tag-chip {
    font-family: 'Satoshi', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: var(--charcoal);
    opacity: 0.55;
    padding: 4px 10px;
    border: 1px solid rgba(61,44,44,0.2);
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s, border-color 0.2s;
  }
  .tag-chip:hover { opacity: 1; border-color: var(--charcoal); }

  /* PAGINATION */
  .articles-pagination {
    grid-column: 1 / -1;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(61,44,44,0.15);
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: 'Satoshi', sans-serif;
  }
  .articles-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    border-radius: 100px;
    border: 1px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }
  .articles-pagination .page-numbers:hover {
    border-color: var(--charcoal);
  }
  .articles-pagination .page-numbers.current {
    background: var(--charcoal);
    color: var(--cream);
  }
  .articles-pagination .page-numbers.dots { border: none; opacity: 0.5; }


  /* ========== ARTICLE CONTENT STYLES ========== */

  /* Images */
  .single-article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin: 2em 0;
  }

  /* Table of Contents */
  .single-article-body .toc {
    background: rgba(61,44,44,0.04);
    border-left: 3px solid var(--charcoal);
    border-radius: 0 6px 6px 0;
    padding: 28px 32px;
    margin: 2.5em 0;
  }
  .single-article-body .toc > p {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0.8em;
    letter-spacing: -0.01em;
  }
  .single-article-body .toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .single-article-body .toc ul li {
    padding: 5px 0;
  }
  .single-article-body .toc ul li + li {
    border-top: 1px solid rgba(61,44,44,0.06);
  }
  .single-article-body .toc ul li::before {
    display: none;
  }
  .single-article-body .toc ul li a {
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    border-bottom: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding-left: 0;
  }
  .single-article-body .toc ul li a:hover {
    opacity: 1;
    border-bottom: none;
  }

  /* Lists */
  .single-article-body ul,
  .single-article-body ol {
    margin: 1.4em 0;
    padding: 0;
    list-style: none;
  }
  .single-article-body .toc ul { margin: 0; }
  .single-article-body ul li,
  .single-article-body ol li {
    position: relative;
    padding: 0.4em 0 0.4em 28px;
    line-height: 1.6;
  }
  .single-article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFB5A7, #FF8C69);
  }
  .single-article-body ol {
    counter-reset: ol-counter;
  }
  .single-article-body ol li {
    counter-increment: ol-counter;
  }
  .single-article-body ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    top: 1em;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(61,44,44,0.08);
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  /* Tables */
  .single-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 15px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
  }
  .single-article-body table thead th {
    background: var(--charcoal);
    color: var(--ivory);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 18px;
    text-align: left;
  }
  .single-article-body table thead th:first-child { border-radius: 6px 0 0 0; }
  .single-article-body table thead th:last-child { border-radius: 0 6px 0 0; }
  .single-article-body table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(61,44,44,0.1);
    color: var(--charcoal);
  }
  .single-article-body table tbody tr:last-child td { border-bottom: none; }
  .single-article-body table tbody tr:nth-child(even) td { background: rgba(61,44,44,0.03); }
  .single-article-body table tbody tr:hover td { background: rgba(61,44,44,0.06); }
  .single-article-body table tbody td:first-child { font-weight: 500; }

  /* H4 */
  .single-article-body h4 {
    font-weight: 500;
    font-size: 20px;
    margin: 1.8em 0 0.5em;
    letter-spacing: -0.01em;
  }

  /* FAQ — details/summary accordion */
  .single-article-body .faq-section {
    background: none !important;
    border-radius: 0 !important;
    padding: 48px 0 !important;
    margin: 2em 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .single-article-body .faq-section h2 {
    font-family: 'Fraunces', serif !important;
    font-weight: 300 !important;
    font-style: italic !important;
    font-size: 28px !important;
    margin: 0 0 24px 0 !important;
    letter-spacing: -0.015em !important;
    color: var(--charcoal) !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
  }
  .single-article-body .faq-section .faq-list {
    max-width: none;
  }
  .single-article-body details.faq-item {
    display: block !important;
    background: none !important;
    border: none !important;
    border-top: 1px solid rgba(61,44,44,0.12) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .single-article-body details.faq-item:last-of-type {
    border-bottom: 1px solid rgba(61,44,44,0.12) !important;
  }
  .single-article-body details.faq-item summary {
    font-family: 'Fraunces', serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: var(--charcoal) !important;
    padding: 20px 48px 20px 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    list-style: none !important;
    display: block !important;
    position: relative !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    line-height: 1.45 !important;
    overflow: visible !important;
  }
  .single-article-body details.faq-item summary::-webkit-details-marker { display: none !important; }
  .single-article-body details.faq-item summary::marker { display: none !important; content: '' !important; }
  .single-article-body details.faq-item summary::before { display: none !important; content: none !important; }
  .single-article-body details.faq-item summary::after {
    content: '' !important;
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    width: 10px !important;
    height: 10px !important;
    border-right: 1.5px solid var(--charcoal-soft) !important;
    border-bottom: 1.5px solid var(--charcoal-soft) !important;
    transform: translateY(-65%) rotate(45deg) !important;
    transition: transform 0.3s ease !important;
    font-size: 0 !important;
    background: none !important;
  }
  .single-article-body details.faq-item[open] summary::after {
    transform: translateY(-35%) rotate(-135deg) !important;
  }
  .single-article-body details.faq-item > p,
  .single-article-body details.faq-item > div {
    font-size: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    color: var(--charcoal-soft) !important;
    padding: 0 0 24px 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .single-article-body table { font-size: 13px; }
    .single-article-body table thead th,
    .single-article-body table tbody td { padding: 10px 12px; }
    .single-article-body .toc { padding: 20px 24px; }
    .single-article-body .faq-section { padding: 32px 0 !important; }
    .single-article-body details.faq-item summary { font-size: 16px !important; padding: 16px 40px 16px 0 !important; }
  }

  /* H1 Playfair + meta white */
  .journal-title { font-family: 'Playfair', serif; }
  .single-article-meta { color: #fff; }
  .single-article-meta .single-article-tax-label { color: rgba(255,255,255,0.6); }
  .single-article-meta .single-article-tax-value { color: #fff; }
  .single-article-meta .single-article-tax-value a { color: #fff; border-bottom-color: rgba(255,255,255,0.3); }
  .single-article-meta .single-article-tax-value a:hover { border-bottom-color: #fff; }
  .single-article-meta { border-top-color: rgba(255,255,255,0.2); }

  /* ========== JOURNAL HEADER MOBILE ========== */
  @media (max-width: 900px) {
    .journal-header {
      padding: 120px 24px 60px;
    }
    .journal-inner {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .journal-num {
      border-top: none;
      padding-top: 0;
      font-size: 13px;
    }
    .journal-title {
      font-size: clamp(32px, 8vw, 52px);
      line-height: 1.08;
    }
    .journal-eyebrow {
      margin-bottom: 16px;
    }
    .journal-sub {
      margin-top: 20px;
      font-size: 15px;
    }
  }
  @media (max-width: 480px) {
    .journal-header {
      padding: 100px 16px 48px;
    }
    .journal-title {
      font-size: 28px;
    }
  }

  /* ============================================
     ===== STICKY NAV (scroll > 100px → 40% bg) =====
     ============================================ */
  nav.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition:
      background 0.35s ease,
      backdrop-filter 0.35s ease,
      padding 0.35s ease,
      box-shadow 0.35s ease;
    will-change: background, backdrop-filter, padding;
  }
  nav.top-nav.scrolled {
    padding: 14px 56px;
    background: rgba(247, 239, 225, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(74, 47, 31, 0.06);
  }
  @media (max-width: 720px) {
    nav.top-nav.scrolled { padding: 12px 20px; }
  }
