:root {
    --cream: #FAF6EF;
    --warm: #F2E8D9;
    --amber: #C8854A;
    --amber-light: #E8A96A;
    --deep: #1C1510;
    --muted: #7A6A58;
    --sage: #7A9E7E;
    --rose: #C4786A;
    --border: rgba(200,133,74,0.2);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(250,246,239,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep);
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--amber); }
  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none; color: var(--muted); font-size: 0.9rem;
    font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-cta {
    background: var(--amber); color: white !important;
    padding: 0.55rem 1.4rem; border-radius: 100px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--rose) !important; color: white !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--deep); border-radius: 2px; transition: 0.3s; }
  .mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--cream); padding: 2rem 5%; border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 1.5rem; z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { text-decoration: none; color: var(--deep); font-size: 1.1rem; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200,133,74,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(122,158,126,0.1) 0%, transparent 60%);
  }
  .hero-rings {
    position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
    width: 500px; height: 500px; pointer-events: none;
  }
  .ring {
    position: absolute; border-radius: 50%;
    border: 1px solid var(--border); inset: 0;
    animation: pulse-ring 4s ease-in-out infinite;
  }
  .ring:nth-child(2) { inset: 40px; animation-delay: 0.5s; }
  .ring:nth-child(3) { inset: 80px; animation-delay: 1s; }
  .ring:nth-child(4) { inset: 120px; animation-delay: 1.5s; }
  @keyframes pulse-ring {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
  }
  .hero-content { position: relative; z-index: 1; max-width: 680px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(200,133,74,0.12); border: 1px solid var(--border);
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.8rem; font-weight: 500; color: var(--amber);
    margin-bottom: 2rem; letter-spacing: 0.05em;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag::before { content: '●'; font-size: 0.5rem; }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero h1 em { color: var(--amber); font-style: italic; }
  .hero p {
    font-size: 1.1rem; line-height: 1.8; color: var(--muted);
    max-width: 540px; margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .btn-primary {
    background: var(--amber); color: white;
    padding: 0.85rem 2rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.25s; display: inline-block;
    box-shadow: 0 4px 20px rgba(200,133,74,0.35);
  }
  .btn-primary:hover { background: var(--rose); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,133,74,0.4); }
  .btn-secondary {
    background: transparent; color: var(--deep);
    padding: 0.85rem 2rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 500;
    text-decoration: none; border: 1.5px solid var(--border);
    cursor: pointer; transition: all 0.25s; display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--amber); color: var(--amber); }
  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    padding-top: 3rem; border-top: 1px solid var(--border);
    animation: fadeUp 0.8s ease 0.4s both;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--deep);
  }
  .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* HERO EDITORIAL OVERRIDES */
  .hero {
    min-height: 108svh;
    padding: 10.5rem 5% 7rem;
  }
  .hero-bg {
    background:
      radial-gradient(circle at 72% 24%, rgba(200,133,74,0.16) 0%, transparent 34%),
      radial-gradient(circle at 18% 78%, rgba(122,158,126,0.12) 0%, transparent 26%),
      linear-gradient(180deg, rgba(250,246,239,1), rgba(247,239,227,0.96));
  }
  .hero-rings { display: none; }
  .hero-shell {
    max-width: 1240px;
    margin: 0 auto;
    min-height: min(84vh, 840px);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
    gap: clamp(3.2rem, 6vw, 6rem);
    align-items: end;
  }
  .hero-shell::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 4.7rem;
    width: min(10vw, 110px);
    height: 1px;
    background: rgba(28,21,16,0.16);
  }
  .hero-content {
    max-width: 760px;
    padding: 1.8rem 0 0 2.2rem;
  }
  .hero h1 {
    font-size: clamp(3.9rem, 7vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    max-width: 9.2ch;
    margin-bottom: 1.35rem;
  }
  .hero p,
  .hero-lede {
    font-size: 1.08rem;
    line-height: 1.86;
    max-width: 35ch;
    margin-bottom: 2.3rem;
  }
  .hero-tag {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 4rem;
    margin-bottom: 1.6rem;
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
  .hero-tag::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.6rem;
    height: 1px;
    background: var(--amber);
    color: transparent;
    transform: translateY(-50%);
  }
  .hero-actions {
    gap: 1rem;
    align-items: center;
  }
  .hero-actions .btn-primary {
    padding-inline: 2.15rem;
  }
  .hero-link {
    border: none;
    padding: 0.1rem 0;
    border-radius: 0;
    font-size: 0.96rem;
    position: relative;
  }
  .hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
  }
  .hero-link:hover {
    color: var(--amber);
    border-color: transparent;
  }
  .hero-stats {
    display: flex;
    gap: 2.2rem;
    margin-top: 3rem;
    padding-top: 1.6rem;
    max-width: 640px;
    border-top: 1px solid var(--border);
  }
  .hero-stats > div {
    flex: 1 1 0;
    min-width: 0;
  }
  .stat-num { font-size: 2.15rem; }
  .hero-stats .stat-label {
    line-height: 1.55;
    margin-top: 0.35rem;
  }
  .hero-portrait {
    position: relative;
    justify-self: end;
    align-self: end;
    width: min(100%, 390px);
    aspect-ratio: 1529 / 2555;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(200,133,74,0.18);
    box-shadow: 0 30px 70px rgba(28,21,16,0.14);
    background: var(--warm);
    z-index: 1;
    margin-top: 6rem;
    transform: translateY(1.8rem);
  }
  .hero-portrait::before {
    content: "";
    position: absolute;
    inset: auto -14% -18% 12%;
    height: 52%;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(200,133,74,0.08), rgba(200,133,74,0.22));
    filter: blur(10px);
    z-index: 0;
  }
  .hero-portrait img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }
  .hero-portrait figcaption {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 2;
    width: 180px;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    background: rgba(250,246,239,0.9);
    color: var(--deep);
    font-family: "Playfair Display", serif;
    font-size: 0.98rem;
    line-height: 1.35;
    box-shadow: 0 18px 35px rgba(28,21,16,0.08);
  }

  /* HOME EDITORIAL SECTIONS */
  .manifesto-section {
    background: var(--warm);
    padding: 8.5rem 5% 5.5rem;
  }
  .manifesto-shell,
  .home-sequence__wrap,
  .home-sessions__wrap,
  .access-editorial,
  .home-founder__wrap {
    max-width: 1240px;
    margin: 0 auto;
  }
  .manifesto-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.82fr);
    gap: 2rem;
    align-items: end;
  }
  .manifesto-head .section-title {
    max-width: 12.5ch;
    margin-bottom: 0;
  }
  .manifesto-head .section-sub {
    justify-self: end;
    max-width: 42ch;
  }
  .manifesto-lines {
    margin-top: 3.8rem;
    max-width: 1020px;
  }
  .manifesto-line {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.7rem 0;
    border-top: 1px solid rgba(28,21,16,0.12);
  }
  .manifesto-line:last-child {
    border-bottom: 1px solid rgba(28,21,16,0.12);
  }
  .manifesto-line span {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    color: var(--amber);
  }
  .manifesto-line h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 0.45rem;
  }
  .manifesto-line p {
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.85;
  }

  .home-sequence {
    background: white;
    padding: 8rem 5% 6.5rem;
  }
  .home-sequence__intro {
    max-width: 700px;
    margin: 0 0 4.8rem 8.5%;
  }
  .home-sequence__intro .section-title {
    max-width: 10ch;
  }
  .home-sequence__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 3rem;
  }
  .home-step {
    padding-top: 1.45rem;
    border-top: 1px solid var(--border);
  }
  .home-step__number {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .home-step h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
  }
  .home-step p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 34ch;
  }

  .access-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 4rem;
    align-items: start;
  }
  .access-intro .section-title {
    max-width: 11ch;
  }
  .access-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1.8rem;
  }
  .access-item {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(250,246,239,0.14);
  }
  .access-item h3 {
    color: var(--cream);
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
  }
  .access-item p {
    color: rgba(250,246,239,0.66);
    line-height: 1.75;
  }

  .home-sessions {
    padding-top: 4.5rem;
    padding-bottom: 7rem;
  }
  .wide-editorial-media {
    position: relative;
    margin: 0 0 4rem;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(200,133,74,0.18);
    background: var(--deep);
  }
  .wide-editorial-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,21,16,0.58) 0%, rgba(28,21,16,0.08) 58%, transparent 100%);
  }
  .wide-editorial-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 2808 / 1361;
    object-fit: cover;
    object-position: center 46%;
  }
  .wide-editorial-media figcaption {
    position: absolute;
    left: 2rem;
    bottom: 1.8rem;
    z-index: 1;
    max-width: 24ch;
    color: var(--cream);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.2;
  }
  .home-sessions__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
  }
  .home-sessions__head .section-title {
    max-width: 11ch;
  }
  .home-sessions__head .section-sub {
    justify-self: end;
    max-width: 38ch;
  }
  .home-sessions__actions {
    margin-top: 2.5rem;
    text-align: center;
  }

  .home-founder {
    background: white;
    padding: 8.75rem 5% 8rem;
  }
  .home-founder__wrap {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: end;
  }
  .editorial-founder-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--warm);
  }
  .editorial-founder-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,21,16,0.72) 0%, rgba(28,21,16,0.16) 58%, transparent 100%);
  }
  .editorial-founder-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .editorial-founder-card figcaption {
    position: absolute;
    left: 1.7rem;
    right: 1.7rem;
    bottom: 1.6rem;
    z-index: 1;
    color: var(--cream);
    font-family: "Playfair Display", serif;
    font-size: 1.12rem;
    line-height: 1.45;
    font-style: italic;
  }
  .editorial-founder-card--home {
    max-width: 360px;
    aspect-ratio: 1536 / 2752;
    box-shadow: 0 24px 60px rgba(28,21,16,0.12);
  }
  .editorial-founder-card--home img {
    object-position: center 20%;
  }
  .editorial-founder-card--about {
    position: absolute;
    inset: 0;
  }
  .editorial-founder-card--about img {
    object-position: center 24%;
  }
  .home-founder__content {
    max-width: 640px;
    justify-self: end;
  }
  .home-founder__content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }
  .home-founder__quote {
    margin: 2rem 0 0.65rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.16;
    color: var(--deep);
    max-width: 15ch;
  }

  /* SECTIONS */
  section { padding: 6rem 5%; }
  .section-tag {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
    color: var(--amber); text-transform: uppercase; margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }
  .section-sub {
    color: var(--muted); font-size: 1.05rem;
    line-height: 1.8; max-width: 560px;
  }

  /* PAIN SECTION */
  .pain-section { background: var(--warm); }
  .pain-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .pain-card {
    background: white; border-radius: 20px;
    padding: 2.2rem; border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .pain-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(28,21,16,0.08); }
  .pain-icon {
    font-size: 2rem; margin-bottom: 1.2rem;
  }
  .pain-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; margin-bottom: 0.7rem;
  }
  .pain-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

  /* HOW IT WORKS */
  .steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; margin-top: 3.5rem;
  }
  .step {
    text-align: center; padding: 2rem;
  }
  .step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(200,133,74,0.1); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--amber); margin: 0 auto 1.5rem;
  }
  .step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.6rem; }
  .step p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
  .steps-connector {
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; margin: 1rem 0;
  }

  /* ACCESSIBILITY */
  .access-section { background: var(--deep); color: var(--cream); }
  .access-section .section-tag { color: var(--amber-light); }
  .access-section .section-title { color: var(--cream); }
  .access-section .section-sub { color: rgba(250,246,239,0.6); }
  .access-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; margin-top: 3.5rem; align-items: center;
  }
  .access-grid.no-live-preview { grid-template-columns: 1fr; }
  .access-features { display: flex; flex-direction: column; gap: 1.5rem; }
  .access-feat {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.5rem; border-radius: 16px;
    border: 1px solid rgba(200,133,74,0.2);
    background: rgba(200,133,74,0.06);
    transition: background 0.3s;
  }
  .access-feat:hover { background: rgba(200,133,74,0.12); }
  .feat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(200,133,74,0.15); display: flex;
    align-items: center; justify-content: center; font-size: 1.3rem;
    flex-shrink: 0;
  }
  .access-feat h4 { color: var(--cream); font-size: 1rem; margin-bottom: 0.3rem; }
  .access-feat p { color: rgba(250,246,239,0.55); font-size: 0.88rem; line-height: 1.6; }
  .access-visual {
    background: rgba(200,133,74,0.08); border-radius: 24px;
    border: 1px solid rgba(200,133,74,0.2);
    padding: 2.5rem; aspect-ratio: 4/5;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; gap: 1.5rem;
    position: relative; overflow: hidden;
  }
  .access-visual.is-hidden { display: none; }
  .access-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(200,133,74,0.15) 0%, transparent 70%);
  }
  .caption-demo {
    background: rgba(0,0,0,0.4); border-radius: 12px;
    padding: 1rem 1.5rem; font-size: 0.9rem; color: var(--cream);
    border: 1px solid rgba(200,133,74,0.3); position: relative; z-index: 1;
    width: 100%;
  }
  .caption-demo .speaker { font-size: 0.7rem; color: var(--amber-light); margin-bottom: 0.3rem; }
  .caption-bar {
    width: 100%; height: 3px; background: rgba(200,133,74,0.2);
    border-radius: 3px; position: relative; overflow: hidden; z-index: 1;
  }
  .caption-bar::after {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 60%; background: var(--amber); border-radius: 3px;
    animation: captionProgress 2s ease-in-out infinite alternate;
  }
  @keyframes captionProgress {
    from { width: 10%; } to { width: 90%; }
  }
  .live-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(122,158,126,0.2); color: var(--sage);
    padding: 0.3rem 0.8rem; border-radius: 100px;
    font-size: 0.75rem; font-weight: 500;
    border: 1px solid rgba(122,158,126,0.3); z-index: 1;
  }
  .live-badge::before {
    content: '●'; font-size: 0.5rem;
    animation: blink 1.5s ease infinite;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

  /* SESSIONS */
  .sessions-section { background: var(--warm); }
  .sessions-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .sessions-grid--status { grid-template-columns: 1fr; }
  .sessions-state {
    max-width: 720px;
    padding: 2rem;
    border-radius: 24px;
    border: 1px dashed rgba(200,133,74,0.32);
    background: rgba(255,255,255,0.88);
  }
  .sessions-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  .sessions-state p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 56ch;
  }
  .sessions-state[data-variant="error"] {
    border-style: solid;
    background: rgba(255,255,255,0.96);
  }
  .sessions-state[data-variant="error"] h3 { color: #a93f2d; }
  .session-card {
    background: white; border-radius: 20px;
    padding: 2rem; border: 1px solid var(--border);
    transition: all 0.3s; cursor: pointer;
  }
  .session-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,21,16,0.1); }
  .session-card.featured { background: var(--amber); color: white; border-color: transparent; }
  .session-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.2rem;
  }
  .session-date { font-size: 0.8rem; font-weight: 500; opacity: 0.7; }
  .session-slots {
    font-size: 0.75rem; font-weight: 500;
    background: rgba(200,133,74,0.1); color: var(--amber);
    padding: 0.2rem 0.6rem; border-radius: 100px;
  }
  .session-card.featured .session-slots {
    background: rgba(255,255,255,0.2); color: white;
  }
  .session-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; margin-bottom: 0.6rem;
  }
  .session-card p { font-size: 0.9rem; opacity: 0.65; line-height: 1.6; margin-bottom: 1.5rem; }
  .session-footer {
    display: flex; justify-content: space-between; align-items: center;
  }
  .session-price {
    font-size: 1.1rem; font-weight: 500;
    font-family: 'Playfair Display', serif;
  }
  .session-btn {
    font-size: 0.8rem; font-weight: 500;
    padding: 0.45rem 1rem; border-radius: 100px;
    border: 1.5px solid currentColor;
    cursor: pointer; background: transparent; color: inherit;
    transition: all 0.2s; text-decoration: none; display: inline-block;
  }
  .session-card.featured .session-btn {
    background: white; color: var(--amber); border-color: transparent;
  }
  .session-card.featured .session-btn:hover { background: var(--cream); }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .testimonial {
    background: var(--warm); border-radius: 20px;
    padding: 2.2rem; border: 1px solid var(--border);
    position: relative;
  }
  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; color: var(--amber); opacity: 0.2;
    line-height: 0; position: absolute; top: 2rem; right: 2rem;
  }
  .testimonial p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; line-height: 1.7; color: var(--deep);
    font-style: italic; margin-bottom: 1.5rem;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
  .author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--amber); display: flex; align-items: center;
    justify-content: center; font-size: 1rem;
    color: white; font-family: 'Playfair Display', serif;
  }
  .author-name { font-weight: 500; font-size: 0.9rem; }
  .author-detail { font-size: 0.8rem; color: var(--muted); }

  /* PRICING */
  .pricing-section { background: var(--warm); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem; max-width: 900px; margin-left: auto; margin-right: auto;
  }
  .pricing-card {
    background: white; border-radius: 24px;
    padding: 2.5rem; border: 1.5px solid var(--border);
    text-align: center; transition: all 0.3s;
  }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-card.popular {
    background: var(--deep); color: var(--cream);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(28,21,16,0.2);
  }
  .pricing-badge {
    display: inline-block; background: var(--amber);
    color: white; font-size: 0.7rem; font-weight: 500;
    padding: 0.25rem 0.8rem; border-radius: 100px;
    margin-bottom: 1.5rem; letter-spacing: 0.05em;
  }
  .price-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; margin-bottom: 0.3rem;
  }
  .price-period { font-size: 0.85rem; opacity: 0.5; margin-bottom: 1.5rem; }
  .price-features { list-style: none; text-align: left; margin-bottom: 2rem; }
  .price-features li {
    padding: 0.6rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; display: flex; gap: 0.6rem; align-items: center;
  }
  .pricing-card.popular .price-features li { border-color: rgba(250,246,239,0.1); }
  .price-features li::before { content: '✓'; color: var(--sage); font-weight: 700; }

  /* ABOUT */
  .about-section { overflow: hidden; }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .about-visual {
    position: relative; height: 500px;
  }
  .about-card-main {
    position: absolute; inset: 0;
    background: var(--warm); border-radius: 24px;
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 2.5rem;
    overflow: hidden;
  }
  .about-card-main::before { content: none; }
  .about-card-main > div {
    color: white !important;
  }
  .about-visual--about {
    height: 560px;
  }
  .about-float {
    position: absolute; top: -20px; right: -20px;
    background: var(--amber); color: white;
    border-radius: 20px; padding: 1.5rem;
    width: 160px; text-align: center;
    box-shadow: 0 10px 30px rgba(200,133,74,0.4);
  }
  .about-float-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
  }
  .about-float-label { font-size: 0.8rem; opacity: 0.85; }
  .about-text h2 { margin-bottom: 1.5rem; }
  .about-text p {
    color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.98rem;
  }
  .about-values {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem;
  }
  .value-tag {
    padding: 0.4rem 1rem; border-radius: 100px;
    background: rgba(200,133,74,0.1); color: var(--amber);
    font-size: 0.85rem; font-weight: 500; border: 1px solid var(--border);
  }

  /* FAQ */
  .faq-list { max-width: 720px; margin: 3rem auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--border); overflow: hidden;
  }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.5rem 0; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 1rem; font-weight: 500; color: var(--deep);
    font-family: 'DM Sans', sans-serif;
  }
  .faq-q::after {
    content: '+'; font-size: 1.5rem; color: var(--amber);
    transition: transform 0.3s; flex-shrink: 0;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    color: var(--muted); line-height: 1.8; font-size: 0.95rem;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

  /* FOOTER CTA */
  .footer-cta {
    background: var(--deep); text-align: center;
    padding: 6rem 5%;
  }
  .footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--cream); margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
  }
  .footer-cta p {
    color: rgba(250,246,239,0.55); max-width: 480px;
    margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.8;
  }

  /* FOOTER */
  footer {
    background: var(--deep); border-top: 1px solid rgba(250,246,239,0.07);
    padding: 3rem 5% 2rem;
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: 2.5rem;
  }
  .footer-brand .logo { display: block; margin-bottom: 0.8rem; color: var(--cream); }
  .footer-brand p { color: rgba(250,246,239,0.4); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
  .footer-col h4 { color: var(--cream); font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; letter-spacing: 0.05em; }
  .footer-col p {
    color: rgba(250,246,239,0.4);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
  }
  .footer-col a {
    display: block; color: rgba(250,246,239,0.45);
    text-decoration: none; font-size: 0.88rem;
    margin-bottom: 0.6rem; transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--amber-light); }
  .footer-bottom {
    border-top: 1px solid rgba(250,246,239,0.07);
    padding-top: 1.5rem; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { color: rgba(250,246,239,0.3); font-size: 0.82rem; }

  /* MODAL */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(28,21,16,0.7); backdrop-filter: blur(8px);
    align-items: flex-start; justify-content: center; padding: 2rem;
    overflow-y: auto;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white; border-radius: 24px;
    padding: 2.4rem; max-width: 560px; width: 100%;
    position: relative; animation: modalIn 0.35s ease both;
    box-shadow: 0 24px 80px rgba(28,21,16,0.22);
    margin: 2.5rem auto;
  }
  .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }
  .modal-close {
    position: static;
    background: var(--warm); border: none; border-radius: 50%;
    width: 42px; height: 42px; cursor: pointer; font-size: 1.1rem;
    flex: 0 0 42px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    box-shadow: 0 8px 20px rgba(28,21,16,0.12);
  }
  .modal-close:hover { background: var(--border); }
  .modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; margin: 0;
  }
  .modal p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.96rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--deep); }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid var(--border); border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    background: var(--cream); transition: border-color 0.2s;
    outline: none;
  }
  .form-group select:disabled {
    cursor: not-allowed;
    opacity: 0.78;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--amber);
  }
  .form-group textarea { min-height: 90px; resize: vertical; }
  .topic-panel {
    margin: 1.25rem 0 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(248,238,223,0.72), rgba(255,255,255,0.96));
    border: 1px solid var(--border);
    border-radius: 18px;
  }
  .topic-panel-head {
    margin-bottom: 0.85rem;
  }
  .topic-panel-head h3 {
    margin: 0 0 0.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--deep);
  }
  .topic-panel-head p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .field-help {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* TOAST */
  .toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--deep); color: var(--cream);
    padding: 1rem 2rem; border-radius: 100px;
    font-size: 0.9rem; z-index: 300; transition: transform 0.4s ease;
    border: 1px solid rgba(200,133,74,0.3);
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-rings { display: none; }
    .access-grid { grid-template-columns: 1fr; }
    .access-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 300px; margin-bottom: 1rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-stats { gap: 2rem; }
    .modal { padding: 1.4rem; margin: 1rem auto; }
    .modal-close { width: 40px; height: 40px; flex-basis: 40px; }
    .hero {
      min-height: auto;
      padding: 7.5rem 5% 5rem;
    }
    .hero-shell {
      min-height: auto;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .hero-shell::before,
    .hero-shell::after {
      display: none;
    }
    .hero-content {
      max-width: 100%;
      padding: 0;
    }
    .hero h1 {
      font-size: clamp(3.2rem, 15vw, 5.1rem);
      max-width: 9ch;
    }
    .hero p,
    .hero-lede {
      max-width: 100%;
    }
    .hero-tag {
      padding-left: 3.1rem;
    }
    .hero-actions {
      align-items: flex-start;
    }
    .hero-portrait {
      width: min(78vw, 390px);
      margin: 3rem 0 0 auto;
      transform: none;
    }
    .hero-portrait figcaption {
      width: 165px;
    }
    .manifesto-section,
    .home-sequence,
      .home-founder {
      padding-top: 6rem;
    }
    .manifesto-head,
    .home-sessions__head,
    .access-editorial,
    .home-founder__wrap {
      grid-template-columns: 1fr;
    }
    .manifesto-head .section-title,
    .home-sequence__intro .section-title,
    .access-intro .section-title {
      max-width: none;
    }
    .manifesto-head .section-sub {
      justify-self: start;
    }
    .home-sequence__intro {
      margin-left: 0;
    }
    .hero-stats {
      gap: 1rem;
      flex-wrap: wrap;
    }
    .hero-stats > div {
      flex-basis: calc(50% - 0.5rem);
    }
    .manifesto-line {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }
    .home-sequence__list,
    .access-list {
      grid-template-columns: 1fr;
    }
    .wide-editorial-media {
      border-radius: 24px;
      margin-bottom: 3rem;
    }
    .wide-editorial-media figcaption {
      left: 1.4rem;
      right: 1.4rem;
      bottom: 1.3rem;
      max-width: 16ch;
    }
    .home-sessions__head .section-sub {
      justify-self: start;
    }
    .editorial-founder-card--home,
    .home-founder__content {
      max-width: none;
    }
    .home-founder__quote {
      max-width: none;
    }
    .about-visual--about {
      height: 360px;
    }
  }
