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

  :root {
    --bg-main: #c2d6c2;
    --bg-deep: #b4ccb4;
    --bg-card: #ccdccc;
    --bg-dark: #2e3a30;
    --text-dark: #1a2a1c;
    --text-mid: rgba(26,42,28,0.62);
    --text-light: rgba(26,42,28,0.4);
    --forest: #2e3a30;
    --forest-light: #3d4f3f;
    --gold: #8a6f3a;
    --gold-light: #b89a6a;
    --border: rgba(46,58,48,0.18);
    --border-soft: rgba(46,58,48,0.1);

    --f-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --f-body: 'Jost', system-ui, sans-serif;

    --pad-x: clamp(20px, 5vw, 80px);
    --nav-h: 74px;
  }

  html { scroll-behavior: smooth; }

  /* Title page (hero) and introduction retain the original typeface */
  .hero, .intro {
    --f-display: 'Archivo Expanded', 'Archivo', sans-serif;
    --f-body: 'Archivo', system-ui, sans-serif;
    font-family: var(--f-body);
  }

  body {
    background: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--f-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  img { display: block; max-width: 100%; }
  a { color: inherit; }

  ::selection { background: var(--forest); color: var(--bg-main); }

  /* Shared type utilities */
  .eyebrow {
    font-size: 10px; font-weight: 500; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--gold);
    display: inline-flex; align-items: center; gap: 16px;
  }
  .eyebrow::before {
    content: ''; width: 34px; height: 1px; background: var(--gold); opacity: 0.6;
  }
  .eyebrow.plain::before { display: none; }

  .display {
    font-family: var(--f-display); font-weight: 300;
    line-height: 1.0; letter-spacing: -0.015em;
    color: var(--text-dark);
  }
  .display em { font-style: italic; color: var(--forest); }

  /* ============ NAV ============ */
  nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--pad-x);
    color: #eef4ee;
    transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, height 0.45s ease;
  }
  nav.scrolled {
    background: rgba(194,214,194,0.94);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    color: var(--text-dark);
    box-shadow: 0 1px 0 var(--border-soft);
    height: 56px;
  }
  /* Project pages keep the nav bar solid and legible from the top of the banner (no scroll needed) */
  nav.pinned {
    background: rgba(194,214,194,0.94);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    color: var(--text-dark);
    box-shadow: 0 1px 0 var(--border-soft);
  }
  nav.pinned .nav-logo .nav-mark { filter: none; }
  nav.pinned .nav-logo .colon { color: var(--gold); }
  nav.pinned .nav-links a::after { background: var(--gold); }
  nav.pinned .nav-toggle { color: var(--text-dark); }
  .nav-logo {
    font-family: var(--f-display); font-weight: 500; font-size: 15px;
    letter-spacing: 0.12em; text-decoration: none; color: inherit;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    transition: gap 0.45s ease;
  }
  .nav-logo .nav-wordmark { display: flex; align-items: baseline; gap: 2px; }
  .nav-logo .nav-mark {
    height: 30px; width: auto;
    filter: invert(1);
    transition: height 0.45s ease, filter 0.45s ease;
  }
  /* Shrink only the RL mark (not the wordmark fonts) when scrolled on desktop to keep the bar compact and legible */
  nav.scrolled .nav-logo { gap: 3px; }
  nav.scrolled .nav-logo .nav-mark { height: 17px; filter: none; }
  .nav-logo .colon { color: var(--gold-light); }
  nav.scrolled .nav-logo .colon { color: var(--gold); }
  .nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 10px; font-weight: 500; letter-spacing: 0.24em;
    text-transform: uppercase; text-decoration: none; color: inherit;
    opacity: 0.82; position: relative; padding: 4px 0; transition: opacity 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: var(--gold-light); transition: width 0.35s ease;
  }
  nav.scrolled .nav-links a::after { background: var(--gold); }
  .nav-links a:hover { opacity: 1; }
  .nav-links a:hover::after { width: 100%; }

  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 16px; position: relative; z-index: 101;
  }
  .nav-toggle span {
    position: absolute; left: 0; width: 100%; height: 1.5px;
    background: currentColor; transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-toggle span:nth-child(1) { top: 0; }
  .nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .nav-toggle span:nth-child(3) { bottom: 0; }
  .nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

  /* ============ HERO ============ */
  .hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.6s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06); transition: transform 8s ease-out;
  }
  .hero-slide.active img { transform: scale(1); }
  .hero-scrim {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
      linear-gradient(to top, rgba(24,32,24,0.72) 0%, rgba(24,32,24,0.12) 42%, rgba(24,32,24,0.28) 100%),
      linear-gradient(to right, rgba(24,32,24,0.4) 0%, transparent 45%);
  }
  .hero-grain {
    position: absolute; inset: 0; z-index: 3; opacity: 0.18; pointer-events: none;
    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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  }
  .hero-content {
    position: absolute; z-index: 4; left: var(--pad-x); right: var(--pad-x);
    bottom: clamp(48px, 9vh, 96px); color: #f2f6f2;
  }
  .hero-est {
    font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 26px;
    animation: fadeUp 1.3s 0.2s both;
  }
  .hero-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(46px, 8.2vw, 128px); line-height: 0.94;
    letter-spacing: -0.02em; max-width: 15ch;
    animation: fadeUp 1.3s 0.4s both;
  }
  .hero-title .re { color: var(--gold-light); }
  .hero-sub {
    margin-top: 30px; display: flex; flex-wrap: wrap; align-items: flex-end;
    justify-content: space-between; gap: 28px;
    border-top: 1px solid rgba(242,246,242,0.22); padding-top: 22px;
    animation: fadeUp 1.3s 0.7s both;
  }
  .hero-tagline {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(242,246,242,0.78); line-height: 1.9; white-space: nowrap;
  }
  .hero-tagline .ht-sep { margin: 0 0.5em; }
  .hero-feature { text-align: right; min-width: 200px; }
  .hero-feature .lbl {
    font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 8px;
  }
  .hero-feature .name {
    font-family: var(--f-display); font-weight: 300; font-size: 17px;
    letter-spacing: 0.02em; transition: opacity 0.5s;
  }
  .hero-feature .place { font-size: 11px; color: rgba(242,246,242,0.6); margin-top: 4px; letter-spacing: 0.06em; }

  .hero-nums {
    position: absolute; z-index: 4; right: var(--pad-x); top: 46%;
    display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  }
  .hero-nums button {
    width: 30px; height: 2px; border: none; padding: 0; cursor: pointer;
    background: rgba(242,246,242,0.3); transition: background 0.3s, width 0.3s;
  }
  .hero-nums button.active { background: var(--gold-light); width: 44px; }
  @media (max-width: 720px) { .hero-nums { display: none; } }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ============ RE: STRIP ============ */
  .restrip {
    background: var(--bg-deep); border-bottom: 1px solid var(--border-soft);
    overflow: hidden; padding: 16px 0;
  }
  .restrip-track {
    display: flex; gap: 0; width: max-content;
    animation: ticker 40s linear infinite;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .restrip-item {
    font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--text-light); padding: 0 34px;
  }
  .restrip-item span { color: var(--gold); }

  /* ============ SECTION SCAFFOLD ============ */
  section { padding: clamp(80px, 12vh, 150px) var(--pad-x); }
  .wrap { max-width: 1440px; margin: 0 auto; }
  .section-head { max-width: 1440px; margin: 0 auto; }
  .section-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(30px, 4.6vw, 62px); line-height: 1.04;
    letter-spacing: -0.015em; color: var(--text-dark);
  }
  .section-title em { font-style: italic; color: var(--forest); }

  /* ============ INTRO STATEMENT ============ */
  .intro { background: var(--bg-main); }
  .intro-grid {
    display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 7vw, 120px); align-items: start;
  }
  .intro-lead {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(24px, 3vw, 42px); line-height: 1.28;
    letter-spacing: -0.01em; color: var(--text-dark);
  }
  .intro-lead b { font-weight: 500; color: var(--forest); }
  .intro-body { font-size: 15px; line-height: 2; color: var(--text-mid); letter-spacing: 0.01em; }
  .intro-body + .intro-body { margin-top: 22px; }
  .intro-eyebrow { margin-bottom: 30px; }

  /* ============ WORKS ============ */
  .works { background: var(--bg-deep); }
  .works-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 24px; margin-bottom: clamp(40px, 6vw, 72px);
  }
  .works-count {
    font-family: var(--f-display); font-size: 13px; letter-spacing: 0.1em;
    color: var(--text-light);
  }
  .works-count b { color: var(--gold); font-weight: 500; }

  .works-index {
    display: grid; gap: 14px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  .tile {
    position: relative; overflow: hidden; text-decoration: none;
    display: block; background: var(--bg-dark); min-height: 260px;
  }
  .tile:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .tile:nth-child(2) { grid-column: span 5; }
  .tile:nth-child(3) { grid-column: span 5; }
  .tile img {
    width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
    transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1), filter 0.6s;
    filter: saturate(1.02);
  }
  .tile::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(24,32,24,0.82) 0%, rgba(24,32,24,0.05) 55%, rgba(24,32,24,0.25) 100%);
    transition: opacity 0.5s; opacity: 0.85;
  }
  .tile:hover img { transform: scale(1.05); }
  .tile-cap {
    position: absolute; inset: auto 0 0 0; z-index: 2;
    padding: 26px 28px; color: #f2f6f2;
  }
  .tile-cap .n {
    font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--gold-light); display: block; margin-bottom: 10px;
  }
  .tile-cap .t {
    font-family: var(--f-display); font-weight: 300; font-size: clamp(20px, 2vw, 30px);
    letter-spacing: -0.01em; line-height: 1.05;
  }
  .tile-cap .m {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(242,246,242,0.66); margin-top: 12px;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
  }
  .tile:hover .tile-cap .m { max-height: 40px; opacity: 1; }

  /* ============ PROJECT SPREADS ============ */
  .spread { background: var(--bg-dark); color: #e8f0e8; padding: 0; }
  .spread + .spread { border-top: 1px solid rgba(184,154,106,0.16); }
  .spread-lead { position: relative; width: 100%; overflow: hidden; }
  .spread-lead img {
    width: 100%; height: clamp(360px, 74vh, 760px); object-fit: cover;
    filter: saturate(1.03);
  }
  .spread-lead .lead-tag {
    position: absolute; left: var(--pad-x); bottom: 26px;
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(242,246,242,0.7); z-index: 2;
  }
  .spread-lead::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(24,32,24,0.55), transparent 40%);
  }
  /* Top scrim keeps the fixed nav logo/wordmark legible over bright banner images */
  .spread-lead::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 200px; z-index: 1;
    background: linear-gradient(to bottom, rgba(24,32,24,0.68) 0%, rgba(24,32,24,0.28) 55%, transparent 100%);
    pointer-events: none;
  }
  /* In-banner navigation: back to all projects + prev/next, sitting just under the fixed nav */
  .lead-nav {
    position: absolute; z-index: 3;
    top: calc(var(--nav-h) + 18px); left: var(--pad-x); right: var(--pad-x);
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
  }
  .lead-nav a {
    font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
    color: rgba(242,246,242,0.92); text-decoration: none;
    display: inline-flex; align-items: center; gap: 9px;
    transition: color 0.3s ease, gap 0.3s ease;
  }
  .lead-nav a:hover { color: var(--gold-light); }
  .lead-back::before { content: '\2190'; font-size: 13px; }
  .lead-back:hover { gap: 13px; }
  .lead-steps { display: flex; align-items: center; gap: 20px; }
  .lead-steps .sep { width: 1px; height: 12px; background: rgba(242,246,242,0.32); }
  .lead-step.next::after { content: '\2192'; font-size: 13px; }
  .lead-step.prev::before { content: '\2190'; font-size: 13px; }
  @media (max-width: 560px) {
    .lead-nav { top: calc(var(--nav-h) + 12px); }
    .lead-step.prev, .lead-steps .sep { display: none; }
  }
  .spread-body {
    max-width: 1440px; margin: 0 auto;
    padding: clamp(52px, 8vw, 96px) var(--pad-x) clamp(40px, 6vw, 72px);
    display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 6vw, 90px); align-items: start;
  }
  .spread-num {
    font-family: var(--f-display); font-weight: 300; font-size: 13px;
    letter-spacing: 0.2em; color: var(--gold-light); margin-bottom: 22px;
  }
  .spread-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(34px, 4.6vw, 66px); line-height: 1.0;
    letter-spacing: -0.02em; color: #f2f6f2; margin-bottom: 20px;
  }
  .spread-title em { font-style: italic; color: var(--gold-light); }
  .spread-place {
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 26px;
  }
  .spread-meta {
    list-style: none; border-top: 1px solid rgba(232,240,232,0.14);
  }
  .spread-meta li {
    display: flex; justify-content: space-between; gap: 20px;
    padding: 13px 0; border-bottom: 1px solid rgba(232,240,232,0.1);
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .spread-meta li .k { color: rgba(232,240,232,0.42); }
  .spread-meta li .v { color: rgba(232,240,232,0.86); text-align: right; }
  .spread-desc { font-size: 15px; line-height: 2.05; color: rgba(232,240,232,0.7); letter-spacing: 0.01em; }
  .spread-desc p + p { margin-top: 20px; }
  .spread-desc .drop::first-letter {
    font-family: var(--f-display); font-size: 3.1em; float: left;
    line-height: 0.82; padding: 6px 14px 0 0; color: var(--gold-light); font-weight: 300;
  }

  /* Masonry gallery */
  .gallery {
    padding: 0 var(--pad-x) clamp(56px, 9vw, 110px);
    max-width: 1600px; margin: 0 auto;
    columns: 3; column-gap: 14px;
  }
  .gallery figure {
    position: relative; break-inside: avoid; margin-bottom: 14px;
    overflow: hidden; background: #26302700; cursor: pointer;
  }
  .gallery img {
    width: 100%; height: auto;
    transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
    filter: saturate(1.02);
  }
  .gallery figure:hover img { transform: scale(1.045); }
  .gallery figcaption {
    position: absolute; inset: auto 0 0 0;
    padding: 20px 18px 16px; color: #f2f6f2;
    background: linear-gradient(to top, rgba(24,32,24,0.8), transparent);
    display: flex; align-items: baseline; gap: 12px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
  .gallery figcaption .num {
    font-family: var(--f-display); font-size: 13px; color: var(--gold-light);
  }
  .gallery figcaption .txt {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(242,246,242,0.85);
  }
  @media (max-width: 980px) { .gallery { columns: 2; } }
  @media (max-width: 560px) { .gallery { columns: 1; } }

  /* Plans */
  .plans {
    max-width: 1600px; margin: 0 auto;
    padding: 0 var(--pad-x) clamp(56px, 9vw, 110px);
  }
  .plans-head {
    border-top: 1px solid rgba(184,154,106,0.24);
    padding-top: clamp(34px, 5vw, 56px); margin-bottom: clamp(26px, 3.6vw, 44px);
  }
  .plans-head .eyebrow { margin-bottom: 18px; }
  .plans-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(30px, 3.8vw, 54px); line-height: 1.0;
    letter-spacing: -0.02em; color: #f2f6f2;
  }
  .plans-sub {
    margin-top: 14px; font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold-light);
  }
  .plan-figure {
    background: #f6f4ef; padding: clamp(20px, 3.4vw, 48px);
    cursor: pointer; overflow: hidden;
  }
  .plan-figure img {
    width: 100%; height: auto; display: block;
    transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1);
  }
  .plan-figure:hover img { transform: scale(1.02); }

  /* Oasis (single image) variant */
  .spread.single .spread-body { padding-bottom: clamp(56px, 9vw, 110px); }
  .spread.single .spread-lead img { height: clamp(320px, 60vh, 620px); }

  /* ============ EXPERTISE ============ */
  .expertise { background: var(--bg-main); }
  .exp-grid {
    display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 100px); align-items: start;
  }
  .exp-list { border-top: 1px solid var(--border); }
  .exp-item {
    display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 56px);
    padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--border);
    align-items: start; transition: padding-left 0.4s ease;
  }
  .exp-item:hover { padding-left: 14px; }
  .exp-num {
    font-family: var(--f-display); font-size: 12px; letter-spacing: 0.14em;
    color: var(--gold); padding-top: 6px;
  }
  .exp-name {
    font-family: var(--f-display); font-weight: 300; font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1; letter-spacing: -0.01em; color: var(--text-dark); margin-bottom: 14px;
  }
  .exp-desc { font-size: 14px; line-height: 1.95; color: var(--text-mid); max-width: 60ch; }

  /* ============ STUDIO (vision / mission / values) ============ */
  .studio { background: var(--bg-deep); }
  .studio-top {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 80px); align-items: start; margin-bottom: clamp(56px, 8vw, 96px);
  }
  .vision-stmt {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(20px, 2.2vw, 30px); line-height: 1.32; letter-spacing: -0.01em;
    color: var(--text-dark); margin: 26px 0 32px;
  }
  .tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .tag {
    padding: 9px 18px; border: 1px solid var(--border);
    font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--forest); transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .tag:hover { background: var(--forest); color: var(--bg-main); border-color: var(--forest); }

  .mission-stack { display: flex; flex-direction: column; gap: clamp(20px, 2.5vw, 32px); margin-top: clamp(32px, 4vw, 48px); }
  .mission-box { background: var(--bg-dark); padding: clamp(36px, 4vw, 56px); }
  .mission-box .eyebrow { color: var(--gold-light); margin-bottom: 24px; }
  .mission-box .eyebrow::before { background: var(--gold-light); }
  .mission-quote {
    font-family: var(--f-display); font-weight: 300; font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45; color: #eef4ee; margin-bottom: 26px; letter-spacing: -0.01em;
  }
  .mission-rule { height: 1px; background: rgba(232,240,232,0.14); margin-bottom: 26px; }
  .mission-body { font-size: 13px; line-height: 2; color: rgba(232,240,232,0.5); }

  .values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: var(--border-soft);
  }
  .value-item { background: var(--bg-deep); padding: 38px 30px 42px; }
  .value-word {
    font-family: var(--f-display); font-weight: 300; font-size: 24px;
    color: var(--forest); margin-bottom: 16px; letter-spacing: -0.01em;
  }
  .value-word::before {
    content: ''; display: block; width: 28px; height: 1px;
    background: var(--gold); margin-bottom: 18px;
  }
  .value-desc { font-size: 12.5px; line-height: 1.9; color: var(--text-mid); }

  /* ============ PHILOSOPHY ============ */
  .philosophy { background: var(--bg-dark); color: #e8f0e8; }
  .philosophy .eyebrow { color: var(--gold-light); }
  .philosophy .eyebrow::before { background: var(--gold-light); }
  .philosophy .section-title { color: #eef4ee; }
  .philosophy .section-title em { color: var(--gold-light); }
  .phil-head { margin-bottom: clamp(44px, 6vw, 76px); }
  .pillars {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(232,240,232,0.12);
  }
  .pillar {
    padding: 46px clamp(24px, 3vw, 44px) 52px;
    border-right: 1px solid rgba(232,240,232,0.1); position: relative;
  }
  .pillar:last-child { border-right: none; }
  .pillar-num {
    font-family: var(--f-display); font-weight: 300; font-size: 12px;
    letter-spacing: 0.2em; color: var(--gold-light); margin-bottom: 30px;
  }
  .pillar-name {
    font-family: var(--f-display); font-weight: 300; font-size: 26px;
    color: #eef4ee; margin-bottom: 18px; letter-spacing: -0.01em;
  }
  .pillar-desc { font-size: 13.5px; line-height: 1.95; color: rgba(232,240,232,0.55); }

  /* ============ CONTACT ============ */
  .contact { background: var(--bg-main); }
  .contact-inner { max-width: 1440px; margin: 0 auto; }
  .contact-grid {
    display: grid; grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(40px, 6vw, 90px); align-items: end;
  }
  .contact-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(38px, 6vw, 92px); line-height: 0.98; letter-spacing: -0.025em;
    color: var(--text-dark);
  }
  .contact-title em { font-style: italic; color: var(--forest); }
  .contact-side { }
  .contact-side p { font-size: 14px; line-height: 1.95; color: var(--text-mid); margin-bottom: 28px; }
  .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 34px; font-size: 10px; font-weight: 500; letter-spacing: 0.26em;
    text-transform: uppercase; text-decoration: none; transition: all 0.35s ease;
  }
  .btn-fill { background: var(--forest); color: var(--bg-main); }
  .btn-fill:hover { background: var(--forest-light); }
  .btn-ghost { border: 1px solid var(--border); color: var(--text-dark); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .contact-social {
    margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border);
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-light);
  }
  .contact-social a { color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
  .contact-social a:hover { border-bottom-color: var(--gold); }

  /* ============ FOOTER ============ */
  footer { background: var(--bg-dark); color: #e8f0e8; padding: clamp(56px, 8vw, 90px) var(--pad-x) 36px; }
  .footer-inner { max-width: 1440px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(32px, 5vw, 80px);
    padding-bottom: clamp(44px, 6vw, 70px);
  }
  .footer-logo {
    font-family: var(--f-display); font-weight: 500; font-size: 20px;
    letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 20px;
  }
  .footer-tag {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(232,240,232,0.42); line-height: 2.2;
  }
  .footer-col-title {
    font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 22px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
  .footer-links a {
    font-size: 12.5px; color: rgba(232,240,232,0.45);
    text-decoration: none; transition: color 0.3s; letter-spacing: 0.02em;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(232,240,232,0.1); padding-top: 26px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-size: 10px; color: rgba(232,240,232,0.28); letter-spacing: 0.12em; }
  .footer-est { font-family: var(--f-display); font-size: 11px; color: rgba(184,154,106,0.5); letter-spacing: 0.2em; }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    position: fixed; inset: 0; z-index: 1000; display: none;
    align-items: center; justify-content: center;
    background: rgba(20,26,20,0.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    padding: 40px;
  }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 40px 120px -40px #000; }
  .lightbox-cap {
    position: absolute; bottom: 26px; left: 0; right: 0; text-align: center;
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(242,246,242,0.7);
  }
  .lightbox-close {
    position: absolute; top: 24px; right: 30px; background: none; border: none;
    color: rgba(242,246,242,0.8); font-size: 30px; line-height: 1; cursor: pointer;
    width: 44px; height: 44px; transition: color 0.3s;
  }
  .lightbox-close:hover { color: var(--gold-light); }

  /* ============ REVEAL ============ */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-slide, .hero-slide img { transition: none; }
    *, *::before, *::after { animation-duration: 0.001ms !important; }
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .intro-grid, .spread-body, .exp-grid, .studio-top, .contact-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > div:first-child { grid-column: 1 / -1; }
    .contact-grid { gap: 40px; }
  }
  @media (max-width: 768px) {
    .nav-links {
      position: fixed; inset: 0; height: 100vh; width: 100%;
      background: var(--bg-dark); color: #eef4ee;
      flex-direction: column; align-items: center; justify-content: center; gap: 34px;
      opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
    }
    .nav-links.open { opacity: 1; pointer-events: auto; }
    .nav-links a { font-size: 13px; letter-spacing: 0.2em; color: #eef4ee; opacity: 0.9; }
    .nav-toggle { display: block; }
    nav.scrolled .nav-toggle { color: var(--text-dark); }
    /* Shrink only the RL mark (not fonts) when scrolled on mobile to keep the bar compact */
    nav.scrolled { height: 52px; }
    nav.scrolled .nav-logo { gap: 3px; }
    nav.scrolled .nav-logo .nav-mark { height: 15px; }
    .works-index { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .tile, .tile:nth-child(n) { grid-column: 1 / -1; grid-row: auto; min-height: 300px; }
    .tile-cap .m { max-height: 40px; opacity: 1; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid rgba(232,240,232,0.1); }
    .pillar:last-child { border-bottom: none; }
    .studio-top { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .values-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-sub { flex-direction: column; align-items: flex-start; }
    .hero-feature { text-align: left; }
    .hero-tagline { white-space: normal; line-height: 1.65; }
    .hero-tagline .ht-phrase { display: block; }
    .hero-tagline .ht-sep { display: none; }
  }

  /* ============ WORKS CTA (home) ============ */
  .works-cta {
    display: flex; justify-content: center; margin-top: clamp(44px, 6vw, 72px);
  }

  /* ============ PAGE HERO (subpage banner) ============ */
  .page-hero {
    position: relative; overflow: hidden;
    padding-top: calc(var(--nav-h) + clamp(70px, 12vh, 150px));
    padding-bottom: clamp(60px, 10vh, 130px);
    padding-left: var(--pad-x); padding-right: var(--pad-x);
    background: var(--bg-dark); color: #eef4ee; isolation: isolate;
  }
  .page-hero.img-hero { min-height: 74vh; display: flex; align-items: flex-end; }
  .page-hero-bg { position: absolute; inset: 0; z-index: -2; }
  .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
  .page-hero::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to top, rgba(24,32,24,0.86) 0%, rgba(24,32,24,0.3) 50%, rgba(24,32,24,0.66) 100%);
  }
  .page-hero .eyebrow { color: var(--gold-light); }
  .page-hero .eyebrow::before { background: var(--gold-light); }
  .page-hero-inner { max-width: 1440px; margin: 0 auto; width: 100%; }
  .page-hero-title {
    font-family: var(--f-display); font-weight: 300;
    font-size: clamp(40px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.02em;
    color: #f2f6f2; margin-top: 22px; max-width: 16ch;
  }
  .page-hero-title em { font-style: italic; color: var(--gold-light); }
  .page-hero-sub {
    margin-top: 26px; font-size: 15px; line-height: 1.9; max-width: 62ch;
    color: rgba(242,246,242,0.72);
  }

  /* ============ BREADCRUMB / BACK ============ */
  .crumb {
    max-width: 1440px; margin: 0 auto;
    padding: calc(var(--nav-h) + 26px) var(--pad-x) 0;
  }
  .crumb a {
    font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
    transition: gap 0.3s ease, color 0.3s ease;
  }
  .crumb a::before { content: '\2190'; font-size: 13px; }
  .crumb a:hover { gap: 16px; color: var(--forest); }

  /* ============ PROJECT-PAGE NAV (compact + sticky above the banner) ============ */
  /* The site nav is fixed, so it already stays visible while scrolling. On project
     pages we shrink it (per request) so it reads clearly as the bar ABOVE the
     in-banner "All Projects / prev / next" row, without dominating the artwork. */
  body.project { --nav-h: 62px; }
  body.project nav#mainNav { box-shadow: 0 1px 0 var(--border-soft), 0 8px 26px rgba(24,32,24,0.16); }
  body.project nav#mainNav .nav-logo { gap: 3px; }
  body.project nav#mainNav .nav-logo .nav-mark { height: 22px; }

  @media (max-width: 768px) {
    /* Mobile fix: the fixed site nav used to overlap the banner image while the
       in-banner nav sat right beneath it — reading as two stacked navigation bars
       over the photo. Now the banner starts below the fixed nav (no image cut) and
       the in-banner nav is hidden, leaving a single site nav. The "All Projects /
       prev / next" links remain available in the footer project nav below. */
    body.project .spread.single { padding-top: var(--nav-h); }
    body.project .lead-nav { display: none; }
  }

  /* ============ PROJECT NAV (prev / next / all) ============ */
  .project-nav {
    background: var(--bg-deep); border-top: 1px solid var(--border-soft);
    padding: clamp(40px, 6vw, 70px) var(--pad-x);
  }
  .project-nav-inner {
    max-width: 1440px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  }
  .project-nav a {
    text-decoration: none; color: var(--text-dark);
    font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s, gap 0.3s;
  }
  .project-nav a:hover { color: var(--gold); }
  .project-nav .pn-all {
    font-family: var(--f-display); letter-spacing: 0.08em; text-transform: none;
    font-size: 15px; color: var(--forest);
  }

  /* ============ PROJECTS INDEX (filterable) ============ */
  .projects-index { background: var(--bg-main); }
  .filter-bar {
    max-width: 1440px; margin: 0 auto clamp(38px, 5vw, 60px);
    display: flex; justify-content: space-between; align-items: center;
    gap: 22px; flex-wrap: wrap;
    border-bottom: 1px solid var(--border); padding-bottom: 24px;
  }
  .filter-groups { display: flex; gap: 10px; flex-wrap: wrap; }
  .filter-btn {
    padding: 10px 22px; border: 1px solid var(--border); background: transparent;
    font-family: var(--f-body); font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--forest); cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
  .filter-btn.active { background: var(--forest); color: var(--bg-main); border-color: var(--forest); }
  .filter-btn .cnt { opacity: 0.55; margin-left: 8px; font-size: 9px; }

  .search-field { position: relative; min-width: 240px; flex: 0 1 320px; }
  .search-field input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid var(--border); padding: 12px 30px 12px 4px;
    font-family: var(--f-body); font-size: 13px; letter-spacing: 0.04em; color: var(--text-dark);
    transition: border-color 0.3s;
  }
  .search-field input::placeholder { color: var(--text-light); letter-spacing: 0.14em; text-transform: uppercase; font-size: 10px; }
  .search-field input:focus { outline: none; border-bottom-color: var(--gold); }
  .search-field .search-ico {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    width: 15px; height: 15px; opacity: 0.5; pointer-events: none;
  }

  .typology-group { max-width: 1440px; margin: 0 auto; }
  .typology-group + .typology-group { margin-top: clamp(56px, 8vw, 96px); }
  .typology-head {
    display: flex; align-items: baseline; gap: 18px;
    margin-bottom: clamp(24px, 3vw, 38px);
  }
  .typology-head h2 {
    font-family: var(--f-display); font-weight: 300; font-size: clamp(24px, 3.4vw, 42px);
    letter-spacing: -0.01em; color: var(--text-dark);
  }
  .typology-head .tg-count { font-size: 12px; letter-spacing: 0.14em; color: var(--gold); }

  .project-grid {
    display: grid; gap: clamp(16px, 2vw, 26px);
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }
  .pcard {
    position: relative; display: block; text-decoration: none; overflow: hidden;
    background: var(--bg-dark); min-height: 420px; color: #f2f6f2;
  }
  .pcard img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1), filter 0.6s; filter: saturate(1.02);
  }
  .pcard::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(24,32,24,0.85) 0%, rgba(24,32,24,0.08) 55%, rgba(24,32,24,0.28) 100%);
    transition: opacity 0.5s;
  }
  .pcard:hover img { transform: scale(1.05); }
  .pcard-cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 28px 28px 30px; }
  .pcard-cap .n {
    font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--gold-light); display: block; margin-bottom: 12px;
  }
  .pcard-cap .t {
    font-family: var(--f-display); font-weight: 300; font-size: clamp(23px, 2.2vw, 30px);
    line-height: 1.05; letter-spacing: -0.01em;
  }
  .pcard-cap .p {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(242,246,242,0.66); margin-top: 12px;
  }
  .pcard-arrow {
    position: absolute; top: 24px; right: 24px; z-index: 2;
    width: 40px; height: 40px; border: 1px solid rgba(242,246,242,0.35); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #f2f6f2;
    opacity: 0; transform: translate(-6px, 6px); transition: opacity 0.4s, transform 0.4s, background 0.4s;
  }
  .pcard:hover .pcard-arrow { opacity: 1; transform: translate(0,0); background: rgba(138,111,58,0.85); border-color: transparent; }

  .no-results {
    max-width: 1440px; margin: 0 auto; text-align: center;
    padding: clamp(50px, 8vw, 90px) 0; display: none;
  }
  .no-results.show { display: block; }
  .no-results p {
    font-family: var(--f-display); font-size: clamp(20px, 2.4vw, 30px);
    color: var(--text-mid); font-style: italic;
  }

  @media (max-width: 560px) {
    .project-grid { grid-template-columns: 1fr; }
    .filter-bar { align-items: stretch; }
    .search-field { flex-basis: auto; }
  }
