/* ═══════════════════════════════════════════════════════════
   STUDIO ECKSTRÖM — Complete Luxury Design System
   Aesthetic: Editorial luxury, warm parchment, ink, brass
   Fonts: Cormorant Garamond (serif) + DM Sans (sans)
   ═══════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
/* ── LINK DEFAULTS (accent discipline) ── */
main a:not([class]):not([data-page]) {
  color: var(--color-accent-primary);
  transition: color .2s;
}
main a:not([class]):not([data-page]):hover {
  color: var(--color-accent-secondary);
}

button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── TOKENS ── */
:root {
  /* ── DESIGN SYSTEM — Studio Eckström v3 ──────────────────
     Warm, material, restrained. Hierarchy through
     spacing and scale — not color variation.
  ────────────────────────────────────────────────────── */

  /* Core Field */
  --color-bg-primary:       #F4F1EA;
  --color-bg-secondary:     #E6E1D8;

  /* Typography / Ink */
  --color-text-primary:     #2B2623;
  --color-text-secondary:   #4A3F39;

  /* Structural / Depth */
  --color-surface-dark:     #3A3E40;
  --color-surface-mid:      #5C5A4E;

  /* Accent (≤10% of visible UI) */
  --color-accent-primary:   #B08D57;
  --color-accent-secondary: #6E7F76;

  /* Soft Contrast */
  --color-border-subtle:    #C9C1B6;
  --color-highlight-muted:  #A78F7A;

  /* Functional States */
  --color-success:          #6F8A6D;
  --color-warning:          #B89A6A;
  --color-error:            #A06A5F;

  /* ── Semantic aliases (map existing tokens to new system) */
  --parchment:    var(--color-bg-primary);
  --parchment-2:  var(--color-bg-secondary);
  --warm-white:   var(--color-bg-primary);
  --ink:          var(--color-text-primary);
  --ink-2:        var(--color-text-secondary);
  --ink-3:        var(--color-surface-mid);
  --ink-4:        var(--color-highlight-muted);
  --brass:        var(--color-accent-primary);
  --brass-light:  var(--color-accent-secondary);
  --rule:         var(--color-border-subtle);
  --rule-dark:    rgba(43,38,35,.10);

  /* Type */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max:    1120px;
  --gutter: clamp(24px, 5vw, 80px);
  --nav-h:  80px;

  /* Motion */
  --ease:    cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,.55,.45,1);
}

/* ── BASE BODY ── */
body {
  font-family: var(--sans);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.wrap    { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
}
.label-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.label-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border-subtle);
  opacity: .7;
}
.label-line .eyebrow { margin: 0; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid rgba(244,241,234,.12);
  background: var(--color-surface-dark);
}
.nav.scrolled {
  background: rgba(58,62,64,.96);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom-color: var(--color-border-subtle);
}
/* On non-hero pages, always show dark */
.nav.opaque {
  background: var(--color-surface-dark);
  border-bottom-color: rgba(244,241,234,.10);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity .25s;
}
.nav-logo:hover { opacity: .75; }
.nav-logo img {
  display: block;
  width: auto;
  height: 26px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .nav-logo img { height: 22px; }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
  padding: 0 16px;
}
.nav-links a {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,234,.88);
  transition: color .25s;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent-secondary);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-bg-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-social a {
  color: rgba(244,241,234,.5);
  transition: color .25s;
  display: flex;
  align-items: center;
}
.nav-social a:hover { color: var(--color-bg-primary); }
.nav-social svg { width: 17px; height: 17px; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-bg-primary);
  transition: .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-surface-dark);
  z-index: 499;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(244,241,234,.75);
  transition: color .25s;
}
.nav-drawer a:hover { color: var(--color-bg-primary); }

/* ══════════════════════════════════════════
   HERO — FULL BLEED SLIDESHOW
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-surface-dark);
}

/* Image slots: add real images via inline style or replace .slide-N bg-color */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Placeholder colors — remove when real images are in */
.slide-1 { background-color: #2a2824; background-image: url('../images2/hero-1.webp'); }
.slide-2 { background-color: #26221e; background-image: url('../images2/hero-2.webp'); }
.slide-3 { background-color: #2e2924; background-image: url('../images2/hero-3.webp'); }
.slide-4 { background-color: #35312c; background-image: url('../images2/hero-4.webp'); }
.slide-5 { background-color: #282420; background-image: url('../images2/hero-5.webp'); }
.slide-6 { background-color: #2c3028; background-image: url('../images2/hero-6.webp'); }

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    linear-gradient(to top,  rgba(28,25,22,.85) 0%, rgba(28,25,22,.35) 35%, transparent 60%),
    linear-gradient(to right, rgba(28,25,22,.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 3;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-content .eyebrow {
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-bg-primary);
  max-width: 700px;
  letter-spacing: -.01em;
}
.hero-h1 em { font-style: italic; font-weight: 300; }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(.9rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* Slide caption */
.hero-caption {
  position: absolute;
  z-index: 3;
  bottom: clamp(40px, 7vh, 80px);
  right: var(--gutter);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-align: right;
}
.hero-caption span { display: block; }

/* Slide controls */
.hero-controls {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,.25);
  border: none;
  transition: background .3s, height .3s;
}
.hero-dot.active {
  height: 40px;
  background: rgba(255,255,255,.8);
}
.hero-dot:hover { background: rgba(255,255,255,.55); }

/* Arrows */
.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, color .25s, background .25s;
}
.hero-arrow:hover { border-color: rgba(244,241,234,.6); color: var(--color-bg-primary); background: rgba(244,241,234,.08); }
.hero-arrow.prev { left: var(--gutter); }
.hero-arrow.next { left: calc(var(--gutter) + 60px); }
.hero-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: clamp(24px, 5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.6);
}
.hero-scroll svg { width: 14px; color: var(--color-bg-primary); stroke: currentColor; fill: none; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid currentColor;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
}
.btn-light {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.35);
}
.btn-light:hover { background: var(--color-bg-primary); color: var(--color-text-primary); border-color: var(--color-bg-primary); }

.btn-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--color-text-primary); color: var(--color-bg-primary); }

.btn-brass {
  color: var(--brass);
  border-color: var(--brass);
}
.btn-brass:hover { background: var(--color-accent-primary); color: var(--color-bg-primary); }

.btn-ghost-dark {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,234,.55);
  background: none;
  border: none;
  padding: 0;
  transition: color .25s;
}
.btn-ghost-dark:hover { color: var(--color-bg-primary); }

/* ══════════════════════════════════════════
   PAGE HERO (non-slideshow pages)
   ══════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--color-surface-dark);
  color: var(--color-bg-primary);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(160,139,110,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-hero-inner.wide {
  grid-template-columns: 1fr;
  max-width: 700px;
}
.page-hero .eyebrow { color: rgba(244,241,234,.6); margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.page-hero h1 em { font-style: italic; }
.page-hero-desc {
  font-size: 1rem;
  color: rgba(244,241,234,.75);
  line-height: 1.85;
  font-weight: 300;
  max-width: 460px;
}
.page-hero-desc em { color: rgba(244,241,234,.95); font-style: italic; }
.page-hero-desc-copy {
  font-size: .96rem;
  color: rgba(244,241,234,.8);
  line-height: 1.85;
  font-weight: 300;
  max-width: 460px;
}
.page-hero-desc-copy em { color: rgba(244,241,234,.95); font-style: italic; }
.page-hero-line {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: 24px 0;
}

/* ══════════════════════════════════════════
   HOME — SECTIONS
   ══════════════════════════════════════════ */

/* Intro strip */
.home-intro {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-intro-text .eyebrow { margin-bottom: 20px; }
.home-intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.home-intro-text h2 em { font-style: italic; }
.home-intro-text p {
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.85;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 32px;
}

.home-intro-image {
  position: relative;
}
.home-intro-image .img-wrap {
  aspect-ratio: 4/5;
  background: var(--rule);
  overflow: hidden;
  position: relative;
}
.home-intro-image .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.home-intro-image:hover .img-wrap img { transform: scale(1.04); }
.home-intro-image .img-caption {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 20px;
  white-space: nowrap;
}
.placeholder-img {
  width: 100%; height: 100%;
  background: var(--parchment-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* Featured projects */
.home-projects {
  padding: 80px 0 120px;
}
.home-projects .label-line { margin-bottom: 56px; }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.project-card .img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.project-card .img-wrap img,
.project-card .img-wrap .placeholder-img {
  transition: transform .6s var(--ease);
}
.project-card:hover .img-wrap img,
.project-card:hover .img-wrap .placeholder-img { transform: scale(1.06); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,22,.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-overlay span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.project-card-info {
  padding: 20px 0 8px;
}
.project-card-info .num {
  font-size: .65rem;
  color: var(--ink-4);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.project-card-info h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.project-card-info .loc {
  font-size: .72rem;
  color: var(--brass);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Philosophy */
.philosophy {
  background: var(--color-surface-dark);
  padding: 100px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,.06);
  pointer-events: none;
}
.philosophy::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,.04);
  pointer-events: none;
}
.philosophy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-bg-primary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.philosophy cite {
  display: block;
  margin-top: 28px;
  font-size: .67rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* Services */
.home-services {
  padding: 100px 0 120px;
}
.home-services .label-line { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
}
.service-col {
  padding: 44px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.service-col .service-num {
  font-size: .65rem;
  color: var(--brass);
  letter-spacing: .18em;
  margin-bottom: 20px;
}
.service-col h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-col p {
  font-size: .88rem;
  color: var(--ink-3);
  line-height: 1.8;
  font-weight: 300;
}

/* Trust strip */
.trust-strip {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 20px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.trust-item {
  padding: 6px 40px;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border-right: 1px solid var(--color-border-subtle);
  white-space: nowrap;
  line-height: 1;
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: .22em;
}
.trust-item .trust-descriptor {
  color: var(--color-highlight-muted);
  font-weight: 300;
}

/* CTA Section */
.home-cta {
  padding: 120px 0;
}
.home-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 80px;
}
.home-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}
.home-cta h2 em { font-style: italic; }
.home-cta p {
  font-size: .92rem;
  color: var(--ink-3);
  line-height: 1.8;
  font-weight: 300;
  max-width: 420px;
}
.home-cta .cta-note {
  font-size: .75rem;
  color: var(--ink-4);
  font-style: italic;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-story {
  padding: 100px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story .img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--parchment-2);
}
.about-story .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-story-text .eyebrow { margin-bottom: 20px; }
.about-story-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 36px;
}
.about-story-text h2 em { font-style: italic; }
.about-story-text p {
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Founders */
.founders {
  padding: 0 0 100px;
}
.founders-heading {
  margin-bottom: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--rule);
}
.founders-heading h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
}
.founders-heading h2 em { font-style: italic; }

.founder-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.founder-row:last-child { border-bottom: 1px solid var(--rule); }
.founder-portrait {
  position: relative;
}
.founder-portrait .img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--parchment-2);
}
.founder-portrait .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.founder-portrait .brass-line {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px; height: 1px;
  background: var(--brass);
}
.founder-bio .founder-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.founder-bio .founder-title {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}
.founder-bio p {
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 560px;
}
.founder-credentials {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--ink-3);
}
.founder-credential::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

/* Values */
.about-values {
  padding: 80px 0 100px;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}
.about-values .wrap { }
.values-heading {
  margin-bottom: 60px;
}
.values-heading .eyebrow { color: var(--color-highlight-muted); margin-bottom: 20px; }
.values-heading h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--color-border-subtle);
}
.value-item {
  padding: 36px 32px;
  border-right: 1px solid var(--color-border-subtle);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.value-item .val-num {
  font-size: .65rem;
  color: var(--color-accent-primary);
  letter-spacing: .18em;
  margin-bottom: 16px;
}
.value-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}
.value-item p {
  font-size: .83rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

/* Community */
.about-community {
  padding: 100px 0;
}
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community-text .eyebrow { margin-bottom: 20px; }
.community-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}
.community-text p {
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.community-text .note {
  padding: 20px 24px;
  border-left: 2px solid var(--brass);
  background: var(--parchment-2);
  font-size: .88rem;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.7;
  margin-top: 28px;
}
.community-image .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--parchment-2);
}
.community-image .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
   ══════════════════════════════════════════ */
.portfolio-list {
  padding: 80px 0 120px;
}
.portfolio-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 70px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
  color: inherit;
}
.portfolio-item:last-child { border-bottom: 1px solid var(--rule); }
.portfolio-item:nth-child(even) .portfolio-img { order: 2; }
.portfolio-item:nth-child(even) .portfolio-info { order: 1; }
.portfolio-img {
  overflow: hidden;
  background: var(--parchment-2);
}
.portfolio-img .img-wrap {
  aspect-ratio: 5/4;
  overflow: hidden;
}
.portfolio-img .img-wrap img,
.portfolio-img .img-wrap .placeholder-img {
  transition: transform .6s var(--ease);
}
.portfolio-item:hover .portfolio-img .img-wrap img,
.portfolio-item:hover .portfolio-img .img-wrap .placeholder-img { transform: scale(1.04); }

.portfolio-info .p-num {
  font-size: .65rem;
  color: var(--ink-4);
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.portfolio-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}
.portfolio-info .p-loc {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.portfolio-info p {
  font-size: .9rem;
  color: var(--ink-3);
  line-height: 1.8;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 24px;
}
.portfolio-info .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.portfolio-info .read-more:hover { color: var(--brass); border-color: var(--brass); }
.portfolio-info .read-more svg { width: 12px; transition: transform .25s; }
.portfolio-info:hover .read-more svg { transform: translateX(4px); }

/* Project detail page */
.project-hero-img {
  height: 60vh;
  min-height: 400px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.project-hero-img .img-wrap {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.project-hero-img .img-wrap img,
.project-hero-img .img-wrap .placeholder-img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,22,.7) 0%, transparent 55%);
}
.project-hero-img .project-title-block {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.project-hero-img .eyebrow { color: rgba(255,255,255,.45); margin-bottom: 14px; }
.project-hero-img h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--color-bg-primary);
  margin-bottom: 8px;
}
.project-hero-img .p-meta {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.project-body {
  padding: 80px 0 120px;
}
.project-body-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.project-narrative p {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 22px;
  max-width: 580px;
}
.project-narrative p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  float: left;
  line-height: .82;
  margin: 6px 12px 0 0;
  color: var(--ink);
}
.project-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.sidebar-box {
  border: 1px solid var(--rule);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-box .sb-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 8px;
}
.sidebar-box .sb-value {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.sidebar-box .sb-value em { font-style: italic; color: var(--brass); }

.project-gallery-section {
  padding: 20px 0 80px;
  clear: both;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-masonry .g-img {
  overflow: hidden;
  background: var(--parchment-2);
}
.gallery-masonry .g-img img,
.gallery-masonry .g-img .placeholder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-masonry .g-img:hover img,
.gallery-masonry .g-img:hover .placeholder-img { transform: scale(1.04); }
.gallery-masonry .g-img { aspect-ratio: 4/3; }
.gallery-masonry .g-img.tall { aspect-ratio: 2/3; }
.gallery-masonry .g-img.wide { grid-column: span 2; aspect-ratio: 16/7; }

.project-nav-strip {
  border-top: 1px solid var(--rule);
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-nav-strip .pn-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .25s;
  cursor: pointer;
  background: none;
  border: none;
}
.project-nav-strip .pn-btn:hover { color: var(--ink); }
.project-nav-strip .pn-back {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ══════════════════════════════════════════
   PROCESS PAGE
   ══════════════════════════════════════════ */
.process-steps {
  padding: 100px 0 120px;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 60px;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }
.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  padding-top: 8px;
}
.step-content h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.step-content .step-subtitle {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.step-content p {
  font-size: .92rem;
  color: var(--ink-3);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 14px;
}
.step-image {
  overflow: hidden;
  background: var(--parchment-2);
}
.step-image .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.step-image .img-wrap img,
.step-image .img-wrap .placeholder-img { transition: transform .5s var(--ease); }
.process-step:hover .step-image .img-wrap img,
.process-step:hover .step-image .img-wrap .placeholder-img { transform: scale(1.04); }

.process-sidebar {
  padding: 80px 0 100px;
  background: var(--parchment-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 100px;
}
.process-sidebar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-left: 1px solid var(--rule);
}
.ps-item {
  padding: 40px;
  border-right: 1px solid var(--rule);
}
.ps-item .ps-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 12px;
}
.ps-item .ps-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}
.ps-item .ps-note {
  font-size: .8rem;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TESTIMONIALS PAGE
   ══════════════════════════════════════════ */
.testimonials-body {
  padding: 80px 0 120px;
}
.testimonial-item {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  padding: 72px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.testimonial-item:last-child { border-bottom: 1px solid var(--rule); }
.testimonial-item:nth-child(even) .testimonial-quote-block { order: 2; }
.testimonial-item:nth-child(even) .testimonial-image { order: 1; }

.testimonial-quote-block {}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--rule);
  margin-bottom: -16px;
}
.testimonial-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px;
}
.testimonial-credit strong {
  display: block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.testimonial-credit span {
  font-size: .75rem;
  color: var(--ink-4);
}
.testimonial-image .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--parchment-2);
}
.testimonial-image .img-wrap img,
.testimonial-image .img-wrap .placeholder-img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════
   PRESS PAGE
   ══════════════════════════════════════════ */
.press-logos {
  padding: 60px 0;
  border-bottom: 1px solid var(--rule);
}
.press-logos-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-left: 1px solid var(--rule);
}
.press-logo-item {
  padding: 28px 44px;
  border-right: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-3);
  letter-spacing: .04em;
  transition: color .25s;
  white-space: nowrap;
}
.press-logo-item.featured { color: var(--ink); font-weight: 500; }

.press-featured {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.press-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.press-featured-text .pub-name {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.press-featured-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}
.press-featured-text .excerpt {
  font-size: .92rem;
  color: var(--ink-3);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}
.press-featured-image .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--parchment-2);
}

.press-list-section {
  padding: 60px 0 120px;
}
.press-list-heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 36px;
}
.press-table {
  width: 100%;
  border-collapse: collapse;
}
.press-table tr {
  border-bottom: 1px solid var(--rule);
  transition: background .2s;
}
.press-table tr:first-child { border-top: 1px solid var(--rule); }
.press-table tr:hover { background: var(--parchment-2); }
.press-table td {
  padding: 24px 16px;
  vertical-align: top;
}
.press-table .td-pub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  width: 120px;
}
.press-table .td-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}
.press-table .td-desc {
  font-size: .85rem;
  color: var(--ink-3);
  font-weight: 300;
  max-width: 340px;
}
.press-table .td-year {
  font-size: .75rem;
  color: var(--ink-4);
  text-align: right;
  white-space: nowrap;
}
.press-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 4px 12px;
  border: 1px solid var(--brass-light);
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-body-grid {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form-side {}
.contact-form-side h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.contact-form-side .form-sub {
  font-size: .88rem;
  color: var(--ink-3);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.form-group {
  margin-bottom: 28px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group select {
  background: var(--parchment);
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 10px;
}
.form-submit {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.form-note {
  font-size: .78rem;
  color: var(--ink-4);
  font-style: italic;
  line-height: 1.5;
}

.contact-info-side {}
.contact-info-side h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.contact-info-side .info-sub {
  font-size: .88rem;
  color: var(--ink-3);
  margin-bottom: 48px;
  line-height: 1.6;
}
.info-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.info-block:last-of-type { border-bottom: none; }
.info-block .ib-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.info-block .ib-value {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.info-block .ib-value a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: border-color .25s;
}
.info-block .ib-value a:hover { border-color: var(--ink); }
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.contact-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .25s;
}
.contact-social a:hover { color: var(--ink); }
.contact-social svg { width: 16px; height: 16px; }

.contact-image-strip {
  padding: 0 0 100px;
}
.contact-image-strip .img-wrap {
  height: 320px;
  overflow: hidden;
  background: var(--parchment-2);
}
.contact-image-strip .img-wrap img { object-fit: cover; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--color-surface-dark);
  color: rgba(244,241,234,.5);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,241,234,.12);
}
.footer-brand .f-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--color-bg-primary);
  margin-bottom: 14px;
  display: block;
}
.footer-brand .f-logo em { font-style: italic; }
.footer-brand p {
  font-size: .8rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-brand .f-address {
  font-size: .78rem;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(244,241,234,.5);
  margin-bottom: 10px;
  transition: color .25s;
}
.footer-col a:hover { color: var(--color-bg-primary); }
.footer-bottom {
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
}
.footer-bottom-social {
  display: flex;
  gap: 16px;
}
.footer-bottom-social a {
  color: rgba(244,241,234,.4);
  transition: color .25s;
  display: flex;
}
.footer-bottom-social a:hover { color: var(--color-bg-primary); }
.footer-bottom-social svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════
   PORTFOLIO — COMING SOON
   ══════════════════════════════════════════ */
.portfolio-coming-soon {
  padding: 100px 0 80px;
  border-top: 1px solid var(--color-border-subtle);
}
.coming-soon-heading {
  margin-bottom: 56px;
}
.coming-soon-heading h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--color-text-primary);
  margin: 10px 0 12px;
  line-height: 1.15;
}
.coming-soon-heading h2 em { font-style: italic; font-weight: 300; }
.coming-soon-sub {
  font-size: .88rem;
  color: var(--color-text-secondary);
  font-weight: 300;
  letter-spacing: .02em;
}
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--color-border-subtle);
  border: 1px solid var(--color-border-subtle);
}
.coming-soon-item {
  display: flex;
  gap: 28px;
  padding: 40px 36px;
  background: var(--color-bg-primary);
  transition: background .3s;
}
.coming-soon-item:hover { background: var(--color-bg-secondary); }
.cs-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-border-subtle);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
  letter-spacing: -.02em;
}
.cs-body { flex: 1; }
.cs-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  border: 1px solid var(--color-accent-secondary);
  padding: 4px 10px;
  margin-bottom: 14px;
  opacity: .8;
}
.cs-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.cs-loc {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-highlight-muted);
  margin-bottom: 14px;
}
.cs-desc {
  font-size: .82rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-weight: 300;
}
@media (max-width: 900px) {
  .coming-soon-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .coming-soon-grid { grid-template-columns: 1fr; }
  .coming-soon-item { padding: 28px 24px; }
}


   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
/* Compress nav before hamburger kicks in */
@media (max-width: 1280px) {
  .nav-links { gap: 20px; }
  .nav-links a { letter-spacing: .13em; }
}
@media (max-width: 1160px) {
  .nav-links { gap: 16px; }
  .nav-links a { letter-spacing: .10em; font-size: .65rem; }
  .nav-social { display: none; }
}
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-burger { display: flex; }

  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .home-intro { grid-template-columns: 1fr; gap: 48px; }
  .home-intro-image .img-caption { right: 0; bottom: -16px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-col { padding: 32px 28px; }
  .home-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story .img-wrap { position: static; aspect-ratio: 16/9; }
  .founder-row { grid-template-columns: 1fr; }
  .founder-portrait .img-wrap { aspect-ratio: 3/2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .community-inner { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-item { grid-template-columns: 1fr; gap: 28px; }
  .portfolio-item:nth-child(even) .portfolio-img { order: 0; }
  .portfolio-item:nth-child(even) .portfolio-info { order: 0; }
  .project-body-grid { grid-template-columns: 1fr; }
  .project-sidebar { position: static; }
  .process-step { grid-template-columns: 60px 1fr; gap: 28px; }
  .process-step .step-image { display: none; }
  .process-sidebar-inner { grid-template-columns: 1fr; }
  .testimonial-item { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-item:nth-child(even) .testimonial-quote-block { order: 0; }
  .testimonial-item:nth-child(even) .testimonial-image { order: 0; }
  .press-featured-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-body-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .projects-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-masonry .g-img.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--color-border-subtle); width: 100%; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .press-table .td-desc { display: none; }
  .hero-controls { display: none; }
  .hero-caption { display: none; }
}

/* ══════════════════════════════════════════
   FULL-WIDTH PROJECT HERO
   Replaces split page-hero + project-hero-img
   ══════════════════════════════════════════ */

.project-hero-full {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  background: var(--color-surface-dark);
  margin-top: 0; /* sits flush under fixed nav */
}
.project-hero-full .img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.project-hero-full .img-wrap img,
.project-hero-full .img-wrap .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.project-hero-full .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,25,22,.88) 0%,
    rgba(28,25,22,.45) 38%,
    rgba(28,25,22,.18) 70%,
    rgba(28,25,22,.08) 100%
  );
  z-index: 1;
}
.project-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 var(--gutter) 60px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.project-hero-content .eyebrow {
  color: rgba(255,255,255,.42);
  margin-bottom: 16px;
  display: block;
}
.project-hero-content .hero-line {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 20px;
}
.project-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--color-bg-primary);
  margin-bottom: 14px;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.project-hero-content h1 em { font-style: italic; }
.project-hero-content .p-meta {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 24px;
  display: block;
}
.project-hero-content .back-link {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 3px;
  transition: color .25s, border-color .25s;
  text-decoration: none;
  display: inline-block;
}
.project-hero-content .back-link:hover {
  color: var(--brass-light);
  border-color: var(--brass);
}

/* ── PORTFOLIO PAGE — FULL HERO ── */
.portfolio-hero-full {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
  background: var(--color-surface-dark);
}
.portfolio-hero-full .img-wrap {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.portfolio-hero-full .img-wrap img,
.portfolio-hero-full .img-wrap .placeholder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.portfolio-hero-full .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,25,22,.82) 0%,
    rgba(28,25,22,.5) 40%,
    rgba(28,25,22,.22) 75%,
    rgba(28,25,22,.1) 100%
  );
  z-index: 1;
}
.portfolio-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 var(--gutter) 60px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.portfolio-hero-content .eyebrow {
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  display: block;
}
.portfolio-hero-content .hero-line {
  width: 40px; height: 1px;
  background: var(--brass);
  margin-bottom: 22px;
}
.portfolio-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--color-bg-primary);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.portfolio-hero-content h1 em { font-style: italic; }
.portfolio-hero-content p {
  font-size: .95rem;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

/* ── TABLET BREAKPOINT (new) ── */
@media (max-width: 768px) {
  .project-hero-full {
    height: 68vh;
    min-height: 440px;
    max-height: 640px;
  }
  .project-hero-content {
    padding-bottom: 40px;
  }
  .project-hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .portfolio-hero-full {
    height: 52vh;
    min-height: 320px;
    max-height: 480px;
  }
  .portfolio-hero-content {
    padding-bottom: 40px;
  }
  .portfolio-hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .project-body-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-sidebar {
    position: static;
  }
  .gallery-masonry {
    gap: 12px;
  }
  .project-nav-strip {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
}

/* ── MOBILE ENHANCEMENTS ── */
@media (max-width: 480px) {
  .project-hero-full {
    height: 62vh;
    min-height: 380px;
  }
  .project-hero-content h1 {
    font-size: 2rem;
  }
  .project-hero-content .p-meta {
    font-size: .65rem;
  }
  .portfolio-hero-full {
    height: 50vh;
    min-height: 280px;
  }
  .portfolio-hero-content h1 {
    font-size: 1.9rem;
  }
  .project-nav-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pn-btn {
    justify-content: center;
    width: 100%;
    max-width: 260px;
  }
  .sidebar-box {
    padding: 16px 0;
  }
  .gallery-masonry .g-img.tall {
    aspect-ratio: 3/4;
  }
  /* Better touch targets */
  .nav-burger span {
    height: 2px;
  }
  .portfolio-item .read-more {
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}

/* ── NAV DRAWER ENHANCEMENTS (tablet + mobile) ── */
@media (max-width: 960px) {
  .nav-drawer {
    padding-top: calc(var(--nav-h) + 8px);
  }
  .nav-drawer a {
    min-height: 48px; /* WCAG touch target */
    display: flex;
    align-items: center;
  }
  /* Project body responsive */
  .project-narrative p {
    max-width: 100%;
  }
  .project-gallery-section {
    padding-top: 40px;
  }
  /* Portfolio grid tablet */
  .portfolio-item {
    gap: 32px;
  }
  .portfolio-img .img-wrap {
    aspect-ratio: 4/3;
  }
}


/* ── TECHNICAL METADATA BLOCK ── */
.project-tech-metadata {
  border: 1px solid var(--color-border-subtle);
  padding: 28px 32px;
  margin-top: 28px;
  background: var(--color-bg-secondary);
}
.project-tech-metadata h4 {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: 16px;
  font-weight: 500;
}
.meta-table { width: 100%; border-collapse: collapse; }
.meta-table tr { border-bottom: 1px solid var(--color-border-subtle); }
.meta-table tr:last-child { border-bottom: none; }
.meta-table td {
  padding: 8px 0;
  font-size: .75rem;
  line-height: 1.5;
  vertical-align: top;
}
.meta-table td:first-child {
  font-weight: 500;
  color: var(--color-text-secondary);
  width: 38%;
  letter-spacing: .04em;
  padding-right: 12px;
}
.meta-table td:last-child { color: var(--color-text-primary); }

/* ── ABOUT SERVICES EXPLICIT LIST ── */
.about-services { padding: 80px 0 40px; }
.services-explicit h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
.services-intro {
  font-size: .9rem;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  font-weight: 300;
}
.services-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--color-border-subtle);
}
.services-list li {
  padding: 14px 0;
  font-size: .85rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
}
.services-list li strong {
  color: var(--color-text-primary);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  font-size: .82rem;
  letter-spacing: .02em;
}

/* ── DEFINITION / AUTHORITY BLOCK ── */
.definition-block-section { padding: 48px 0 0; }
.authority-block {
  background: var(--color-bg-secondary);
  border-left: 3px solid var(--color-accent-primary);
  padding: 24px 28px;
  font-size: .88rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.authority-block p { margin: 0; }

/* index definition block */
.definition-block {
  background: var(--color-bg-secondary);
  border-left: 3px solid var(--color-accent-primary);
  padding: 18px 22px;
  margin: 18px 0 22px;
  font-size: .84rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* visually hidden utility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── PRESS COVERAGE LIST ── */
.coverage-heading { margin-bottom: 48px; }
.coverage-list { border-top: 1px solid var(--color-border-subtle); }
.coverage-item {
  display: grid;
  grid-template-columns: 160px 1fr 80px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  align-items: start;
}
.coverage-pub {
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
  color: var(--color-text-secondary);
  padding-top: 4px;
}
.coverage-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}
.coverage-body p {
  font-size: .82rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  font-weight: 300;
}
.coverage-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  border: 1px solid var(--color-accent-secondary);
  padding: 4px 10px;
  margin-top: 10px;
}
.coverage-year {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--color-highlight-muted);
  text-align: right;
  padding-top: 4px;
}
.press-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.press-image-cap {
  font-size: .78rem;
  color: var(--color-text-secondary);
  margin-top: 10px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .coverage-item { grid-template-columns: 1fr; gap: 8px; }
  .coverage-year { text-align: left; }
  .press-images-grid { grid-template-columns: 1fr; }
}

/* ── FORM HELPERS ── */
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.form-optional { font-size: .62rem; letter-spacing: .08em; text-transform: none; color: var(--ink-4); opacity: .7; }
.req { color: var(--color-accent-primary); margin-left: 2px; }
.form-sub { font-size: .9rem; color: var(--ink-3); line-height: 1.7; font-weight: 300; }
@media (max-width: 640px) { .form-row-2col { grid-template-columns: 1fr; } }

/* ── CONTACT — SINGLE COLUMN LAYOUT ── */
.contact-single-col {
  padding: 80px 0 100px;
  max-width: 800px;
}
.contact-single-col h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-single-col { padding: 48px 0 60px; }
}
