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

  :root {
    --bg:       #f8f6f1;
    --surface:  #f0ede6;
    --border:   #ddd8ce;
    --ink:      #1a1814;
    --ink-dim:  #6b6560;
    --ink-muted:#a8a49e;
    --gold:     #8a6d2f;
    --gold-lt:  #b8912a;
    --accent:   #2c3e2d;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* ── GRAIN OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }

  /* ── LAYOUT ── */
  .page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
  }

  /* ── HEADER / NAV ── */
  header {
    padding: 36px 0 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink);
    line-height: 1;
  }

  .logo-tag {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .header-contact {
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
  }

  .header-contact a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .header-contact a:hover { border-color: var(--gold); }

  /* ── HERO ── */
  .hero {
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
  }

  .hero::before {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 32px;
  }

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

  .hero-body {
    color: var(--ink-dim);
    line-height: 1.85;
    font-size: 12.5px;
    max-width: 420px;
  }

  .hero-right {
    position: relative;
    z-index: 1;
  }

  /* ── PROPOSITION BOX ── */
  .prop-box {
    border: 1px solid var(--border);
    background: white;
    padding: 36px;
    position: relative;
  }

  .prop-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 56px;
    background: var(--gold);
  }

  .prop-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 20px;
  }

  .prop-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .prop-items li {
    font-size: 11px;
    color: var(--ink-dim);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .prop-items li::before {
    content: '◆';
    color: var(--gold);
    font-size: 7px;
    position: relative;
    top: 4px;
    flex-shrink: 0;
  }

  /* ── THREE PILLARS ── */
  .pillars {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
  }

  .pillars-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 48px;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
  }

  .pillar {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    background: white;
    position: relative;
    transition: background 0.2s;
  }

  .pillar:last-child { border-right: none; }

  .pillar:hover { background: var(--surface); }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
  }

  .pillar-title {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }

  .pillar-body {
    font-size: 11.5px;
    color: var(--ink-dim);
    line-height: 1.75;
  }

  /* ── WHO THIS IS FOR ── */
  .audience {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
  }

  .section-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
  }

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

  .audience-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    align-self: start;
  }

  .audience-list li {
    background: white;
    padding: 18px 20px;
    font-size: 12px;
    color: var(--ink-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
  }

  .audience-list li:hover { background: var(--surface); }

  .audience-list li::before {
    content: '→';
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
  }

  /* ── CONTACT ── */
  .contact {
    padding: 80px 0 100px;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-intro {
    color: var(--ink-dim);
    line-height: 1.85;
    margin-top: 16px;
    font-size: 12.5px;
  }

  .contact-detail {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .contact-detail-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 6px;
  }

  .contact-detail-value {
    font-size: 13px;
    color: var(--ink);
  }

  .contact-detail-value a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .contact-detail-value a:hover { border-color: var(--gold); }

  /* ── FORM ── */
  .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .field label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .field input,
  .field textarea,
  .field select {
    background: white;
    border: 1px solid var(--border);
    padding: 12px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
  }

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

  .field textarea { min-height: 120px; }

  /* ── TURNSTILE WRAPPER ── */
  .turnstile-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .turnstile-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  /* ── FORM STATUS MESSAGES ── */
  .form-status {
    display: none;
    padding: 12px 14px;
    font-size: 11px;
    line-height: 1.6;
    border: 1px solid var(--border);
  }

  form-status.success {
    display: block;
    background: #2c3e2d;
    border-color: #2c3e2d;
    color: #ffffff;
    font-size: 13px;
    padding: 20px 24px;
    line-height: 1.7;
  }

  .form-status.error {
    display: block;
    background: #fdf5f5;
    border-color: #8a2f2f;
    color: #8a2f2f;
  }

  .form-submit {
    background: var(--ink);
    color: white;
    border: none;
    padding: 14px 28px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    align-self: flex-start;
  }

  .form-submit:hover  { background: var(--gold); }
  .form-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: var(--ink);
  }

  .form-note {
    font-size: 10px;
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* ── FOOTER ── */
  footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow  { animation: fadeUp 0.5s 0.1s both ease; }
  .hero-headline { animation: fadeUp 0.5s 0.2s both ease; }
  .hero-body     { animation: fadeUp 0.5s 0.3s both ease; }
  .prop-box      { animation: fadeUp 0.5s 0.35s both ease; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .page { padding: 0 24px; }
    .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 0 48px; }
    .hero::after, .hero::before { display: none; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid var(--border); }
    .pillar:last-child { border-bottom: none; }
    .audience { grid-template-columns: 1fr; gap: 40px; }
    .audience-list { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    footer { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero-headline, .hero-body, .prop-box {
      animation: none;
    }
    html { scroll-behavior: auto; }
  }
