  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --ink: #0e0e0e;
    --parchment: #f5f2ec;
    --gold: #b8955a;
    --gold-light: #d4af78;
    --stone: #8a8278;
    --rule: rgba(184,149,90,0.25);
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--parchment);
    color: var(--ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    overflow-x: hidden;
  }
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.4rem 8vw;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--ink);
    border-bottom: 1px solid rgba(184,149,90,0.15);
  }
  .nav-name {
    font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: rgba(245,242,236,0.5); text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Montserrat', sans-serif; font-size: 0.55rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,242,236,0.45);
    text-decoration: none; transition: color 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh; padding-top: 60px; background: var(--ink);
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6vw 6vw 6vw 8vw; position: relative; overflow: hidden;
  }
  .hero-left::before {
    content: ''; position: absolute; top: -20%; left: -20%;
    width: 140%; height: 140%;
    background: radial-gradient(ellipse at 30% 40%, rgba(184,149,90,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 400;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 2rem; position: relative; z-index: 2;
    opacity: 0; animation: fadeUp 1s ease forwards 0.2s;
  }
  .hero-name { margin-bottom: 2rem; position: relative; z-index: 2; opacity: 0; animation: fadeUp 1s ease forwards 0.4s; }
  .hero-name-first {
    font-family: 'Inter', sans-serif; font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 200; color: var(--parchment); letter-spacing: -0.04em; display: block; line-height: 1;
  }
  .hero-name-last {
    font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 500; font-style: italic; color: var(--gold);
    letter-spacing: -0.01em; display: block; line-height: 0.95;
  }
  .hero-divider {
    width: 50px; height: 1px; background: var(--gold); margin-bottom: 2rem;
    position: relative; z-index: 2; opacity: 0; animation: expandLine 1s ease forwards 0.7s;
  }
  @keyframes expandLine { from { width: 0; opacity: 0; } to { width: 50px; opacity: 1; } }
  .hero-statement {
    font-size: clamp(0.95rem, 1.4vw, 1.2rem); line-height: 1.75;
    color: rgba(245,242,236,0.7); max-width: 420px; font-weight: 300;
    position: relative; z-index: 2; opacity: 0; animation: fadeUp 1s ease forwards 0.9s;
  }
  .hero-right { position: relative; overflow: hidden; }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    filter: grayscale(12%) contrast(1.05); display: block;
  }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .section-label {
    font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 4rem; display: flex; align-items: center; gap: 1.5rem;
  }
  .section-label::after {
    content: ''; display: block; flex: 1; max-width: 60px;
    height: 1px; background: var(--gold); opacity: 0.5;
  }
  .section-label-light { color: var(--gold-light); }
  .section-label-light::after { background: var(--gold-light); }
  .approach { background: var(--parchment); padding: 14vh 8vw; }
  .approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
  .approach-headline {
    font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; line-height: 1.4;
    font-style: italic; color: var(--gold);
  }
  .approach-body { font-size: 1.1rem; line-height: 1.85; color: #3a3530; padding-top: 0.5rem; }
  .approach-body p + p { margin-top: 1.5rem; }
  .clients-header { background: var(--ink); color: var(--parchment); padding: 10vh 8vw 8vh; }
  .clients-intro {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; line-height: 1.4; max-width: 680px;
  }
  .clients-intro em { font-style: italic; color: var(--gold-light); }
  .clients-boxes { background: var(--parchment); padding: 10vh 8vw 12vh; }
  .client-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); }
  .client-type { padding: 3rem 3rem 3rem 0; border-bottom: 1px solid var(--rule); }
  .client-type:nth-child(even) { padding-left: 3rem; border-left: 1px solid var(--rule); }
  .client-type-number { font-family: 'Montserrat', sans-serif; font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 1.2rem; }
  .client-type-title { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.8rem; }
  .client-type-desc { font-size: 0.95rem; line-height: 1.7; color: var(--stone); }
  .expertise { background: #0a0a0a; color: var(--parchment); padding: 12vh 8vw; }
  .expertise .section-label { color: var(--gold-light); }
  .expertise .section-label::after { background: var(--gold-light); }
  .expertise-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 1rem; }
  .expertise-item {
    background: #161616; padding: 2.5rem; border: 1px solid rgba(184,149,90,0.1);
    transition: background 0.4s ease, border-color 0.4s ease;
  }
  .expertise-item:hover { background: #1e1e1e; border-color: rgba(184,149,90,0.28); }
  .expertise-icon { font-size: 0.6rem; font-family: 'Montserrat', sans-serif; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; opacity: 0.8; }
  .expertise-title { font-size: 1.15rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--parchment); }
  .expertise-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(245,242,236,0.5); }
  .bio { padding: 14vh 8vw; background: var(--parchment); display: grid; grid-template-columns: 1fr 1.4fr; gap: 8vw; align-items: start; }
  .bio-aside { position: sticky; top: 80px; }
  .bio-credential-stack { display: flex; flex-direction: column; gap: 2rem; }
  .credential { padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
  .credential:last-child { border-bottom: none; }
  .credential-label { font-family: 'Montserrat', sans-serif; font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .credential-value { font-size: 1rem; line-height: 1.5; color: var(--ink); font-weight: 400; }
  .credential-sub { font-size: 0.85rem; color: var(--stone); margin-top: 0.2rem; font-style: italic; }
  .bio-text { font-size: 1.1rem; line-height: 1.9; color: #2a2620; }
  .bio-text p + p { margin-top: 1.8rem; }
  .pull-quote {
    font-size: 1.5rem; line-height: 1.5; font-style: italic; color: var(--gold);
    border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 2.5rem 0; font-weight: 300;
  }
  .contact {
    background: var(--ink); color: var(--parchment);
    padding: 16vh 8vw 22vh; text-align: center; position: relative; overflow: hidden;
  }
  .contact::before {
    content: 'ESCUJURI'; position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
    font-size: 18vw; font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
    color: rgba(184,149,90,0.04); white-space: nowrap; pointer-events: none;
  }
  .contact-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 2.5rem; }
  .contact-headline { font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; line-height: 1.2; max-width: 700px; margin: 0 auto 1.5rem; }
  .contact-headline em { font-style: italic; color: var(--gold-light); }
  .contact-subtext { font-size: 1rem; color: rgba(245,242,236,0.45); margin-bottom: 4rem; font-style: italic; }
  .contact-info { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; position: relative; z-index: 2; }
  .contact-link { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: opacity 0.3s ease; padding: 0.5rem 0; }
  .contact-link:hover { opacity: 0.6; }
  .contact-rule { width: 1px; height: 30px; background: var(--rule); margin: 0.3rem 0; }
  footer { background: #080808; padding: 3rem 8vw; display: flex; justify-content: space-between; align-items: center; }
  .footer-name { font-family: 'Montserrat', sans-serif; font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(245,242,236,0.38); }
  .footer-disc { font-size: 0.7rem; color: rgba(245,242,236,0.32); max-width: 480px; text-align: right; line-height: 1.6; font-style: italic; }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }
  .reveal-delay-4 { transition-delay: 0.6s; }
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 50vh; }
    .approach-grid, .client-types, .expertise-list, .bio { grid-template-columns: 1fr; }
    .client-type:nth-child(even) { padding-left: 0; border-left: none; }
    .bio-aside { position: static; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-disc { text-align: center; }
    nav { display: none; }
  }

