/* ================================================================
   Studio Bartholomeus — v5 — Refined
   Toon: architectural design studio. Calm, premium, crafted.
   ================================================================ */


/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --paper:  #F5F1EA;
  --bone:   #ECE7DE;
  --sand:   #E4DDD3;
  --ink:    #191714;
  --warm:   #3A3530;
  --dust:   #8A8177;
  --line:   #D5CECC;
  --amber:  #A86F32;
  --amber2: #C49060;
  --night:  #131109;
  --night2: #1C1A15;

  --serif: 'Playfair Display', Georgia, serif;
  --mono:  'DM Mono', monospace;
  --sans:  'DM Sans', system-ui, sans-serif;

  --max:  1200px;
  --wide: 1440px;
  --t:    .3s cubic-bezier(.4,0,.2,1);

  --header-h: 84px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--t); }
img { display: block; max-width: 100%; height: auto; }
p { color: var(--warm); }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Type ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }

.label {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dust);
  display: block;
  margin-bottom: 1.2rem;
}
.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--warm);
  font-weight: 300;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container      { width: min(calc(100% - 48px), var(--max));  margin: 0 auto; }
.container-wide { width: min(calc(100% - 48px), var(--wide)); margin: 0 auto; }
.pad            { padding-left: 48px; padding-right: 48px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .88rem 1.7rem;
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--ink); color: var(--ink);
  background: transparent; transition: var(--t); white-space: nowrap;
  min-height: 44px;
}
.btn:hover          { background: var(--ink); color: var(--paper); }
.btn-filled         { background: var(--ink); color: var(--paper); }
.btn-filled:hover   { background: var(--warm); border-color: var(--warm); }
.btn-amber          { background: var(--amber); color: var(--paper); border-color: var(--amber); }
.btn-amber:hover    { background: var(--warm); border-color: var(--warm); }
.btn-ghost          { border-color: rgba(245,241,234,.25); color: var(--paper); }
.btn-ghost:hover    { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-sm             { padding: .65rem 1.2rem; font-size: .62rem; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,241,234,.94);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.header-inner {
  max-width: var(--wide); margin: 0 auto;
  padding: 0 40px;
  height: var(--header-h);
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}

/* ── LOGO — mark + text, strong presence ───────────────── */
.site-logo {
  display: flex; align-items: center;
  gap: 14px; flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: auto; width: auto;
  flex-shrink: 0;
  transition: opacity var(--t);
}
.site-logo:hover img { opacity: .5; }
.site-logo-name {
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--ink);
  text-transform: uppercase;
  transition: opacity var(--t);
}
.site-logo:hover .site-logo-name { opacity: .5; }

/* ── Nav ────────────────────────────────────────────────────── */
.site-nav {
  display: flex; gap: 2.25rem; align-items: center;
  flex: 1; justify-content: center;
}
.site-nav a {
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: 3px;
  transition: color var(--t);
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0;
  height: 1px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover  { color: var(--ink); }
.site-nav a.active { color: var(--ink); }
.site-nav a:hover::after  { transform: scaleX(1); }
.site-nav a.active::after { transform: scaleX(1); height: 1.5px; background: var(--ink); }

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; flex-basis: 220px; justify-content: flex-end; }
.lang-switch {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--warm);
  padding: 6px 12px; border-radius: 20px;
  border: 1.5px solid var(--amber);
  background: transparent;
  transition: var(--t);
  font-weight: 500;
}
.lang-switch:hover {
  background: var(--amber);
  color: var(--paper);
  border-color: var(--amber);
}
.lang-current { opacity: .45; }
.lang-sep     { margin: 0 3px; opacity: .3; }
.lang-other   { font-weight: 600; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: var(--t); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--paper);
  padding: 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav a {
  font-family: var(--serif); font-size: 2.2rem;
  color: var(--ink); padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-lang { padding: 24px 0 0; font-family: var(--mono); font-size: .72rem; color: var(--dust); }
.mobile-lang a { display: inline-block; padding: 10px 0; min-height: 44px; line-height: 1.5; }

.site-main { padding-top: var(--header-h); min-height: 100vh; }

/* ── HOME HERO ──────────────────────────────────────────────── */
.home-hero {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: calc(100vh - var(--header-h));
}
.home-hero-visual {
  position: relative; overflow: hidden;
  background: var(--night);
  min-height: 72vh;
  height: 72vh;
}
.home-hero-visual > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .68;
  transition: transform 10s ease, opacity .6s ease;
}
.home-hero-visual:hover > img { transform: scale(1.025); }

/* Hero placeholder — elegant, intentional */
.home-hero-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  background: linear-gradient(160deg, #1C1A15 0%, #0E0C09 100%);
}
.home-hero-placeholder img {
  height: 140px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .06;
  position: static;
}
.home-hero-placeholder-text {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(245,241,234,.15);
}

.home-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 56px 56px 48px;
  background: linear-gradient(to top, rgba(19,17,9,.88) 0%, rgba(19,17,9,.28) 60%, transparent 100%);
  pointer-events: none;
}
.home-hero-overlay * { pointer-events: auto; }
.home-hero-label {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(245,241,234,.4);
  display: block; margin-bottom: 20px;
}
.home-hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400; line-height: .96; color: var(--paper);
  letter-spacing: -.025em; max-width: 12ch;
}
.home-hero-title em { font-style: italic; color: var(--amber2); }

.home-hero-bottom {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 32px;
  padding: 32px 56px 36px;
  border-top: 1px solid rgba(213,206,204,.18);
  background: var(--paper);
}
.home-hero-statement {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--warm); line-height: 1.55; max-width: 48ch;
}
.home-hero-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── WORK INTRO ─────────────────────────────────────────────── */
.work-intro {
  padding: 88px 56px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  max-width: var(--wide); margin: 0 auto;
}
.work-intro h2 { line-height: 1.08; }

/* ── EDITORIAL PROJECT GRID ─────────────────────────────────── */
.projects-editorial {
  padding: 0 56px 120px;
  max-width: var(--wide); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.proj-card {
  display: block; position: relative;
  overflow: hidden; background: var(--bone);
  cursor: pointer; transition: opacity var(--t);
}
.proj-card:hover { opacity: .95; }

/* Asymmetric layout */
.proj-card:nth-child(1)   { grid-column: span 7; grid-row: span 2; }
.proj-card:nth-child(2)   { grid-column: span 5; }
.proj-card:nth-child(3)   { grid-column: span 5; }
.proj-card:nth-child(4)   { grid-column: span 4; }
.proj-card:nth-child(5)   { grid-column: span 4; }
.proj-card:nth-child(6)   { grid-column: span 4; }
.proj-card:nth-child(n+7) { grid-column: span 6; }

.proj-card-media {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  position: relative;
}
.proj-card:nth-child(1) .proj-card-media {
  aspect-ratio: auto; height: 100%; min-height: 520px;
}
.proj-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.proj-card:hover .proj-card-media img { transform: scale(1.04); }

/* Elegant placeholder — NOT broken, intentional */
.proj-card-placeholder {
  width: 100%; min-height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  background: var(--bone);
  position: relative; overflow: hidden;
}
.proj-card:nth-child(1) .proj-card-placeholder { min-height: 520px; }

/* Subtle texture lines as placeholder art */
.proj-card-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(138,129,119,.06) 12px,
    rgba(138,129,119,.06) 13px
  );
}
.proj-card-placeholder-mark {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.proj-card-placeholder-mark img {
  height: 56px; width: auto;
  mix-blend-mode: multiply; opacity: .12;
}
.proj-card-placeholder-mark span {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dust); opacity: .6;
}

.proj-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 22px 22px;
  background: linear-gradient(to top, rgba(8,6,2,.94) 0%, rgba(8,6,2,.55) 55%, transparent 100%);
  border-top: none;
}
.proj-card-title {
  font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400; color: #fff; line-height: 1.18;
  margin-bottom: 6px;
}
.proj-card-excerpt {
  font-size: .83rem; color: rgba(255,255,255,.72); line-height: 1.55; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.proj-card-meta {
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 8px;
  display: flex; gap: 10px; align-items: center;
}
.proj-card-meta::before {
  content: ''; width: 16px; height: 1px;
  background: var(--amber2); flex-shrink: 0;
}
.proj-card-arrow {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); transition: color var(--t);
}
.proj-card:hover .proj-card-arrow { color: var(--amber2); }

/* ── PROJECT DETAIL ─────────────────────────────────────────── */
.project-hero {
  min-height: 78vh; position: relative;
  overflow: hidden; background: var(--night);
  display: flex; align-items: flex-end;
}
.project-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: 1;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.project-hero:hover .project-hero-img { transform: scale(1.04); }

/* Project hero placeholder */
.project-hero-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1C1A15 0%, #0E0C09 100%);
  display: flex; align-items: center; justify-content: center;
}
.project-hero-placeholder img {
  height: 120px; filter: brightness(0) invert(1); opacity: .05;
}

.project-hero-content {
  position: relative; z-index: 2;
  padding: 72px 56px;
  background: linear-gradient(to top, rgba(10,9,5,.95) 0%, rgba(10,9,5,.7) 40%, rgba(10,9,5,.2) 70%, transparent 100%);
  width: 100%;
}
.project-hero-content .label { color: rgba(245,241,234,.65); margin-bottom: 1rem; }
.project-hero-back {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,241,234,.6);
  display: inline-block; margin-bottom: 24px;
  transition: color var(--t);
}
.project-hero-back:hover { color: rgba(245,241,234,.9); }
.project-hero-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: #fff; font-weight: 400; line-height: .98;
  letter-spacing: -.025em; max-width: 16ch; margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.project-hero-intro {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  color: rgba(245,241,234,.88); max-width: 52ch; line-height: 1.6;
}

.project-body {
  max-width: var(--wide); margin: 0 auto;
  padding: 72px 56px 120px;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 72px; align-items: start;
}
.project-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

/* Gallery */
.gallery-stack { display: flex; flex-direction: column; gap: 3px; margin-bottom: 48px; }
.gallery-main-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bone); cursor: zoom-in; position: relative;
}
.gallery-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-main-img:hover img { transform: scale(1.015); }

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bone); display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  position: relative; overflow: hidden;
}
.gallery-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 16px,
    rgba(138,129,119,.05) 16px, rgba(138,129,119,.05) 17px);
}
.gallery-placeholder img {
  height: 48px; mix-blend-mode: multiply; opacity: .1; position: relative;
}
.gallery-placeholder span {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dust); opacity: .5; position: relative;
}

.gallery-thumbs-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.gallery-th {
  aspect-ratio: 1; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: border-color var(--t);
}
.gallery-th img { width: 100%; height: 100%; object-fit: cover; }
.gallery-th.on  { border-color: var(--amber); }

/* Variant pills */
.variants-label { margin: 28px 0 10px; }
.variants-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.variant-pill {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 14px;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--dust); cursor: pointer; transition: var(--t);
}
.variant-pill.on, .variant-pill:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* Project text */
.project-text { font-size: .98rem; line-height: 1.85; color: var(--warm); }
.project-text p + p { margin-top: 1.1em; }

/* Specs */
.spec-block { margin: 32px 0; }
.spec-row {
  display: grid; grid-template-columns: 130px 1fr;
  border-top: 1px solid var(--line); padding: 11px 0;
  font-size: .86rem;
}
.spec-row:last-child { border-bottom: 1px solid var(--line); }
.spec-key {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dust); padding-top: 2px;
}
.spec-val { color: var(--ink); }

/* Sidebar */
.sidebar-section {
  padding: 22px; background: var(--bone);
  margin-bottom: 3px;
}
.sidebar-section h4 {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--dust);
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.price-display { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.price-note    { font-size: .72rem; color: var(--dust); font-family: var(--mono); }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 12px;
  border: 1px solid var(--amber); color: var(--amber);
}
.status-pill::before {
  content: ''; width: 5px; height: 5px;
  background: var(--amber); border-radius: 50%;
}

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-head {
  padding: 80px 56px 56px;
  max-width: var(--wide); margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-top: 8px; }
.page-head .lead { margin-top: 18px; max-width: 52ch; }

/* ── DARK SECTIONS ──────────────────────────────────────────── */
.dark { background: var(--night); color: var(--paper); }
.dark h1, .dark h2, .dark h3 { color: var(--paper); }
.dark p { color: rgba(245,241,234,.55); }
.dark .label { color: rgba(168,111,50,.65); }

/* ── STUDIO GRID ────────────────────────────────────────────── */
.studio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; background: var(--line);
}
.studio-cell          { background: var(--paper); padding: 56px; }
.studio-cell-dark     { background: var(--night2); }
.studio-cell-visual   {
  background: var(--bone); overflow: hidden;
  position: relative; min-height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.studio-cell-visual img.real-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.studio-cell-visual:hover img.real-photo { transform: scale(1.04); }
.studio-cell-visual img.logo-mark {
  height: 120px; width: auto;
  mix-blend-mode: multiply; opacity: .1;
}

/* ── PROCESS ────────────────────────────────────────────────── */
.process-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 24px; padding: 28px 0;
  border-top: 1px solid rgba(245,241,234,.07);
}
.process-num { font-family: var(--serif); font-size: 2.2rem; color: rgba(245,241,234,.12); line-height: 1; }
.process-item h3 { font-size: 1rem; color: var(--paper); margin-bottom: 6px; font-family: var(--sans); font-weight: 400; }
.process-item p  { font-size: .88rem; color: rgba(245,241,234,.5); max-width: none; line-height: 1.65; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 3px; background: var(--line);
  max-width: var(--wide); margin: 0 auto;
}
.contact-form-side { background: var(--paper); padding: 72px 64px; }
.contact-info-side { background: var(--bone);  padding: 72px 56px; }

label {
  display: block; font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dust); margin-bottom: 8px; font-weight: 400;
}
input, textarea, select {
  width: 100%; padding: 14px 0; font: inherit; font-size: .95rem;
  border: none; border-bottom: 1.5px solid var(--line);
  border-radius: 0; background: transparent;
  color: var(--ink); transition: border-color var(--t);
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-bottom-color: var(--amber);
}
textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
select   { cursor: pointer; }
.form-row.two    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-group      { display: flex; flex-direction: column; gap: 0; }
.form-notice     { padding: 12px 0; font-size: .86rem; border-top: 1px solid; margin-bottom: 20px; }
.form-notice.ok  { border-color: var(--amber); color: var(--amber); }
.form-notice.err { border-color: #c44; color: #c44; }

.contact-detail         { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-detail-key     { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dust); margin-bottom: 4px; }
.contact-detail-val     { font-size: .92rem; color: var(--ink); }

/* ── JOURNAL ────────────────────────────────────────────────── */
.journal-stack { display: flex; flex-direction: column; }
.journal-item {
  display: grid; grid-template-columns: 160px 1fr auto;
  gap: 32px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--line);
  transition: padding-left var(--t);
}
.journal-item:hover { padding-left: 6px; }
.journal-date       { font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dust); }
.journal-title-link { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); display: block; margin-bottom: 4px; line-height: 1.2; }
.journal-title-link:hover { color: var(--amber); }
.journal-excerpt    { font-size: .82rem; color: var(--dust); margin: 0; max-width: none; line-height: 1.55; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--night); padding: 88px 0 0; }
.footer-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 56px 80px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 64px;
}
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-wrap img {
  height: 60px; width: auto;
  filter: brightness(0) invert(1); opacity: .5;
}
.footer-tagline {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: rgba(245,241,234,.55); line-height: 1.7;
  margin-bottom: 18px; max-width: none;
}
.footer-email { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; color: rgba(168,111,50,.85); }
.footer-col h4 {
  font-family: var(--mono); font-size: .54rem; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(245,241,234,.4);
  margin-bottom: 20px; font-weight: 400;
}
.footer-col a { display: block; font-size: .86rem; color: rgba(245,241,234,.58); margin-bottom: 10px; transition: color var(--t); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  max-width: var(--wide); margin: 0 auto; padding: 22px 56px;
  border-top: 1px solid rgba(245,241,234,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .06em; color: rgba(245,241,234,.38);
}

/* ── ADMIN ──────────────────────────────────────────────────── */
.admin-wrap { min-height: 100vh; background: #0f0f0f; color: #f0ece4; font-family: var(--sans); }
.admin-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 220px; background: #171717; border-right: 1px solid rgba(255,255,255,.06); padding: 24px 20px; overflow-y: auto; }
.admin-logo { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .7; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: .88rem; color: rgba(240,236,228,.5); transition: var(--t); margin-bottom: 2px; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.08); color: #f0ece4; }
.admin-nav .nav-section { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(240,236,228,.3); padding: 16px 12px 6px; margin-top: 8px; }
.admin-content { margin-left: 220px; padding: 36px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 14px; }
.admin-header h1 { font-size: 1.6rem; margin: 0; color: #f0ece4; font-family: var(--serif); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th { border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px 16px; text-align: left; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(240,236,228,.4); font-weight: 400; }
.admin-table td { border-bottom: 1px solid rgba(255,255,255,.05); padding: 14px 16px; color: rgba(240,236,228,.8); vertical-align: top; }
.admin-table tr:hover td { background: rgba(255,255,255,.03); }
.admin-form { max-width: 740px; }
.admin-form label { font-size: .82rem; color: rgba(240,236,228,.6); font-weight: 500; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.admin-form input, .admin-form textarea, .admin-form select { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 10px; color: #f0ece4; padding: 12px 14px; }
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: rgba(168,111,50,.8); outline: none; background: rgba(255,255,255,.08); }
.admin-form textarea { min-height: 200px; }
.admin-card { background: #1a1a1a; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.admin-card h3 { font-size: 1rem; color: #f0ece4; margin-bottom: 16px; font-family: var(--sans); }
.admin-badge { display: inline-flex; padding: 4px 10px; border-radius: 999px; font-size: .72rem; font-weight: 500; }
.admin-badge.new { background: rgba(90,143,90,.2); color: #8fd48f; }
.admin-badge.read { background: rgba(168,111,50,.2); color: #d4b48f; }
.admin-badge.replied { background: rgba(90,120,143,.2); color: #8fbfd4; }
.admin-badge.archived { background: rgba(100,100,100,.2); color: #aaa; }
.admin-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; font-size: .86rem; border: 1px solid rgba(255,255,255,.15); color: #f0ece4; background: transparent; cursor: pointer; transition: var(--t); }
.admin-btn:hover { background: rgba(255,255,255,.08); }
.admin-btn-primary { background: #A86F32; border-color: #A86F32; color: #fff; }
.admin-btn-primary:hover { background: #8f5e28; border-color: #8f5e28; }
.admin-btn-danger { border-color: rgba(200,80,80,.4); color: #e08080; }
.admin-btn-danger:hover { background: rgba(200,80,80,.1); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: #1a1a1a; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 20px; }
.stat-card .num { font-family: var(--serif); font-size: 2.4rem; color: #f0ece4; }
.stat-card .lbl { font-size: .76rem; color: rgba(240,236,228,.45); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.thumb-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 12px; }
.thumb-item { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,.05); display: grid; place-items: center; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-item .thumb-del { position: absolute; top: 6px; right: 6px; background: rgba(0,0,0,.65); color: #fff; border: none; border-radius: 50%; width: 22px; height: 22px; font-size: .85rem; cursor: pointer; display: grid; place-items: center; }
.cover-badge { position: absolute; bottom: 28px; left: 6px; background: #A86F32; color: #fff; font-size: .6rem; padding: 2px 6px; border-radius: 999px; }
.thumb-cover { position: absolute; bottom: 0; right: 0; width: 50%; border: none; border-top: 1px solid rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.06); cursor: pointer; font-size: .68rem; font-weight: 600; padding: 9px 4px; letter-spacing: .04em; text-transform: uppercase; text-align: center; background: rgba(0,0,0,.68); color: rgba(255,255,255,.7); transition: background .15s, color .15s; }
.thumb-cover:hover { background: rgba(168,111,50,.85); color: #fff; }
.thumb-cover.is-cover { background: rgba(168,111,50,1); color: #fff; }
.thumb-listing { position: absolute; bottom: 0; left: 0; width: 50%; border: none; border-top: 1px solid rgba(255,255,255,.1); cursor: pointer; font-size: .68rem; font-weight: 600; padding: 9px 4px; letter-spacing: .04em; text-transform: uppercase; text-align: center; background: rgba(0,0,0,.68); color: rgba(255,255,255,.7); transition: background .15s, color .15s; }
.thumb-listing:hover { background: rgba(40,110,160,.85); color: #fff; }
.thumb-listing.is-listing { background: rgba(40,120,180,1); color: #fff; }
.upload-area { border: 1.5px dashed rgba(255,255,255,.15); border-radius: 12px; padding: 28px; text-align: center; cursor: pointer; transition: var(--t); }
.upload-area:hover { border-color: rgba(168,111,50,.6); background: rgba(168,111,50,.05); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.img-preview { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); }
.lang-tabs { display: flex; gap: 0; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.lang-tab { padding: 10px 20px; cursor: pointer; font-size: .86rem; color: rgba(240,236,228,.5); border-bottom: 2px solid transparent; transition: var(--t); }
.lang-tab.active { color: #f0ece4; border-bottom-color: #A86F32; }
.lang-pane { display: none; }
.lang-pane.active { display: block; }
.login-page { min-height: 100vh; display: grid; place-items: center; background: #0f0f0f; }
.login-box { width: min(400px, calc(100vw - 40px)); background: #171717; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 40px; }
.login-box .logo-wrap { text-align: center; margin-bottom: 32px; }
.login-box img { height: 72px; width: auto; filter: brightness(0) invert(1); opacity: .75; margin: 0 auto; }
.login-box h1 { font-size: 1.1rem; color: #f0ece4; text-align: center; margin: 12px 0 28px; font-weight: 400; letter-spacing: .06em; font-family: var(--sans); }

/* ── Utilities ──────────────────────────────────────────────── */
.js-ready .fade-in { opacity: 0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease; }
.js-ready .fade-in.visible { opacity: 1; transform: none; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.w-full     { width: 100%; }
.mt-auto    { margin-top: auto; }
.hide-mobile { }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .project-body     { grid-template-columns: 1fr; gap: 40px; }
  .project-sidebar  { position: static; }
  .footer-inner     { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid     { grid-template-columns: 1fr; }
  .studio-grid      { grid-template-columns: 1fr; }
  .work-intro       { grid-template-columns: 1fr; gap: 24px; }
  .stat-grid        { grid-template-columns: 1fr 1fr; }
  .form-row.two     { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 900px) {
  .header-inner   { padding: 0 16px; }
  .site-logo      { flex: 1 1 auto; min-width: 80px; }
  .site-logo img  { max-height: 46px; max-width: 160px; width: auto !important; height: auto !important; }
  .site-nav       { display: none; }
  .nav-toggle     { display: flex; }
  .hide-mobile    { display: none; }
  .header-right   { flex: 0 0 auto; gap: 8px; }
  .projects-editorial { padding: 0 24px 80px; }
  .proj-card:nth-child(n) { grid-column: span 12; }
  .proj-card:nth-child(1) .proj-card-media,
  .proj-card:nth-child(1) .proj-card-placeholder { min-height: 360px; }
  .admin-sidebar  { position: static; width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .admin-content  { margin-left: 0; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .site-logo img  { max-height: 40px !important; height: auto !important; }
  .site-logo-name { font-size: .7rem; }
  .home-hero-bottom { grid-template-columns: 1fr; gap: 20px; }
  .home-hero-overlay, .home-hero-bottom { padding-left: 28px; padding-right: 28px; }
  .work-intro, .projects-editorial { padding-left: 20px; padding-right: 20px; }
  .page-head, .project-body, .contact-form-side, .contact-info-side { padding-left: 24px; padding-right: 24px; }
  .project-hero-content { padding: 40px 24px; }
  .footer-inner   { padding: 0 24px 48px; }
  .footer-bottom  { padding: 18px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .journal-item   { grid-template-columns: 1fr; gap: 6px; }
  .journal-date   { display: none; }
  .studio-cell, .studio-cell-dark { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .home-hero-title { font-size: 2.6rem; }
  .thumb-grid      { grid-template-columns: repeat(3, 1fr); }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .stat-grid       { grid-template-columns: 1fr; }
}

/* ── HERO STRIP SLIDER ──────────────────────────────────────── */
.hero-track-wrap {
  position: absolute; inset: 0;
  overflow: hidden; cursor: grab; z-index: 1;
}
.hero-track-wrap:active { cursor: grabbing; }
.hero-track { display: flex; height: 100%; will-change: transform; }
.hero-cell { flex: 0 0 100%; height: 100%; position: relative; overflow: hidden; }
.hero-cell img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .72; pointer-events: none; user-select: none; transition: transform .9s cubic-bezier(.25,.46,.45,.94); }
.hero-cell:hover img { transform: scale(1.04); }
.hero-cell-chip { position: absolute; bottom: 160px; right: 48px; background: rgba(19,17,9,.6); backdrop-filter: blur(8px); padding: 10px 16px; z-index: 4; display: flex; flex-direction: column; gap: 3px; pointer-events: none; max-width: 260px; }
.hero-chip-cat { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber2); }
.hero-chip-title { font-family: var(--serif); font-size: .95rem; color: var(--paper); line-height: 1.2; }
.hero-dots-bar { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 6; }
.hero-dot-btn { width: 28px; height: 3px; background: rgba(245,241,234,.35); border: none; padding: 0; cursor: pointer; transition: background .25s, width .25s; border-radius: 0; }
.hero-dot-btn.active { background: var(--paper); width: 44px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; background: rgba(19,17,9,.45); backdrop-filter: blur(6px); color: var(--paper); border: 1px solid rgba(245,241,234,.18); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; transition: opacity var(--t), background var(--t); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
.home-hero-visual:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(19,17,9,.8); }
@media (max-width: 768px) { .hero-cell-chip { bottom: 120px; right: 20px; } .hero-arrow { display: none; } }

/* ══ PROJECT GALLERY ═══════════════════════════════════════ */
.proj-gallery { margin-bottom: 40px; }

.proj-gallery-main {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: zoom-in;
  background: #000; border-radius: 2px; margin-bottom: 4px;
}
.proj-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 6s ease, opacity .3s ease;
}
.proj-gallery-main:hover img { transform: scale(1.06); }
.proj-gallery-hint {
  position: absolute; bottom: 10px; right: 12px;
  font-family: var(--mono); font-size: .55rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.45); padding: 4px 9px; border-radius: 2px;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.proj-gallery-main:hover .proj-gallery-hint { opacity: 1; }

.proj-gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.proj-gallery-th {
  aspect-ratio: 1; overflow: hidden; border: 2px solid transparent;
  cursor: pointer; background: none; padding: 0; border-radius: 2px;
  transition: border-color .2s;
}
.proj-gallery-th img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease; display: block;
}
.proj-gallery-th:hover img { transform: scale(1.08); }
.proj-gallery-th.on { border-color: var(--amber); }

/* ══ VARIANT PILLS ═════════════════════════════════════════ */
.variant-pill {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; padding: 8px 16px;
  border: 1px solid var(--line); color: var(--dust);
  cursor: pointer; transition: var(--t); background: var(--paper);
  border-radius: 2px;
}
.variant-pill.on, .variant-pill:hover {
  border-color: var(--ink); background: var(--ink); color: var(--paper);
}

/* ══ TAGS ══════════════════════════════════════════════════ */
.tag {
  display: inline-block; font-family: var(--mono); font-size: .58rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 8px; border: 1px solid var(--line); color: var(--dust);
}

/* ══ FEAT SECTIONS (smart features + process) ══════════════ */
.feat-section { border-top: 1px solid var(--line); }
.feat-light { background: var(--paper); padding: 80px 0; }
.feat-dark  { background: var(--night); padding: 80px 0; }
.feat-inner { max-width: var(--wide); margin: 0 auto; padding: 0 56px; }
.feat-head  { margin-bottom: 48px; }
.feat-head h2 {
  font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 400; line-height: 1.1; margin: 10px 0 14px;
}
.feat-dark .feat-head h2 { color: var(--paper); }
.sf-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 1px; background: rgba(255,255,255,.06); margin-bottom: 36px;
}
.sf-card { background: var(--night); overflow: hidden; }
.sf-card-img { height: 160px; overflow: hidden; }
.sf-card-img img { width:100%;height:100%;object-fit:cover;opacity:.9;transition:transform .4s; }
.sf-card:hover .sf-card-img img { transform: scale(1.04); }
.sf-card-body { padding: 22px 20px; }
.sf-icon { font-size:1rem;color:#c89060;margin-bottom:10px;display:block; }
.sf-name { font-family:var(--serif);font-size:.95rem;color:var(--paper);line-height:1.3; }
.feat-cta {
  display: inline-block; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  padding: 12px 28px; border: 1px solid rgba(245,241,234,.22); color: var(--paper);
  transition: border-color .2s, background .2s;
}
.feat-cta:hover { border-color: rgba(245,241,234,.5); background: rgba(255,255,255,.05); }

/* ══ HEADER SCROLL TRANSITION ═══════════════════════════════ */
.site-header { transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, background .3s; }
.site-header.scrolled { background: rgba(245,241,234,.98); box-shadow: 0 1px 20px rgba(0,0,0,.08); }
.site-header.scrolled .header-inner { height: 60px; }
.site-header.scrolled .site-logo img { max-height: 38px !important; }

/* ══ PAGE TRANSITIONS ════════════════════════════════════════ */
@keyframes _pg-in  { from { opacity:0; translate:0 6px; } to { opacity:1; translate:0; } }
@keyframes _pg-out { from { opacity:1; translate:0; }    to { opacity:0; translate:0 -4px; } }
::view-transition-old(root) { animation: _pg-out .18s ease forwards; }
::view-transition-new(root) { animation: _pg-in  .22s ease forwards; }

@media(max-width:768px) {
  .feat-inner { padding: 0 24px; }
  .proj-gallery-thumbs { grid-template-columns: repeat(4,1fr); gap: 3px; }
}

/* ══ UTILITY: DARK BAND ══════════════════════════════════════ */
.dark-band {
  background: var(--night);
}
.dark-band h1, .dark-band h2, .dark-band h3 { color: var(--paper); }
.dark-band p { color: rgba(245,241,234,.55); }
.dark-band .label, .dark-band .eyebrow { color: rgba(168,111,50,.65); }

/* ══ UTILITY: GRID LAYOUTS ═══════════════════════════════════ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ══ UTILITY: CARD + PANEL ═══════════════════════════════════ */
.card {
  background: var(--paper);
}
.panel {
  background: var(--bone);
}

/* ══ UTILITY: FACT ITEM (price rows) ════════════════════════ */
.fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  gap: 16px;
}
.fact-item:last-child { border-bottom: 1px solid var(--line); }
.fact-item > span { color: var(--dust); }
.fact-item > div  { color: var(--ink); font-family: var(--mono); font-size: .82rem; text-align: right; }

/* ══ UTILITY: PROCESS LIST (commissions) ════════════════════ */
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(245,241,234,.07);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid rgba(245,241,234,.07); }
.process-step h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper);
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.2;
}
.process-step p {
  font-size: .88rem;
  color: rgba(245,241,234,.52);
  line-height: 1.72;
  margin: 0;
}
.num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: rgba(245,241,234,.14);
  line-height: 1;
  padding-top: 2px;
}

/* ══ UTILITY: BUTTON OUTLINE LIGHT ══════════════════════════ */
.btn-outline-light {
  border-color: rgba(245,241,234,.3);
  color: var(--paper);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ══ ABOUT: RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .about-hero-grid  { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-bas-grid   { grid-template-columns: 1fr !important; }
  .about-photo-wrap { min-height: 320px !important; }
  .about-text-col   { padding: 40px 28px !important; }
}
@media (max-width: 768px) {
  .about-hero-grid { padding: 56px 24px 40px !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   HOME v6 — Warm minimal premium redesign
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero v2: full-screen crossfade carousel ─────────────────────── */
.hero-v2 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--night);
  overflow: hidden;
  cursor: default;
}

.hero-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hero-frame.is-active { opacity: 1; }

.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero-frame.is-active img { transform: scale(1); }

/* Gradient scrim — warmer, not cold blue-black */
.hero-frame-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(13,10,5,.92) 0%, rgba(13,10,5,.5) 35%, transparent 60%),
    linear-gradient(to right, rgba(13,10,5,.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Bottom band with headline + project info */
.hero-band {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  padding: 0 56px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 48px;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 400;
  color: var(--paper);
  line-height: .94;
  letter-spacing: -.03em;
  max-width: 12ch;
  margin: 0;
}
.hero-heading em {
  font-style: italic;
  color: var(--amber2);
}

.hero-band-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}

.hero-project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity .4s ease;
}
.hero-meta-cat {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,241,234,.45);
  display: block;
}
.hero-meta-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--paper);
  display: block;
  line-height: 1.2;
}

.hero-meta-link {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(196,144,96,.3);
  transition: border-color .2s ease, color .2s ease;
}
.hero-meta-link:hover { border-color: var(--amber2); color: #fff; }

/* Dot navigation — minimal dashes */
.hero-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-nav-dot {
  width: 24px; height: 2px;
  background: rgba(245,241,234,.25);
  border: none;
  transition: background .3s ease, width .3s ease;
  cursor: pointer;
}
.hero-nav-dot.on {
  background: var(--amber2);
  width: 36px;
}
.hero-nav-dot:hover { background: rgba(245,241,234,.5); }

/* Thin progress bar at very bottom */
.hero-progress-track {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(245,241,234,.08);
  z-index: 11;
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  background: var(--amber);
  width: 0%;
}

/* Hero empty state */
.hero-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  background: linear-gradient(160deg, #1C1A15, #0D0B07);
}
.hero-empty img { height: 120px; opacity: .05; filter: invert(1); }
.hero-empty span {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,241,234,.15);
}

/* Hero sub-strip */
.hero-sub {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 56px 32px;
  background: var(--paper);
  border-top: 1px solid rgba(213,206,204,.18);
}
.hero-sub-statement {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: var(--warm);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0;
}
.hero-sub-actions { display: flex; gap: 10px; flex-shrink: 0; }


/* ── Work section ────────────────────────────────────────────────── */
.work-section {
  padding: 88px 56px 104px;
  max-width: var(--wide); margin: 0 auto;
}

.work-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}
.work-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.06;
  margin: 0;
}
.work-title em { font-style: italic; color: var(--dust); }

.work-lead {
  font-size: clamp(.9rem, 1.3vw, 1rem);
  color: var(--warm);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 48ch;
}


/* ── Studio section — 2×2 mosaic ─────────────────────────────────── */
.studio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

/* Dark intro cell */
.studio-intro {
  grid-column: 1; grid-row: 1;
  background: var(--night);
  padding: 72px 56px;
  display: flex;
  align-items: center;
}
.studio-intro-content { max-width: 42ch; }

.studio-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--paper);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.studio-heading em { color: var(--amber2); font-style: italic; }

.studio-body {
  font-size: .93rem;
  color: rgba(245,241,234,.52);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 38ch;
}
.studio-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 32px;
}

/* Photo cell */
.studio-photo {
  grid-column: 2; grid-row: 1;
  position: relative;
  overflow: hidden;
  background: var(--night2);
  min-height: 480px;
}
.studio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.studio-photo:hover img { transform: scale(1.03); }
.studio-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: linear-gradient(to top, rgba(13,10,5,.75), transparent);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,241,234,.45);
}
.studio-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1C1A15, #0D0B07);
  min-height: 480px;
}
.studio-photo-placeholder img {
  height: 100px; opacity: .05; filter: invert(1);
}

/* Disciplines cell */
.studio-disciplines {
  grid-column: 1; grid-row: 2;
  background: var(--bone);
  padding: 56px;
}
.discipline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.discipline-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
}
.discipline-num {
  font-family: var(--mono);
  font-size: .56rem;
  color: var(--dust);
  letter-spacing: .1em;
}

/* Process cell */
.studio-process {
  grid-column: 2; grid-row: 2;
  background: var(--night);
  padding: 56px;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(245,241,234,.07);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid rgba(245,241,234,.07); }
.process-step-num {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  color: var(--amber2);
  padding-top: 4px;
}
.process-step-title {
  font-family: var(--serif);
  font-size: .96rem;
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 6px;
  line-height: 1.2;
}
.process-step-desc {
  font-size: .82rem;
  color: rgba(245,241,234,.42);
  line-height: 1.7;
  margin: 0;
}


/* ── Journal section ─────────────────────────────────────────────── */
.journal-section {
  padding: 88px 56px 104px;
  max-width: var(--wide);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  gap: 32px;
}
.journal-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  margin: 0;
}
.journal-heading em { font-style: italic; color: var(--dust); }

.journal-list { display: flex; flex-direction: column; }

.journal-entry {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: opacity .2s ease;
}
.journal-entry:first-child { border-top: 1px solid var(--line); }
.journal-entry:hover { opacity: .7; }

.journal-entry-date {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dust);
  padding-top: 4px;
}
.journal-entry-title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--ink);
}
.journal-entry-excerpt {
  font-size: .88rem;
  color: var(--dust);
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
.journal-entry-arrow {
  font-size: 1.2rem;
  color: var(--dust);
  padding-top: 3px;
  justify-self: end;
  transition: transform .2s ease, color .2s ease;
}
.journal-entry:hover .journal-entry-arrow {
  transform: translateX(4px);
  color: var(--amber);
}


/* ── CTA section ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--night);
  padding: 96px 56px;
  text-align: center;
}
.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.cta-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--paper);
  line-height: .96;
  letter-spacing: -.025em;
  margin: 0 0 24px;
}
.cta-heading em { font-style: italic; color: var(--amber2); }
.cta-sub {
  font-size: .95rem;
  color: rgba(245,241,234,.42);
  line-height: 1.75;
  margin: 0 auto 36px;
  max-width: 40ch;
}
.cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Fade-in on scroll ───────────────────────────────────────────── */
.js-ready .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-ready .fade-in.visible {
  opacity: 1;
  transform: none;
}


/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Hero */
  .hero-band { grid-template-columns: 1fr; padding: 0 28px 40px; gap: 24px; }
  .hero-band-right { align-items: flex-start; text-align: left; }
  .hero-sub { grid-template-columns: 1fr; padding: 24px 28px; }
  .hero-sub-actions { flex-wrap: wrap; }

  /* Work */
  .work-section { padding: 64px 28px 80px; }
  .work-header { grid-template-columns: 1fr; gap: 24px; }

  /* Studio */
  .studio-section { grid-template-columns: 1fr; grid-template-rows: auto; }
  .studio-intro  { grid-column: 1; grid-row: auto; padding: 56px 28px; }
  .studio-photo  { grid-column: 1; grid-row: auto; min-height: 320px; }
  .studio-disciplines { grid-column: 1; grid-row: auto; padding: 40px 28px; }
  .studio-process     { grid-column: 1; grid-row: auto; padding: 40px 28px; }

  /* Journal */
  .journal-section { padding: 64px 28px 80px; }
  .journal-header { flex-direction: column; gap: 20px; margin-bottom: 32px; }
  .journal-entry { grid-template-columns: 1fr; gap: 8px; }
  .journal-entry-date { order: -1; }
  .journal-entry-arrow { display: none; }

  /* CTA */
  .cta-section { padding: 72px 28px; }

  /* Project grid */
  .projects-editorial { padding: 0 28px 80px; }
}

@media (max-width: 600px) {
  .hero-heading { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-band { padding: 0 20px 36px; }
  .hero-sub { padding: 20px; }
  .work-section { padding: 56px 20px 72px; }
  .studio-intro  { padding: 48px 20px; }
  .studio-disciplines { padding: 32px 20px; }
  .studio-process     { padding: 32px 20px; }
  .journal-section { padding: 56px 20px 72px; }
  .cta-section { padding: 64px 20px; }
}

/* ── Journal Prose ──────────────────────────────────────── */
.prose {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--warm);
}
.prose p           { margin: 0 0 1.4em; }
.prose h2          { font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
                     color: var(--ink); margin: 2em 0 .7em; line-height: 1.2; letter-spacing: -.01em; }
.prose h3          { font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
                     color: var(--ink); margin: 1.8em 0 .5em; }
.prose blockquote  { border-left: 3px solid var(--amber); padding: 4px 0 4px 20px;
                     color: var(--dust); font-style: italic; margin: 1.8em 0; }
.prose ul, .prose ol { margin: 0 0 1.4em 1.2em; padding: 0; }
.prose li          { margin-bottom: .5em; }
.prose a           { color: var(--amber); text-decoration: underline; text-decoration-color: rgba(168,111,50,.35);
                     text-underline-offset: 3px; transition: text-decoration-color .2s; }
.prose a:hover     { text-decoration-color: var(--amber); }
.prose img         { width: 100%; height: auto; border-radius: 4px; margin: 1.6em 0;
                     display: block; border: 1px solid var(--line); }
.prose strong      { color: var(--ink); font-weight: 600; }
.prose em          { color: var(--dust); }
.prose hr          { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
