
  :root {
    --ink: #171614;
    --paper: #FAF9F6;
    --mute: #8C877D;
    --line: rgba(23,22,20,0.08);
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  /* ---------- NAV ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px clamp(24px, 5vw, 64px);
    mix-blend-mode: difference;
  }
  .logo {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.06em;
    color: #fff;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #fff;
  }
  .lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.55);
  }
  .lang-switch button {
    background: none;
    border: none;
    color: inherit;
    font-family: var(--font-body);
    font-size: 12px;
    cursor: pointer;
    padding: 2px 0;
    position: relative;
  }
  .lang-switch button.active { color: #fff; }
  .lang-switch button.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 1px;
    background: #fff;
  }
  .lang-switch .sep { color: rgba(255,255,255,0.3); }

  .burger { display: none; background: none; border: none; cursor: pointer; }
  .burger span { display: block; width: 20px; height: 1px; background: #fff; margin: 5px 0; }

  /* ---------- HERO — full bleed, almost no text ---------- */
  .hero {
    height: 100svh;
    position: relative;
    background:
      radial-gradient(circle at 25% 20%, rgba(255,255,255,0.05), transparent 55%),
      linear-gradient(150deg, #2B2924, #100F0D 65%);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-name {
    padding: 0 clamp(24px, 5vw, 64px) clamp(48px, 7vw, 90px);
    color: #FAF9F6;
  }
  .hero-name h1 {
    font-family: var(--font-display);
    font-weight: 350;
    font-size: clamp(52px, 11vw, 160px);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }
  .hero-name p {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: rgba(250,249,246,0.55);
  }
  .scroll-cue {
    position: absolute;
    right: clamp(24px, 5vw, 64px);
    bottom: 40px;
    color: rgba(250,249,246,0.5);
    font-size: 12px;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
  }

  /* ---------- FULL BLEED WORKS ---------- */
  .work-full {
    height: 92vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .work-full .caption {
    padding: 32px clamp(24px, 5vw, 64px);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
  }
  .work-full:hover .caption { opacity: 1; transform: translateY(0); }
  .work-full::before {
    content: '';
    position: absolute; inset: 0;
  }
  .w1::before { background: radial-gradient(circle at 30% 30%, #C77B4A, #1A1815 70%); }
  .w2::before { background: radial-gradient(circle at 70% 60%, #8A9678, #14130F 70%); }
  .w3::before { background: radial-gradient(circle at 50% 40%, #C6A75A, #171512 70%); }

  .pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 78vh;
  }
  .pair .work-full { height: 100%; }
  .p1::before { background: radial-gradient(circle at 40% 30%, #7C8FA6, #121114 70%); }
  .p2::before { background: radial-gradient(circle at 60% 60%, #B0673B, #121114 70%); }

  /* ---------- STATEMENT ---------- */
  .statement {
    padding: clamp(120px, 16vw, 220px) 0;
    text-align: center;
  }
  .statement h2 {
    font-family: var(--font-display);
    font-weight: 350;
    font-size: clamp(28px, 4.4vw, 56px);
    line-height: 1.25;
    max-width: 20ch;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 64px);
    background: var(--ink);
    color: var(--paper);
  }
  .contact-inner { max-width: 560px; margin: 0 auto; width: 100%; }
  .contact h2 {
    font-family: var(--font-display);
    font-weight: 350;
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 48px;
  }
  form { display: flex; flex-direction: column; gap: 28px; }
  .field { position: relative; }
  label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(250,249,246,0.5);
    margin-bottom: 10px;
  }
  input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(250,249,246,0.25);
    padding: 8px 0 12px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    color: var(--paper);
    transition: border-color 0.2s;
  }
  input:focus, textarea:focus { outline: none; border-color: var(--paper); }
  textarea { resize: none; min-height: 80px; }
  ::placeholder { color: rgba(250,249,246,0.3); }
  .submit-btn {
    align-self: flex-start;
    background: none;
    border: 1px solid rgba(250,249,246,0.4);
    color: var(--paper);
    padding: 15px 36px;
    font-size: 13px;
    letter-spacing: 0.04em;
    border-radius: 100px;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.25s;
  }
  .submit-btn:hover { background: var(--paper); color: var(--ink); }

  /* ---------- FOOTER — Joseph Atelier structure ---------- */
  footer {
    background: var(--ink);
    color: rgba(250,249,246,0.55);
    padding: clamp(56px, 8vw, 90px) clamp(24px, 5vw, 64px) 0;
    font-size: 13px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: clamp(40px, 6vw, 64px);
  }
  .footer-brand .logo {
    color: var(--paper);
    mix-blend-mode: normal;
    margin-bottom: 14px;
  }
  .footer-brand p {
    color: rgba(250,249,246,0.45);
    max-width: 32ch;
    line-height: 1.6;
    font-size: 13px;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,249,246,0.4);
    font-weight: 400;
    margin-bottom: 16px;
  }
  .footer-col a, .footer-col span {
    display: block;
    color: rgba(250,249,246,0.7);
    margin-bottom: 10px;
    font-size: 13px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--paper); }
  .footer-bottom {
    border-top: 1px solid rgba(250,249,246,0.12);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(250,249,246,0.4);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom-links { display: flex; gap: 22px; }
  .footer-bottom-links a { color: rgba(250,249,246,0.4); }
  .footer-bottom-links a:hover { color: var(--paper); }

  /* ---------- LEGAL PAGES ---------- */
  .legal {
    display: none;
    min-height: 100vh;
    padding: clamp(110px, 14vw, 160px) clamp(24px, 5vw, 64px) clamp(80px, 10vw, 120px);
    background: var(--paper);
  }
  .legal.is-open { display: block; }
  .legal-inner { max-width: 640px; margin: 0 auto; }
  .legal-back {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--mute);
    margin-bottom: 40px;
  }
  .legal-back:hover { color: var(--ink); }
  .legal h1 {
    font-family: var(--font-display);
    font-weight: 350;
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 40px;
  }
  .legal h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    margin: 36px 0 12px;
  }
  .legal p {
    font-size: 15px;
    line-height: 1.75;
    color: #2E2C28;
    margin-bottom: 14px;
  }
  .legal .note {
    font-size: 13px;
    color: var(--mute);
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-top: 20px;
  }
  body.legal-active > *:not(.legal):not(nav) { display: none; }
  body.legal-active nav { mix-blend-mode: normal; background: var(--paper); border-bottom: 1px solid var(--line); }
  body.legal-active .logo, body.legal-active .nav-links, body.legal-active .lang-switch, body.legal-active .burger span { color: var(--ink); }
  body.legal-active .burger span { background: var(--ink); }
  body.legal-active .lang-switch { color: rgba(23,22,20,0.5); }
  body.legal-active .lang-switch button.active { color: var(--ink); }
  body.legal-active .lang-switch button.active::after { background: var(--ink); }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(56px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-1 { transition-delay: 0.08s; }
  .reveal-2 { transition-delay: 0.16s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  }

  @media (max-width: 720px) {
    .nav-links { display: none; }
    .burger { display: block; }
    .pair { grid-template-columns: 1fr; height: auto; }
    .pair .work-full { height: 60vh; }
    .work-full { height: 70vh; }
    .hero-name h1 { font-size: clamp(44px, 14vw, 90px); }
    .scroll-cue { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
