/* Couture Events Worldwide — editorial luxury */

:root {
  --ink: #1A1614;
  --noir: #0F0C0B;
  --paper: #FBF8F3;
  --ivory: #F3EBDF;
  --cream: #EAE0D0;
  --line: #E6DCCD;
  --line-soft: #EEE6D9;
  --muted: #8A7E6E;
  --muted-2: #6B6055;
  --gold: #B6924E;
  --gold-soft: #C9A86A;
  --gold-pale: #D9C39A;
  --focus: #6B5226;
  --shadow-luxe: 0 30px 80px -30px rgba(26,22,20,0.25);
  --shadow-soft: 0 10px 40px -20px rgba(26,22,20,0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 350;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ─── Display sizes ──────────────────────────── */
.display-xl { font-size: clamp(64px, 9vw, 148px); line-height: 0.94; letter-spacing: -0.015em; }
.display-l  { font-size: clamp(48px, 6.2vw, 96px); line-height: 0.98; letter-spacing: -0.01em; }
.display-m  { font-size: clamp(36px, 4.2vw, 64px); line-height: 1.02; }
.display-s  { font-size: clamp(28px, 2.8vw, 42px); line-height: 1.1; }

.italic { font-style: italic; }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ─── Eyebrow / meta ─────────────────────────── */
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow.ink { color: var(--ink); }
.eyebrow.muted { color: var(--muted-2); }

.meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ─── Layout ─────────────────────────────────── */
.app { min-height: 100vh; background: var(--paper); }
.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1600px; padding: 0 32px; margin: 0 auto; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

@media (max-width: 640px) {
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 20px; }
}

.section { padding: clamp(64px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 96px) 0; }

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ─── Nav ────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(251, 248, 243, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(251, 248, 243, 0.92); }
.nav.dark {
  background: rgba(15, 12, 11, 0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav.dark.scrolled { background: rgba(15, 12, 11, 0.85); }
.nav.dark .nav-link, .nav.dark .nav-brand, .nav.dark .nav-cta-ghost { color: rgba(255,255,255,0.92); }
.nav.dark .nav-cta-ghost { border-color: rgba(255,255,255,0.3); }
.nav.dark .nav-cta-ghost:hover { background: rgba(255,255,255,0.08); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  gap: 40px;
  max-width: 1600px; margin: 0 auto;
}
.nav-brand {
  display: flex; flex-direction: column; gap: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 500;
}
.nav-brand .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 400;
}
.nav.dark .nav-brand .sub { color: rgba(255,255,255,0.5); }

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
@media (max-width: 980px) { .nav-links { display: none; } }

.nav-link {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--muted-2);
}
.lang-toggle button { padding: 6px 8px; color: var(--muted); transition: color 0.2s; }
.lang-toggle button.active { color: var(--ink); }
.nav.dark .lang-toggle button.active { color: white; }
.nav.dark .lang-toggle { color: rgba(255,255,255,0.5); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 10px;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold); }

.btn-gold { background: var(--gold); color: var(--paper); }
.btn-gold:hover { background: var(--ink); }

.btn-ghost {
  border-color: var(--ink); color: var(--ink); background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-light {
  border-color: rgba(255,255,255,0.4); color: white; background: transparent;
}
.btn-ghost-light:hover { background: white; color: var(--ink); border-color: white; }

.nav-cta-ghost {
  padding: 10px 18px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-weight: 600;
  transition: all 0.25s;
}
.nav-cta-ghost:hover { background: var(--ink); color: var(--paper); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.link-arrow:hover { gap: 16px; color: var(--gold); border-bottom-color: var(--gold); }
.link-arrow .arr { font-family: serif; font-size: 14px; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--noir);
  color: white;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-images { position: absolute; inset: 0; }
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease-in-out, transform 9s ease-out;
  transform: scale(1.08);
}
.hero-img.active { opacity: 1; transform: scale(1); }
.hero-images::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,11,0.45) 0%, rgba(15,12,11,0.1) 30%, rgba(15,12,11,0.15) 60%, rgba(15,12,11,0.85) 100%),
    linear-gradient(90deg, rgba(15,12,11,0.45) 0%, rgba(15,12,11,0) 60%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 0 clamp(60px, 9vh, 110px);
}
.hero-content .wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
@media (max-width: 980px) { .hero-content .wrap { grid-template-columns: 1fr; gap: 40px; } }

.hero-title {
  font-size: clamp(54px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.018em;
  font-weight: 300;
}
.hero-title .em { font-style: italic; color: var(--gold-pale); font-weight: 400; }

.hero-sub {
  margin-top: 24px;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.hero-meta-col {
  display: flex; flex-direction: column; gap: 20px;
  padding-bottom: 6px;
}
.hero-meta-col .meta-row {
  display: flex; gap: 12px; align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-meta-col .meta-row strong {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  padding: 110px 32px 0;
  max-width: 1600px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow .dash { width: 32px; height: 1px; background: var(--gold-pale); }
.hero-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-align: right;
  pointer-events: auto;
}
.hero-counter .frac { color: white; font-size: 14px; }
.hero-counter .lbl { display: block; font-size: 9.5px; letter-spacing: 0.2em; opacity: 0.7; margin-top: 4px; }

/* hero dots */
.hero-dots {
  position: absolute; left: 32px; bottom: clamp(24px, 4vh, 40px);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 28px; height: 1px; background: rgba(255,255,255,0.25);
  cursor: pointer; transition: background 0.3s;
}
.hero-dot.active { background: var(--gold-pale); }

/* ─── Sector tiles ───────────────────────────── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sector-grid { grid-template-columns: 1fr; } }

.sector-tile {
  background: var(--paper);
  padding: 56px 32px 40px;
  display: flex; flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
  min-height: 460px;
  overflow: hidden;
}
.sector-tile-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.6s;
}
.sector-tile-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,11,0.2) 0%, rgba(15,12,11,0.8) 100%);
}
.sector-tile:hover .sector-tile-img { opacity: 1; }
.sector-tile:hover { color: white; }
.sector-tile > * { position: relative; z-index: 2; }

.sector-tile .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}
.sector-tile h3 {
  font-size: 38px;
  margin-bottom: 18px;
}
.sector-tile p {
  font-size: 14px;
  color: var(--muted-2);
  margin: 0 0 auto;
  max-width: 280px;
  line-height: 1.6;
  transition: color 0.4s;
}
.sector-tile:hover p { color: rgba(255,255,255,0.8); }
.sector-tile .tag-line {
  margin-top: 36px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
}

/* ─── Featured projects ──────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.feature-row.reverse { grid-template-areas: "txt img"; }
.feature-row.reverse .feature-img-wrap { grid-area: img; }
.feature-row.reverse .feature-txt { grid-area: txt; }
@media (max-width: 880px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; } }

.feature-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.feature-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.feature-row:hover .feature-img-wrap img { transform: scale(1.04); }

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-txt h3 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.feature-meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  margin: 28px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-meta dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.feature-meta dd { margin: 0; font-size: 14.5px; }

.feature-txt p {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
}

/* ─── Asymmetric editorial grid ──────────────── */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.editorial-card { position: relative; overflow: hidden; }
.editorial-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.editorial-card:hover img { transform: scale(1.05); }
.editorial-card .caption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: white;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ed-a { grid-column: 1/6; aspect-ratio: 3/4; }
.ed-b { grid-column: 6/13; aspect-ratio: 4/3; align-self: center; }
.ed-c { grid-column: 1/5; aspect-ratio: 1/1; }
.ed-d { grid-column: 5/9; aspect-ratio: 3/4; }
.ed-e { grid-column: 9/13; aspect-ratio: 4/5; }

@media (max-width: 880px) {
  .editorial-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ed-a, .ed-b, .ed-c, .ed-d, .ed-e { grid-column: span 1; aspect-ratio: 3/4; }
}

/* ─── Press strip ────────────────────────────── */
.press-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  background: var(--ivory);
}
.press-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px 48px;
}
.press-strip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.press-list {
  display: flex; align-items: center;
  flex-wrap: wrap;
  gap: 14px 36px;
}
.press-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.press-item:hover { opacity: 1; }
.press-item .pending {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-left: 8px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ─── Quote / pull-quote ─────────────────────── */
.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  max-width: 1100px;
  text-wrap: balance;
}
.pullquote .open { color: var(--gold); font-size: 1.5em; line-height: 0; position: relative; top: 0.18em; margin-right: 0.1em; }

/* ─── CTA band ───────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.cta-band-inner {
  padding: clamp(80px, 12vw, 160px) 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 880px) { .cta-band-inner { grid-template-columns: 1fr; gap: 40px; } }
.cta-band h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  color: white;
}
.cta-band h2 .em { font-style: italic; color: var(--gold-pale); }
.cta-band p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: white; line-height: 1.1; margin-bottom: 16px; }
.footer-brand .sub { display: block; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 13.5px; transition: color 0.2s; }
.footer a:hover { color: white; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  flex-wrap: wrap; gap: 16px;
}

/* ─── Portfolio page ─────────────────────────── */
.page-head {
  padding: clamp(120px, 16vh, 180px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.page-head .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 880px) { .page-head .grid { grid-template-columns: 1fr; gap: 32px; } }
.page-head h1 {
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.96;
}
.page-head h1 .em { font-style: italic; color: var(--gold); }
.page-head .intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 480px;
}

.filter-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
}
.filter-bar .chips { display: flex; gap: 4px; flex-wrap: wrap; }
.chip {
  padding: 10px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
}
.chip:hover { color: var(--ink); }
.chip.active { color: var(--ink); border-bottom-color: var(--gold); }
.chip .count { color: var(--muted); margin-left: 6px; font-size: 9.5px; }

.filter-bar .right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 32px;
  padding: 56px 0 96px;
}

.proj-card { cursor: pointer; }
.proj-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.proj-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s ease;
}
.proj-card:hover .img-wrap img { transform: scale(1.04); }
.proj-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.proj-card:hover .overlay { opacity: 1; }

.proj-card .info {
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px;
}
.proj-card .info-left { flex: 1; }
.proj-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.proj-card .info .meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.proj-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

/* Spans for variety */
.proj-card.size-l   { grid-column: span 7; }
.proj-card.size-l .img-wrap { aspect-ratio: 4/3; }
.proj-card.size-m   { grid-column: span 5; }
.proj-card.size-m .img-wrap { aspect-ratio: 4/5; }
.proj-card.size-s   { grid-column: span 4; }
.proj-card.size-s .img-wrap { aspect-ratio: 3/4; }
.proj-card.size-w   { grid-column: span 8; }
.proj-card.size-w .img-wrap { aspect-ratio: 16/10; }

@media (max-width: 880px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj-card { grid-column: span 1 !important; }
  .proj-card .img-wrap { aspect-ratio: 4/3 !important; }
}

/* ─── Case study ─────────────────────────────── */
.cs-hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  background: var(--noir);
  overflow: hidden;
}
.cs-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cs-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,11,0.4) 0%, rgba(15,12,11,0.1) 30%, rgba(15,12,11,0.85) 100%);
}
.cs-hero .content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 32px clamp(56px, 7vh, 96px);
  color: white; z-index: 2;
}
.cs-hero .content .wrap { max-width: 1440px; margin: 0 auto; }
.cs-hero h1 {
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.94;
  max-width: 1200px;
  font-weight: 300;
}
.cs-hero h1 .em { font-style: italic; color: var(--gold-pale); }
.cs-hero .meta-row {
  display: flex; gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.cs-hero .meta-row strong { color: white; font-weight: 500; display: block; margin-top: 6px; font-size: 13px; letter-spacing: 0.12em; }

.cs-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: clamp(72px, 10vw, 120px) 0;
}
@media (max-width: 880px) { .cs-intro { grid-template-columns: 1fr; gap: 32px; } }
.cs-intro .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
  font-weight: 300;
}
.cs-intro .body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-2);
}
.cs-intro .body p { margin: 0 0 1.2em; }

.cs-phases {
  background: var(--ivory);
  padding: clamp(72px, 10vw, 120px) 0;
}
.cs-phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 880px) { .cs-phases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cs-phases-grid { grid-template-columns: 1fr; } }
.cs-phase { border-top: 1px solid var(--gold); padding-top: 24px; }
.cs-phase .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}
.cs-phase h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.cs-phase p { font-size: 14px; line-height: 1.6; color: var(--muted-2); margin: 0; }

.cs-gallery {
  padding: clamp(72px, 10vw, 120px) 0;
}
.cs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.cs-gallery-grid .g-img {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.cs-gallery-grid .g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s; }
.cs-gallery-grid .g-img:hover img { transform: scale(1.05); }
.cs-gallery-grid .g-img .credit {
  position: absolute; left: 14px; bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.g-1 { grid-column: span 7; aspect-ratio: 4/3; }
.g-2 { grid-column: span 5; aspect-ratio: 4/5; }
.g-3 { grid-column: span 4; aspect-ratio: 3/4; }
.g-4 { grid-column: span 8; aspect-ratio: 16/10; }
.g-5 { grid-column: span 6; aspect-ratio: 4/3; }
.g-6 { grid-column: span 6; aspect-ratio: 4/3; }
.g-full { grid-column: span 12; aspect-ratio: 21/9; }

@media (max-width: 880px) {
  .cs-gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .cs-gallery-grid > div { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}

.cs-next {
  border-top: 1px solid var(--line);
  padding: 64px 0 96px;
}
.cs-next .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
@media (max-width: 880px) { .cs-next .grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(15,12,11,0.94);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  cursor: zoom-out;
  backdrop-filter: blur(10px);
}
.lightbox img {
  max-width: 95vw; max-height: 90vh; object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox .lb-close {
  position: absolute; top: 24px; right: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: white;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.3);
}
.lightbox .lb-caption {
  position: absolute; bottom: 24px; left: 32px; right: 32px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─── About page ─────────────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}
@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; min-height: auto; } }
.about-hero .left {
  background: var(--ink); color: white;
  padding: clamp(72px, 10vw, 140px) clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.about-hero h1 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  color: white;
}
.about-hero h1 .em { font-style: italic; color: var(--gold-pale); }
.about-hero .lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-top: 36px;
  max-width: 460px;
}
.about-hero .stats {
  display: flex; gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.about-hero .stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold-pale);
  font-weight: 300;
}
.about-hero .stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.about-hero .right { background-size: cover; background-position: center; min-height: 60vh; }

.succession {
  padding: clamp(72px, 10vw, 140px) 0;
}
.succession-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .succession-grid { grid-template-columns: 1fr; } }
.succession h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 32px;
}
.succession h2 .em { font-style: italic; color: var(--gold); }

.leader-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.leader-card:last-child { border-bottom: 0; }
.leader-card .portrait { aspect-ratio: 4/5; overflow: hidden; background: var(--ivory); }
.leader-card .portrait img { width: 100%; height: 100%; object-fit: cover; }
.leader-card .info .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.leader-card .info h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.leader-card .info .bio { font-size: 14px; line-height: 1.6; color: var(--muted-2); }
.leader-card .info .yrs { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.18em; margin-top: 14px; text-transform: uppercase; }
@media (max-width: 540px) { .leader-card { grid-template-columns: 1fr; } .leader-card .portrait { max-width: 240px; } }

.timeline {
  background: var(--ivory);
  padding: clamp(72px, 10vw, 120px) 0;
}
.timeline-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-list:last-child { border-bottom: 1px solid var(--line); }
.timeline-list .yr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  font-style: italic;
}
.timeline-list .body h4 { font-size: 22px; margin-bottom: 8px; }
.timeline-list .body p { font-size: 14px; color: var(--muted-2); margin: 0; line-height: 1.6; max-width: 560px; }

/* ─── Contact ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: calc(100vh - 80px);
}
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-form-side {
  padding: clamp(60px, 8vw, 110px) clamp(32px, 5vw, 80px);
  background: var(--paper);
}
.contact-form-side h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1;
  margin-bottom: 14px;
}
.contact-form-side h1 .em { font-style: italic; color: var(--gold); }
.contact-form-side .sub { color: var(--muted-2); font-size: 15px; line-height: 1.7; max-width: 460px; margin-bottom: 40px; }

.contact-info {
  background: var(--ink);
  color: white;
  padding: clamp(60px, 8vw, 110px) clamp(32px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-info h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold-pale);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.contact-info .block { margin-bottom: 40px; }
.contact-info .block .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: white;
}
.contact-info .block .value a { color: white; transition: color 0.2s; }
.contact-info .block .value a:hover { color: var(--gold-pale); }
.contact-info .block .sub { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 8px; }

.contact-info .socials {
  display: flex; gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 16px;
}
.contact-info .socials a { color: rgba(255,255,255,0.7); }
.contact-info .socials a:hover { color: white; }

/* Form */
.form-step-nav {
  display: flex; gap: 4px;
  margin-bottom: 40px;
}
.form-step-nav .step {
  flex: 1; height: 2px; background: var(--line);
  position: relative;
}
.form-step-nav .step.done { background: var(--gold); }
.form-step-nav .step.active { background: var(--ink); }
.form-step-nav .step .lbl {
  position: absolute; top: 10px; left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2);
}
.form-step-nav .step.active .lbl { color: var(--ink); }
.form-step-nav .step.done .lbl { color: var(--gold); }

.form-grid { display: grid; gap: 20px; margin-top: 56px; }
.form-grid.cols2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .form-grid.cols2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0 10px;
  background: transparent;
  font-size: 16px;
  outline: none;
  font-family: inherit;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field input.error, .field textarea.error, .field select.error { border-bottom-color: #b14a3c; }
.field textarea { min-height: 110px; resize: vertical; }
.field .err {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #b14a3c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.event-types {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 540px) { .event-types { grid-template-columns: 1fr; } }
.event-types .pick {
  padding: 18px 20px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--paper);
}
.event-types .pick:hover { border-color: var(--ink); }
.event-types .pick.active { border-color: var(--gold); background: var(--ivory); }
.event-types .pick .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.event-types .pick .desc {
  font-size: 12px; color: var(--muted-2);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px;
  gap: 20px;
}
.form-actions .back-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.2s;
}
.form-actions .back-btn:hover { color: var(--ink); }

.success {
  text-align: center;
  padding: 80px 0;
}
.success .check {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin: 0 auto 32px;
}
.success h2 {
  font-size: 48px; margin-bottom: 16px;
}
.success h2 .em { font-style: italic; color: var(--gold); }
.success p { color: var(--muted-2); max-width: 460px; margin: 0 auto; font-size: 15px; line-height: 1.7; }

/* ─── WhatsApp FAB ───────────────────────────── */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 40;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
.whatsapp-fab:hover { background: var(--gold); transform: translateY(-2px); }
.whatsapp-fab .wa-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ─── Consent banner / image notice ──────────── */
.consent-strip {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  text-transform: uppercase;
  text-align: center;
}
.consent-strip .gold-dot { color: var(--gold); }

/* ─── Misc ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadein 0.9s ease-out forwards;
}
@keyframes fadein { to { opacity: 1; transform: none; } }

/* Page transitions */
.page-enter { animation: pageIn 0.5s ease-out; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ─── Reduce small font issues ───────────────── */
::selection { background: var(--gold); color: white; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-pale); }
