/* ============================================================
   ACTION GUTTERS — Industrial / Trade design system
   Charcoal + signal yellow + brushed aluminium
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #131517;
  --ink-2:      #1a1d20;
  --steel:      #23272c;
  --steel-2:    #2c3138;
  --line:       rgba(255, 255, 255, 0.10);
  --line-dark:  rgba(0, 0, 0, 0.12);

  --aluminium:  #c7ccd2;
  --aluminium-2:#9aa1aa;
  --paper:      #f3f1ec;
  --paper-2:    #e9e6df;
  --white:      #ffffff;

  --signal:     #d81e2d;
  --signal-2:   #ee3a48;
  --signal-deep:#a4131f;

  --text-on-dark:  #e7e9ec;
  --text-on-dark-2:#a8aeb6;
  --text-on-light: #1c1f22;
  --text-on-light-2:#52585f;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-stretch: 112%;
}
.display {
  font-size: clamp(2.7rem, 7.5vw, 6.2rem);
  font-weight: 900;
}
h2.section-title { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--signal);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--signal);
  display: inline-block;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-on-dark-2); max-width: 60ch; }
.muted { color: var(--text-on-dark-2); }
strong { color: var(--white); font-weight: 700; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-light { background: var(--paper); color: var(--text-on-light); }
.section-light .lead, .section-light .muted { color: var(--text-on-light-2); }
.section-light strong { color: var(--ink); }
.section-steel { background: var(--steel); }

.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  padding: 0.95em 1.6em;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--signal); color: var(--white); }
.btn-primary:hover { background: var(--signal-2); transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--signal-deep); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--line); }
.section-light .btn-ghost { color: var(--ink); border-color: rgba(0,0,0,0.18); }
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }
.section-light .btn-ghost:hover { color: var(--signal-deep); border-color: var(--signal-deep); }
.btn-arrow svg { transition: transform 0.25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
}
.site-header.scrolled {
  background: rgba(15, 17, 19, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-size: 1.42rem;
  line-height: 0.85;
  color: var(--signal);
  white-space: nowrap;
}
.brand-name span {
  display: block;
  color: var(--text-on-dark-2);
  font-family: var(--font-body);
  font-weight: 600; font-style: italic;
  text-transform: none;
  font-size: 0.6rem; letter-spacing: 0.04em;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav a {
  font-family: var(--font-mono);
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-on-dark-2);
  padding: 0.5rem 0.7rem; border-radius: 3px;
  transition: color 0.2s; position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.15rem; height: 2px; background: var(--signal);
}
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
/* the in-nav quote button is for the mobile drawer only; desktop uses the header CTA */
.nav > .btn { display: none; }
.header-phone {
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--white);
  display: flex; align-items: center; gap: 0.4rem; white-space: nowrap;
}
.header-phone svg { color: var(--signal); }

.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); transition: 0.3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--header-h);
  background:
    radial-gradient(120% 90% at 80% 0%, #2a2f35 0%, transparent 55%),
    linear-gradient(180deg, #16191c 0%, #101214 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 70% 20%, #000 30%, transparent 80%);
  opacity: 0.5;
}
/* brushed aluminium beam */
.hero-beam {
  position: absolute; right: -6%; top: 0; bottom: 0; width: 46%;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 4px),
    linear-gradient(100deg, #2f343a 0%, #6b727b 32%, #3a3f45 56%, #5a616a 78%, #2b2f34 100%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.55;
  transform: skewX(0deg);
}
.hero-beam::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, #101214 100%);
}
.hero-inner {
  position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); padding-top: clamp(1.5rem, 4vw, 3rem); width: 100%;
  display: grid; align-items: stretch;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-areas: "copy media" "stats stats";
  column-gap: clamp(1.75rem, 4vw, 4rem); row-gap: clamp(2rem, 4vw, 3.2rem);
}
.hero-copy { grid-area: copy; align-self: center; }
.hero-media { grid-area: media; }
.hero-stats { grid-area: stats; }
.hero h1 {
  margin: 1.3rem 0 0; max-width: 18ch;
  font-size: clamp(2.05rem, 4.3vw, 4.05rem);
  font-weight: 900; font-stretch: 108%;
}
.hero h1 .hl { color: var(--signal); position: relative; }
.hero-sub { margin-top: 1.4rem; max-width: 46ch; font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--text-on-dark); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* hero image — desktop: fill the column so it matches the text height */
.hero-media { position: relative; align-self: stretch; min-height: 340px; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 32%;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 36px 70px -34px rgba(0,0,0,0.85);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  background: linear-gradient(180deg, transparent 60%, rgba(15,17,19,0.35));
  pointer-events: none;
}
.hero-badge {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: rgba(15,17,19,0.72); backdrop-filter: blur(6px);
  padding: 0.5rem 0.8rem; border-radius: 40px; border: 1px solid var(--line);
}
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(216,30,45,0.25); }

.hero-stats {
  margin-top: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-stats div { padding: 1.4rem 1rem 0; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: none; }
.hero-stats .n { font-family: var(--font-display); font-weight: 900; font-stretch: 120%; font-size: clamp(1.8rem, 3.4vw, 2.8rem); color: var(--white); line-height: 1; }
.hero-stats .n b { color: var(--signal); }
.hero-stats .l { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-on-dark-2); margin-top: 0.5rem; }

/* ---------- Marquee trust strip ---------- */
.strip {
  background: var(--signal); color: var(--white);
  overflow: hidden; padding-block: 0.85rem;
  border-block: 3px solid var(--ink);
}
.strip-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span { font-family: var(--font-display); font-weight: 800; font-stretch: 110%; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1rem; display: inline-flex; align-items: center; gap: 3rem; }
.strip-track span::after { content: "◆"; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Generic section header ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: 1rem; }
.sec-head p { margin-top: 1.1rem; }

/* ---------- Service / product cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.svc-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 2.2rem;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.section-light .svc-card { background: var(--white); border-color: var(--line-dark); }
.svc-card:hover { transform: translateY(-6px); border-color: var(--signal); }
.svc-card .num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--signal); letter-spacing: 0.2em; }
.svc-card h3 { margin: 1rem 0 0.7rem; }
.section-light .svc-card h3 { color: var(--ink); }
.svc-card p { font-size: 0.98rem; color: var(--text-on-dark-2); }
.section-light .svc-card p { color: var(--text-on-light-2); }
.svc-card .ic { width: 54px; height: 54px; color: var(--signal); }
.svc-card .spec { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px dashed var(--line); font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-on-dark-2); display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }
.section-light .svc-card .spec { border-color: var(--line-dark); color: var(--text-on-light-2); }
.svc-card .spec b { color: var(--white); }
.section-light .svc-card .spec b { color: var(--ink); }

/* ---------- Feature / why grid ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feat {
  background: var(--ink); padding: 2rem 1.7rem;
  transition: background 0.3s;
}
.section-light .feat { background: var(--paper); }
.feat:hover { background: var(--ink-2); }
.section-light .feat:hover { background: var(--white); }
.feat .ic { width: 40px; height: 40px; color: var(--signal); margin-bottom: 1.1rem; }
.feat h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.section-light .feat h3 { color: var(--ink); }
.feat p { font-size: 0.92rem; color: var(--text-on-dark-2); }
.section-light .feat p { color: var(--text-on-light-2); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split-media {
  aspect-ratio: 4/3; border-radius: var(--radius); position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px),
    linear-gradient(125deg, #3a4046, #6c747d 45%, #353a40 70%, #5a616a);
}
.split-media .ph-label {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); background: rgba(0,0,0,0.45); padding: 0.4rem 0.7rem; border-radius: 3px;
}

/* ---------- Real imagery ---------- */
.brand-logo { height: 52px; width: auto; display: block; background: #fff; padding: 10px 16px; border-radius: 8px; box-shadow: 0 8px 20px -10px rgba(0,0,0,0.55); }
.site-header.scrolled .brand-logo { height: 46px; padding: 9px 14px; }
.foot-logo { height: 54px; width: auto; margin-bottom: 1.3rem; background: #fff; padding: 11px 17px; border-radius: 8px; }
@media (max-width: 760px) { .brand-logo { height: 44px; padding: 9px 13px; } }
.split-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media.diagram { background: #f3f1ec; }
.split-media.diagram > img { object-fit: contain; padding: clamp(1.4rem, 4vw, 3rem); }
.member .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-card .card-media { margin: -2rem -1.8rem 1.4rem; height: 210px; overflow: hidden; border-bottom: 1px solid var(--line); }
.svc-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-card:hover .card-media img { transform: scale(1.05); }
.proj { overflow: hidden; }
.proj .proj-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.6s var(--ease); }
.proj:hover .proj-img { transform: scale(1.06); }
.proj .proj-overlay { z-index: 2; }
.split ul.ticks { margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.split ul.ticks li { display: flex; gap: 0.75rem; font-size: 1rem; }
.split ul.ticks svg { color: var(--signal); flex-shrink: 0; margin-top: 3px; }

/* ---------- Guarantee block ---------- */
.guarantee { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.25rem; }
.gcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; background: linear-gradient(160deg, var(--ink-2), var(--ink)); position: relative; }
.gcard .big { font-family: var(--font-display); font-weight: 900; font-stretch: 120%; font-size: clamp(3rem, 6vw, 4.6rem); color: var(--signal); line-height: 0.9; }
.gcard h3 { margin: 0.7rem 0 0.5rem; }
.gcard p { color: var(--text-on-dark-2); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1.25rem; }
.quote {
  background: var(--white); color: var(--text-on-light);
  border-radius: var(--radius); padding: 2rem; position: relative;
  border: 1px solid var(--line-dark);
}
.quote .stars { color: var(--signal-deep); letter-spacing: 2px; font-size: 1rem; }
.quote blockquote { font-size: 1.05rem; line-height: 1.55; margin: 0.9rem 0 1.3rem; color: var(--ink); font-weight: 500; }
.quote .who { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-on-light-2); text-transform: uppercase; }
.quote .who b { color: var(--ink); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 4rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-weight: 900; font-stretch: 120%;
  font-size: 3rem; line-height: 1; color: var(--signal);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-on-dark-2); font-size: 0.94rem; }
.section-light .step p { color: var(--text-on-light-2); }
.section-light .step h3 { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--signal); color: var(--white); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 48px 48px; opacity: 0.6;
}
.cta-band .wrap { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 18ch; }
.cta-band p { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em; margin-top: 0.8rem; color: rgba(255,255,255,0.85); }
.cta-band .btn-primary { background: var(--ink); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--steel-2); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; }
.foot-top h4 { font-size: 0.78rem; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.2em; color: var(--text-on-dark-2); text-transform: uppercase; margin-bottom: 1.2rem; }
.foot-top a { color: var(--text-on-dark-2); font-size: 0.95rem; display: block; padding: 0.28rem 0; transition: color 0.2s; }
.foot-top a:hover { color: var(--signal); }
.foot-brand .brand-name { font-size: 1.4rem; margin-bottom: 1rem; }
.foot-brand p { color: var(--text-on-dark-2); font-size: 0.94rem; max-width: 34ch; }
.foot-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.foot-social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 4px; display: grid; place-items: center; color: var(--text-on-dark-2); transition: 0.25s; }
.foot-social a:hover { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.foot-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: var(--text-on-dark-2); font-family: var(--font-mono); letter-spacing: 0.03em; }
.foot-bottom a { color: var(--text-on-dark-2); }
.foot-bottom a:hover { color: var(--signal); }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90; display: flex; flex-direction: column; gap: 0.7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5); transition: transform 0.25s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; color: #fff; }
.fab-call { background: var(--signal); color: var(--white); display: none; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: calc(var(--header-h) + clamp(3rem,6vw,5rem)); padding-bottom: clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; background: linear-gradient(180deg, #181b1e, var(--ink)); }
.page-hero .hero-grid { mask-image: radial-gradient(120% 120% at 50% 0%, #000 40%, transparent 85%); }
.page-hero .crumb { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-2); }
.page-hero .crumb a:hover { color: var(--signal); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-top: 1.1rem; max-width: 18ch; }
.page-hero p { margin-top: 1.3rem; }

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); }
.section-light .spec-table th, .section-light .spec-table td { border-color: var(--line-dark); }
.spec-table th { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-2); font-weight: 500; }
.section-light .spec-table th { color: var(--text-on-light-2); }
.spec-table td:first-child { font-weight: 600; }
.spec-table tr:hover td { background: rgba(255,255,255,0.02); }
.section-light .spec-table tr:hover td { background: rgba(0,0,0,0.02); }

/* ---------- Colour swatches ---------- */
.swatches { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.swatch { text-align: center; }
.swatch .chip { width: 84px; height: 84px; border-radius: 6px; border: 1px solid var(--line); box-shadow: inset 0 -10px 20px -10px rgba(0,0,0,0.5); }
.swatch span { display: block; margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-on-dark-2); }
.section-light .swatch span { color: var(--text-on-light-2); }
.chip-marble { background: #f4f2ec; }
.chip-charcoal { background: #34373b; }
.chip-brown { background: #5a4633; }
.chip-ivory { background: #e8e1cf; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }
.member { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: 0.3s var(--ease); }
.member:hover { transform: translateY(-5px); border-color: var(--signal); }
.member .photo {
  aspect-ratio: 1/1; display: grid; place-items: center; position: relative;
  background: linear-gradient(150deg, #2b3036, #3d444c);
  font-family: var(--font-display); font-weight: 900; font-stretch: 120%; font-size: 3.2rem; color: rgba(255,255,255,0.12);
}
.member .photo .init { color: var(--signal); }
.member .info { padding: 1.2rem 1.3rem 1.5rem; }
.member .info h3 { font-size: 1.2rem; }
.member .info .role { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--signal); margin-top: 0.35rem; }
.member .info p { font-size: 0.9rem; color: var(--text-on-dark-2); margin-top: 0.8rem; }

/* ---------- Projects gallery ---------- */
.proj-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.proj-filter button { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-on-dark-2); padding: 0.5rem 1rem; border: 1px solid var(--line); border-radius: 40px; transition: 0.25s; }
.proj-filter button.active, .proj-filter button:hover { color: var(--white); background: var(--signal); border-color: var(--signal); }
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; }
.proj {
  aspect-ratio: 4/3; border-radius: var(--radius); position: relative; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, #2c3137, #4a525b);
  display: flex; align-items: flex-end;
}
.proj::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 6px); }
.proj-overlay { position: relative; width: 100%; padding: 1.2rem; background: linear-gradient(transparent, rgba(0,0,0,0.7)); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; transition: 0.3s; }
.proj-overlay h3 { font-size: 1.15rem; }
.proj-overlay .tag { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--signal); }
.proj:hover { border-color: var(--signal); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-on-dark-2); margin-bottom: 0.5rem; }
.form-field label .req { color: var(--signal); }
.form-control, .form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--white); padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.96rem; transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--signal); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.cinfo { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.cinfo:last-child { border-bottom: none; }
.cinfo .ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center; background: rgba(216,30,45,0.14); color: var(--signal); }
.cinfo h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-2); font-weight: 500; }
.cinfo a, .cinfo p { color: var(--white); font-size: 1.02rem; margin-top: 0.25rem; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/8; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9); }
.note { font-size: 0.8rem; color: var(--signal-deep); font-family: var(--font-mono); background: rgba(216,30,45,0.06); border: 1px dashed var(--signal-deep); padding: 0.6rem 0.8rem; border-radius: 4px; margin-top: 0.8rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .split.rev, .contact-layout { grid-template-columns: 1fr; }
  .split.rev .split-media { order: -1; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero { align-items: stretch; }
  .hero-inner { grid-template-columns: 1fr; grid-template-areas: "copy" "media" "stats"; }
  .hero h1 { max-width: 24ch; }
  .hero-media { aspect-ratio: 16/9; min-height: 0; }
  .hero-media img { object-position: center 30%; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stats div:nth-child(2) { border-right: none; }
  .hero-stats div:nth-child(3), .hero-stats div:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .header-phone { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--ink-2); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem; gap: 0.2rem;
    transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 0.95rem; padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 1rem; justify-content: center; }
  .menu-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .fab-call { display: grid; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .foot-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
