/* ============================================================
   DISHOILA ENGINEERING — CORE STYLESHEET  (v2 · editorial)
   Airier · fully Garamond · muted gold · borderless sliders.
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--w-body);
  line-height: var(--lh-body);
  color: var(--text-on-dark);
  background: var(--vanta);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--w-display); line-height: var(--lh-tight); letter-spacing: var(--ls-hero); }
p { max-width: var(--maxw-text); }

::selection { background: var(--gold-dim); color: var(--vanta); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 940px; }
.section { padding-block: var(--section-y); position: relative; }
.section--dark  { background: var(--vanta); color: var(--text-on-dark); }
.section--raised{ background: var(--graphite); color: var(--text-on-dark); }
.section--light { background: var(--warm-white); color: var(--text-on-light); }
.stack > * + * { margin-top: var(--space-3); }

/* Thin dividers instead of boxed borders */
.rule { height: 1px; background: var(--graphite-line); border: 0; }
.rule--gold { background: var(--gold-line); }

/* ---------- Editorial eyebrow (signature: hairline + wide tracking) ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  font-weight: var(--w-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold-text);
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}
.eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold-line); }
.section--light .eyebrow { color: var(--gold-deep); }

/* Quiet coordinate label (subtle engineering nod) */
.coord { font-size: var(--fs-xs); letter-spacing: 0.24em; color: var(--steel); text-transform: uppercase; }

/* Section heading block */
.sec-head { max-width: 780px; margin-bottom: var(--space-6); }
.sec-head .eyebrow { margin-bottom: var(--space-4); }
.sec-head h2 { font-size: var(--fs-section); }
.sec-head p { margin-top: var(--space-4); color: var(--steel-soft); font-size: var(--fs-sub); font-weight: var(--w-body); }
.section--light .sec-head p { color: var(--ink-soft); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons — sleeker, Garamond, hairline-forward ---------- */
.btn {
  --_pad-y: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: var(--font-ui); font-weight: var(--w-medium); font-size: var(--fs-small);
  letter-spacing: 0.06em;
  padding: var(--_pad-y) 1.9rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn i { font-size: 0.85em; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Muted-gold filled — the one warmer accent, used sparingly */
.btn--gold {
  background: transparent;
  color: var(--gold-text);
  border-color: var(--gold-line);
}
.btn--gold:hover { background: var(--gold-faint); border-color: var(--gold-dim); color: var(--gold-bright); }

/* Ghost / hairline */
.btn--ghost { background: transparent; color: currentColor; border-color: rgba(255,255,255,0.20); }
.btn--ghost:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
.section--light .btn--ghost { border-color: rgba(0,0,0,0.18); }

/* Primary — quiet solid for the rare emphatic CTA */
.btn--primary { background: var(--warm-white); color: var(--vanta); border-color: transparent; }
.btn--primary:hover { background: var(--white); }

.btn--lg { --_pad-y: 1.05rem; padding-inline: 2.3rem; font-size: var(--fs-body); }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-weight: var(--w-medium); color: var(--gold-text); font-size: var(--fs-small);
  letter-spacing: 0.04em;
}
.link-arrow i { transition: transform var(--dur) var(--ease-out); font-size: 0.85em; }
.link-arrow:hover { color: var(--gold-bright); }
.link-arrow:hover i { transform: translateX(6px); }
.section--light .link-arrow { color: var(--gold-deep); }

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.topbar {
  height: var(--topbar-h);
  background: transparent;
  border-bottom: 1px solid var(--graphite-line);
  color: var(--steel-soft);
  font-size: var(--fs-xs);
  position: relative; z-index: var(--z-topbar);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar__contacts { display: flex; gap: 2rem; letter-spacing: 0.04em; }
.topbar__contacts a { display: inline-flex; align-items: center; gap: 0.6rem; transition: color var(--dur-fast); }
.topbar__contacts a:hover { color: var(--gold-text); }
.topbar__contacts i { color: var(--gold-dim); font-size: 0.8em; }
.topbar__right { display: flex; align-items: center; gap: 1.6rem; }
.topbar__social { display: flex; gap: 1.15rem; font-size: 0.9rem; }
.topbar__social a { color: var(--steel); transition: color var(--dur-fast); }
.topbar__social a:hover { color: var(--gold-text); }
.topbar__tools { display: flex; align-items: center; gap: 1.1rem; }
.topbar__tool { color: var(--steel-soft); transition: color var(--dur-fast); }
.topbar__tool:hover { color: var(--gold-text); }
.lang-select {
  background: transparent; border: 0; color: var(--steel-soft);
  font-family: var(--font-ui); padding: 0.2rem 0.4rem; font-size: var(--fs-xs); letter-spacing: 0.12em;
}
@media (max-width: 900px) { .topbar { display: none; } }

/* ============================================================
   PRIMARY NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  height: var(--nav-h);
  background: transparent;
  transition: background var(--dur) var(--ease-out), border-color var(--dur), height var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(10,10,10,0.78);
  backdrop-filter: saturate(130%) blur(16px);
  -webkit-backdrop-filter: saturate(130%) blur(16px);
  border-bottom-color: var(--graphite-line);
  height: 78px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 2rem; }

.brand { display: inline-flex; align-items: center; gap: 0.95rem; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  border: 1px solid var(--gold-line);
  display: grid; place-items: center; border-radius: 6px; position: relative;
}
.brand__mark span { font-family: var(--font-display); font-weight: var(--w-medium); font-size: 1.25rem; color: var(--gold-text); line-height: 1; }
.brand__text { line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.01em; color: var(--white); font-weight: var(--w-body); }
.brand__tag { display: block; font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-dim); margin-top: 4px; }

.nav__menu { display: flex; align-items: center; gap: 0.5rem; }
.nav__link {
  position: relative;
  padding: 0.6rem 1.05rem;
  font-family: var(--font-ui);
  font-size: 1.08rem; font-weight: var(--w-body); letter-spacing: var(--ls-nav);
  color: var(--text-on-dark);
  transition: color var(--dur-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 1.05rem; right: 1.05rem; bottom: 0.3rem;
  height: 1px; background: var(--gold-line);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-bright); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 0.85rem; }
.nav__burger { display: none; width: 48px; height: 48px; border: 1px solid var(--graphite-line); border-radius: var(--r-sm); place-items: center; color: var(--white); }
.nav__burger i { font-size: 1.1rem; }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 430px);
  background: var(--graphite); z-index: var(--z-modal);
  transform: translateX(100%); transition: transform var(--dur) var(--ease-in-out);
  padding: var(--space-5) var(--gutter);
  display: flex; flex-direction: column; gap: var(--space-2);
  border-left: 1px solid var(--graphite-line); overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-5); }
.drawer__close { width: 46px; height: 46px; border: 1px solid var(--graphite-line); border-radius: var(--r-sm); display: grid; place-items: center; }
.drawer a.nav__link { display: block; padding: 1rem 0.4rem; font-size: 1.4rem; border-bottom: 1px solid var(--graphite-line); }
.drawer a.nav__link::after { display: none; }
.drawer__foot { margin-top: auto; padding-top: var(--space-4); }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: var(--z-overlay); opacity: 0; visibility: hidden; transition: opacity var(--dur), visibility var(--dur); backdrop-filter: blur(2px); }
.scrim.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1080px) {
  .nav__menu, .nav__cta .btn { display: none; }
  .nav__burger { display: grid; }
}

/* ============================================================
   HERO — 7-slide Swiper · borderless, airy
   ============================================================ */
.hero { position: relative; height: calc(100svh - var(--nav-h)); min-height: 640px; background: var(--vanta); }
.hero .swiper, .hero .swiper-wrapper, .hero .swiper-slide { height: 100%; }
.hero-slide { position: relative; height: 100%; overflow: hidden; }
.hero-slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 28%, transparent 84%);
  mask-image: linear-gradient(to left, #000 0%, #000 28%, transparent 84%);
  transform: translateX(6%) translateY(1%) scale(1.14);
}
.swiper-slide-active .hero-slide__bg { animation: heroRollZoom 8s var(--ease-out) forwards; }
@keyframes heroRollZoom { 0% { transform: translateX(6%) translateY(1%) scale(1.14); } 100% { transform: translateX(0) translateY(-3%) scale(1.22); } }
@media (prefers-reduced-motion: reduce) { .swiper-slide-active .hero-slide__bg { animation: none; transform: translateX(0) scale(1.14); } }
.hero-slide__overlay { position: absolute; inset: 0; background: var(--grad-overlay); }
/* muted grid wash — much fainter than v1, no hard lines */
.hero-slide__grid {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(var(--gold-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-faint) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 18% 62%, #000 0%, transparent 58%);
}
.hero-slide__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: 1080px; }
.hero-slide__index { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 2rem; }
.hero-slide__index b { color: var(--steel-soft); font-weight: var(--w-body); }
.hero-slide h1 { font-size: var(--fs-hero); color: var(--white); max-width: min(94vw, 860px); font-weight: var(--w-display); }
.hero-slide h1 .accent { color: var(--gold-text); font-style: italic; }
.hero-slide__sub { margin-top: 1.9rem; font-size: var(--fs-sub); color: #CFCFCA; max-width: 64ch; font-weight: var(--w-body); }
.hero-slide__actions { margin-top: 2.8rem; display: flex; gap: 1.1rem; flex-wrap: wrap; }

/* NOTE: v1 hero framing / reticle corners removed per redesign. */

/* Hero controls — minimal */
.hero__ui { position: absolute; z-index: 4; bottom: clamp(1.5rem, 4vh, 3rem); left: var(--gutter); right: var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.hero__pag { display: flex; gap: 0.7rem; align-items: center; }
.hero__pag .bullet { width: 30px; height: 1px; background: rgba(255,255,255,0.28); transition: background var(--dur), height var(--dur); }
.hero__pag .bullet.is-active { background: var(--gold-text); height: 2px; }
.hero__arrows { display: flex; gap: 0.8rem; }
.hero__arrows button { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; display: grid; place-items: center; color: var(--white); transition: border-color var(--dur), color var(--dur); }
.hero__arrows button:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
@media (max-width: 640px){ .hero__arrows { display: none; } }

/* Placeholder backgrounds (swap for real photography) */
.ph { background-color: #0e0e0e; position: relative; }
.ph::after { content: attr(data-ph); position: absolute; inset: auto 0 10px 0; text-align: center; font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
.ph-1 { background-image: radial-gradient(120% 120% at 22% 12%, #19212b 0%, #0a0d11 62%); }
.ph-2 { background-image: radial-gradient(120% 120% at 80% 22%, #262019 0%, #0d0a07 62%); }
.ph-3 { background-image: radial-gradient(120% 120% at 30% 80%, #101d1b 0%, #070c0b 62%); }
.ph-4 { background-image: radial-gradient(120% 120% at 70% 30%, #211a10 0%, #0b0804 62%); }
.ph-5 { background-image: radial-gradient(120% 120% at 42% 42%, #1a1a20 0%, #08080b 62%); }
.ph-6 { background-image: radial-gradient(120% 120% at 60% 70%, #0f161f 0%, #05080b 62%); }
.ph-7 { background-image: radial-gradient(120% 120% at 50% 22%, #201e18 0%, #0a0906 62%); }

/* ============================================================
   INTRO + STATS
   ============================================================ */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
.intro__figure { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; }
.intro__figure .ph { position: absolute; inset: 0; }
.intro__badge { position: absolute; left: 26px; bottom: 26px; z-index: 2; background: rgba(10,10,10,0.55); backdrop-filter: blur(12px); border-radius: var(--r-md); padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1.1rem; }
.intro__badge b { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-text); line-height: 1; font-weight: var(--w-body); }
.intro__badge span { font-size: var(--fs-small); color: var(--steel-soft); max-width: 15ch; line-height: 1.4; }
.intro h2 { font-size: var(--fs-section); }
.intro p { color: var(--steel-soft); }
.section--light .intro p { color: var(--ink-soft); }
.intro__points { display: grid; gap: 1.2rem; margin-top: var(--space-5); }
.intro__point { display: flex; gap: 1rem; align-items: flex-start; }
.intro__point i { color: var(--gold-dim); margin-top: 8px; font-size: 0.7em; }
@media (max-width: 860px){ .intro { grid-template-columns: 1fr; } }

/* Stats — open, hairline separators (no boxed grid) */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat { padding: 0 clamp(1rem,2.5vw,2rem); text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--graphite-line); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.8rem,5vw,4rem); color: var(--white); line-height: 1; font-weight: var(--w-display); }
.stat__num .plus { color: var(--gold-dim); }
.stat__label { margin-top: 1rem; font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel); }
@media (max-width: 900px){ .stats { grid-template-columns: repeat(2,1fr); gap: 2.5rem 0; } .stat:nth-child(odd)::before { display: none; } .stat:last-child { grid-column: 1 / -1; } }
@media (max-width: 520px){ .stats { grid-template-columns: 1fr; } .stat::before { display: none !important; } }

/* ============================================================
   CARDS — borderless, hairline underline on hover
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,3vw,3rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem,3vw,3rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem,3vw,3rem); }
@media (max-width: 1000px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: transparent;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--graphite-line);
  transition: border-color var(--dur);
}
.section--light .card { border-bottom-color: var(--light-grey); }
.card::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px; background: var(--gold-dim); transition: width var(--dur-slow) var(--ease-out); }
.card:hover::after { width: 100%; }
.card__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 1.6rem; color: var(--gold-dim); }
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon { color: var(--gold-text); }
.card h3 { font-size: var(--fs-card); margin-bottom: 0.7rem; color: currentColor; }
.card p { font-size: var(--fs-small); color: var(--steel-soft); }
.section--light .card p { color: var(--ink-soft); }
.card__no { position: absolute; top: 0; right: 0; font-family: var(--font-display); font-size: 1.1rem; color: var(--steel); }

/* Industries — open list, hairline rows (no boxed grid) */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0 clamp(1.5rem,3vw,3rem); }
.ind {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--graphite-line);
  transition: color var(--dur), border-color var(--dur);
}
.ind:hover { color: var(--gold-bright); border-bottom-color: var(--gold-line); }
.ind__ic { color: var(--gold-dim); flex: none; font-size: 0.95em; transition: color var(--dur); }
.ind:hover .ind__ic { color: var(--gold-text); }
.ind span { font-size: var(--fs-small); font-weight: var(--w-body); }
@media (max-width: 900px){ .ind-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .ind-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — numbered sequence (light)
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.5rem,3vw,3rem); }
.process__step { position: relative; padding-top: 1.9rem; }
.process__step::after { content: ""; position: absolute; top: 0.6rem; left: 0; right: -1.5rem; height: 1px; background: var(--gold-line); }
.process__step:last-child::after { display: none; }
.process__step h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.process__step p { font-size: var(--fs-small); color: var(--steel-soft); }
.section--light .process__step p { color: var(--ink-soft); }
@media (max-width: 900px){ .process { grid-template-columns: repeat(2,1fr); } .process__step::after { display: none; } }
@media (max-width: 520px){ .process { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES feature cards (image-led, borderless)
   ============================================================ */
.svc-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.svc-card .ph { position: absolute; inset: 0; transition: transform var(--dur-slow) var(--ease-out); }
.svc-card:hover .ph { transform: scale(1.05); }
.svc-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,0.88) 100%); }
.svc-card__body { position: relative; z-index: 2; padding: 2rem; }
.svc-card__kicker { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-dim); }
.svc-card h3 { font-size: 1.7rem; color: var(--white); margin: 0.6rem 0 0.5rem; }
.svc-card p { font-size: var(--fs-small); color: #C6C6C1; max-width: 42ch; }
.svc-card .link-arrow { margin-top: 1.2rem; }

/* ============================================================
   PROJECTS preview (borderless)
   ============================================================ */
.proj-card { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.proj-card .ph { aspect-ratio: 4/3; transition: transform var(--dur-slow) var(--ease-out); }
.proj-card:hover .ph { transform: scale(1.04); }
.proj-card__meta { padding: 1.6rem 0 0; }
.proj-card__tag { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-dim); }
.proj-card h3 { font-size: 1.5rem; margin: 0.6rem 0 0.4rem; }
.proj-card__loc { font-size: var(--fs-small); color: var(--steel); display: inline-flex; align-items: center; gap: 0.55rem; }
.proj-card__loc i { color: var(--gold-dim); font-size: 0.85em; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card { padding: clamp(1.5rem,4vw,3rem) 0; text-align: center; max-width: 900px; margin-inline: auto; }
.quote-card__mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold-dim); line-height: 0.5; height: 1.8rem; }
.quote-card blockquote { font-family: var(--font-display); font-size: var(--fs-sub); line-height: 1.6; margin: 1.6rem auto 2rem; font-style: italic; color: var(--text-on-dark); max-width: 46ch; }
.section--light .quote-card blockquote { color: var(--ink); }
.quote-card__who { display: inline-flex; align-items: center; gap: 1rem; }
.quote-card__avatar { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-line); flex: none; display: grid; place-items: center; font-family: var(--font-display); color: var(--gold-text); font-size: 1.2rem; }
.quote-card__name { font-weight: var(--w-medium); }
.quote-card__role { font-size: var(--fs-small); color: var(--steel); }
.quotes .swiper-pagination-bullet { background: var(--steel); opacity: 0.4; }
.quotes .swiper-pagination-bullet-active { background: var(--gold-text); opacity: 1; }

/* Client logos — open row, hairline top/bottom */
.logos { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; border-top: 1px solid var(--graphite-line); border-bottom: 1px solid var(--graphite-line); }
.logo-cell { aspect-ratio: 3/1.5; display: grid; place-items: center; color: var(--steel); font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; transition: color var(--dur); }
.logo-cell:hover { color: var(--gold-text); }
@media (max-width: 900px){ .logos { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px){ .logos { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   CTA + Newsletter (borderless)
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(1rem,4vw,3rem) 0; }
.cta-band__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.cta-band h2 { font-size: var(--fs-section); color: var(--white); }
.section--light .cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--steel-soft); margin: 1.2rem auto 0; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }

.newsletter { display: flex; gap: 0.75rem; margin-top: 2rem; max-width: 520px; margin-inline: auto; flex-wrap: wrap; justify-content: center; }
.field {
  flex: 1 1 240px; background: transparent;
  border: 0; border-bottom: 1px solid var(--graphite-line);
  border-radius: 0; padding: 0.9rem 0.3rem; color: var(--white);
  font-family: var(--font-body); font-size: var(--fs-small);
  transition: border-color var(--dur);
}
.field::placeholder { color: var(--steel); }
.field:focus { outline: none; border-bottom-color: var(--gold-dim); }
.section--light .field { color: var(--ink); border-bottom-color: var(--light-grey); }
.form-note { font-size: var(--fs-xs); color: var(--steel); margin: 1rem auto 0; }
.form-status { font-size: var(--fs-small); margin-top: 1rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--gold-bright); }
.form-status.is-err { color: #d0906a; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--vanta); border-top: 1px solid var(--graphite-line); color: var(--steel-soft); padding-top: var(--space-7); }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: var(--space-6); }
.footer__brand .brand { margin-bottom: 1.6rem; }
.footer__brand p { font-size: var(--fs-small); max-width: 36ch; }
.footer__social { display: flex; gap: 0.9rem; margin-top: 1.8rem; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--graphite-line); border-radius: 50%; display: grid; place-items: center; color: var(--steel-soft); transition: border-color var(--dur), color var(--dur); }
.footer__social a:hover { border-color: var(--gold-dim); color: var(--gold-text); }
.footer__col h4 { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--white); margin-bottom: 1.6rem; font-weight: var(--w-medium); }
.footer__col ul { display: grid; gap: 0.85rem; }
.footer__col a { font-size: var(--fs-small); transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--gold-text); }
.footer__contact li { display: flex; gap: 0.9rem; font-size: var(--fs-small); margin-bottom: 1.1rem; }
.footer__contact i { color: var(--gold-dim); margin-top: 5px; font-size: 0.85em; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 2rem; font-size: var(--fs-xs); flex-wrap: wrap; border-top: 1px solid var(--graphite-line); }
.footer__legal { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--gold-text); }
@media (max-width: 900px){ .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer__top { grid-template-columns: 1fr; } }

/* Floating controls */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: var(--z-overlay); width: 48px; height: 48px; border-radius: 50%; background: transparent; border: 1px solid var(--gold-line); color: var(--gold-text); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--dur), visibility var(--dur), transform var(--dur), border-color var(--dur); backdrop-filter: blur(8px); }
.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--gold-dim); }
.wa-float { position: fixed; left: 24px; bottom: 24px; z-index: var(--z-overlay); width: 52px; height: 52px; border-radius: 50%; background: #1FA855; color: #fff; display: grid; place-items: center; font-size: 1.4rem; box-shadow: var(--shadow-sm); transition: transform var(--dur); }
.wa-float:hover { transform: scale(1.06); }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Loading screen — minimal */
.preloader { position: fixed; inset: 0; z-index: 200; background: var(--vanta); display: grid; place-items: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { text-align: center; }
.preloader__mark .brand__mark { width: 62px; height: 62px; margin: 0 auto; }
.preloader__mark .brand__mark span { font-size: 1.7rem; }
.preloader__bar { width: 140px; height: 1px; background: var(--graphite-line); margin: 1.8rem auto 0; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 40%; background: var(--gold-dim); animation: load 1.1s var(--ease-in-out) infinite; }
@keyframes load { 0%{ transform: translateX(-100%);} 100%{ transform: translateX(350%);} }

/* ============================================================
   PHASE 2 — INTERIOR PAGE COMPONENTS
   About + Services. Same editorial system: airy, Garamond,
   muted gold, hairline-based, borderless.
   ============================================================ */

/* ---- Interior page hero ---- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 6vw, 8rem) clamp(3rem,5vw,6rem); }
.page-hero__bg { position: absolute; inset: 0; opacity: 0.55; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.55), rgba(10,10,10,0.92)); }
.page-hero__grid { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; background-image: linear-gradient(var(--gold-faint) 1px, transparent 1px), linear-gradient(90deg, var(--gold-faint) 1px, transparent 1px); background-size: 120px 120px; mask-image: radial-gradient(circle at 82% 30%, #000, transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: var(--fs-page); color: var(--white); max-width: 20ch; margin-top: 1.6rem; }
.page-hero p { margin-top: 1.6rem; color: var(--steel-soft); font-size: var(--fs-sub); max-width: 62ch; }

/* ---- Breadcrumbs ---- */
.crumbs { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.crumbs a { transition: color var(--dur-fast); }
.crumbs a:hover { color: var(--gold-text); }
.crumbs .sep { color: var(--gold-dim); }
.crumbs .current { color: var(--steel-soft); }

/* ---- Feature split (reusable, alternating) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split__media { position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; }
.split__media .ph { position: absolute; inset: 0; }
.split--reverse .split__text { order: 2; }
.split h2 { font-size: var(--fs-section); }
.split p { color: var(--steel-soft); margin-top: 1.5rem; }
.section--light .split p { color: var(--ink-soft); }
.split .eyebrow { margin-bottom: 1.6rem; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split--reverse .split__text { order: 0; } }

/* ---- Executive message (Chairman / MD) ---- */
.exec-msg { display: grid; grid-template-columns: 300px 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.exec-msg__portrait { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; }
.exec-msg__portrait .ph { position: absolute; inset: 0; }
.exec-msg__body .eyebrow { margin-bottom: 1.6rem; }
.exec-msg blockquote { font-family: var(--font-display); font-size: var(--fs-sub); font-style: italic; line-height: 1.55; color: var(--text-on-dark); }
.exec-msg__body p { color: var(--steel-soft); margin-top: 1.5rem; }
.exec-msg__sign { margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--graphite-line); }
.exec-msg__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.exec-msg__role { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-text); margin-top: 0.4rem; }
.exec-msg--reverse { grid-template-columns: 1fr 300px; }
@media (max-width: 760px){ .exec-msg { grid-template-columns: 1fr; } .exec-msg--reverse { grid-template-columns: 1fr; } .exec-msg__portrait { max-width: 300px; } }

/* ---- People (Board / C-Suite) ---- */
.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.people--three { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
.profile__photo { position: relative; aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.3rem; }
.profile__photo .ph { position: absolute; inset: 0; }
.profile__name { font-family: var(--font-display); font-size: 1.45rem; color: currentColor; }
.profile__role { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-text); margin-top: 0.5rem; }
.profile__bio { font-size: var(--fs-small); color: var(--steel-soft); margin-top: 0.9rem; }
.profile__social { display: flex; gap: 0.9rem; margin-top: 1rem; color: var(--steel); font-size: 0.95rem; }
.profile__social a { transition: color var(--dur-fast); }
.profile__social a:hover { color: var(--gold-text); }
@media (max-width: 1000px){ .people, .people--three, .people--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .people, .people--three, .people--four { grid-template-columns: 1fr; } }

/* ---- Hairline list rows (values / policies) ---- */
.list-rows { display: grid; }
.list-row { display: grid; grid-template-columns: 3rem 0.5fr 1fr; gap: 2rem; padding: 2.4rem 0; border-top: 1px solid var(--graphite-line); align-items: start; }
.list-rows .list-row:last-child { border-bottom: 1px solid var(--graphite-line); }
.section--light .list-row { border-color: var(--light-grey); }
.list-row__no { font-family: var(--font-display); color: var(--gold-dim); font-size: 1.2rem; }
.list-row h3 { font-size: var(--fs-card); }
.list-row p { color: var(--steel-soft); font-size: var(--fs-small); }
.section--light .list-row p { color: var(--ink-soft); }
@media (max-width: 760px){ .list-row { grid-template-columns: 1fr; gap: 0.7rem; } .list-row__no { display: none; } }

/* ---- Tags / chips ---- */
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.06em; color: var(--steel-soft); border: 1px solid var(--graphite-line); border-radius: var(--r-pill); padding: 0.4rem 1.05rem; }
.tag--gold { border-color: var(--gold-line); color: var(--gold-text); }

/* ---- Certifications ---- */
.certs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--graphite-line); border-bottom: 1px solid var(--graphite-line); }
.cert { padding: 2.2rem 1.5rem; text-align: center; border-left: 1px solid var(--graphite-line); }
.cert:first-child { border-left: 0; }
.cert i { color: var(--gold-dim); font-size: 1.5rem; }
.cert h4 { font-family: var(--font-display); font-size: 1.2rem; margin-top: 0.9rem; color: var(--white); font-weight: var(--w-body); }
.cert p { font-size: var(--fs-xs); color: var(--steel); margin: 0.5rem auto 0; }
@media (max-width: 820px){ .certs { grid-template-columns: repeat(2, 1fr); } .cert:nth-child(odd) { border-left: 0; } .cert:nth-child(n+3) { border-top: 1px solid var(--graphite-line); } }
@media (max-width: 460px){ .certs { grid-template-columns: 1fr; } .cert { border-left: 0; border-top: 1px solid var(--graphite-line); } .cert:first-child { border-top: 0; } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
/* Service index (anchor nav) */
.svc-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(1.5rem,3vw,3rem); border-top: 1px solid var(--graphite-line); }
.svc-index a { display: flex; align-items: baseline; gap: 1rem; padding: 1.5rem 0.3rem; border-bottom: 1px solid var(--graphite-line); transition: color var(--dur), padding-left var(--dur); }
.svc-index a:hover { color: var(--gold-bright); padding-left: 6px; }
.svc-index__no { font-family: var(--font-display); color: var(--gold-dim); font-size: 1.05rem; }
.svc-index span:last-child { font-size: var(--fs-small); }
@media (max-width: 900px){ .svc-index { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .svc-index { grid-template-columns: 1fr; } }

/* Service detail block */
.service { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); padding-block: clamp(4rem,7vw,7rem); border-top: 1px solid var(--graphite-line); scroll-margin-top: 100px; }
.service__head { position: sticky; top: 110px; align-self: start; }
.service__no { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-dim); }
.service__head h2 { font-size: var(--fs-section); margin: 1rem 0 1.3rem; }
.service__head p { color: var(--steel-soft); }
.service__head .btn { margin-top: 2.2rem; }
.service__body { display: grid; gap: 2.6rem; }
.service__sub { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 1.3rem; }
.caps { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; }
.cap { display: flex; gap: 0.85rem; align-items: flex-start; font-size: var(--fs-small); color: var(--steel-soft); }
.cap i { color: var(--gold-dim); margin-top: 9px; font-size: 0.45em; }
@media (max-width: 900px){ .service { grid-template-columns: 1fr; } .service__head { position: static; } }
@media (max-width: 560px){ .caps { grid-template-columns: 1fr; } }

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--graphite-line); max-width: 900px; }
.acc-item { border-bottom: 1px solid var(--graphite-line); }
.acc-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.6rem 0; text-align: left; font-family: var(--font-display); font-size: 1.35rem; color: var(--text-on-dark); transition: color var(--dur-fast); }
.acc-q:hover { color: var(--gold-bright); }
.acc-q .ico { color: var(--gold-dim); transition: transform var(--dur); flex: none; font-size: 0.8em; }
.acc-item.is-open .acc-q .ico { transform: rotate(45deg); color: var(--gold-text); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease-out); }
.acc-a__inner { padding-bottom: 1.6rem; color: var(--steel-soft); font-size: var(--fs-small); max-width: 68ch; }

/* ============================================================
   PHASE 3 — PROJECTS · GALLERY · CONTACT
   ============================================================ */

/* ---- Filter bar ---- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-6); }
.filter-btn { font-family: var(--font-ui); font-size: var(--fs-small); letter-spacing: 0.04em; color: var(--steel-soft); border: 1px solid var(--graphite-line); border-radius: var(--r-pill); padding: 0.55rem 1.35rem; transition: color var(--dur), border-color var(--dur), background var(--dur); }
.filter-btn:hover { color: var(--gold-text); border-color: var(--gold-line); }
.filter-btn.is-active { color: var(--gold-bright); border-color: var(--gold-dim); background: var(--gold-faint); }

/* ---- Project grid ---- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,3vw,2.5rem); }
@media (max-width: 1000px){ .proj-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .proj-grid { grid-template-columns: 1fr; } }
.proj-card { cursor: pointer; text-align: left; display: block; width: 100%; background: transparent; transition: opacity var(--dur), transform var(--dur); }
.proj-card.is-hidden { display: none; }
.proj-card__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.proj-card__frame .ph { aspect-ratio: 4/3; transition: transform var(--dur-slow) var(--ease-out); }
.proj-card:hover .proj-card__frame .ph { transform: scale(1.05); }
.proj-card__view { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(10,10,10,0.35); opacity: 0; transition: opacity var(--dur); }
.proj-card:hover .proj-card__view, .proj-card:focus-visible .proj-card__view { opacity: 1; }
.proj-card__view span { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--white); border: 1px solid rgba(255,255,255,0.5); border-radius: var(--r-pill); padding: 0.7rem 1.4rem; }

/* ---- Project detail modal ---- */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity var(--dur), visibility var(--dur); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(4,4,4,0.82); backdrop-filter: blur(6px); }
.modal__panel { position: relative; z-index: 2; background: var(--graphite); border: 1px solid var(--graphite-line); border-radius: var(--r-lg); max-width: 980px; width: 100%; max-height: 90vh; overflow: auto; transform: translateY(16px) scale(0.99); transition: transform var(--dur) var(--ease-out); }
.modal.is-open .modal__panel { transform: none; }
.modal__media { position: relative; aspect-ratio: 16/7; }
.modal__media .ph { position: absolute; inset: 0; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(10,10,10,0.55); border: 1px solid rgba(255,255,255,0.2); color: #fff; display: grid; place-items: center; transition: border-color var(--dur); }
.modal__close:hover { border-color: var(--gold-dim); }
.modal__body { padding: clamp(1.8rem,3.5vw,3rem); }
.modal__tag { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-text); }
.modal__body h3 { font-size: var(--fs-section); margin: 0.8rem 0 1.2rem; }
.modal__lead { color: var(--steel-soft); }
.modal__specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin: 2rem 0; padding: 1.6rem 0; border-top: 1px solid var(--graphite-line); border-bottom: 1px solid var(--graphite-line); }
.modal__spec dt { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.modal__spec dd { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-top: 0.4rem; }
.modal__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 1.6rem; }
.modal__cols h4 { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 0.8rem; }
.modal__cols p { color: var(--steel-soft); font-size: var(--fs-small); }
@media (max-width: 700px){ .modal__specs { grid-template-columns: repeat(2,1fr); } .modal__cols { grid-template-columns: 1fr; } }

/* ---- Gallery tabs ---- */
.tabs { display: inline-flex; gap: 0.3rem; border: 1px solid var(--graphite-line); border-radius: var(--r-pill); padding: 0.3rem; margin-bottom: var(--space-6); }
.tab { font-family: var(--font-ui); font-size: var(--fs-small); padding: 0.6rem 1.7rem; border-radius: var(--r-pill); color: var(--steel-soft); transition: color var(--dur), background var(--dur); }
.tab.is-active { background: var(--gold-faint); color: var(--gold-bright); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ---- Gallery grid ---- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.5rem); }
@media (max-width: 900px){ .gal-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .gal-grid { grid-template-columns: 1fr; } }
.gal-item { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.gal-item.is-hidden { display: none; }
.gal-item .ph { aspect-ratio: 4/3; transition: transform var(--dur-slow) var(--ease-out); }
.gal-item:hover .ph { transform: scale(1.06); }
.gal-item__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,0.85)); opacity: 0; transition: opacity var(--dur); }
.gal-item:hover .gal-item__veil, .gal-item:focus-visible .gal-item__veil { opacity: 1; }
.gal-item__info { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem; z-index: 2; opacity: 0; transform: translateY(8px); transition: opacity var(--dur), transform var(--dur); }
.gal-item:hover .gal-item__info, .gal-item:focus-visible .gal-item__info { opacity: 1; transform: none; }
.gal-item__cat { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); }
.gal-item__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-top: 0.3rem; }
.gal-item__meta { font-size: var(--fs-xs); color: var(--steel-soft); margin-top: 0.3rem; }
.gal-item__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.gal-item__play span { width: 62px; height: 62px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); display: grid; place-items: center; color: #fff; font-size: 1.1rem; background: rgba(10,10,10,0.3); transition: background var(--dur), border-color var(--dur); }
.gal-item:hover .gal-item__play span { background: var(--gold-faint); border-color: var(--gold-dim); }

/* ---- Lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: clamp(1.5rem,5vw,4rem); opacity: 0; visibility: hidden; transition: opacity var(--dur), visibility var(--dur); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(4,4,4,0.92); }
.lightbox__stage { position: relative; z-index: 2; max-width: 1100px; width: 100%; }
.lightbox__frame { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/9; }
.lightbox__frame .ph { position: absolute; inset: 0; }
.lightbox__cap { margin-top: 1.2rem; text-align: center; color: var(--steel-soft); font-size: var(--fs-small); }
.lightbox__cap b { color: var(--white); font-family: var(--font-display); font-weight: var(--w-body); font-size: 1.2rem; display: block; margin-bottom: 0.3rem; }
.lightbox__btn { position: absolute; z-index: 3; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(10,10,10,0.5); color: #fff; display: grid; place-items: center; top: 50%; transform: translateY(-50%); transition: border-color var(--dur); }
.lightbox__btn:hover { border-color: var(--gold-dim); }
.lightbox__prev { left: -70px; } .lightbox__next { right: -70px; }
.lightbox__close { position: absolute; top: -60px; right: 0; z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); color: #fff; display: grid; place-items: center; }
@media (max-width: 1240px){ .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; } .lightbox__close { top: -52px; } }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 1.8rem; }
.contact-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-item i { color: var(--gold-dim); font-size: 1.1rem; margin-top: 5px; flex: none; width: 22px; text-align: center; }
.contact-item h4 { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 0.3rem; }
.contact-item p, .contact-item a { color: var(--text-on-dark); font-size: var(--fs-small); }
.contact-item a:hover { color: var(--gold-text); }
.contact-map { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--graphite-line); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(0.9); }
.contact-map .ph { position: absolute; inset: 0; }
.contact-map__pin { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; color: var(--gold-text); font-size: 2rem; pointer-events: none; }

/* Department list */
.depts { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--graphite-line); }
.dept { padding: 1.8rem clamp(1rem,2vw,1.5rem); border-bottom: 1px solid var(--graphite-line); border-left: 1px solid var(--graphite-line); }
.dept:nth-child(4n+1) { border-left: 0; }
.dept h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: var(--w-body); margin-bottom: 0.5rem; }
.dept a { display: block; font-size: var(--fs-small); color: var(--steel-soft); }
.dept a:hover { color: var(--gold-text); }
@media (max-width: 820px){ .depts { grid-template-columns: repeat(2,1fr); } .dept:nth-child(2n+1) { border-left: 0; } }
@media (max-width: 460px){ .depts { grid-template-columns: 1fr; } .dept { border-left: 0; } }

/* Full form fields */
.form-card { background: var(--graphite-2); border: 1px solid var(--graphite-line); border-radius: var(--r-lg); padding: clamp(1.8rem,3vw,2.6rem); }
.section--light .form-card { background: var(--white); border-color: var(--light-grey); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.input, .textarea, .select { background: transparent; border: 1px solid var(--graphite-line); border-radius: var(--r-sm); padding: 0.85rem 1rem; color: var(--white); font-family: var(--font-body); font-size: var(--fs-small); transition: border-color var(--dur); width: 100%; }
.section--light .input, .section--light .textarea, .section--light .select { color: var(--ink); border-color: var(--light-grey); }
.input::placeholder, .textarea::placeholder { color: var(--steel); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold-dim); }
.textarea { min-height: 130px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BFA05A' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.select option { background: var(--graphite); color: var(--white); }
@media (max-width: 560px){ .form-grid { grid-template-columns: 1fr; } }

/* Emergency / download callouts */
.callout { display: flex; align-items: center; gap: 1.2rem; padding: 1.4rem 1.6rem; border: 1px solid var(--graphite-line); border-radius: var(--r-md); }
.callout i { color: var(--gold-text); font-size: 1.4rem; flex: none; }
.callout h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: var(--w-body); }
.callout p { font-size: var(--fs-small); color: var(--steel-soft); }
.callout a { color: var(--gold-text); }

/* ============================================================
   BRAND LOGO IMAGE (uploaded logo, reversed for dark chrome)
   ============================================================ */
.brand__logo { height: 50px; width: auto; display: block; }
.nav .brand__logo { height: 48px; }
.nav.is-solid .brand__logo { height: 44px; transition: height var(--dur) var(--ease-out); }
.drawer__head .brand__logo { height: 44px; }
.footer__brand .brand__logo { height: 66px; }
.preloader__mark .brand__logo { height: 84px; width: auto; margin: 0 auto; display: block; }
@media (max-width: 600px){ .nav .brand__logo { height: 42px; } }

/* Team headshots (replace placeholder .ph blocks) */
.profile__photo .profile__img,
.exec-msg__portrait .profile__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}

/* Who We Are — uploaded photo blended over the placeholder at 40% opacity */
.intro__figure .intro__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }

/* Section background video (Why Choose DEL) — 25% opacity, looping, top->bottom dark fade */
.section--video { position: relative; overflow: hidden; }
.section--video > .container { position: relative; z-index: 2; }
.section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; z-index: 0; pointer-events: none; }
.section__video-fade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.75) 78%, var(--vanta) 100%); }

/* ============================================================
   PHASE 5 — legal & supporting pages
   ============================================================ */
.legal { max-width: 820px; }
.legal h3 { font-size: var(--fs-card); margin: 2.4rem 0 0.9rem; }
.legal h3:first-of-type { margin-top: 0; }
.legal p { color: var(--steel-soft); margin-bottom: 1rem; }
.legal ul { color: var(--steel-soft); margin: 0 0 1.2rem 1.2rem; display: grid; gap: 0.5rem; }
.legal .muted { color: var(--steel); font-size: var(--fs-small); }

.doc-list { display: grid; gap: 0; border-top: 1px solid var(--graphite-line); }
.doc-row { display: flex; align-items: center; gap: 1.4rem; padding: 1.6rem 0.3rem; border-bottom: 1px solid var(--graphite-line); }
.doc-row .doc-ico { color: var(--gold-dim); font-size: 1.5rem; flex: none; width: 34px; text-align: center; }
.doc-row__body { flex: 1; }
.doc-row__body h3 { font-size: 1.25rem; }
.doc-row__body p { color: var(--steel-soft); font-size: var(--fs-small); margin-top: 0.2rem; }
.doc-row .btn { flex: none; }
@media (max-width: 560px){ .doc-row { flex-wrap: wrap; } .doc-row .btn { width: 100%; } }

.roles { display: grid; gap: 0; border-top: 1px solid var(--graphite-line); }
.role { display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center; padding: 1.8rem 0.3rem; border-bottom: 1px solid var(--graphite-line); }
.role h3 { font-size: 1.3rem; }
.role__meta { color: var(--steel-soft); font-size: var(--fs-small); margin-top: 0.4rem; display: flex; gap: 1.3rem; flex-wrap: wrap; }
.role__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.role__meta i { color: var(--gold-dim); }
@media (max-width: 620px){ .role { grid-template-columns: 1fr; } }

.news-card__media { position: relative; aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1.2rem; }
.news-card__media .ph { position: absolute; inset: 0; }
.news-card__cat { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); }
.news-card h3 { font-size: var(--fs-card); margin: 0.5rem 0; }
.news-card p { color: var(--steel-soft); font-size: var(--fs-small); }
.news-card__date { color: var(--steel); font-size: var(--fs-xs); margin-top: 0.7rem; }

.error { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: var(--section-y) 0; }
.error__code { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 11rem); line-height: 1; color: var(--gold-text); font-weight: var(--w-display); }
.error h1 { font-size: var(--fs-section); margin: 0.8rem 0 1rem; }
.error p { color: var(--steel-soft); max-width: 48ch; margin: 0 auto 2rem; }
.error__links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Homepage project card — supporting copy */
.proj-card__excerpt { color: var(--steel-soft); font-size: var(--fs-small); margin: 0.7rem 0 0.9rem; }
.proj-card__facts { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }
.proj-card__facts i { color: var(--gold-dim); margin-right: 0.4rem; }

/* CTA band — reassurance row */
.cta-assure { display: flex; justify-content: center; gap: clamp(1.2rem,3vw,2.6rem); flex-wrap: wrap; margin-top: 2rem; font-size: var(--fs-small); color: var(--steel-soft); }
.cta-assure span { display: inline-flex; align-items: center; gap: 0.6rem; }
.cta-assure i { color: var(--gold-dim); font-size: 0.75em; }

/* Fix: hero control bar is absolutely positioned between gutters — let left/right govern
   its width instead of .container's width (prevented a small horizontal scroll on mobile). */
.hero .hero__ui { width: auto; max-width: none; }

/* Page hero with photography — image at 25% opacity, fading top→bottom into dark */
.page-hero--photo .page-hero__bg { opacity: 0.25; background-size: cover; background-position: center; }
.page-hero--photo .page-hero__overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.78) 80%, var(--vanta) 100%);
}

/* Process stages — icon + descriptor line */
.process__step { padding-top: 2.5rem; }
.process__ico { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--gold-text); font-size: 1.1rem; margin-bottom: 1.2rem; transition: border-color var(--dur), color var(--dur); }
.process__step:hover .process__ico { border-color: var(--gold-dim); color: var(--gold-bright); }
.process__step h3 { margin-bottom: 0.45rem; }
.process__kicker { display: block; font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 0.85rem; }

/* Process section — trimmed so the band sits close around its content */
.section--fit { padding-block: clamp(2.5rem, 1.6rem + 2vw, 3.75rem); }
.section--fit .sec-head { margin-bottom: clamp(1.75rem, 1rem + 1.6vw, 2.75rem); }

/* Featured service cards — sample photography behind the veil */
.svc-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.svc-card:hover .svc-card__img { transform: scale(1.05); }

/* Industries — supporting descriptor line */
.ind { align-items: flex-start; }
.ind__ic { margin-top: 0.3rem; }
.ind__desc { display: block; font-size: var(--fs-xs); color: var(--steel); margin-top: 0.3rem; line-height: 1.5; }

/* Why Choose DEL — proof points */
.card__proof { margin-top: 1.1rem; gap: 0.45rem; }
.card__proof .tag { font-size: 0.72rem; padding: 0.3rem 0.8rem; }

/* Real imagery inside placeholder media blocks (.ph is position:relative) */
.ph > .media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph > .media-img + *, .ph:has(> .media-img)::after { display: none; }
.proj-card:hover .ph > .media-img, .news-card:hover .ph > .media-img { transform: scale(1.04); }
.ph > .media-img { transition: transform var(--dur-slow) var(--ease-out); }

/* Clients & partners — continuous right-to-left marquee */
.logos { display: block; overflow: hidden; position: relative; padding: 1.6rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: flex; align-items: center; width: max-content; animation: logosScroll 46s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos .logo-cell { aspect-ratio: auto; flex: 0 0 auto; width: clamp(160px, 15vw, 220px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.85rem; padding: 0 clamp(1rem, 2vw, 2rem); }
.logos .logo-cell img { height: clamp(42px, 4vw, 56px); width: auto; max-width: 100%; object-fit: contain;
  opacity: 0.72; transition: opacity var(--dur); }
.logos .logo-cell:hover img { opacity: 1; }
.logo-cell__name { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--steel); text-align: center; line-height: 1.4; transition: color var(--dur); }
.logos .logo-cell:hover .logo-cell__name { color: var(--gold-text); }
@keyframes logosScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logos__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; } }

/* Start a Project — photographic backdrop at 15% so the copy stays fully legible */
.cta-band--bg { border-radius: var(--r-lg); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; border-radius: inherit; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; display: block; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.72) 100%); }

/* Why Choose DEL — card titles in solid white for readability */
.grid-4 .card h3 { color: var(--white); }

/* About — MD portrait and executive photos: muted black & white, colour on hover */
.exec-msg__portrait .profile__img,
.profile__photo .profile__img {
  opacity: 0.25;
  filter: grayscale(1);
  transition: opacity var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
}
.exec-msg__portrait:hover .profile__img,
.profile__photo:hover .profile__img {
  opacity: 1;
  filter: grayscale(0);
}

/* About — feature imagery at 30% inside the split media blocks */
.split__media .ph > .split__img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block; opacity: 0.30;
  transition: opacity var(--dur-slow) var(--ease-out); }
.split__media:hover .ph > .split__img { opacity: 0.45; }

/* About — Work With DEL backdrop at 25%, centred */
.cta-band--bg25 .cta-band__bg img { opacity: 0.25; object-position: center center; }

/* Projects page — real project photography */
.proj-card__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.proj-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center; transition: transform var(--dur-slow) var(--ease-out); }
.proj-card:hover .proj-card__img { transform: scale(1.05); }
.modal__media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.modal__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Justified body copy across the site (no automatic hyphenation) */
.intro__body p,
.split__text p,
.exec-msg__body p,
.card p,
.list-row p,
.service p,
.svc-card__body p,
.news-card p,
.proj-card__excerpt,
.modal__lead,
.modal__cols p,
.legal p,
.legal li,
.acc-a__inner,
.quote-card blockquote,
.profile__bio,
.contact-item p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
          hyphens: none;
}
/* copy that is centred by design stays centred */
.cta-band p, .error p, .sec-head--center p { text-align: center; }

/* Gallery video playback inside the lightbox */
.lightbox__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; }

/* Profile cards — "View Bio" affordance */
.profile[data-bio] { cursor: pointer; }
.profile__view { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.55); opacity: 0; transition: opacity var(--dur) var(--ease-out); }
.profile__view span { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); border: 1px solid var(--gold-line); padding: 0.55rem 1.2rem; border-radius: 999px; }
.profile[data-bio]:hover .profile__view, .profile[data-bio]:focus-visible .profile__view { opacity: 1; }

/* Bio quick-view modal */
.bio-modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.bio-modal.is-open { display: block; }
.bio-modal__scrim { position: absolute; inset: 0; background: rgba(6,6,6,0.82); backdrop-filter: blur(3px); }
.bio-modal__dialog { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(760px, 92vw); max-height: 88vh; overflow: auto; display: grid; grid-template-columns: 40% 1fr;
  background: var(--ink-2, #12140f); border: 1px solid var(--gold-line); border-radius: var(--r-lg); }
.bio-modal__media { position: relative; min-height: 320px; }
.bio-modal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-modal__body { padding: clamp(1.6rem, 3vw, 2.6rem); }
.bio-modal__eyebrow { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); }
.bio-modal__body h3 { font-size: var(--fs-card); margin: 0.6rem 0 1.1rem; }
.bio-modal__body p { color: var(--steel-soft); text-align: justify; hyphens: none; }
.bio-modal__close { position: absolute; top: 0.6rem; right: 0.9rem; z-index: 2; background: none; border: 0;
  color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; opacity: 0.8; }
.bio-modal__close:hover { opacity: 1; color: var(--gold-text); }
@media (max-width: 640px){ .bio-modal__dialog { grid-template-columns: 1fr; } .bio-modal__media { min-height: 260px; } }

/* Homepage — Latest Projects continuous scroll (right to left) */
.proj-scroll { overflow: hidden; position: relative; padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.proj-scroll__track { display: flex; width: max-content; gap: var(--space-4, 2rem);
  animation: projScroll 70s linear infinite; }
.proj-scroll:hover .proj-scroll__track { animation-play-state: paused; }
.proj-scroll .proj-card { flex: 0 0 clamp(300px, 26vw, 380px); margin: 0; }
.proj-scroll .proj-card__frame { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; }
@keyframes projScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .proj-scroll__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* Homepage scroll — reveal a "View Project" prompt on hover */
.proj-scroll .proj-card__frame { position: relative; }
.proj-scroll .proj-card__view { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.55); opacity: 0; transition: opacity var(--dur) var(--ease-out); }
.proj-scroll .proj-card__view span { font-family: var(--font-ui); font-size: var(--fs-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); border: 1px solid var(--gold-line); padding: 0.55rem 1.2rem; border-radius: 999px; }
.proj-scroll .proj-card:hover .proj-card__view { opacity: 1; }
