:root {
      --ink: #071014;
      --ink-2: #0d1a1f;
      --ink-3: #15262c;
      --paper: #f1efe8;
      --paper-2: #e7e5de;
      --white: #fbfaf6;
      --muted: #aeb9bb;
      --muted-dark: #536269;
      --gold: #c49010;
      --gold-soft: #e8cf82;
      --line: rgba(255,255,255,.12);
      --line-dark: rgba(7,16,20,.14);
      --radius: 24px;
      --shadow: 0 24px 70px rgba(0,0,0,.18);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--ink);
      color: var(--paper);
      font-family: "DM Sans", Arial, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    .skip-link {
      position: absolute; left: -999px; top: 0; z-index: 999;
      background: var(--gold); color: var(--ink); padding: 10px 16px;
    }
    .skip-link:focus { left: 12px; top: 12px; }
    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
    .section { padding: 104px 0; }
    .section-light { background: var(--paper); color: var(--ink); }
    .section-soft { background: var(--paper-2); color: var(--ink); }
    .section-deep { background: var(--ink-2); }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin: 0 0 20px; color: var(--gold-soft);
      font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    }
    .section-light .eyebrow, .section-soft .eyebrow { color: #805d08; }
    .eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2 {
      font-family: "Libre Caslon Display", Georgia, serif;
      font-weight: 400; letter-spacing: -.035em; line-height: .98;
    }
    h1 { font-size: clamp(3.25rem, 7.3vw, 6.5rem); max-width: 900px; margin-bottom: 28px; }
    h2 { font-size: clamp(2.55rem, 5vw, 4.65rem); margin-bottom: 26px; }
    h3 { font-size: 1.14rem; line-height: 1.25; margin-bottom: 10px; }
    .lead { font-size: clamp(1.08rem, 1.8vw, 1.34rem); line-height: 1.6; max-width: 760px; color: #c7d0d2; }
    .section-light .lead, .section-soft .lead { color: var(--muted-dark); }
    .section-heading { max-width: 850px; margin-bottom: 58px; }
    .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-height: 52px; padding: 13px 20px; border: 1px solid transparent;
      border-radius: 999px; font-size: .95rem; font-weight: 700; text-decoration: none;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--gold); color: var(--ink); }
    .btn-primary:hover { background: #d5a51f; }
    .btn-secondary { border-color: rgba(255,255,255,.24); color: var(--paper); }
    .btn-secondary:hover { border-color: var(--gold); }
    .btn-dark { background: var(--ink); color: var(--paper); }
    .btn-dark:hover { background: #17272d; }

    /* Header */
    .site-header {
      position: absolute; inset: 0 0 auto; z-index: 20;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; }
    .brand-main { font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.55rem; letter-spacing: -.02em; }
    .brand-tag { color: var(--gold-soft); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 26px; }
    .nav-links a { text-decoration: none; color: #cbd3d4; font-size: .88rem; font-weight: 600; }
    .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
    .nav-toggle { display: none; border: 0; background: transparent; color: white; font-size: 1.5rem; }

    /* Hero */
    .hero {
      position: relative; overflow: hidden; min-height: 880px;
      display: grid; align-items: center; padding: 150px 0 90px;
      background:
        radial-gradient(circle at 80% 22%, rgba(196,144,16,.16), transparent 28%),
        linear-gradient(135deg, #071014 0%, #0b181d 56%, #101e23 100%);
    }
    .hero::before {
      content: ""; position: absolute; inset: 0; opacity: .2; pointer-events: none;
      background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to right, black, transparent 82%);
    }
    .hero-layout { position: relative; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.65fr); gap: 70px; align-items: center; }
    .hero-copy { position: relative; z-index: 2; }
    .hero-note { margin-top: 22px; color: #8fa0a4; font-size: .88rem; line-height: 1.55; max-width: 36rem; display:block; }
    .hero-visual { position: relative; min-height: 590px; }
    .portrait {
      position: absolute; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow);
      background: #223238; border: 1px solid rgba(255,255,255,.12);
    }
    .portrait img { width: 100%; height: 100%; object-fit: cover; }
    .portrait-a { width: 72%; aspect-ratio: 1/1.18; top: 0; right: 0; transform: rotate(2.2deg); }
    .portrait-b { width: 68%; aspect-ratio: 1/1.18; bottom: 8px; left: 0; transform: rotate(-2.6deg); }
    .visual-caption {
      position: absolute; right: 18px; bottom: 24px; width: 240px; z-index: 3;
      padding: 18px 20px; border-radius: 18px;
      background: rgba(7,16,20,.88); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px);
      font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.18rem; line-height: 1.25;
    }
    .visual-caption span { display: block; margin-top: 8px; color: var(--gold-soft); font-family: "DM Sans", sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
    .hero-facts {
      position: absolute; inset: auto 0 0; border-top: 1px solid rgba(255,255,255,.1);
      background: rgba(5,13,17,.54); backdrop-filter: blur(8px);
    }
    .facts-grid { display: grid; grid-template-columns: repeat(4,1fr); }
    .fact { min-height: 112px; padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.1); }
    .fact:last-child { border-right: 0; }
    .fact strong { display: block; color: var(--white); font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.75rem; font-weight: 400; }
    .fact span { color: #9aa9ac; font-size: .8rem; }

    /* Scene cards */
    .scene-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .scene-card {
      min-height: 270px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
      background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius);
    }
    .scene-card .number { color: #8d6a11; font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
    .scene-card p { margin: 0; color: var(--ink); font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.7rem; line-height: 1.2; }
    .manifesto {
      margin-top: 28px; padding: 35px 38px; border-radius: var(--radius); color: var(--paper);
      background: var(--ink); display: grid; grid-template-columns: 1.1fr .9fr; gap: 45px; align-items: center;
    }
    .manifesto strong { font-family: "Libre Caslon Display", Georgia, serif; font-size: 2.1rem; line-height: 1.18; font-weight: 400; }
    .manifesto p { margin: 0; color: #b7c1c3; }

    /* Process */
    .process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .process-step { padding: 30px 26px 35px; border-right: 1px solid var(--line); }
    .process-step:last-child { border-right: 0; }
    .process-step .step-no { display: block; margin-bottom: 54px; color: var(--gold-soft); font-size: .76rem; font-weight: 700; letter-spacing: .14em; }
    .process-step p { margin-bottom: 0; color: #aab7ba; font-size: .93rem; }

    /* Formats */
    .format-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
    .format-card {
      position: relative; overflow: hidden; min-height: 490px; padding: 38px;
      border-radius: 30px; background: var(--white); border: 1px solid var(--line-dark);
    }
    .format-card.featured { background: var(--ink); color: var(--paper); }
    .format-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #e8dfc2; color: #6c510b; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .featured .format-label { background: rgba(196,144,16,.18); color: var(--gold-soft); }
    .format-card h3 { margin: 26px 0 12px; font-family: "Libre Caslon Display", Georgia, serif; font-size: 2.6rem; font-weight: 400; }
    .format-card > p { color: var(--muted-dark); max-width: 520px; }
    .format-card.featured > p { color: #afbcbe; }
    .format-list { list-style: none; padding: 0; margin: 34px 0 0; }
    .format-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line-dark); font-size: .92rem; }
    .featured .format-list li { border-color: var(--line); }
    .format-list span:first-child { color: var(--muted-dark); }
    .featured .format-list span:first-child { color: #91a2a6; }
    .format-list span:last-child { font-weight: 700; text-align: right; }

    /* SEED */
    .seed-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
    .seed-intro { position: sticky; top: 30px; }
    .seed-mark { font-family: "Libre Caslon Display", Georgia, serif; font-size: clamp(5rem,12vw,10rem); line-height: .8; color: var(--gold); opacity: .78; }
    .seed-list { border-top: 1px solid var(--line-dark); }
    .seed-item { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); }
    .seed-item b { color: #8c670b; font-size: .82rem; }
    .seed-item p { margin: 6px 0 0; color: var(--muted-dark); }

    /* Tools */
    .tool-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
    .tool-cloud span { padding: 11px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #c8d0d2; font-size: .88rem; }
    .ethics-note { margin-top: 42px; display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
    .ethics-note .icon { width: 54px; height: 54px; border: 1px solid rgba(196,144,16,.45); border-radius: 50%; display: grid; place-items: center; color: var(--gold-soft); }
    .ethics-note p { margin: 0; color: #aebabc; }

    /* Outcomes */
    .outcome-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
    .outcome { padding: 22px; border-radius: 18px; background: rgba(7,16,20,.05); border: 1px solid var(--line-dark); }
    .outcome strong { display: block; margin-bottom: 10px; font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.45rem; line-height: 1.2; font-weight: 400; }
    .outcome p { margin: 0; color: var(--muted-dark); font-size: .88rem; }

    /* Team */
    .team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    .team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.03); }
    .team-photo { aspect-ratio: 1.4/1; overflow: hidden; background: #b6aca1; }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 31%; transition: transform .5s ease; }
    .team-card:hover img { transform: scale(1.025); }
    .team-copy { padding: 30px; }
    .team-copy h3 { font-family: "Libre Caslon Display", Georgia, serif; font-size: 2.25rem; font-weight: 400; margin-bottom: 4px; }
    .role { display: block; margin-bottom: 18px; color: var(--gold-soft); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .team-copy p { color: #acb9bb; }
    .team-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
    .team-links a { color: var(--paper); font-size: .82rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }

    /* Testimonials */
    .quotes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
    blockquote { margin: 0; padding: 36px; border-radius: 28px; background: var(--white); border: 1px solid var(--line-dark); }
    blockquote p { font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.72rem; line-height: 1.35; }
    blockquote footer { color: var(--muted-dark); font-size: .84rem; font-weight: 700; }

    /* FAQ */
    .faq { border-top: 1px solid var(--line-dark); }
    details { border-bottom: 1px solid var(--line-dark); }
    summary { list-style: none; cursor: pointer; padding: 24px 48px 24px 0; position: relative; font-weight: 700; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 4px; top: 19px; font-size: 1.5rem; font-weight: 400; }
    details[open] summary::after { content: "–"; }
    details p { max-width: 800px; padding: 0 0 24px; color: var(--muted-dark); }

    /* CTA */
    .cta-panel {
      position: relative; overflow: hidden; padding: 62px; border-radius: 34px;
      background: var(--gold); color: var(--ink);
    }
    .cta-panel::after { content: ""; position: absolute; width: 380px; height: 380px; right: -130px; top: -170px; border: 1px solid rgba(7,16,20,.24); border-radius: 50%; box-shadow: 0 0 0 55px rgba(7,16,20,.035), 0 0 0 110px rgba(7,16,20,.025); }
    .cta-panel h2 { max-width: 860px; position: relative; z-index: 1; }
    .cta-panel p { max-width: 700px; color: #3d351e; position: relative; z-index: 1; }
    .contact-choice { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; position: relative; z-index: 1; }

    /* Footer */
    .site-footer { padding: 52px 0; border-top: 1px solid var(--line); color: #93a1a4; font-size: .82rem; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 30px; }
    .footer-grid h3 { color: var(--paper); font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.5rem; font-weight: 400; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a { text-decoration: none; }
    .footer-links a:hover { color: var(--paper); }
    .copyright { margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }

    @media (max-width: 980px) {
      .nav-toggle { display: block; }
      .nav-links {
        display: none; position: absolute; top: 82px; left: 20px; right: 20px; padding: 18px;
        flex-direction: column; align-items: stretch; background: rgba(7,16,20,.98); border: 1px solid var(--line); border-radius: 18px;
      }
      .nav-links.open { display: flex; }
      .hero { min-height: auto; padding-bottom: 0; }
      .hero-layout { grid-template-columns: 1fr; }
      .hero-visual { min-height: 520px; max-width: 620px; width: 100%; margin: 0 auto; }
      .hero-facts { position: relative; margin-top: 50px; }
      .facts-grid { grid-template-columns: repeat(2,1fr); }
      .fact:nth-child(2) { border-right: 0; }
      .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
      .scene-grid, .process-grid, .outcome-grid { grid-template-columns: repeat(2,1fr); }
      .process-step:nth-child(2) { border-right: 0; }
      .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .seed-wrap { grid-template-columns: 1fr; gap: 30px; }
      .seed-intro { position: static; }
      .outcome:last-child { grid-column: span 2; }
    }

    @media (max-width: 720px) {
      body { font-size: 16px; }
      .container { width: min(calc(100% - 28px), var(--max)); }
      .section { padding: 76px 0; }
      .brand-tag { display: none; }
      .hero { padding-top: 125px; }
      .hero-layout { gap: 40px; }
      h1 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
      .hero-visual { min-height: 410px; }
      .visual-caption { right: 2px; bottom: 6px; width: 215px; }
      .facts-grid { grid-template-columns: 1fr 1fr; }
      .fact { min-height: 96px; padding: 16px; }
      .scene-grid, .format-grid, .team-grid, .quotes-grid, .outcome-grid { grid-template-columns: 1fr; }
      .scene-card { min-height: 225px; }
      .manifesto { grid-template-columns: 1fr; gap: 18px; padding: 28px; }
      .process-grid { grid-template-columns: 1fr; }
      .process-step, .process-step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
      .process-step:last-child { border-bottom: 0; }
      .process-step .step-no { margin-bottom: 25px; }
      .format-card { min-height: auto; padding: 28px; }
      .outcome:last-child { grid-column: auto; }
      .team-photo { aspect-ratio: 1.1/1; }
      .cta-panel { padding: 38px 26px; }
      .contact-choice { flex-direction: column; }
      .contact-choice .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    }
