/* ---------------------- DESIGN TOKENS ---------------------- */
:root {
  --bone: #F4F0E8;
  --bone-2: #ECE6DA;
  --bone-3: #E2DBCB;
  --ink: #1C1915;
  --ink-2: #2A2620;
  --muted: #8A8477;
  --line: rgba(28, 25, 21, 0.14);
  --line-soft: rgba(28, 25, 21, 0.08);
  --accent: oklch(0.52 0.08 40);
  --accent-soft: oklch(0.88 0.04 40);

  --serif: 'Instrument Serif', 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'DM Sans', 'Söhne', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --h-nav: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bone); }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; }
.tiny { font-size: 10.5px; }
.muted { color: var(--muted); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.container-wide { max-width: 1800px; margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-header { margin-bottom: clamp(40px, 6vw, 80px); max-width: 700px; }
.section-title { font-size: clamp(42px, 6vw, 84px); line-height: 0.95; margin-top: 8px; }
.section-sub { margin-top: 24px; font-size: 17px; color: var(--ink-2); max-width: 560px; text-wrap: pretty; }
.page-title { font-size: clamp(54px, 10vw, 140px); line-height: 0.9; margin-top: 12px; letter-spacing: -0.02em; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1); }
.reveal-on { opacity: 1; transform: none; }

.img-wrap { overflow: hidden; background: var(--bone-3); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.img-wrap img.img-on { opacity: 1; }

.btn-line { display: inline-flex; align-items: center; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--ink); color: var(--ink); transition: gap .3s ease; }
.btn-line:hover { gap: 20px; }
.btn-line .arrow { font-size: 18px; }

/* ---------------------- NAV ---------------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--h-nav); transition: background .4s ease, color .4s ease, border-color .4s ease; border-bottom: 1px solid transparent; }
.nav-transparent { color: var(--bone); }
.nav-solid { background: rgba(244, 240, 232, 0.88); backdrop-filter: blur(12px); border-bottom-color: var(--line-soft); color: var(--ink); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo-img { height: 32px; width: auto; display: block; transition: filter .4s ease; }
.nav-transparent .nav-logo-img { filter: brightness(0) invert(1); }
.nav-solid .nav-logo-img { filter: brightness(0); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 14px; letter-spacing: 0.01em; position: relative; padding: 4px 0; opacity: 0.85; transition: opacity .3s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.lang-switch button { padding: 0; opacity: 0.5; transition: opacity .2s; }
.lang-switch button.on { opacity: 1; }
.lang-switch span { opacity: 0.5; }
.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-burger span { display: block; width: 20px; height: 1px; background: currentColor; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
.mobile-menu { position: fixed; inset: 0; background: rgba(28,25,21,.6); z-index: 200; }
.mobile-menu-inner { position: absolute; right: 0; top: 0; bottom: 0; width: min(380px, 90vw); background: var(--bone); padding: 40px 32px; display: flex; flex-direction: column; gap: 20px; color: var(--ink); }
.mobile-menu-inner a { font-family: var(--serif); font-size: 32px; }
.mobile-close { align-self: flex-end; font-size: 20px; }

/* ---------------------- HERO ---------------------- */
.hero { position: relative; height: 100vh; min-height: 640px; color: var(--bone); overflow: hidden; }
.hero-images { position: absolute; inset: 0; }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); transition: opacity 1.6s ease, transform 8s linear; }
.hero-img.on { opacity: 1; transform: scale(1); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; max-width: var(--max); margin: 0 auto; padding: calc(var(--h-nav) + 40px) var(--pad) 40px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; opacity: 0.9; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.hero-title { font-size: clamp(56px, 9vw, 140px); line-height: 0.92; max-width: 14ch; margin-top: 24px; }
.hero-meta { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: end; padding-top: 40px; border-top: 1px solid rgba(244,240,232,0.3); }
.hero-meta .num { font-size: 14px; }
.hero-meta .sep { opacity: 0.5; }
.hero-caption { min-width: 0; }
.hero-caption-title { font-size: 22px; margin-top: 4px; }
.hero-scroll { display: flex; align-items: center; gap: 14px; }
.hero-scroll .scroll-line { display: block; width: 40px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.hero-scroll .scroll-line::after { content: ''; position: absolute; inset: 0; background: var(--bone); animation: scrollLine 2.4s infinite; }
@keyframes scrollLine { 0%{transform:translateX(-100%);} 50%{transform:translateX(0);} 100%{transform:translateX(100%);} }
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
  .hero-scroll { display: none; }
}

/* ---------------------- INTRO / QUOTE ---------------------- */
.intro-section { padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(60px, 8vw, 100px); }
.intro-grid { display: grid; grid-template-columns: 140px 1fr; gap: 40px; align-items: start; }
.quote { font-size: clamp(28px, 4vw, 52px); line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; max-width: 22ch; }
.intro-sub { grid-column: 2; margin-top: 32px; max-width: 520px; color: var(--ink-2); font-size: 17px; text-wrap: pretty; }
@media (max-width: 720px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-sub { grid-column: 1; }
}

/* ---------------------- SCALES ---------------------- */
.scales-section { background: var(--bone-2); }
.scales-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.scale-card { display: flex; flex-direction: column; background: var(--bone); overflow: hidden; transition: transform .5s ease; }
.scale-card:hover { transform: translateY(-4px); }
.scale-card-img { height: 260px; background-size: cover; background-position: center; filter: grayscale(0.15); transition: filter .5s, transform .8s; }
.scale-card:hover .scale-card-img { filter: grayscale(0); transform: scale(1.04); }
.scale-card-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.scale-card-title { font-size: 32px; line-height: 1; }
.scale-card-sub { color: var(--ink-2); font-size: 14px; line-height: 1.5; flex: 1; }
.scale-card-count { padding-top: 12px; border-top: 1px solid var(--line-soft); }
@media (max-width: 960px) { .scales-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scales-grid { grid-template-columns: 1fr; } }

/* ---------------------- SELECTED WORK (editorial) ---------------------- */
.selected-section { padding-top: clamp(100px, 14vw, 180px); }
.selected-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px 24px; }
.selected-item { grid-column: span 12; }
.selected-item.layout-large { grid-column: 2 / span 10; }
.selected-item.layout-portrait { grid-column: span 5; margin-top: 80px; }
.selected-item.layout-portrait:nth-of-type(3n) { grid-column: 3 / span 5; }
.selected-item.layout-landscape { grid-column: 6 / span 7; margin-top: -120px; }
.selected-item.layout-landscape:nth-of-type(5n) { grid-column: span 8; margin-top: 60px; }
@media (max-width: 900px) {
  .selected-item, .selected-item.layout-large, .selected-item.layout-portrait, .selected-item.layout-landscape { grid-column: 1 / -1; margin-top: 0; }
}

.selected-link { display: block; }
.selected-img-wrap { position: relative; overflow: hidden; background: var(--bone-3); }
.selected-img { aspect-ratio: 16 / 11; background-size: cover; background-position: center; transition: transform 1.4s cubic-bezier(.2,.6,.2,1); }
.layout-portrait .selected-img { aspect-ratio: 3 / 4; }
.layout-large .selected-img { aspect-ratio: 21 / 10; }
.selected-link:hover .selected-img { transform: scale(1.035); }
.selected-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity .4s; color: var(--bone); background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35)); }
.selected-link:hover .selected-overlay { opacity: 1; }
.selected-caption { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); margin-top: 4px; }
.selected-title { font-size: clamp(22px, 2.4vw, 30px); }
.layout-large .selected-title { font-size: clamp(28px, 3vw, 40px); }

.view-all-wrap { margin-top: 120px; text-align: center; display: flex; justify-content: center; }

/* ---------------------- BANNER ---------------------- */
.banner { position: relative; height: 70vh; min-height: 480px; overflow: hidden; color: var(--bone); }
.banner-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.banner-icon { position: absolute; top: 50%; right: clamp(20px, 8vw, 140px); transform: translateY(-50%); width: clamp(180px, 28vw, 380px); height: auto; opacity: 0.14; pointer-events: none; mix-blend-mode: screen; z-index: 1; }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.1)); display: flex; align-items: flex-end; padding: var(--pad); z-index: 2; }
.banner-overlay > div { max-width: var(--max); margin: 0 auto; width: 100%; }
.banner-text { font-size: clamp(32px, 4.5vw, 68px); line-height: 1.05; max-width: 22ch; margin-top: 16px; text-wrap: balance; }

/* ---------------------- WORK INDEX ---------------------- */
.page-header { padding: calc(var(--h-nav) + 80px) 0 40px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 56px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 18px 0; }
.filter-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; border: 1px solid transparent; transition: background .3s, border-color .3s; font-size: 14px; }
.filter-btn .mono { opacity: 0.4; }
.filter-btn:hover { background: var(--bone-2); }
.filter-btn.on { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.filter-btn.on .mono { opacity: 0.6; }

.work-grid-section { padding-top: 40px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 32px; }
.work-item { display: block; }
.work-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; overflow: hidden; position: relative; transition: transform .8s ease; }
.work-img-hover { position: absolute; inset: 0; background: rgba(28,25,21,.4); color: var(--bone); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity .3s; }
.work-item:hover .work-img-hover { opacity: 1; }
.work-item:hover .work-img { transform: scale(1.02); }
.work-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); margin-top: 0; }
.work-title { font-size: 22px; line-height: 1.15; margin-top: 4px; }
@media (max-width: 960px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }

/* ---------------------- PROJECT CASE STUDY ---------------------- */
.project-hero { position: relative; height: 85vh; min-height: 520px; overflow: hidden; }
.project-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; animation: slowZoom 14s ease-out forwards; }
.project-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.05)); }

.project-intro { padding: clamp(60px, 9vw, 120px) 0; }
.project-back { margin-bottom: 40px; }
.project-back a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.6; transition: opacity .3s; }
.project-back a:hover { opacity: 1; }
.project-title { font-size: clamp(48px, 8vw, 120px); line-height: 0.92; margin-top: 8px; letter-spacing: -0.02em; text-wrap: balance; }

.project-meta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; margin-top: 80px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.project-meta-val { font-family: var(--serif); font-size: 20px; margin-top: 6px; }
@media (max-width: 900px) { .project-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.project-summary-grid { display: grid; grid-template-columns: 140px 1fr; gap: 40px; margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--line-soft); }
.project-summary { font-size: clamp(22px, 2.8vw, 36px); line-height: 1.3; max-width: 28ch; }
@media (max-width: 720px) { .project-summary-grid { grid-template-columns: 1fr; } }

.project-gallery { padding: 40px 0; }
.project-gallery-item { margin: 60px 0; }
.project-gallery-item.full img { width: 100%; max-height: 90vh; object-fit: cover; }
.project-gallery-item.inset { max-width: 880px; margin-left: auto; margin-right: auto; }
.project-gallery-item.inset img { width: 100%; }
.project-gallery-cap { margin-top: 14px; }

.project-body-section { background: var(--bone-2); }
.project-body-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.project-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
.project-body { font-size: 17px; line-height: 1.65; color: var(--ink-2); max-width: 58ch; margin-top: 16px; text-wrap: pretty; }
.project-body + .project-body { margin-top: 20px; }
@media (max-width: 900px) { .project-body-grid { grid-template-columns: 1fr; gap: 32px; } }

.related-section { padding-top: clamp(80px, 12vw, 140px); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.related-img { aspect-ratio: 4/5; background-size: cover; background-position: center; transition: transform .8s; }
.related-item:hover .related-img { transform: scale(1.02); }
.related-meta { padding-top: 14px; border-top: 1px solid var(--line-soft); margin-top: 0; }
.related-title { font-size: 22px; margin-top: 4px; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }

.next-project { position: relative; height: 60vh; min-height: 420px; overflow: hidden; cursor: pointer; color: var(--bone); }
.next-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1s; filter: brightness(0.65); }
.next-project:hover .next-img { transform: scale(1.04); }
.next-content { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.next-title { font-size: clamp(40px, 6vw, 84px); line-height: 1; }

/* ---------------------- ABOUT ---------------------- */
.about-hero-section { padding: calc(var(--h-nav) + 80px) 0 20px; }
.about-title { max-width: 14ch; }
.about-body-section { padding-top: 40px; padding-bottom: clamp(60px, 8vw, 120px); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-lead { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; text-wrap: pretty; margin-top: 16px; }
.about-body { font-size: 17px; line-height: 1.7; color: var(--ink-2); max-width: 58ch; margin-top: 32px; text-wrap: pretty; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }

.about-image-section { padding: 0 var(--pad); }
.about-image { width: 100%; max-height: 80vh; object-fit: cover; }

.stats-section { padding-top: clamp(80px, 10vw, 120px); padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-val { font-size: clamp(48px, 6vw, 80px); line-height: 1; letter-spacing: -0.02em; }
.stat .mono { margin-top: 12px; display: block; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.team-section { padding-top: clamp(80px, 10vw, 140px); }
.directors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.director { display: grid; grid-template-columns: 1fr; gap: 24px; }
.director-img-wrap { aspect-ratio: 4/5; background: var(--bone-2); overflow: hidden; }
.director-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .8s; }
.director:hover .director-img-wrap img { filter: grayscale(0.3); }
.director-name { font-size: clamp(32px, 3.5vw, 48px); line-height: 1; margin-top: 6px; }
.director-bio { margin-top: 20px; font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 52ch; text-wrap: pretty; }
@media (max-width: 900px) { .directors-grid { grid-template-columns: 1fr; gap: 60px; } }

.team-list { margin-top: 100px; padding-top: 40px; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.team-col { display: flex; flex-direction: column; gap: 20px; }
.team-row { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 16px 0; border-top: 1px solid var(--line-soft); align-items: baseline; }
.team-row:first-of-type { border-top: none; }
.team-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.team-names { font-family: var(--serif); font-size: 20px; line-height: 1.3; }
@media (max-width: 900px) { .team-list { grid-template-columns: 1fr; gap: 40px; } .team-row { grid-template-columns: 1fr; gap: 4px; } }

/* ---------------------- PRESS ---------------------- */
.press-featured-section { padding-top: 40px; padding-bottom: 40px; }
.press-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.press-featured-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: var(--bone-3); transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.press-featured:hover .press-featured-img { transform: scale(1.02); }
.press-featured-body { display: flex; flex-direction: column; gap: 18px; }
.press-featured-title { font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.015em; text-wrap: balance; }
.press-featured-sub { font-size: 17px; color: var(--ink-2); max-width: 480px; text-wrap: pretty; }
.press-featured-cta { padding-top: 8px; border-top: 1px solid var(--ink); display: inline-flex; padding: 14px 0; gap: 10px; border-bottom: 1px solid var(--ink); align-self: flex-start; transition: gap .3s; }
.press-featured:hover .press-featured-cta { gap: 18px; }
@media (max-width: 900px) { .press-featured { grid-template-columns: 1fr; gap: 30px; } }

.press-grid-section { padding-top: 60px; padding-bottom: 80px; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 36px; }
.press-card { display: flex; flex-direction: column; gap: 16px; transition: transform .4s ease; }
.press-card:hover { transform: translateY(-4px); }
.press-card-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: var(--bone-3); transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.press-card:hover .press-card-img { transform: scale(1.03); }
.press-card-body { display: flex; flex-direction: column; gap: 8px; }
.press-card-title { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.15; text-wrap: balance; }
@media (max-width: 900px) { .press-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }
@media (max-width: 560px) { .press-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------------------- PRESS DETAIL ---------------------- */
.press-detail-hero { position: relative; height: clamp(50vh, 70vh, 760px); overflow: hidden; }
.press-detail-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--bone-3); }
.press-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,25,21,0) 40%, rgba(28,25,21,0.45) 100%); }

.press-detail-intro { padding-top: 70px; padding-bottom: 60px; }
.press-detail-title { font-size: clamp(44px, 7vw, 96px); line-height: 0.95; letter-spacing: -0.02em; margin-top: 12px; text-wrap: balance; }
.press-detail-sub { font-size: clamp(19px, 2vw, 24px); color: var(--ink-2); max-width: 820px; margin-top: 18px; text-wrap: pretty; font-style: italic; }
.press-detail-body-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; margin-top: 64px; }
.press-detail-meta { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.press-meta-val { font-size: 15px; color: var(--ink); margin-top: 4px; }
.press-meta-link { color: var(--accent); transition: opacity .2s; }
.press-meta-link:hover { opacity: 0.7; }
.press-detail-body { display: flex; flex-direction: column; gap: 22px; max-width: 680px; }
.press-detail-para { font-size: 17px; line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.press-detail-cta { margin-top: 24px; align-self: flex-start; }
@media (max-width: 900px) { .press-detail-body-grid { grid-template-columns: 1fr; gap: 40px; } }

.press-detail-gallery { padding: 40px 0 100px; display: flex; flex-direction: column; gap: 40px; }
.press-gallery-item { overflow: hidden; background: var(--bone-3); }
.press-gallery-item img { width: 100%; height: auto; display: block; }
.press-gallery-item.full img { aspect-ratio: auto; }
.press-gallery-item.inset { max-width: 1100px; margin: 0 auto; }

.awards-section { background: var(--bone-2); }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.award-link { display: block; transition: transform .4s ease; }
.award-link:hover { transform: translateY(-4px); }
.award-card { display: flex; flex-direction: column; gap: 16px; }
.award-card-img { aspect-ratio: 3 / 2; background-size: cover; background-position: center; background-color: var(--bone-3); }
.award-card-body { display: flex; flex-direction: column; gap: 6px; }
.award-card-title { font-size: clamp(19px, 1.8vw, 24px); line-height: 1.2; text-wrap: balance; }
.award-card-project { color: var(--ink-2); }
.award-card-org { margin-top: 6px; }
@media (max-width: 900px) { .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
@media (max-width: 560px) { .awards-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------------------- CONTACT ---------------------- */
.contact-section { padding-top: calc(var(--h-nav) + 80px); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: start; }
.contact-title { font-size: clamp(48px, 7.5vw, 104px); line-height: 0.95; max-width: 12ch; }
.contact-sub { margin-top: 32px; font-size: 18px; color: var(--ink-2); max-width: 50ch; text-wrap: pretty; }
.contact-details { margin-top: 80px; display: flex; flex-direction: column; gap: 32px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.contact-details > div { display: flex; flex-direction: column; gap: 8px; }
.contact-email { font-size: 24px; border-bottom: 1px solid var(--ink); align-self: flex-start; padding-bottom: 4px; }
.contact-addr { font-size: 16px; line-height: 1.5; }
.contact-social { display: flex; gap: 16px; font-size: 16px; }
.contact-social a { border-bottom: 1px solid var(--line); padding-bottom: 2px; }

.contact-form { display: flex; flex-direction: column; gap: 24px; padding: 40px; background: var(--bone-2); border: 1px solid var(--line-soft); }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form input, .contact-form select, .contact-form textarea { border: none; border-bottom: 1px solid var(--ink); background: transparent; padding: 10px 0; font-family: var(--sans); font-size: 16px; color: var(--ink); outline: none; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--accent); }
.contact-form button { margin-top: 16px; align-self: flex-start; }
.form-sent { padding: 40px; background: var(--bone-2); display: flex; flex-direction: column; gap: 16px; }
.form-sent p { font-size: 22px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.map-section { margin-top: 80px; }
.map-placeholder { position: relative; height: 420px; background: var(--ink); overflow: hidden; color: var(--bone); }
.map-grid { position: absolute; inset: 0; background-image:
    linear-gradient(0deg, rgba(244,240,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,240,232,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.map-pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--bone); margin: 0 auto 12px; position: relative; }
.map-pin-dot::before, .map-pin-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--bone); animation: pulse 2.4s infinite; }
.map-pin-dot::after { animation-delay: 1.2s; }
@keyframes pulse { from { transform: scale(1); opacity: 1; } to { transform: scale(3.5); opacity: 0; } }
.map-coords { position: absolute; bottom: 24px; right: 24px; color: var(--bone); opacity: 0.6; }

/* ---------------------- FOOTER ---------------------- */
.footer { background: var(--ink); color: var(--bone); padding: 80px var(--pad) 32px; }
.footer-top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(244,240,232,0.12); }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-mark { font-family: var(--serif); font-size: 48px; line-height: 1; }
.footer-logo-img { height: 42px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); }
@media (max-width: 520px) { .footer-logo-img { height: 36px; max-width: 140px; } }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col .mono { margin-bottom: 4px; color: rgba(244,240,232,0.5); }
.footer-link { font-size: 14px; opacity: 0.85; transition: opacity .3s; }
.footer-link:hover { opacity: 1; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 32px; display: flex; justify-content: space-between; color: rgba(244,240,232,0.5); }
.footer .muted { color: rgba(244,240,232,0.45); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------------------- TWEAKS PANEL ---------------------- */
.tweaks-panel { position: fixed; right: 20px; bottom: 20px; width: 300px; background: var(--bone); border: 1px solid var(--ink); padding: 24px; z-index: 150; box-shadow: 0 20px 40px -10px rgba(28,25,21,.25); font-family: var(--sans); }
.tweaks-panel h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.tweaks-panel .mono.muted { margin-bottom: 16px; display: block; }
.tweak-row { display: flex; flex-direction: column; gap: 8px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.tweak-row > label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opts button { padding: 6px 12px; border: 1px solid var(--line); font-size: 12px; border-radius: 999px; transition: background .2s, border-color .2s; }
.tweak-opts button.on { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatches button { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; transition: border-color .2s; }
.tweak-swatches button.on { border-color: var(--ink); }
.tweaks-close { position: absolute; top: 10px; right: 12px; font-size: 16px; opacity: 0.5; }

/* theme: dark */
body.theme-dark { --bone: #161411; --bone-2: #1E1B17; --bone-3: #2A251E; --ink: #EFE9DC; --ink-2: #D4CDBE; --muted: #7A746A; --line: rgba(239,233,220,.12); --line-soft: rgba(239,233,220,.08); }
body.theme-dark .nav-solid { background: rgba(22,20,17,.88); }
body.theme-dark .footer { background: #0D0B08; }
body.theme-dark .scales-section, body.theme-dark .project-body-section, body.theme-dark .awards-section { background: var(--bone-2); }

/* theme: warm (default-ish but more saturated) */
body.theme-warm { --bone: #F1E9D9; --bone-2: #E7DDC7; --bone-3: #D9CCB0; --accent: oklch(0.48 0.09 30); }

/* type variant: swiss (sans headings) */
body.type-swiss h1, body.type-swiss h2, body.type-swiss h3, body.type-swiss .serif { font-family: var(--sans); font-weight: 500; letter-spacing: -0.02em; }
body.type-swiss .hero-title, body.type-swiss .page-title, body.type-swiss .section-title { letter-spacing: -0.03em; }


/* ======================== HOME V2 ======================== */

/* --- HERO V2 --- */
.hero-v2 { position: relative; height: 100vh; min-height: 680px; color: var(--bone); overflow: hidden; background: #0a0a0a; }
.hero-v2-bg { position: absolute; inset: 0; }
.hero-v2-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s cubic-bezier(.4,0,.2,1); will-change: transform, opacity; }
.hero-v2-img.on { opacity: 1; }
.hero-v2-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.45) 30%, rgba(8,8,8,0.5) 55%, rgba(8,8,8,0.65) 80%, rgba(8,8,8,0.85) 100%);
}
.hero-v2-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 55%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.6) 100%); pointer-events: none; }

.hero-v2-top { position: absolute; top: calc(var(--h-nav) + 28px); left: 0; right: 0; padding: 0 var(--pad); display: flex; justify-content: space-between; align-items: center; z-index: 3; color: var(--bone); opacity: 0.85; }
.hero-v2-top-l { display: flex; align-items: center; gap: 10px; }
.hero-v2-top .sep { margin: 0 8px; opacity: 0.5; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #a8d8a0; box-shadow: 0 0 0 0 rgba(168,216,160,0.8); animation: livePulse 2s infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(168,216,160,0.6); } 50% { box-shadow: 0 0 0 8px rgba(168,216,160,0); } }

.hero-v2-title-wrap {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  padding: 0 var(--pad); z-index: 2;
}
.hero-v2-title {
  font-size: clamp(68px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
  font-weight: 400;
  display: flex; flex-direction: column;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
}
.hero-v2-title .line { display: block; position: relative; animation: heroLineIn 1.2s cubic-bezier(.2,.8,.2,1) both; }
.hero-v2-title .l1 { animation-delay: 0.1s; }
.hero-v2-title .l2 { animation-delay: 0.25s; padding-left: 8vw; font-style: italic; font-weight: 300; opacity: 0.9; font-size: 0.7em; line-height: 1.2; }
.hero-v2-title .l2 em { font-style: italic; }
.hero-v2-title .l3 { animation-delay: 0.4s; padding-left: 2vw; }
.hero-v2-title .amp { font-style: italic; font-weight: 300; opacity: 0.55; margin: 0 0.3em; font-size: 0.9em; }
@keyframes heroLineIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-v2-footer {
  position: absolute; left: 0; right: 0; bottom: 32px;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: end;
  z-index: 3;
  animation: heroLineIn 1.2s 0.6s cubic-bezier(.2,.8,.2,1) both;
}
.hero-v2-caption .mono.tiny.muted { color: rgba(244,240,232,0.8); }
.hero-v2-caption-title { font-size: clamp(20px, 2vw, 26px); margin: 4px 0; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero-v2-pager { display: flex; gap: 10px; justify-self: center; align-items: center; }
.hero-v2-dot { background: none; border: 0; padding: 10px 0; cursor: pointer; width: 36px; }
.hero-v2-dot .bar { display: block; height: 2px; background: rgba(244,240,232,0.35); transition: background .4s, height .3s; }
.hero-v2-dot:hover .bar { background: rgba(244,240,232,0.7); }
.hero-v2-dot.on .bar { background: var(--bone); height: 3px; }
.hero-v2-scroll { display: flex; align-items: center; gap: 12px; justify-self: end; }
.hero-v2-scroll .scroll-line { display: block; width: 40px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.hero-v2-scroll .scroll-line::after { content: ''; position: absolute; inset: 0; background: var(--bone); animation: scrollLine 2.4s infinite; }

@media (max-width: 720px) {
  .hero-v2 { min-height: 560px; }
  .hero-v2-title .l2 { padding-left: 6vw; }
  .hero-v2-footer { grid-template-columns: 1fr; gap: 16px; }
  .hero-v2-pager, .hero-v2-scroll { justify-self: start; }
}

/* --- MARQUEE --- */
.marquee { background: var(--ink); color: var(--bone); padding: 28px 0; overflow: hidden; border-bottom: 1px solid rgba(244,240,232,0.08); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marqueeScroll 48s linear infinite; }
.marquee-item { font-size: clamp(42px, 6vw, 88px); font-style: italic; font-weight: 300; letter-spacing: -0.02em; line-height: 1; display: inline-flex; align-items: center; padding-right: 48px; }
.marquee-item:nth-child(2n) { font-style: normal; color: rgba(244,240,232,0.5); }
.marquee-sep { font-size: 0.35em; color: var(--accent); margin: 0 0 0 48px; font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* --- STATEMENT --- */
.statement { padding: clamp(100px, 14vw, 180px) 0 clamp(60px, 8vw, 100px); background: var(--bone); }
.statement-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.statement-quote { font-size: clamp(36px, 5vw, 76px); line-height: 1.05; letter-spacing: -0.03em; margin: 24px 0 32px; text-wrap: balance; }
.statement-quote em { font-style: italic; color: var(--accent); font-weight: 300; }
.statement-sig { border-top: 1px solid var(--line-soft); padding-top: 16px; max-width: 300px; }
.statement-right { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; padding-top: 80px; }
.statement-right .fig { border-top: 1px solid var(--line); padding-top: 16px; }
.fig-val { font-size: clamp(56px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 10px; font-weight: 400; }
.fig-unit { font-size: 0.4em; font-style: italic; font-weight: 300; opacity: 0.6; margin-left: 6px; vertical-align: 25%; }
@media (max-width: 900px) { .statement-grid { grid-template-columns: 1fr; } .statement-right { padding-top: 0; } }

/* --- SCALES V2 --- */
.scales-v2 { padding: clamp(80px, 12vw, 160px) 0 0; background: var(--bone); border-top: 1px solid var(--line-soft); }
.scales-v2-head { max-width: 820px; margin-bottom: clamp(48px, 6vw, 80px); }
.scales-v2-title { font-size: clamp(48px, 7vw, 110px); line-height: 0.95; letter-spacing: -0.035em; margin: 20px 0 24px; font-weight: 400; text-wrap: balance; }
.scales-v2-title em { font-style: italic; font-weight: 300; color: var(--accent); }
.scales-v2-sub { font-size: clamp(17px, 1.4vw, 20px); max-width: 560px; color: var(--ink-2); text-wrap: pretty; }
.scales-v2-rows { border-top: 1px solid var(--ink); }
.scale-row { display: block; position: relative; border-bottom: 1px solid var(--ink); color: var(--ink); text-decoration: none; overflow: hidden; transition: color .5s ease; }
.scale-row-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); transition: opacity .6s, transform 1.2s cubic-bezier(.2,.6,.2,1); z-index: 1; }
.scale-row::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity .5s; z-index: 2; }
.scale-row:hover { color: var(--bone); }
.scale-row:hover .scale-row-img { opacity: 1; transform: scale(1); }
.scale-row:hover::before { opacity: 1; }
.scale-row-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 100px 1fr 2fr auto; gap: 40px; align-items: center; padding: clamp(32px, 4.5vw, 56px) var(--pad); }
.scale-row-num { opacity: 0.6; }
.scale-row-title { font-size: clamp(36px, 5vw, 76px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 400; }
.scale-row-desc { font-size: clamp(15px, 1.2vw, 17px); max-width: 48ch; color: var(--ink-2); transition: color .5s; text-wrap: pretty; }
.scale-row:hover .scale-row-desc { color: rgba(244,240,232,0.8); }
.scale-row-meta { display: flex; align-items: center; gap: 14px; white-space: nowrap; opacity: 0.7; }
.scale-row-arrow { font-size: 20px; transition: transform .4s; }
.scale-row:hover .scale-row-arrow { transform: translateX(8px); }
@media (max-width: 900px) {
  .scale-row-inner { grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; gap: 12px 16px; padding: 32px var(--pad); }
  .scale-row-title { grid-column: 1 / -1; }
  .scale-row-desc { grid-column: 1 / -1; }
  .scale-row-meta { grid-column: 1 / -1; }
}


.statement-heading { font-size: clamp(36px, 4.5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; margin: 20px 0 28px; font-weight: 400; text-wrap: balance; }
.statement-body { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-2); max-width: 48ch; text-wrap: pretty; }
