/* ============================================================
   VELLUM — Page Styles (pages.css)
   Section-specific styles, organized by page/section.
   Shared across pages; reused where layouts repeat.
   ============================================================ */

/* ============================================================
   SHARED SECTION HEADERS
   ============================================================ */
.block-head { margin-bottom: var(--s-8); max-width: 760px; }
.block-head__title { font-size: var(--fs-h2); margin-top: var(--s-4); }
.block-head--row {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: none; gap: var(--s-5);
}

/* ============================================================
   ARCHITECTURE HOME — FULLSCREEN SLIDER HERO
   ============================================================ */
.aslider { position: relative; height: clamp(560px, 92vh, 920px); overflow: hidden; background: var(--ink); }
.aslider__track { position: absolute; inset: 0; }
.aslide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.aslide.is-active { opacity: 1; visibility: visible; }
.aslide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.aslide__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(44,34,24,0.72) 0%, rgba(44,34,24,0.34) 38%, rgba(44,34,24,0.06) 64%, rgba(44,34,24,0) 100%),
    linear-gradient(180deg, rgba(44,34,24,0.50) 0%, rgba(44,34,24,0.12) 28%, rgba(44,34,24,0.30) 64%, rgba(44,34,24,0.78) 100%);
}
.aslide__content { position: absolute; left: 0; right: 0; bottom: clamp(80px, 12vh, 140px); }
.aslide__tag {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-label);
  text-transform: uppercase; color: var(--ash);
  display: inline-flex; align-items: center; gap: var(--s-4); margin-bottom: var(--s-4);
}
.aslide__tag::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.aslide__title {
  font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: 1.0; color: var(--paper);
  max-width: 14ch; letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(26,20,13,0.60), 0 1px 4px rgba(26,20,13,0.40);
}
.aslide__title em { font-family: var(--font-accent); font-style: italic; color: var(--ash); }
.aslide__meta { margin-top: var(--s-4); font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(243,236,225,0.7); }

.aslider__statement {
  position: absolute; top: clamp(40px, 8vh, 90px); left: 0; right: 0; z-index: 3;
  pointer-events: none;
}
.aslider__statement h1 {
  font-size: clamp(2rem, 4.5vw, 4rem); color: var(--paper); line-height: 1.0;
  letter-spacing: -0.02em; max-width: 16ch;
  text-shadow: 0 2px 24px rgba(26,20,13,0.45);
}
.aslider__statement h1 em { font-family: var(--font-accent); font-style: italic; color: var(--ash); }

.aslider__controls {
  position: absolute; right: var(--gutter); bottom: clamp(80px, 12vh, 140px); z-index: 4;
  display: flex; align-items: center; gap: var(--s-4);
}
.aslider__arrow {
  width: 52px; height: 52px; border: 1px solid rgba(243,236,225,0.3); color: var(--paper);
  display: grid; place-items: center; transition: all var(--dur) var(--ease); background: rgba(44,34,24,0.2);
}
.aslider__arrow:hover { background: var(--accent); border-color: var(--accent); }
.aslider__dots { position: absolute; left: var(--gutter); bottom: clamp(40px, 7vh, 80px); z-index: 4; display: flex; gap: var(--s-3); }
.aslider__dot { width: 36px; height: 3px; background: rgba(243,236,225,0.3); transition: background var(--dur) var(--ease); cursor: pointer; border: none; padding: 0; }
.aslider__dot.is-active { background: var(--accent); }

/* ============================================================
   SECTOR EXPLORER
   ============================================================ */
.sector { background: var(--paper); }
.sector__head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: end; margin-bottom: var(--s-7); }
.sector__title { font-size: var(--fs-h2); margin-top: var(--s-4); }
.sector__blurb { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; transition: opacity var(--dur) var(--ease); max-width: 440px; }
.sector__chips { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-7); }
.sector__chip {
  padding: 12px 24px; border: 1px solid var(--rule); cursor: pointer;
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); transition: all var(--dur) var(--ease); background: none;
}
.sector__chip:hover { border-color: var(--accent); color: var(--accent); }
.sector__chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sector__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.sector__item { display: block; }
.sector__item-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface-alt); border: 1px solid var(--rule-soft); }
.sector__item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.sector__item:hover .sector__item-media img { transform: scale(1.05); }
.sector__item-body { display: flex; justify-content: space-between; align-items: baseline; padding-top: var(--s-3); gap: var(--s-3); }
.sector__item-title { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; }
.sector__item-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }

/* ============================================================
   OFFSET ASYMMETRIC WORKS GRID
   ============================================================ */
.offset-works { background: var(--surface); }
.offset-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s-5) var(--s-5); align-items: start; row-gap: var(--s-8); }
.offset-card { display: block; position: relative; }
.offset-card__media { overflow: hidden; background: var(--surface-alt); border: 1px solid var(--rule-soft); }
.offset-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.offset-card:hover .offset-card__media img { transform: scale(1.04); }
.offset-card__body { padding-top: var(--s-3); padding-bottom: var(--s-4); }
.offset-card__title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 500; }
.offset-card__meta { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }
.offset-card--a { grid-column: 1 / 7; }
.offset-card--a .offset-card__media { aspect-ratio: 4 / 3; }
.offset-card--b { grid-column: 8 / 13; margin-top: var(--s-7); }
.offset-card--b .offset-card__media { aspect-ratio: 3 / 4; }
.offset-card--c { grid-column: 1 / 7; }
.offset-card--c .offset-card__media { aspect-ratio: 3 / 4; }
.offset-card--d { grid-column: 8 / 13; }
.offset-card--d .offset-card__media { aspect-ratio: 4 / 3; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.timeline { background: var(--ink); color: var(--paper); }
.timeline .block-head__title, .timeline .eyebrow { color: var(--paper); }
.timeline .eyebrow::before { background: var(--accent); }
.timeline__track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin: var(--s-8) 0 var(--s-7); }
.timeline__line { position: absolute; top: 11px; left: 0; right: 0; height: 2px; background: rgba(243,236,225,0.18); }
.timeline__fill { position: absolute; top: 11px; left: 0; height: 2px; background: var(--accent); width: 0; transition: width 0.6s var(--ease-out); }
.timeline__node { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-4); cursor: pointer; padding-right: var(--s-4); background: none; text-align: left; border: none; }
.timeline__dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(243,236,225,0.3); background: var(--ink); transition: all var(--dur) var(--ease); position: relative; z-index: 1; }
.timeline__node.is-done .timeline__dot { border-color: var(--accent); background: var(--accent); }
.timeline__node.is-active .timeline__dot { border-color: var(--accent); background: var(--ink); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 30%, transparent); }
.timeline__num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: rgba(243,236,225,0.5); }
.timeline__label { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; color: rgba(243,236,225,0.6); transition: color var(--dur) var(--ease); }
.timeline__node.is-active .timeline__label, .timeline__node.is-done .timeline__label { color: var(--paper); }
.timeline__panels { position: relative; min-height: 120px; border-top: 1px solid rgba(243,236,225,0.14); padding-top: var(--s-6); }
.timeline__panel { display: none; }
.timeline__panel.is-active { display: grid; grid-template-columns: auto 1fr; gap: var(--s-7); animation: stepIn var(--dur) var(--ease-out); }
.timeline__panel-phase { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.timeline__panel-text { font-size: 1.15rem; line-height: 1.6; color: rgba(243,236,225,0.85); max-width: 620px; }

/* ============================================================
   IMAGE FEATURE BAND — centered text, scattered bg tools
   ============================================================ */
.imgband { position: relative; background: var(--surface-alt); overflow: hidden; border-block: 1px solid var(--rule-soft); }
.imgband__bgtools {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.5;
}
.imgband__bgtools img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.imgband__bgtools::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at center, var(--surface-alt) 18%, transparent 75%);
}
.imgband__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-block: clamp(80px, 14vh, 180px);
  max-width: 720px; margin-inline: auto;
}
.imgband__eyebrow { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-4); display: inline-flex; align-items: center; gap: var(--s-4); }
.imgband__eyebrow::before, .imgband__eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--accent); }
.imgband__title { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: var(--s-5); }
.imgband__title em { font-family: var(--font-accent); font-style: italic; color: var(--accent); }
.imgband__text { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; max-width: 460px; margin-bottom: var(--s-6); }
.imgband__actions { display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; justify-content: center; }

@media (max-width: 820px) {
  .imgband__bgtools { opacity: 0.28; }
}

/* ============================================================
   MATERIALS STRIP
   ============================================================ */
.materials { background: var(--paper); }
.materials__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); margin-top: var(--s-7); }
.material__swatch { aspect-ratio: 3 / 2; border: 1px solid var(--rule-soft); margin-bottom: var(--s-4); position: relative; overflow: hidden; }
.material__swatch::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%); }
.material__name { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; }
.material__desc { font-size: var(--fs-small); color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

@media (max-width: 860px) {
  .sector__head { grid-template-columns: 1fr; gap: var(--s-4); }
  .sector__grid { grid-template-columns: 1fr 1fr; }
  .offset-card--a, .offset-card--b, .offset-card--c, .offset-card--d { grid-column: 1 / 13; margin-top: 0; }
  .timeline__track { grid-template-columns: 1fr; gap: var(--s-5); }
  .timeline__line, .timeline__fill { display: none; }
  .timeline__node { flex-direction: row; align-items: center; }
  .timeline__panel.is-active { grid-template-columns: 1fr; gap: var(--s-3); }
  .materials__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .sector__grid { grid-template-columns: 1fr; }
  .materials__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ARCHITECTURE HOME — (legacy structural hero, kept as fallback)
   ============================================================ */
.ahero { padding-top: clamp(32px, 5vw, 64px); overflow: hidden; }
.ahero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.ahero__title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.96; letter-spacing: -0.03em;
  margin: var(--s-5) 0 var(--s-6);
}
.ahero__title .accent-word { font-family: var(--font-accent); }
.ahero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55;
  color: var(--text-muted); max-width: 480px;
}
.ahero__actions { display: flex; align-items: center; gap: var(--s-6); margin-top: var(--s-7); flex-wrap: wrap; }
.ahero__figure { position: relative; }
.ahero__figure img { width: 100%; aspect-ratio: 9 / 10; object-fit: cover; border: 1px solid var(--rule); background: var(--paper-warm); }
.ahero__figcaption {
  position: absolute; left: 0; bottom: 0;
  background: var(--ink); color: var(--paper);
  padding: var(--s-3) var(--s-5); display: flex; flex-direction: column; gap: 2px;
}
.ahero__figcaption-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.ahero__figcaption-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; }

/* Stat strip */
.ahero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.ahero__stat { padding: var(--s-6) var(--s-5); border-right: 1px solid var(--rule); }
.ahero__stat:last-child { border-right: none; }
.ahero__stat-num { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; line-height: 1; }
.ahero__stat-label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: var(--s-3); display: block; }

/* Manifesto */
.amanifesto__inner { max-width: var(--container-narrow); }
.amanifesto__text {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.3;
  margin-top: var(--s-5);
}
.amanifesto__text em { font-style: italic; }

@media (max-width: 860px) {
  .ahero__inner { grid-template-columns: 1fr; }
  .ahero__figure { order: -1; }
  .ahero__figure img { aspect-ratio: 4 / 3; }
  .ahero__stats { grid-template-columns: 1fr 1fr; }
  .ahero__stat:nth-child(2) { border-right: none; }
  .ahero__stat:nth-child(1), .ahero__stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 480px) {
  .ahero__stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   COMBINED STUDIO — SPLIT-SCREEN HERO
   ============================================================ */
.shero { position: relative; min-height: clamp(560px, 92vh, 900px); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: var(--ink); }
.shero__half { position: relative; overflow: hidden; }
.shero__half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shero__half--arch { background: #d8d2c6; }
.shero__half--arch::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(37,34,29,0.18), rgba(37,34,29,0)); }
.shero__half--int { background: #efe9dd; }
.shero__half-label {
  position: absolute; bottom: clamp(28px, 5vh, 56px); z-index: 2;
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
}
.shero__half--arch .shero__half-label { left: clamp(28px, 4vw, 56px); }
.shero__half--int .shero__half-label { right: clamp(28px, 4vw, 56px); text-align: right; }
.shero__half-label span { display:block; font-family: var(--font-display); font-size: 1.1rem; text-transform: none; letter-spacing: 0; color: var(--accent); margin-top: 4px; }

/* center spine carrying the brand statement */
.shero__spine {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(46%, 560px); z-index: 3;
  background: rgba(240,236,228,0.92); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: clamp(24px, 4vw, 56px);
  border-left: 1px solid var(--rule); border-right: 1px solid var(--rule);
}
.shero__title { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; margin: var(--s-4) 0 var(--s-5); }
.shero__title .accent-word { font-family: var(--font-accent); color: var(--accent); }
.shero__lead { font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.55; color: var(--text-muted); max-width: 380px; }
.shero__actions { display: flex; flex-direction: column; align-items: center; gap: var(--s-4); margin-top: var(--s-6); }

@media (max-width: 760px) {
  .shero { grid-template-columns: 1fr 1fr; min-height: 90vh; }
  .shero__spine { width: 86%; background: rgba(240,236,228,0.95); }
  .shero__half-label { display: none; }
}

/* ============================================================
   COMBINED STUDIO — REVEAL SLIDER (signature feature)
   ============================================================ */
.reveal-slider-section { background: var(--surface); }
.rslider {
  position: relative; width: 100%; aspect-ratio: 3 / 2; max-height: 70vh;
  overflow: hidden; cursor: ew-resize; user-select: none;
  border: 1px solid var(--rule-soft); background: var(--surface-alt);
  margin-top: var(--s-7);
}
.rslider__layer { position: absolute; inset: 0; }
.rslider__layer img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.rslider__layer--top { z-index: 2; } /* clipped from right via JS */
.rslider__tag {
  position: absolute; top: var(--s-5); z-index: 4;
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--paper);
  background: rgba(37,34,29,0.7); padding: 6px 14px;
}
.rslider__tag--left { left: var(--s-5); }
.rslider__tag--right { right: var(--s-5); }
.rslider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 5;
  width: 2px; background: var(--paper); transform: translateX(-50%);
  pointer-events: none;
}
.rslider__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--ink);
}
.rslider__grip svg { display: block; }

/* ============================================================
   COMBINED STUDIO — DUAL DISCIPLINES (kept, refined)
   ============================================================ */
.duo__grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: var(--s-6); margin-top: var(--s-8); }
.duo__card { background: var(--surface); border: 1px solid var(--rule-soft); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.duo__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.duo__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--accent); line-height: 1; margin-bottom: var(--s-4); }
.duo__title { font-size: var(--fs-h3); font-weight: 500; margin-bottom: var(--s-3); }
.duo__desc { color: var(--text-muted); line-height: 1.6; margin-bottom: var(--s-5); }
.duo__list { display: flex; flex-direction: column; gap: var(--s-3); margin-top: auto; }
.duo__list li { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); padding-top: var(--s-3); border-top: 1px solid var(--rule-soft); }
.duo__plus { display: grid; place-items: center; }
.duo__plus span { font-family: var(--font-display); font-size: 3rem; color: var(--accent); width: 72px; height: 72px; border: 1px solid var(--rule); border-radius: 50%; display: grid; place-items: center; background: var(--paper); }

@media (max-width: 820px) {
  .duo__grid { grid-template-columns: 1fr; }
  .duo__plus { padding: var(--s-2) 0; }
  .duo__plus span { width: 56px; height: 56px; font-size: 2rem; }
}

/* ============================================================
   COMBINED STUDIO — SPLIT PROJECT CARDS
   ============================================================ */
.splitwork__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); margin-top: var(--s-7); }
.splitcard { display: block; position: relative; }
.splitcard__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--rule-soft); }
.splitcard__half { position: relative; overflow: hidden; }
.splitcard__half img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.splitcard:hover .splitcard__half img { transform: scale(1.05); }
.splitcard__half::after { content: attr(data-label); position: absolute; left: 10px; bottom: 10px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper); background: rgba(37,34,29,0.6); padding: 3px 8px; }
.splitcard__seam { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--paper); transform: translateX(-50%); z-index: 2; }
.splitcard__body { display: flex; justify-content: space-between; align-items: baseline; padding-top: var(--s-3); gap: var(--s-3); }
.splitcard__title { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; }
.splitcard__meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }

@media (max-width: 760px) {
  .splitwork__grid { grid-template-columns: 1fr; }
}


.ehero { position: relative; padding-top: clamp(32px, 5vw, 64px); overflow: hidden; }

/* Rotated editorial side-label */
.ehero__sidelabel {
  position: absolute; left: var(--s-4); top: 45%;
  transform: rotate(-90deg); transform-origin: left center;
  display: flex; gap: var(--s-4); align-items: baseline;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap; z-index: 3; pointer-events: none;
}
.ehero__sidelabel-dim { color: var(--text-faint); }

.ehero__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  padding-bottom: clamp(32px, 5vw, 64px);
  row-gap: clamp(20px, 3vw, 40px);
}

/* Big type — spans most width, sits in front */
.ehero__type { grid-column: 1 / 9; grid-row: 1; z-index: 2; padding-top: clamp(16px, 3vw, 40px); }
.ehero__title {
  font-size: clamp(3.4rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-top: var(--s-4);
}
.ehero__line { display: block; }
.ehero__line--indent { padding-left: 1.6em; }      /* editorial stagger */
.ehero__line--push   { padding-left: 0.5em; }
.ehero__title em { font-family: var(--font-accent); font-style: italic; font-weight: 500; }

/* Image — overlaps the type from the right, pulled down */
.ehero__figure {
  grid-column: 7 / 13;
  grid-row: 1;
  position: relative;
  margin-top: clamp(40px, 9vw, 150px);
  z-index: 1;
}
.ehero__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.ehero__figcaption {
  position: absolute; left: calc(-1 * clamp(12px, 2vw, 28px)); bottom: clamp(20px, 4vw, 44px);
  background: var(--paper);
  padding: var(--s-3) var(--s-4);
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-sm);
}
.ehero__figcaption-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.ehero__figcaption-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; }

/* Lead + actions — sits low-left under the headline, narrow column */
.ehero__intro { grid-column: 1 / 6; grid-row: 2; z-index: 2; }
.ehero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5; color: var(--text-muted);
  max-width: 420px; padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}
.ehero__actions { display: flex; align-items: center; gap: var(--s-6); margin-top: var(--s-6); flex-wrap: wrap; }

/* Marquee */
.ehero__marquee { border-block: 1px solid var(--rule); padding-block: var(--s-4); overflow: hidden; white-space: nowrap; }
.ehero__marquee-track {
  display: inline-flex; align-items: center; gap: var(--s-5);
  font-family: var(--font-mono); font-size: var(--fs-label);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted);
  animation: marquee 36s linear infinite;
}
.ehero__marquee-track .dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 860px) {
  .ehero__sidelabel { display: none; }
  .ehero__inner { display: block; }
  .ehero__type { padding-top: 0; }
  .ehero__title { font-size: clamp(3rem, 15vw, 5rem); }
  .ehero__line--indent { padding-left: 0.8em; }
  .ehero__line--push { padding-left: 0.3em; }
  .ehero__figure { margin-top: var(--s-6); }
  .ehero__figure img { aspect-ratio: 16 / 11; }
  .ehero__intro { margin-top: var(--s-6); }
  .ehero__lead { max-width: none; }
}

/* ============================================================
   INTRO / PHILOSOPHY
   ============================================================ */
.intro__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.intro__statement { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.3; font-weight: 400; }
.intro__statement em { font-style: italic; }
.intro__meta { display: flex; flex-direction: column; gap: var(--s-5); }
.intro__stat { border-top: 1px solid var(--rule); padding-top: var(--s-3); }
.intro__stat-num { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500; line-height: 1; }
.intro__stat-label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   SERVICES (with animated icons)
   ============================================================ */
.services-block { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.service {
  background: var(--surface); padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3); min-height: 320px;
  transition: background var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.service::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.service:hover { background: var(--paper-warm); }
.service:hover::after { transform: scaleX(1); }

.service__icon { width: 60px; height: 60px; margin-bottom: var(--s-3); }
.service__icon svg { width: 100%; height: 100%; overflow: visible; }

/* depth: soft drop shadow on icon shapes */
.service__icon svg .ic-shadow { fill: rgba(27,31,39,0.12); }

/* stroke draw-in on scroll reveal (outline parts) */
.service__icon svg [data-draw] {
  stroke-dasharray: var(--len, 120);
  stroke-dashoffset: var(--len, 120);
  transition: stroke-dashoffset 1.1s var(--ease-out);
}
.reveal.is-visible .service__icon svg [data-draw] { stroke-dashoffset: 0; }
.reveal.is-visible .service__icon svg [data-draw].d2 { transition-delay: 0.18s; }
.reveal.is-visible .service__icon svg [data-draw].d3 { transition-delay: 0.36s; }

/* fade/scale-in for filled colour parts on reveal */
.service__icon svg [data-pop] {
  opacity: 0; transform: scale(0.6); transform-box: fill-box; transform-origin: center;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.is-visible .service__icon svg [data-pop] { opacity: 1; transform: scale(1); }
.reveal.is-visible .service__icon svg [data-pop].p2 { transition-delay: 0.25s; }
.reveal.is-visible .service__icon svg [data-pop].p3 { transition-delay: 0.45s; }

/* CONTINUOUS hover animations (clearly visible motion) */
/* Whole-icon gentle float on hover — ensures EVERY icon moves, not just inner parts */
.service__icon svg { transform-box: view-box; transform-origin: center; }
.service:hover .service__icon svg { animation: icFloat 1.8s var(--ease-in-out) infinite; }

.service__icon svg [data-float] { transform-box: fill-box; transform-origin: center; }
.service:hover .service__icon svg [data-float] { animation: icFloat 1.6s var(--ease-in-out) infinite; }
@keyframes icFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.service__icon svg [data-spin] { transform-box: fill-box; transform-origin: center; }
.service:hover .service__icon svg [data-spin] { animation: icSpin 3s linear infinite; }
@keyframes icSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.service__icon svg [data-pulse] { transform-box: fill-box; transform-origin: center; }
.service:hover .service__icon svg [data-pulse] { animation: icPulse 1.4s var(--ease-in-out) infinite; }
@keyframes icPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: 0.7; } }

.service__icon svg [data-sway] { transform-box: fill-box; transform-origin: bottom center; }
.service:hover .service__icon svg [data-sway] { animation: icSway 2s var(--ease-in-out) infinite; }
@keyframes icSway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

.service__num { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.16em; color: var(--accent); }
.service__title { font-size: var(--fs-h4); font-weight: 500; margin-top: var(--s-2); }
.service__desc { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.6; margin-top: auto; }
.services-block__cta { margin-top: var(--s-7); }

/* ============================================================
   BLOG / JOURNAL
   ============================================================ */
.blog-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; padding-bottom: clamp(40px,6vw,72px); border-bottom: 1px solid var(--rule-soft); margin-bottom: clamp(40px,6vw,72px); }
.blog-feature__media { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); }
.blog-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.blog-feature:hover .blog-feature__media img { transform: scale(1.03); }
.blog-meta { display: flex; gap: var(--s-4); font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-4); }
.blog-meta .accent { color: var(--accent); }
.blog-feature__title { font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.08; margin-bottom: var(--s-4); }
.blog-feature__title a:hover { color: var(--accent); }
.blog-feature__excerpt { color: var(--text-muted); line-height: 1.65; margin-bottom: var(--s-5); max-width: 48ch; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,3vw,40px) var(--s-6); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); margin-bottom: var(--s-4); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__title { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; line-height: 1.2; margin-bottom: var(--s-3); }
.post-card:hover .post-card__title { color: var(--accent); }
.post-card__excerpt { color: var(--text-muted); line-height: 1.55; font-size: 0.96rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } .blog-feature { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG SINGLE (article)
   ============================================================ */
.article-head { max-width: 760px; margin-inline: auto; text-align: center; padding-top: clamp(110px,14vh,180px); }
.article-head__title { font-size: clamp(2.2rem,5vw,4rem); line-height: 1.05; letter-spacing: -0.02em; margin: var(--s-4) 0 var(--s-5); }
.article-head__byline { display: flex; align-items: center; justify-content: center; gap: var(--s-4); font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.article-hero { aspect-ratio: 21/9; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); margin: clamp(32px,5vw,64px) 0; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 720px; margin-inline: auto; }
.article-body > p { font-size: 1.12rem; line-height: 1.8; color: var(--text); margin-bottom: var(--s-5); }
.article-body > p:first-of-type:first-letter { font-family: var(--font-display); font-size: 3.6em; line-height: 0.8; float: left; padding: 6px 14px 0 0; color: var(--accent); }
.article-body h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin: var(--s-7) 0 var(--s-4); }
.article-body blockquote { border-left: 3px solid var(--accent); padding-left: var(--s-5); margin: var(--s-6) 0; font-family: var(--font-accent); font-style: italic; font-size: 1.4rem; line-height: 1.4; color: var(--text); }
.article-body figure { margin: var(--s-7) 0; }
.article-body figure img { width: 100%; border: 1px solid var(--rule-soft); }
.article-body figcaption { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-top: var(--s-3); text-align: center; }
.article-share { max-width: 720px; margin: var(--s-8) auto 0; padding-top: var(--s-6); border-top: 1px solid var(--rule-soft); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.article-share__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.article-share__links { display: flex; gap: var(--s-4); }
.article-share__links a { color: var(--text-muted); }
.article-share__links a:hover { color: var(--accent); }

/* ============================================================
   ESTIMATE (full page)
   ============================================================ */
.estimate-page { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,6vw,80px); align-items: start; }
.estimate-page__aside { position: sticky; top: 110px; }
.estimate-page__aside .eyebrow { margin-bottom: var(--s-4); }
.estimate-page__aside h1 { font-size: clamp(2.2rem,4vw,3.4rem); line-height: 1.05; margin-bottom: var(--s-5); }
.estimate-page__aside h1 em { font-family: var(--font-accent); font-style: italic; color: var(--accent); }
.estimate-page__aside p { color: var(--text-muted); line-height: 1.65; margin-bottom: var(--s-5); }
.estimate-page__points { display: flex; flex-direction: column; gap: var(--s-3); }
.estimate-page__points li { display: flex; gap: var(--s-3); align-items: center; color: var(--text); }
.estimate-page__points svg { color: var(--accent); flex-shrink: 0; }
.estimate-card { background: var(--surface); border: 1px solid var(--rule); padding: clamp(24px,3vw,40px); }
@media (max-width: 860px) { .estimate-page { grid-template-columns: 1fr; } .estimate-page__aside { position: static; } }

/* ============================================================
   PORTFOLIO (variant 04 — gallery-forward)
   ============================================================ */
.pf-hero { padding-top: clamp(120px,15vh,190px); padding-bottom: clamp(32px,4vw,56px); }
.pf-hero__title { font-size: clamp(3rem,9vw,8rem); line-height: 0.92; letter-spacing: -0.03em; }
.pf-hero__title em { font-family: var(--font-accent); font-style: italic; color: var(--accent); }
.pf-hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-6); flex-wrap: wrap; margin-top: var(--s-5); }
.pf-hero__lead { max-width: 42ch; color: var(--text-muted); line-height: 1.6; font-size: 1.1rem; }
.pf-masonry { columns: 3; column-gap: var(--s-5); }
.pf-item { break-inside: avoid; margin-bottom: var(--s-5); display: block; position: relative; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); }
.pf-item img { width: 100%; display: block; transition: transform 0.9s var(--ease-out); }
.pf-item:hover img { transform: scale(1.04); }
.pf-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-5); background: linear-gradient(transparent, rgba(37,34,29,0.8)); color: var(--paper); opacity: 0; transform: translateY(10px); transition: all var(--dur) var(--ease); }
.pf-item:hover .pf-item__cap { opacity: 1; transform: translateY(0); }
.pf-item__cap-title { font-family: var(--font-display); font-size: var(--fs-h4); }
.pf-item__cap-meta { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
@media (max-width: 900px) { .pf-masonry { columns: 2; } .pf-hero__title { font-size: clamp(2.6rem,12vw,5rem); } }
@media (max-width: 560px) { .pf-masonry { columns: 1; } }

/* ============================================================
   404
   ============================================================ */
.err { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: clamp(80px,12vh,160px) 0; }
.err__code { font-family: var(--font-display); font-size: clamp(6rem,22vw,16rem); line-height: 0.9; color: var(--accent); letter-spacing: -0.04em; }
.err__title { font-size: clamp(1.6rem,3vw,2.4rem); margin: var(--s-4) 0 var(--s-4); }
.err__text { color: var(--text-muted); line-height: 1.6; max-width: 44ch; margin: 0 auto var(--s-6); }
.err__actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px,6vw,88px); align-items: start; padding-bottom: clamp(40px,6vw,72px); }
.about-intro__aside .eyebrow { margin-bottom: var(--s-4); }
.about-intro__aside h2 { font-size: var(--fs-h3); line-height: 1.15; }
.about-intro__rich p { color: var(--text); line-height: 1.75; margin-bottom: var(--s-5); font-size: 1.08rem; }
.about-intro__rich p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .about-intro { grid-template-columns: 1fr; gap: var(--s-6); } }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); padding: clamp(40px,6vw,72px) 0; border-block: 1px solid var(--rule-soft); }
.about-stat__num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4rem); font-weight: 500; color: var(--accent); line-height: 1; }
.about-stat__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-top: var(--s-3); }
@media (max-width: 700px) { .about-stats { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-5); } }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); margin-top: var(--s-7); }
.value__num { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; color: var(--accent); margin-bottom: var(--s-4); }
.value__title { font-size: var(--fs-h4); font-weight: 500; margin-bottom: var(--s-3); }
.value__desc { color: var(--text-muted); line-height: 1.65; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); margin-top: var(--s-7); }
.member__photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--surface-alt); margin-bottom: var(--s-4); max-width: 150px; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__photo span { font-family: var(--font-display); font-size: 2.4rem; color: #fff; }
.member__name { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; }
.member__role { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-6); } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,6vw,80px); align-items: start; }
.contact-form .stack { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-aside__block { padding-bottom: var(--s-6); margin-bottom: var(--s-6); border-bottom: 1px solid var(--rule-soft); }
.contact-aside__block:last-child { border-bottom: none; }
.contact-aside__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-3); }
.contact-aside__value { font-size: 1.1rem; line-height: 1.5; }
.contact-aside__value a:hover { color: var(--accent); }
.contact-map { margin-top: var(--s-8); aspect-ratio: 21/7; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); position: relative; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-map__pin { position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 30%, transparent); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,88px); align-items: center; padding: clamp(40px,6vw,80px) 0; border-bottom: 1px solid var(--rule-soft); }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row__media { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: var(--s-3); }
.svc-row__title { font-size: clamp(1.8rem,3.2vw,2.8rem); line-height: 1.05; margin-bottom: var(--s-4); }
.svc-row__desc { color: var(--text-muted); line-height: 1.65; margin-bottom: var(--s-5); max-width: 46ch; }
.svc-row__list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.svc-row__list li { display: flex; align-items: center; gap: var(--s-3); font-size: 0.98rem; }
.svc-row__list svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 760px) {
  .svc-row { grid-template-columns: 1fr; gap: var(--s-6); }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
  .svc-row__list { grid-template-columns: 1fr; }
}

.proc { background: var(--surface-alt); border-block: 1px solid var(--rule-soft); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); margin-top: var(--s-7); }
.proc-step { background: var(--paper); padding: clamp(28px,3.5vw,44px); }
.proc-step__num { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; color: var(--accent); margin-bottom: var(--s-4); }
.proc-step__title { font-size: var(--fs-h4); font-weight: 500; margin-bottom: var(--s-3); }
.proc-step__desc { color: var(--text-muted); line-height: 1.6; font-size: 0.98rem; }
@media (max-width: 860px) { .proc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .proc-grid { grid-template-columns: 1fr; } }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-top: var(--s-7); }
.tier { background: var(--surface); border: 1px solid var(--rule-soft); padding: clamp(28px,3.5vw,44px); display: flex; flex-direction: column; }
.tier--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-4); }
.tier--featured .tier__label { filter: brightness(1.4); }
.tier__name { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 500; margin-bottom: var(--s-2); }
.tier--featured .tier__name { color: var(--paper); }
.tier__scope { color: var(--text-muted); font-size: 0.98rem; line-height: 1.55; margin-bottom: var(--s-5); }
.tier--featured .tier__scope { color: rgba(240,236,228,0.7); }
.tier__list { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-6); flex: 1; }
.tier__list li { display: flex; align-items: flex-start; gap: var(--s-3); font-size: 0.96rem; line-height: 1.4; }
.tier__list svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.tier--featured .tier__list svg { filter: brightness(1.4); }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }

.faq { max-width: 800px; margin-inline: auto; margin-top: var(--s-7); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item__trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: var(--s-5) 0; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.4rem); color: var(--text); font-weight: 500;
}
.faq-item__icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--accent); transition: opacity var(--dur) var(--ease); }
.faq-item__icon::before { top: 11px; left: 2px; right: 2px; height: 2px; }
.faq-item__icon::after { left: 11px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.is-open .faq-item__icon::after { opacity: 0; }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item__panel-inner { padding-bottom: var(--s-5); color: var(--text-muted); line-height: 1.7; max-width: 64ch; }

/* ============================================================
   PROJECT SINGLE (case study)
   ============================================================ */
.casehero { padding-top: clamp(110px, 14vh, 180px); }
.casehero__meta { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-5); }
.casehero__meta .accent { color: var(--accent); }
.casehero__title { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.0; letter-spacing: -0.025em; max-width: 18ch; }
.casehero__lead { margin-top: var(--s-5); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--text-muted); max-width: 56ch; }
.casehero__img { margin-top: var(--s-7); aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); }
.casehero__img img { width: 100%; height: 100%; object-fit: cover; }

.case-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); padding: var(--s-7) 0; border-bottom: 1px solid var(--rule-soft); }
.case-fact__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-2); }
.case-fact__value { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 500; }
@media (max-width: 700px) { .case-facts { grid-template-columns: 1fr 1fr; gap: var(--s-6) var(--s-5); } }

.case-body { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 96px); padding: clamp(48px,7vw,96px) 0; align-items: start; }
.case-body__aside { position: sticky; top: 110px; }
.case-body__aside .eyebrow { margin-bottom: var(--s-4); }
.case-body__aside h2 { font-size: var(--fs-h3); line-height: 1.15; }
.case-body__rich p { color: var(--text); line-height: 1.75; margin-bottom: var(--s-5); font-size: 1.08rem; }
.case-body__rich p:first-child:first-letter { font-family: var(--font-display); font-size: 3.4em; line-height: 0.8; float: left; padding: 6px 12px 0 0; color: var(--accent); }
@media (max-width: 820px) { .case-body { grid-template-columns: 1fr; } .case-body__aside { position: static; } }

.case-gallery { padding-bottom: clamp(48px,7vw,96px); }
.case-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.case-gallery__item { overflow: hidden; border: 1px solid var(--rule-soft); background: var(--surface-alt); aspect-ratio: 4/3; cursor: pointer; }
.case-gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 21/9; }
.case-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.case-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 600px) { .case-gallery__grid { grid-template-columns: 1fr; } .case-gallery__item--wide { aspect-ratio: 4/3; } }

/* testimonial / client reference */
.case-quote { background: var(--surface-alt); border-block: 1px solid var(--rule-soft); padding: clamp(56px,9vw,120px) 0; }
.case-quote__inner { max-width: 860px; margin-inline: auto; text-align: center; }
.case-quote__mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.5; color: var(--accent); opacity: 0.4; }
.case-quote__text { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.35; color: var(--text); margin: var(--s-5) 0 var(--s-6); }
.case-quote__author { display: flex; align-items: center; justify-content: center; gap: var(--s-4); }
.case-quote__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 1.2rem; }
.case-quote__who { text-align: left; }
.case-quote__name { font-weight: 500; }
.case-quote__role { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

/* engagement block — commission similar work */
.engage { padding: clamp(56px,8vw,110px) 0; }
.engage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.engage__title { font-size: clamp(2rem,3.6vw,3rem); line-height: 1.08; margin-bottom: var(--s-4); }
.engage__title em { font-family: var(--font-accent); font-style: italic; color: var(--accent); }
.engage__text { color: var(--text-muted); line-height: 1.6; margin-bottom: var(--s-6); max-width: 44ch; }
.engage__list { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-6); }
.engage__list li { display: flex; align-items: center; gap: var(--s-3); font-size: 1.02rem; }
.engage__list svg { color: var(--accent); flex-shrink: 0; }
.engage__actions { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.engage__card { background: var(--ink); color: var(--paper); padding: clamp(32px,4vw,56px); border-radius: 4px; }
.engage__card-label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,236,228,0.6); margin-bottom: var(--s-5); }
.engage__card h3 { color: var(--paper); font-size: var(--fs-h3); margin-bottom: var(--s-3); }
.engage__card p { color: rgba(240,236,228,0.72); line-height: 1.55; margin-bottom: var(--s-6); }
.engage__price { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); color: var(--paper); margin-bottom: var(--s-2); }
.engage__price-note { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,236,228,0.5); margin-bottom: var(--s-6); }
@media (max-width: 820px) { .engage__grid { grid-template-columns: 1fr; } }

/* next project */
.case-next { border-top: 1px solid var(--rule-soft); padding: var(--s-8) 0; text-align: center; }
.case-next__label { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-3); }
.case-next__title { font-size: clamp(1.8rem,4vw,3rem); }
.case-next__title a { transition: color var(--dur) var(--ease); }
.case-next__title a:hover { color: var(--accent); }

.pagehead { padding-top: clamp(120px, 16vh, 200px); padding-bottom: clamp(40px, 6vw, 72px); }
.pagehead__eyebrow { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-5); }
.pagehead__eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--accent); }
.pagehead__title { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.0; letter-spacing: -0.025em; max-width: 16ch; }
.pagehead__title em { font-family: var(--font-accent); font-style: italic; color: var(--accent); }
.pagehead__lead { margin-top: var(--s-5); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.55; color: var(--text-muted); max-width: 52ch; }
.pagehead__crumbs { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-6); }
.pagehead__crumbs a { color: var(--text-faint); }
.pagehead__crumbs a:hover { color: var(--accent); }

/* ============================================================
   FILTER BAR (catalog chips)
   ============================================================ */
.filterbar { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; margin-bottom: var(--s-7); padding-bottom: var(--s-6); border-bottom: 1px solid var(--rule-soft); }
.filterbar__chip {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid var(--rule); border-radius: 100px; cursor: pointer;
  color: var(--text-muted); background: transparent; transition: all var(--dur) var(--ease); white-space: nowrap;
}
.filterbar__chip:hover { border-color: var(--accent); color: var(--accent); }
.filterbar__chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filterbar__count { margin-left: auto; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.filterbar__count span { color: var(--accent); }

/* listing card meta tag */
.project-card__media { transition: transform var(--dur) var(--ease); }
.proj-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6) var(--s-5); }
@media (max-width: 1000px) { .proj-listing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proj-listing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURED WORK
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }

/* ============================================================
   PROCESS
   ============================================================ */
.process__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.process__head { position: sticky; top: 120px; }
.process__steps { display: flex; flex-direction: column; }
.process__step { display: grid; grid-template-columns: auto 1fr; gap: var(--s-5); padding: var(--s-6) 0; border-top: 1px solid var(--rule); }
.process__step:last-child { border-bottom: 1px solid var(--rule); }
.process__step-num { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.16em; color: var(--accent); padding-top: 6px; }
.process__step-title { font-size: var(--fs-h3); font-weight: 500; }
.process__step-desc { color: var(--text-muted); margin-top: var(--s-2); max-width: 460px; }

/* ============================================================
   FULL-BLEED DARK INTERIOR SECTION (image showcase)
   ============================================================ */
.showcase {
  position: relative;
  min-height: clamp(440px, 70vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #181b21;
}
.showcase__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.showcase__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(12,14,18,0.92) 0%,
      rgba(12,14,18,0.72) 38%,
      rgba(12,14,18,0.32) 62%,
      rgba(12,14,18,0.04) 100%),
    linear-gradient(180deg,
      rgba(12,14,18,0.30) 0%,
      rgba(12,14,18,0.0) 40%,
      rgba(12,14,18,0.48) 100%);
}
.showcase__inner { position: relative; z-index: 2; max-width: 620px; }
.showcase__eyebrow {
  font-family: var(--font-mono); font-size: var(--fs-label);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--ash);
  display: inline-flex; align-items: center; gap: var(--s-4);
}
.showcase__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.showcase__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12; color: var(--paper);
  margin: var(--s-5) 0 var(--s-5);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}
.showcase__title em { font-family: var(--font-accent); font-style: italic; color: var(--accent); filter: brightness(1.35); }
.showcase__text { color: rgba(221,229,236,0.78); font-size: 1.05rem; line-height: 1.6; max-width: 460px; }
.showcase__cta { margin-top: var(--s-6); }
.showcase__meta {
  position: absolute; right: var(--gutter); bottom: var(--s-6); z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(221,229,236,0.5); text-align: right;
}
@media (max-width: 700px) {
  .showcase__veil { background: linear-gradient(180deg, rgba(20,23,29,0.55), rgba(20,23,29,0.82)); }
  .showcase__meta { display: none; }
}
.quote-block { background: var(--surface); }
.quote { text-align: center; }
.quote__text { font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.25; font-weight: 400; }
.quote__cite { margin-top: var(--s-6); display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; }
.quote__role { font-size: var(--fs-small); color: var(--text-muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); color: var(--paper); padding-block: clamp(56px, 8vw, 112px); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-7); flex-wrap: wrap; }
.cta-band__title { font-size: var(--fs-h1); color: var(--paper); }
.cta-band__sub { color: rgba(242, 240, 233, 0.65); margin-top: var(--s-3); max-width: 420px; }
.cta-band__actions { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.cta-band .accent-word { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ihero__inner { grid-template-columns: 1fr; }
  .ihero__media { order: -1; }
  .ihero__media img { aspect-ratio: 16 / 11; }
  .intro__inner { grid-template-columns: 1fr; }
  .intro__meta { flex-direction: row; flex-wrap: wrap; gap: var(--s-6); }
  .intro__stat { flex: 1; min-width: 120px; }
  .process__inner { grid-template-columns: 1fr; }
  .process__head { position: static; }
  .block-head--row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
}
