  :root {
    --white: #FFFFFF;
    --off: #FAFAFA;
    --brown: #0A0A0A;
    --brown-soft: #4A4A4A;
    --brown-mute: rgba(10, 10, 10, 0.55);
    --red: #D72E2A;
    --blue: #A4C2DB;
    --cream: #FFFFFF;
    --soft: #F4F4F4;
    --line: rgba(10, 10, 10, 0.14);
    --line-soft: rgba(10, 10, 10, 0.06);

    --display: 'Bricolage Grotesque', system-ui, sans-serif;
    --sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'Geist Mono', 'SF Mono', monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--brown);
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--red); color: var(--white); }

  .wrap { max-width: 1480px; margin: 0 auto; padding: 0 32px; position: relative; }
  @media (max-width: 720px) { .wrap { padding: 0 20px; } }

  .label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brown-mute);
  }
  .label--red { color: var(--red); }
  .label--white { color: var(--white); }

  /* ─── Navigation ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 720px) { .nav-inner { padding: 16px 20px; } }

  .logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1;
    text-decoration: none;
    color: var(--brown);
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .logo-period {
    color: var(--red);
    font-weight: 700;
    margin-left: -2px;
  }

  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.4s cubic-bezier(0.6, 0, 0.2, 1);
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { color: var(--red); }

  .nav-lang {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--brown-mute);
    display: flex;
    gap: 10px;
  }
  .nav-lang span.active { color: var(--brown); font-weight: 600; }
  .nav-lang span:not(.active) { cursor: pointer; transition: color 0.3s; }
  .nav-lang span:not(.active):hover { color: var(--red); }

  @media (max-width: 880px) { .nav-links { display: none; } }

  /* ─── Hero ─── */
  .hero {
    padding: 130px 0 80px;
    position: relative;
  }
  @media (max-width: 720px) { .hero { padding: 110px 0 60px; } }

  .hero-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .hero-meta::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--red);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: end;
  }
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  h1.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: clamp(58px, 11vw, 200px);
    line-height: 0.86;
    letter-spacing: -0.04em;
    color: var(--brown);
  }
  h1.hero-title .stop { color: var(--red); }

  .hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream);
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-image-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--brown);
    padding: 8px 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .hero-image-credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--white);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    align-items: start;
  }
  @media (max-width: 880px) {
    .hero-bottom { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  }

  .hero-lede {
    font-size: 19px;
    line-height: 1.5;
    color: var(--brown);
    max-width: 42ch;
    font-weight: 400;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-self: end; align-self: center; }
  @media (max-width: 880px) { .hero-actions { justify-self: start; } }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.6, 0, 0.2, 1);
    border: 1.5px solid transparent;
    cursor: pointer;
    font-family: var(--sans);
  }
  .btn-primary {
    background: var(--red);
    color: var(--white);
  }
  .btn-primary:hover {
    background: var(--brown);
    transform: translateY(-2px);
  }
  .btn-ghost {
    color: var(--brown);
    border-color: var(--brown);
  }
  .btn-ghost:hover {
    background: var(--brown);
    color: var(--white);
  }
  .btn-arrow { transition: transform 0.3s; }
  .btn:hover .btn-arrow { transform: translateX(4px); }

  /* ─── Section base ─── */
  section { padding: 140px 0; position: relative; }
  @media (max-width: 720px) { section { padding: 90px 0; } }

  .section-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    margin-bottom: 80px;
    align-items: start;
  }
  @media (max-width: 880px) {
    .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  }
  .section-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 72;
    font-size: clamp(44px, 6vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    max-width: 18ch;
    color: var(--brown);
  }
  .section-head h2 .accent { color: var(--red); }

  /* ─── Marquee ─── */
  .marquee {
    background: var(--white);
    overflow: hidden;
    padding: 26px 0;
    border-top: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown);
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 45s linear infinite;
    font-family: var(--display);
    font-weight: 600;
    font-size: 28px;
    color: var(--brown);
    white-space: nowrap;
    letter-spacing: -0.015em;
  }
  .marquee-track .star {
    color: var(--red);
    font-size: 22px;
    align-self: center;
  }
  .marquee-track span { display: inline-flex; align-items: center; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── Manifesto ─── */
  .manifesto { padding: 160px 0; background: var(--white); }
  .manifesto-quote {
    font-family: var(--display);
    font-weight: 500;
    font-variation-settings: "opsz" 60;
    font-size: clamp(36px, 4.6vw, 80px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    max-width: 22ch;
    color: var(--brown);
    margin-top: 40px;
  }
  .manifesto-quote .red { color: var(--red); }
  .manifesto-quote .underline {
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
  }

  .manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 120px;
    align-items: start;
  }
  @media (max-width: 880px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 64px; } }
  .manifesto-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--brown);
    margin-bottom: 22px;
    max-width: 44ch;
  }
  .manifesto-meta {
    border-left: 2px solid var(--red);
    padding-left: 24px;
  }
  .manifesto-meta-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .manifesto-meta-text {
    font-size: 15px;
    color: var(--brown-soft);
    line-height: 1.6;
  }

  /* ─── Services ─── */
  .services { padding: 140px 0; }
  .services-list { border-top: 2px solid var(--brown); }
  .service-row {
    display: grid;
    grid-template-columns: 90px 1.4fr 2fr 60px;
    gap: 32px;
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    cursor: pointer;
    transition: padding 0.45s cubic-bezier(0.6, 0, 0.2, 1), background 0.45s, color 0.45s;
    position: relative;
  }
  @media (max-width: 880px) {
    .service-row { grid-template-columns: 50px 1fr 30px; gap: 16px; padding: 28px 0; }
    .service-row .service-desc { grid-column: 2 / 4; padding-top: 8px; }
  }

  .service-row:nth-child(1):hover { background: var(--soft); }
  .service-row:nth-child(2):hover { background: var(--blue); }
  .service-row:nth-child(3):hover { background: var(--red); color: var(--white); }
  .service-row:nth-child(3):hover .service-num,
  .service-row:nth-child(3):hover .service-desc,
  .service-row:nth-child(3):hover .service-arrow { color: var(--white); }
  .service-row:nth-child(4):hover { background: var(--soft); }
  .service-row:nth-child(5):hover { background: var(--brown); color: var(--white); }
  .service-row:nth-child(5):hover .service-num,
  .service-row:nth-child(5):hover .service-desc,
  .service-row:nth-child(5):hover .service-arrow { color: var(--white); }

  .service-row:hover { padding-left: 24px; padding-right: 24px; }
  .service-row:hover .service-arrow { transform: translate(8px, -8px) rotate(-15deg); }

  .service-num {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--brown-mute);
    transition: color 0.4s;
  }
  .service-name {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 48;
    font-size: clamp(28px, 3.6vw, 50px);
    line-height: 0.96;
    letter-spacing: -0.025em;
  }
  .service-desc {
    font-size: 15px;
    color: var(--brown-soft);
    line-height: 1.55;
    max-width: 52ch;
    transition: color 0.4s;
  }
  .service-arrow {
    font-family: var(--display);
    font-weight: 600;
    font-size: 32px;
    color: var(--brown-mute);
    transition: all 0.4s cubic-bezier(0.6, 0, 0.2, 1);
    text-align: right;
  }

  /* ─── Process / Blue block ─── */
  .process {
    background: var(--blue);
    padding: 160px 0;
  }
  .process h2 { color: var(--brown); }
  .process .label { color: var(--brown); }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1.5px solid var(--brown);
    border-bottom: 1.5px solid var(--brown);
  }
  @media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

  .phase {
    padding: 48px 28px;
    border-right: 1px solid var(--brown);
    position: relative;
    transition: background 0.4s ease;
  }
  .phase:last-child { border-right: none; }
  @media (max-width: 880px) {
    .phase:nth-child(2) { border-right: none; }
    .phase:nth-child(1), .phase:nth-child(2) { border-bottom: 1px solid var(--brown); }
  }
  @media (max-width: 540px) {
    .phase { border-right: none; border-bottom: 1px solid var(--brown); }
    .phase:last-child { border-bottom: none; }
  }

  .phase:hover { background: rgba(255, 255, 255, 0.4); }
  .phase-num {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: 88px;
    line-height: 0.85;
    color: var(--white);
    margin-bottom: 32px;
    display: inline-block;
    -webkit-text-stroke: 1.5px var(--brown);
    -webkit-text-fill-color: transparent;
  }
  .phase-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--brown);
  }
  .phase-desc {
    font-size: 14.5px;
    color: var(--brown);
    line-height: 1.55;
  }

  /* ─── Cases ─── */
  .cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  @media (max-width: 880px) { .cases-grid { grid-template-columns: 1fr; } }

  .case {
    background: var(--white);
    border: 1.5px solid var(--brown);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.6, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.6, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .case:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--brown);
  }

  .case-image {
    aspect-ratio: 4 / 3;
    position: relative;
    border-bottom: 1.5px solid var(--brown);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px;
    overflow: hidden;
  }
  .case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
  }
  .case-image--cream { background: var(--cream); color: var(--brown); }
  .case-image--blue { background: var(--blue); color: var(--brown); }
  .case-image--red { background: var(--red); color: var(--white); }
  .case-image--brown { background: var(--brown); color: var(--white); }

  .case-image-edition {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: 64px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
  }
  .case-image-edition .small {
    display: block;
    font-family: var(--mono);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.7;
  }
  .case-image-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  .case-content { padding: 32px 36px 36px; flex: 1; }

  .case-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .case-name {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 48;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    color: var(--brown);
  }
  .case-summary {
    font-size: 15px;
    color: var(--brown-soft);
    margin-bottom: 32px;
    max-width: 44ch;
    line-height: 1.55;
  }
  .case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .stat-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--brown);
    letter-spacing: -0.02em;
  }
  .stat-num .red { color: var(--red); }
  .stat-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown-mute);
  }

  /* ─── Gallery ─── */
  .gallery {
    padding: 140px 0;
    background: var(--white);
  }
  @media (max-width: 720px) { .gallery { padding: 90px 0; } }

  .gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 72px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 24px;
  }
  .gallery-title {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: clamp(48px, 7vw, 120px);
    line-height: 0.86;
    letter-spacing: -0.04em;
    color: var(--brown);
    max-width: 12ch;
  }
  .gallery-title .accent { color: var(--red); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  @media (max-width: 980px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  }
  @media (max-width: 540px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }

  .gal-item { margin: 0; }
  .gal-item:nth-child(2) { transform: translateY(56px); }
  .gal-item:nth-child(4) { transform: translateY(56px); }
  @media (max-width: 980px) {
    .gal-item:nth-child(2),
    .gal-item:nth-child(4) { transform: none; }
  }

  .gal-image {
    aspect-ratio: 4 / 5;
    border: 1.5px solid var(--brown);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px;
    overflow: hidden;
    margin-bottom: 18px;
    transition: transform 0.5s cubic-bezier(0.6, 0, 0.2, 1);
  }
  .gal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
  }
  .gal-item:hover .gal-image { transform: scale(0.98); }
  .gal-image--cream { background: var(--cream); color: var(--brown); }
  .gal-image--blue { background: var(--blue); color: var(--brown); }
  .gal-image--red { background: var(--red); color: var(--white); }
  .gal-image--brown { background: var(--brown); color: var(--white); }

  .gal-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .gal-image > *:not(.gal-cover) {
    position: relative;
    z-index: 1;
  }

  .gal-caption {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
  }
  .gal-caption-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: var(--brown);
  }
  .gal-caption-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-mute);
  }

  /* ─── Atmospheric image (standalone) ─── */
  .atm-image {
    position: relative;
    border: 1.5px solid var(--brown);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px;
    overflow: hidden;
    margin: 0;
  }
  .atm-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
  }
  .atm-image > * { position: relative; z-index: 1; }
  .atm-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .atm-image--red { background: var(--red); color: var(--white); }
  .atm-image--blue { background: var(--blue); color: var(--brown); }
  .atm-image--black { background: var(--brown); color: var(--white); }
  .atm-image--white { background: var(--white); color: var(--brown); }

  /* ─── Manifesto aside (text + image stack) ─── */
  .manifesto-aside {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .manifesto-atm {
    aspect-ratio: 4 / 5;
  }

  /* ─── Manifesto top (quote + image) ─── */
  .manifesto-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 24px;
  }
  @media (max-width: 880px) {
    .manifesto-top { grid-template-columns: 1fr; gap: 36px; }
  }
  .manifesto-top-atm {
    aspect-ratio: 4 / 5;
  }
  .manifesto-top .manifesto-quote {
    margin-top: 32px;
  }

  /* ─── Editorial spread ─── */
  .spread {
    padding: 0 0 140px 0;
    background: var(--white);
  }
  @media (max-width: 720px) { .spread { padding: 0 0 90px 0; } }
  .spread-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 56px;
    align-items: end;
  }
  @media (max-width: 880px) {
    .spread-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  .spread-image {
    aspect-ratio: 16 / 10;
  }
  .spread-text { padding-bottom: 12px; }
  .spread-quote {
    font-family: var(--display);
    font-weight: 500;
    font-variation-settings: "opsz" 48;
    font-size: clamp(22px, 2.6vw, 36px);
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--brown);
    margin-top: 22px;
    max-width: 28ch;
  }
  .spread-quote .accent { color: var(--red); }

  /* ─── Numbers / Red block ─── */
  .numbers {
    background: var(--red);
    color: var(--white);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
  }
  .numbers h2 { color: var(--white); }
  .numbers h2 .accent { color: var(--cream); }
  .numbers .label { color: var(--cream); }

  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
  }
  @media (max-width: 880px) { .numbers-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 540px) { .numbers-grid { grid-template-columns: 1fr; } }

  .number-block {
    border-top: 1.5px solid var(--white);
    padding-top: 24px;
  }
  .big-num {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: clamp(64px, 8.5vw, 124px);
    line-height: 0.86;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
  }
  .num-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 24ch;
    font-weight: 400;
  }

  /* ─── Contact ─── */
  .contact {
    background: var(--brown);
    color: var(--white);
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: 'GLOBAL';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: clamp(180px, 28vw, 480px);
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.06em;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
  }
  .contact-inner { position: relative; z-index: 1; }
  .contact-inner > .label { color: var(--cream); margin-bottom: 32px; display: inline-block; }

  h2.contact-headline {
    font-family: var(--display);
    font-weight: 700;
    font-variation-settings: "opsz" 96;
    font-size: clamp(54px, 9vw, 156px);
    line-height: 0.88;
    letter-spacing: -0.045em;
    margin-bottom: 56px;
    color: var(--white);
  }
  h2.contact-headline .accent { color: var(--red); }

  .contact-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  @media (max-width: 720px) {
    .contact-meta { grid-template-columns: 1fr 1fr; gap: 28px; }
  }
  .contact-meta a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s, color 0.3s;
  }
  .contact-meta a:hover { border-color: var(--red); color: var(--cream); }
  .contact-meta-item {
    font-size: 15px;
    line-height: 1.65;
  }
  .contact-meta-item .label { display: block; margin-bottom: 10px; color: var(--cream); }

  .btn-cta {
    background: var(--red);
    color: var(--white);
    font-size: 16px;
    padding: 22px 32px;
  }
  .btn-cta:hover {
    background: var(--cream);
    color: var(--brown);
  }

  /* ─── Footer ─── */
  footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.55);
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-inner a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.3s;
  }
  .footer-inner a:hover { color: var(--cream); }

  /* ─── Reveal ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-d="1"] { transition-delay: 0.08s; }
  .reveal[data-d="2"] { transition-delay: 0.16s; }
  .reveal[data-d="3"] { transition-delay: 0.24s; }
  .reveal[data-d="4"] { transition-delay: 0.32s; }
  .reveal[data-d="5"] { transition-delay: 0.40s; }