:root {
  --ink: #070809;
  --charcoal: #0f1113;
  --panel: #15181b;
  --panel-2: #1a1d21;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #f5f5f3;
  --muted: #93989f;
  --silver: #d6d6d6;
  --accent: #d6d6d6;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { color: inherit; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.045), transparent 67%);
  pointer-events: none;
  z-index: 50;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s ease;
}
.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--white);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 88px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, height .4s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(7, 8, 9, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 14px; width: fit-content; }
.brand-mark {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -2px;
  border-right: 1px solid var(--line-strong);
  padding-right: 14px;
  line-height: .8;
}
.brand-name {
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a, .header-cta {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .25s ease;
}
.desktop-nav a:hover, .header-cta:hover { color: #fff; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; justify-self: end; background: none; border: 0; font-size: 22px; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  height: max(740px, 100svh);
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media img { height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); }
.hero-shade {
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 34%, rgba(0,0,0,.12) 72%, rgba(0,0,0,.42) 100%),
              linear-gradient(0deg, rgba(0,0,0,.72), transparent 38%);
}
.hero-grid {
  opacity: .24;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255,255,255,.12) 1px);
  background-size: 25% 100%;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4vw, 72px);
  top: 50%;
  transform: translateY(-46%);
  max-width: min(720px, 74vw);
}
.eyebrow {
  color: var(--silver);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; background: var(--silver); vertical-align: middle; margin: 0 13px 3px 0; }
.hero-title {
  margin: 22px 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.1vw, 136px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .9;
  text-transform: uppercase;
  max-width: 900px;
}
.hero-title span, .hero-title em { display: block; font-style: normal; }
.hero-title em { color: rgba(255,255,255,.43); font-size: .64em; letter-spacing: -.035em; margin-top: 20px; }
.hero-body { max-width: 550px; color: var(--silver); font-size: 13px; font-weight: 300; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.button {
  border: 1px solid var(--line-strong);
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-solid { background: var(--white); color: #0c0e10; border-color: var(--white); }
.button-solid:hover { background: transparent; color: var(--white); }
.button-outline { background: rgba(5,5,5,.25); backdrop-filter: blur(8px); }
.button-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 72px);
  top: 45%;
  display: grid;
  gap: 20px;
  justify-items: end;
}
.hero-index > span { color: var(--muted); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.hero-index div { display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--display); }
.hero-index strong { font-size: 18px; font-weight: 400; }
.hero-index div span { width: 1px; height: 92px; background: linear-gradient(var(--white) 18%, var(--line) 18%); }
.hero-index small { color: var(--muted); font-size: 12px; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: clamp(22px, 4vw, 72px);
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats-band {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 5fr;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.section-kicker {
  padding: 34px clamp(22px, 4vw, 72px);
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 29px 25px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--display); font-size: 28px; font-weight: 400; letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.section { padding: clamp(90px, 10vw, 170px) clamp(22px, 4vw, 72px); }
.section-intro { display: grid; grid-template-columns: 1fr 2.25fr 1.2fr; align-items: end; gap: 45px; margin-bottom: 78px; }
h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.2vw, 98px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-intro > p:last-child, .about-copy > p, .featured-copy > p { color: var(--muted); font-weight: 300; }
.services-section { background: var(--charcoal); }
.service-list { border-top: 1px solid var(--line); }
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: .45fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding .35s ease, background .35s ease;
}
.service-card:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.025); }
.service-number { align-self: start; color: var(--muted); font-family: var(--display); font-size: 14px; }
.service-card h3 { margin: 0; font-family: var(--display); font-size: clamp(35px, 4vw, 68px); font-weight: 400; line-height: 1; text-transform: uppercase; }
.service-card p { color: var(--muted); max-width: 500px; }
.service-tags { grid-column: 2 / 4; display: flex; gap: 8px; }
.service-tags span { border: 1px solid var(--line); color: var(--silver); padding: 5px 10px; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }

.why-section { background: var(--ink); border-top: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-card { min-height: 280px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.why-card > span { color: var(--muted); font-family: var(--display); }
.why-card h3 { margin: auto 0 12px; font-family: var(--display); font-size: 31px; line-height: 1; font-weight: 400; text-transform: uppercase; }
.why-card p { margin: 0; color: var(--muted); }
.materials-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(50px, 8vw, 150px); padding: clamp(90px, 10vw, 170px) clamp(22px, 4vw, 72px); background: var(--panel-2); }
.materials-copy h2 { margin-top: 18px; }
.materials-list { display: grid; grid-template-columns: 1fr 1fr; align-content: center; border-top: 1px solid var(--line); }
.materials-list span { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--silver); font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.materials-list small { display: inline-block; width: 42px; color: var(--muted); font-size: 10px; }

.featured-project {
  position: relative;
  height: min(880px, 82vw);
  min-height: 650px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.featured-media { position: absolute; inset: 0; }
.featured-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.88), transparent 65%); }
.featured-media img { height: 112%; object-fit: cover; object-position: center; }
.featured-copy { position: absolute; z-index: 2; left: clamp(22px, 4vw, 72px); bottom: clamp(45px, 7vw, 100px); max-width: 660px; }
.featured-copy h2 { font-size: clamp(55px, 7vw, 112px); margin: 16px 0 25px; }
.featured-copy p { max-width: 500px; }
.feature-number { position: absolute; z-index: 2; right: clamp(22px, 4vw, 72px); bottom: clamp(45px, 7vw, 100px); color: var(--silver); font-family: var(--display); letter-spacing: .12em; }
.text-link {
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: none;
  padding: 9px 0;
  display: inline-flex;
  gap: 40px;
  align-items: center;
  color: var(--white);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap .25s ease, border-color .25s ease;
}
.text-link:hover { gap: 55px; border-color: var(--white); }

.about-section { background: var(--charcoal); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 150px); align-items: center; }
.about-media { position: relative; }
.about-media img { aspect-ratio: .94; object-fit: cover; filter: saturate(.1); }
.media-caption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 17px; background: rgba(0,0,0,.65); backdrop-filter: blur(10px); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.about-copy h2 { margin: 18px 0 30px; }
.about-copy > p { max-width: 570px; }
.capability-grid { list-style: none; padding: 0; margin: 50px 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.capability-grid li { padding: 15px 10px 15px 0; border-bottom: 1px solid var(--line); color: var(--silver); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.capability-grid li:nth-child(odd) { border-right: 1px solid var(--line); }
.capability-grid li:nth-child(even) { padding-left: 15px; }
.capability-grid span { color: var(--muted); margin-right: 12px; }

.industries-section { background: var(--ink); border-top: 1px solid var(--line); }
.industries-head { display: grid; grid-template-columns: 1fr 3fr; padding-bottom: 70px; }
.industries-list { border-top: 1px solid var(--line); }
.industry-row {
  position: relative;
  display: grid;
  grid-template-columns: .6fr 2fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background .3s ease;
}
.industry-row:hover { background: var(--panel); }
.industry-row span { color: var(--muted); font-family: var(--display); }
.industry-row h3 { margin: 0; font-family: var(--display); font-size: clamp(38px, 4.4vw, 72px); font-weight: 400; text-transform: uppercase; line-height: 1; }
.industry-row p { color: var(--muted); }
.industry-row i { font-size: 21px; }

.projects-section { background: var(--charcoal); overflow: hidden; }
.projects-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 65px; }
.projects-head h2 { margin-top: 12px; }
.project-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: -35px 0 30px; }
.project-filters button { border: 1px solid var(--line); background: transparent; color: var(--muted); padding: 8px 13px; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.project-filters button.active { background: var(--white); color: var(--ink); border-color: var(--white); }
.project-card { position: relative; cursor: pointer; overflow: hidden; background: var(--panel); }
.project-card img { aspect-ratio: .83; object-fit: cover; filter: saturate(.1); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.project-card:hover img { transform: scale(1.035); filter: saturate(.7); }
.project-card-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 22px 20px; background: linear-gradient(transparent, rgba(0,0,0,.86)); }
.project-card-copy span { color: var(--silver); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.project-card-copy h3 { font-family: var(--display); font-weight: 400; font-size: 27px; text-transform: uppercase; margin: 6px 0 0; }
.project-card-copy p { max-width: 380px; margin: 8px 0 0; color: var(--silver); font-size: 10px; line-height: 1.5; opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease; }
.project-card:hover .project-card-copy p { opacity: 1; transform: none; }
.empty-state { color: var(--muted); }

.transformations-section { background: var(--ink); }
.transformation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.transformation-card { border: 1px solid var(--line); padding: 16px; background: var(--panel); }
.transformation-card > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.transformation-card figure { position: relative; margin: 0; overflow: hidden; }
.transformation-card img { aspect-ratio: 1.2; object-fit: cover; filter: saturate(.25); }
.transformation-card figcaption { position: absolute; left: 8px; bottom: 8px; padding: 4px 7px; background: rgba(0,0,0,.8); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.transformation-card h3 { margin: 20px 0 5px; font-family: var(--display); font-size: 30px; font-weight: 400; text-transform: uppercase; }
.transformation-card p { color: var(--muted); }

.testimonial-section { min-height: 560px; display: grid; place-items: center; text-align: center; background: var(--panel-2); }
.testimonial-section > .quote-mark { color: var(--muted); font-family: Georgia, serif; font-size: 48px; line-height: 1; }
.testimonial-section blockquote { max-width: 1000px; margin: 0; }
.testimonial-section blockquote p { font-family: var(--display); font-size: clamp(38px, 5vw, 74px); line-height: 1.12; text-transform: uppercase; margin: 18px 0 28px; }
.testimonial-section footer { color: var(--muted); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
#testimonial-list { display: grid; gap: 70px; justify-items: center; }

.faq-section { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(50px, 8vw, 150px); background: var(--charcoal); }
.faq-intro h2 { margin-top: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list summary { cursor: pointer; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.faq-list p { max-width: 650px; color: var(--muted); }
.cta-strip { padding: 55px clamp(22px, 4vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--accent); color: var(--ink); }
.cta-strip h2 { max-width: 900px; font-size: clamp(40px, 5vw, 76px); }
.cta-strip p { color: #3d4146; }
.cta-strip .button-solid { background: var(--ink); color: var(--white); border-color: var(--ink); flex: 0 0 auto; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); color: var(--ink); }
.contact-lead, .enquiry-form { padding: clamp(70px, 8vw, 135px) clamp(22px, 6vw, 100px); }
.contact-lead { background: var(--white); }
.contact-lead .eyebrow { color: #3d4146; }
.contact-lead .eyebrow::before { background: #3d4146; }
.contact-lead h2 { margin-top: 22px; font-size: clamp(54px, 6vw, 100px); }
.contact-accent { font-family: var(--display); font-size: clamp(30px, 3vw, 48px); text-transform: uppercase; color: #74787d; margin: 12px 0 60px; }
.contact-details { display: grid; gap: 20px; }
.contact-details a { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,.18); }
.contact-details span { color: #777; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong { font-size: 11px; font-weight: 500; }
.enquiry-form { background: #e6e6e3; display: flex; flex-direction: column; gap: 27px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: grid; gap: 9px; font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.25);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: normal;
  text-transform: none;
  resize: vertical;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: #000; }
.enquiry-form .button { width: fit-content; background: var(--ink); color: #fff; border-color: var(--ink); margin-top: 12px; }
.enquiry-form .button:hover { background: transparent; color: var(--ink); }
.form-status { min-height: 22px; color: #4a4e52; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { padding: 80px clamp(22px, 4vw, 72px) 30px; background: #050606; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; border-top: 1px solid var(--line); }
.footer-brand { display: grid; gap: 15px; align-content: start; }
.footer-brand .brand-mark { width: fit-content; }
.footer-brand strong { font-family: var(--display); font-size: 30px; font-weight: 400; text-transform: uppercase; }
.footer-brand > span:last-child { color: var(--muted); }
.footer-column { display: grid; gap: 9px; align-content: start; }
.footer-column span { color: var(--muted); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.footer-column a { width: fit-content; color: var(--silver); font-size: 11px; }
.footer-bottom { grid-column: 1 / -1; margin-top: 60px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }

.reveal { opacity: 1; transform: translateY(12px); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { transform: none; }

.gallery-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; border: 0; background: var(--ink); color: var(--white); padding: 0; }
.gallery-dialog::backdrop { background: #000; }
.gallery-toolbar { position: sticky; z-index: 3; top: 0; display: flex; justify-content: space-between; align-items: center; padding: 24px clamp(22px, 4vw, 72px); background: rgba(7,8,9,.92); backdrop-filter: blur(15px); border-bottom: 1px solid var(--line); }
.gallery-toolbar > div { display: grid; gap: 5px; }
.gallery-toolbar strong { font-family: var(--display); font-size: 22px; font-weight: 400; text-transform: uppercase; }
.gallery-toolbar button { width: 45px; height: 45px; border: 1px solid var(--line); background: transparent; font-size: 20px; }
.gallery-filter { display: flex; gap: 8px; padding: 25px clamp(22px, 4vw, 72px) 0; }
.gallery-filter button { border: 1px solid var(--line); background: transparent; padding: 8px 13px; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.gallery-filter button.active { background: var(--white); color: var(--ink); border-color: var(--white); }
.gallery-grid { columns: 4; column-gap: 12px; padding: 25px clamp(22px, 4vw, 72px) 70px; }
.gallery-item { break-inside: avoid; margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.gallery-item img { min-height: 180px; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item span { display: block; padding: 8px 10px; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.case-study-dialog { width: min(1180px, 94vw); max-height: 92vh; padding: 0; border: 1px solid var(--line); background: var(--charcoal); color: var(--white); }
.case-study-dialog::backdrop { background: rgba(0,0,0,.88); }
.case-close { position: fixed; z-index: 3; top: 18px; right: 20px; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(0,0,0,.78); font-size: 22px; }
.case-hero img { max-height: 66vh; object-fit: cover; }
.case-copy { padding: clamp(35px, 6vw, 85px); }
.case-copy h2 { margin: 15px 0 25px; }
.case-copy > p { max-width: 760px; color: var(--muted); font-size: 15px; }
.case-copy .case-summary { color: var(--white); font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.case-materials { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; }
.case-materials span { border: 1px solid var(--line); padding: 7px 10px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.case-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 8px 8px; }
.case-gallery img { aspect-ratio: 1.2; object-fit: cover; }

.legal-page { min-height: 100vh; background: var(--charcoal); }
.legal-main { width: min(950px, calc(100% - 44px)); margin: 0 auto; padding: 170px 0 100px; }
.legal-main .eyebrow { margin-top: 80px; }
.legal-main h1 { margin: 20px 0; font-family: var(--display); font-size: clamp(58px, 10vw, 120px); line-height: .9; font-weight: 400; text-transform: uppercase; }
.legal-updated { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.legal-body { margin-top: 55px; padding-top: 35px; border-top: 1px solid var(--line); color: var(--silver); font-size: 16px; line-height: 1.9; white-space: pre-wrap; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    align-content: space-between;
    padding: 90px 24px 30px;
    background: rgba(7,8,9,.98);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu .menu-close { position: absolute; right: 24px; top: 25px; border: 0; background: transparent; font-size: 25px; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { font-family: var(--display); font-size: clamp(48px, 12vw, 78px); line-height: 1.25; text-transform: uppercase; }
  .mobile-menu-meta { display: grid; gap: 5px; color: var(--muted); font-size: 10px; }
  .stats-band, .section-intro, .about-section, .industries-head, .contact-section, .materials-section, .faq-section { grid-template-columns: 1fr; }
  .section-kicker { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-intro { gap: 25px; }
  .project-rail { grid-template-columns: 1fr 1fr; }
  .project-card:last-child { display: none; }
  .industry-row { grid-template-columns: .35fr 1.6fr 1fr auto; }
  .gallery-grid { columns: 3; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 2fr 1fr 1fr; }
  .footer-legal { grid-column: 2; }
}

@media (max-width: 680px) {
  .site-header { height: 72px; padding: 0 18px; }
  .brand-name { font-size: 8px; }
  .hero { min-height: 740px; }
  .hero-media img { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.3)), linear-gradient(0deg, rgba(0,0,0,.75), transparent); }
  .hero-content { left: 18px; right: 18px; top: 47%; max-width: none; transform: translateY(-43%); }
  .hero-title { font-size: clamp(46px, 12.5vw, 66px); line-height: .96; }
  .hero-title em { font-size: .62em; line-height: 1.05; }
  .hero-body { font-size: 11px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 240px; }
  .hero-index { display: none; }
  .scroll-cue { left: 18px; }
  .stats-band { display: block; }
  .section-kicker { padding: 22px 18px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 18px; border-bottom: 1px solid var(--line); }
  .section { padding: 80px 18px; }
  .service-card { grid-template-columns: .25fr 1fr; min-height: 170px; }
  .service-card p { grid-column: 2; margin: 0; }
  .service-tags { grid-column: 2; flex-wrap: wrap; }
  .featured-project { min-height: 660px; height: 90svh; }
  .featured-media img { height: 100%; object-position: 58% center; }
  .featured-copy { left: 18px; right: 18px; bottom: 55px; }
  .featured-copy h2 { font-size: 58px; }
  .feature-number { display: none; }
  .about-section { gap: 55px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid li:nth-child(odd) { border-right: 0; }
  .capability-grid li:nth-child(even) { padding-left: 0; }
  .industries-head { padding-bottom: 45px; }
  .industry-row { grid-template-columns: .25fr 1fr auto; gap: 12px; padding: 22px 18px; }
  .industry-row p { display: none; }
  .industry-row h3 { font-size: 38px; }
  .projects-head { display: grid; }
  .project-rail { grid-template-columns: 1fr; }
  .project-card:last-child { display: block; }
  .project-card img { aspect-ratio: 1.05; }
  .project-card-copy p { opacity: 1; transform: none; }
  .testimonial-section { min-height: 480px; }
  .contact-lead, .enquiry-form { padding: 70px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 60px 18px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 5px; }
  .gallery-grid { columns: 2; padding-left: 12px; padding-right: 12px; }
  .gallery-filter { overflow-x: auto; padding-left: 12px; }
  .why-grid, .materials-list, .transformation-grid, .case-gallery { grid-template-columns: 1fr; }
  .why-card { min-height: 220px; }
  .cta-strip { display: grid; padding: 45px 18px; }
  .cta-strip .button { width: fit-content; }
  .footer-legal { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
