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

  :root {
    --ink: #1a1816;
    --ink-mid: #4a4743;
    --ink-light: #8a8480;
    --rule: #d8d4ce;
    --warm-white: #f7f4ef;
    --page: #ffffff;
    --gold: #9a7c45;
    --gold-light: #f0e8d8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--page);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--rule);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-name {
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s;
  }

  .nav-cta:hover { color: var(--gold); }

  /* ── HERO ── */
  .hero {
    padding-top: 64px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .hero-left {
    background: var(--warm-white);
    padding: 100px 64px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 32px;
  }

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

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .btn-primary {
    display: inline-block;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--gold); }

  .btn-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-text:hover { color: var(--gold); border-color: var(--gold); }

  .hero-right {
    background: var(--ink);
    padding: 100px 80px 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border: 1px solid rgba(154,124,69,0.2);
    border-radius: 50%;
  }

  .hero-right::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 240px; height: 240px;
    border: 1px solid rgba(154,124,69,0.12);
    border-radius: 50%;
  }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 48px;
  }

  .stat-item {
    background: var(--ink);
    padding: 32px 28px;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  .hero-proof {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    position: relative;
    z-index: 1;
  }

  .hero-proof-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .hero-proof-attr {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--gold-light);
    border-top: 1px solid #e8ddc8;
    border-bottom: 1px solid #e8ddc8;
    padding: 28px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }

  .trust-item {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mid);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .trust-dot {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── SECTIONS ── */
  section { padding: 100px 80px; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 640px;
  }

  .section-body {
    font-size: 17px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.8;
    max-width: 640px;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--page);
    border-left: 2px solid var(--gold);
  }

  .about-pillar-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .about-pillar-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-mid);
    line-height: 1.65;
  }

  /* ── SERVICES ── */
  .services { background: var(--page); }

  .services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 64px;
  }

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

  .service-card {
    background: var(--page);
    padding: 40px 32px;
    transition: background 0.2s;
  }

  .service-card:hover { background: var(--warm-white); }

  .service-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 20px;
  }

  .service-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
  }

  .service-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.7;
  }

  /* ── PROOF ── */
  .proof {
    background: var(--ink);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .proof-left .section-eyebrow { color: var(--gold); }

  .proof-left .section-heading {
    color: #fff;
    max-width: 480px;
  }

  .proof-left .section-body { color: rgba(255,255,255,0.55); }

  .proof-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
  }

  .proof-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .proof-situation {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
  }

  .proof-detail {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .proof-outcome {
    background: rgba(154,124,69,0.12);
    border-left: 2px solid var(--gold);
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
  }

  .proof-outcome strong {
    color: var(--gold);
    font-weight: 500;
  }

  /* ── HOW WE WORK ── */
  .how {
    background: var(--warm-white);
    padding: 100px 80px;
  }

  .how-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 64px;
  }

  .engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .engagement-card {
    background: var(--page);
    padding: 32px;
    border-top: 2px solid var(--rule);
    transition: border-color 0.2s;
  }

  .engagement-card:hover { border-color: var(--gold); }

  .engagement-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .engagement-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.7;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--page);
    padding: 120px 80px;
    text-align: center;
    border-top: 1px solid var(--rule);
  }

  .cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 auto 24px;
    max-width: 680px;
  }

  .cta-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--ink-mid);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.75;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 48px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
  }

  .footer-tagline {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
  }

  .footer-right {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }

    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 80px 32px 60px; }
    .hero-right { padding: 60px 32px 80px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }

    .trust-bar { flex-wrap: wrap; gap: 20px; padding: 24px 32px; }

    section { padding: 64px 32px; }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .services-intro { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .proof { grid-template-columns: 1fr; padding: 64px 32px; gap: 48px; }
    .how { padding: 64px 32px; }
    .how-intro { grid-template-columns: 1fr; gap: 32px; }
    .engagement-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 80px 32px; }
    .cta-actions { flex-direction: column; gap: 20px; }
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }

  /* ── MODAL OVERLAY ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26,24,22,0.72);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .modal-overlay.open {
    display: flex;
  }

  .modal {
    background: var(--page);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modal-in 0.22s ease;
  }

  @keyframes modal-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .modal-header {
    background: var(--ink);
    padding: 32px 40px 28px;
    position: relative;
    border-bottom: 2px solid var(--gold);
  }

  .modal-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin: 0;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.15s;
  }

  .modal-close:hover { color: #fff; }

  .modal-body {
    padding: 36px 40px 40px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group:last-of-type {
    margin-bottom: 0;
  }

  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 7px;
  }

  .form-label span {
    color: var(--gold);
    margin-left: 2px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
    background: var(--warm-white);
    border: 1px solid var(--rule);
    border-radius: 0;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.15s, background 0.15s;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8480' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: var(--gold);
    background: #fff;
  }

  .form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
  }

  .form-divider {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 24px 0;
  }

  .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    gap: 16px;
  }

  .form-note {
    font-size: 12px;
    color: var(--ink-light);
    line-height: 1.5;
    max-width: 240px;
  }

  .form-submit {
    flex-shrink: 0;
    background: var(--ink);
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 28px;
    cursor: pointer;
    transition: background 0.2s;
  }

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

  .form-success {
    display: none;
    text-align: center;
    padding: 48px 40px;
  }

  .form-success-icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 22px;
  }

  .form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .form-success p {
    font-size: 15px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.7;
  }

  .form-error {
    display: none;
    background: #fdf2f2;
    border-left: 3px solid #c0392b;
    padding: 12px 16px;
    font-size: 13px;
    color: #c0392b;
    margin-top: 16px;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .modal-header { padding: 24px 24px 20px; }
    .modal-body   { padding: 28px 24px 32px; }
    .form-row     { grid-template-columns: 1fr; }
    .form-footer  { flex-direction: column; align-items: stretch; }
    .form-note    { max-width: 100%; }
    .form-submit  { text-align: center; }
  }