:root {
  color-scheme: dark;
  --ink: #07111e;
  --ink-soft: #0a1624;
  --paper: #f7f5f0;
  --muted: rgba(247, 245, 240, 0.72);
  --line: rgba(247, 245, 240, 0.19);
  --accent: #dea45e;
  --accent-dark: #17120d;
  --gutter: clamp(1.25rem, 4.2vw, 5.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1460px, 100%); margin: 0 auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 110px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 82px;
  background: rgba(5, 11, 18, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  width: max-content;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.brand span { color: var(--accent); }

.nav { display: flex; align-items: center; justify-content: center; gap: clamp(1.7rem, 2.7vw, 3.25rem); }
.nav a { position: relative; padding: 0.7rem 0; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.nav a::after { content: ""; position: absolute; right: 0; bottom: 0.35rem; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform 240ms ease; }
.nav a:hover::after, .nav a:focus-visible::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; min-height: 2.35rem; padding: 0.7rem 0; border: 0; background: transparent; color: inherit; cursor: pointer; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.13em; line-height: 1; text-transform: uppercase; }
.nav-dropdown__trigger::after { content: ""; position: absolute; right: 0; bottom: 0.35rem; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform 240ms ease; }
.nav-dropdown__icon { display: block; width: 0.72rem; height: 0.44rem; flex: 0 0 auto; color: var(--accent); transform-origin: center; transition: transform 200ms ease; }
.nav-dropdown:hover .nav-dropdown__trigger::after, .nav-dropdown:focus-within .nav-dropdown__trigger::after, .nav-dropdown__trigger[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown:hover .nav-dropdown__icon, .nav-dropdown:focus-within .nav-dropdown__icon { transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: calc(100% + 0.7rem); left: 50%; display: grid; min-width: 16rem; padding: 0.55rem; border: 1px solid var(--line); background: rgba(5, 11, 18, 0.97); box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.32); opacity: 0; visibility: hidden; transform: translate(-50%, -0.5rem); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown__menu a { padding: 0.9rem 1rem; color: rgba(247, 245, 240, 0.74); font-size: 0.72rem; white-space: nowrap; }
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus-visible, .nav-dropdown__menu a[aria-current="page"] { background: rgba(222, 164, 94, 0.12); color: var(--paper); }
.header-action { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--paper); color: var(--ink); }
.button--dark { background: var(--ink); color: var(--paper); }
.button--accent { background: var(--accent); color: var(--accent-dark); }
.button--outline { border-color: rgba(247, 245, 240, 0.38); color: var(--paper); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(247, 245, 240, 0.38);
  border-radius: 50%;
  background: rgba(4, 12, 22, 0.38);
  color: var(--paper);
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after { display: block; width: 18px; height: 1px; background: currentColor; transition: transform 220ms ease, opacity 220ms ease; }
.menu-button::before, .menu-button::after { content: ""; }
.menu-button span { margin: 4px 0; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu { display: none; }
.mobile-projects { border-bottom: 1px solid var(--line); }
.mobile-projects summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; cursor: pointer; font-size: clamp(1.5rem, 6vw, 2.8rem); font-weight: 500; letter-spacing: -0.03em; list-style: none; }
.mobile-projects summary::-webkit-details-marker { display: none; }
.mobile-projects summary::after { content: "+"; color: var(--accent); font-size: 1.35rem; }
.mobile-projects[open] summary::after { content: "−"; }
.mobile-projects div { display: grid; padding: 0 0 0.8rem 1rem; }
.mobile-projects div a { border-bottom: 0; color: rgba(247, 245, 240, 0.7); font-size: 1rem; letter-spacing: 0.02em; }

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: max(680px, 92svh);
  align-items: end;
  overflow: hidden;
  background: #07111e;
}
.page-hero__image { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4, 11, 19, 0.92), rgba(4, 11, 19, 0.55) 46%, rgba(4, 11, 19, 0.12) 80%), linear-gradient(180deg, rgba(4, 11, 19, 0.48), transparent 34%, rgba(4, 11, 19, 0.76)); }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -1; height: 1px; background: var(--line); }
.page-hero__content { width: min(1460px, 100%); margin: 0 auto; padding: 10rem var(--gutter) clamp(4.5rem, 7vw, 7rem); }
.breadcrumb { display: flex; align-items: center; gap: 0.75rem; margin: 0 0 2rem; color: rgba(247, 245, 240, 0.66); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.breadcrumb span { color: var(--accent); }
.page-hero h1 { max-width: 12ch; margin: 0; font-size: clamp(4.2rem, 7.8vw, 9rem); font-weight: 500; letter-spacing: -0.07em; line-height: 0.9; text-wrap: balance; }
.page-hero__lead { max-width: 42rem; margin: 1.75rem 0 0; color: rgba(247, 245, 240, 0.82); font-size: clamp(1.08rem, 1.45vw, 1.35rem); line-height: 1.65; }
.page-hero__meta { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; color: rgba(247, 245, 240, 0.63); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.page-hero__meta::before { content: ""; width: 2.6rem; height: 2px; background: var(--accent); }

.section { padding: clamp(6rem, 10vw, 10rem) var(--gutter); }
.section--soft { background: #0a1522; }
.section--paper { background: var(--paper); color: var(--ink); }
.eyebrow { display: flex; align-items: center; gap: 0.8rem; margin: 0 0 1.25rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: var(--accent); }
.section-title { max-width: 13ch; margin: 0; font-size: clamp(3rem, 5.25vw, 6.25rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.95; text-wrap: balance; }
.section-lead { max-width: 43rem; margin: 1.6rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.3vw, 1.22rem); line-height: 1.72; }
.section--paper .section-lead { color: rgba(7, 17, 30, 0.7); }

.origin { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.origin__fact { padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.origin__year { display: block; color: var(--accent); font-size: clamp(4rem, 7vw, 8rem); font-weight: 500; letter-spacing: -0.07em; line-height: 0.86; }
.origin__fact p { max-width: 24rem; margin: 1.2rem 0 0; color: var(--muted); line-height: 1.7; }
.origin__copy h2 { max-width: 14ch; margin: 0; font-size: clamp(2.8rem, 4.6vw, 5.4rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.98; }
.origin__copy p { margin: 1.35rem 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.82; }
.origin__copy strong { color: var(--paper); font-weight: 600; }

.one-system__header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.6fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; margin-bottom: clamp(3rem, 5vw, 5rem); }
.one-system__mark { margin: 0; color: var(--accent); font-size: clamp(6rem, 14vw, 16rem); font-weight: 500; letter-spacing: -0.09em; line-height: 0.68; }
.one-system__intro { max-width: 31rem; margin: 0; color: rgba(7, 17, 30, 0.7); font-size: 1.08rem; line-height: 1.75; }
.one-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(7, 17, 30, 0.2); border-bottom: 1px solid rgba(7, 17, 30, 0.2); }
.one-item { min-height: 13rem; padding: clamp(1.5rem, 3vw, 2.75rem); border-right: 1px solid rgba(7, 17, 30, 0.18); border-bottom: 1px solid rgba(7, 17, 30, 0.18); }
.one-item:nth-child(3n) { border-right: 0; }
.one-item:nth-last-child(-n + 3) { border-bottom: 0; }
.one-item span { color: var(--accent-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; }
.one-item h3 { margin: 2.7rem 0 0; font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 600; letter-spacing: -0.04em; }
.one-complete { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.2rem; padding-top: 2.2rem; border-top: 2px solid var(--accent); }
.one-complete strong { font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 500; letter-spacing: -0.05em; }
.one-complete span { color: rgba(7, 17, 30, 0.6); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

.legacy { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.75fr); min-height: 48rem; border: 1px solid var(--line); background: #08131f; }
.legacy__visual { position: relative; min-height: 42rem; overflow: hidden; }
.legacy__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.04); transition: transform 900ms ease; }
.legacy:hover .legacy__visual img { transform: scale(1.025); }
.legacy__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(4, 11, 19, 0.75)); }
.legacy__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 5vw, 5.5rem); border-left: 1px solid var(--line); }
.legacy__content h2 { max-width: 11ch; margin: 0; font-size: clamp(3rem, 4.8vw, 5.5rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.96; }
.legacy__content p { margin: 1.5rem 0 0; color: var(--muted); line-height: 1.78; }
.legacy__clients { display: grid; gap: 0.7rem; margin: 2rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line); color: rgba(247, 245, 240, 0.76); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; line-height: 1.55; text-transform: uppercase; }

.process-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.55fr); gap: 4rem; align-items: end; margin-bottom: 4rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { min-height: 18rem; padding: 2.25rem; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step span { color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; }
.process-step h3 { margin: 4.5rem 0 0; font-size: 1.55rem; font-weight: 600; letter-spacing: -0.035em; }
.process-step p { margin: 1rem 0 0; color: var(--muted); line-height: 1.65; }

.service-jump { position: sticky; top: 82px; z-index: 10; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(5, 11, 18, 0.94); backdrop-filter: blur(16px); scrollbar-width: none; }
.service-jump::-webkit-scrollbar { display: none; }
.service-jump__inner { display: flex; width: max-content; min-width: 100%; padding: 0 var(--gutter); }
.service-jump a { flex: 1 0 auto; padding: 1.15rem 1.2rem; border-right: 1px solid var(--line); color: rgba(247, 245, 240, 0.62); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 180ms ease, background 180ms ease; }
.service-jump a:first-child { border-left: 1px solid var(--line); }
.service-jump a:hover, .service-jump a:focus-visible { background: rgba(222, 164, 94, 0.1); color: var(--paper); }

.services-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.62fr); gap: clamp(3rem, 7vw, 8rem); align-items: end; }
.services-list { display: grid; }
.service-detail { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(25rem, 0.96fr); min-height: 46rem; border-top: 1px solid var(--line); background: #08131f; }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail:nth-child(even) .service-detail__visual { order: 2; }
.service-detail:nth-child(even) .service-detail__content { border-right: 1px solid var(--line); border-left: 0; }
.service-detail__visual { position: relative; min-height: 42rem; overflow: hidden; }
.service-detail__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.04); transition: transform 900ms ease; }
.service-detail:hover .service-detail__visual img { transform: scale(1.025); }
.service-detail__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(5, 11, 18, 0.58)); }
.service-detail__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.4rem, 5vw, 5.5rem); border-left: 1px solid var(--line); }
.service-detail__number { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.service-detail h2 { max-width: 13ch; margin: 1.3rem 0 0; font-size: clamp(2.7rem, 4.6vw, 5.4rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.96; text-wrap: balance; }
.service-detail__summary { margin: 1.5rem 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.scope-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.scope-list li { padding: 1rem 0.8rem 1rem 0; border-bottom: 1px solid var(--line); color: rgba(247, 245, 240, 0.78); font-size: 0.84rem; font-weight: 600; line-height: 1.45; }
.scope-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.scope-list li:nth-child(even) { padding-left: 0.8rem; }

.delivery-model { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.55fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.delivery-model__statement { max-width: 13ch; margin: 0; font-size: clamp(3.4rem, 6.3vw, 7.3rem); font-weight: 500; letter-spacing: -0.068em; line-height: 0.92; }
.delivery-model__copy { color: rgba(7, 17, 30, 0.7); line-height: 1.75; }
.delivery-model__copy strong { display: block; margin-bottom: 1rem; color: var(--ink); font-size: 1.25rem; }

.faq-header { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(23rem, 1.2fr); gap: clamp(3rem, 7vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; font-size: clamp(1.05rem, 1.35vw, 1.25rem); font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; color: var(--accent); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 46rem; margin: 0; padding: 0 3rem 1.5rem 0; color: var(--muted); line-height: 1.75; }

.page-cta { position: relative; overflow: hidden; padding: clamp(6rem, 9vw, 9rem) var(--gutter); background: var(--paper); color: var(--ink); }
.page-cta::after { content: ""; position: absolute; right: -12rem; bottom: -16rem; width: 34rem; height: 34rem; border: 4rem solid rgba(222, 164, 94, 0.2); border-radius: 50%; }
.page-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.48fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.page-cta h2 { max-width: 12ch; margin: 0; font-size: clamp(3.3rem, 6vw, 7rem); font-weight: 500; letter-spacing: -0.065em; line-height: 0.93; }
.page-cta__side p { margin: 0 0 1.8rem; color: rgba(7, 17, 30, 0.7); line-height: 1.7; }
.page-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.footer { padding: clamp(4.5rem, 7vw, 7rem) var(--gutter) 1.5rem; border-top: 1px solid var(--line); background: #050b12; }
.footer__main { display: grid; grid-template-columns: minmax(18rem, 1.35fr) minmax(10rem, 0.55fr) minmax(15rem, 0.72fr); gap: clamp(3rem, 7vw, 8rem); padding-bottom: clamp(3.5rem, 6vw, 6rem); }
.footer__brand { display: inline-block; margin-bottom: 1.25rem; font-weight: 700; letter-spacing: 0.18em; }
.footer__brand span { color: var(--accent); }
.footer__positioning { max-width: 28rem; margin: 0; color: rgba(247, 245, 240, 0.63); line-height: 1.65; }
.footer__heading { display: block; margin-bottom: 1.25rem; color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.footer ul { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; }
.footer li, .footer a, .footer address { color: rgba(247, 245, 240, 0.67); font-size: 0.9rem; font-style: normal; line-height: 1.6; }
.footer a:hover { color: var(--paper); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: rgba(247, 245, 240, 0.46); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__credit { color: rgba(247, 245, 240, 0.72); }
.footer__credit strong { color: var(--accent); }

.site-header--solid { position: fixed; background: rgba(5, 11, 18, 0.96); backdrop-filter: blur(16px); }
.enquiry-page { padding-top: 110px; background: var(--ink); }
.enquiry-intro { padding: clamp(5rem, 9vw, 9rem) var(--gutter) clamp(4rem, 7vw, 7rem); border-bottom: 1px solid var(--line); background: radial-gradient(circle at 88% 12%, rgba(222, 164, 94, 0.14), transparent 30%), #07111e; }
.enquiry-intro__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.65fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.enquiry-intro h1 { max-width: 11ch; margin: 0; font-size: clamp(3.4rem, 7vw, 8rem); font-weight: 500; letter-spacing: -0.068em; line-height: 0.92; text-wrap: balance; }
.enquiry-intro .breadcrumb { margin: 0 0 clamp(3rem, 6vw, 6rem); }
.enquiry-intro__copy > p { margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.75; }
.enquiry-direct { display: grid; gap: 0.45rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.enquiry-direct span { margin-bottom: 0.25rem; color: rgba(247, 245, 240, 0.5); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.enquiry-direct a { width: max-content; color: var(--paper); font-weight: 600; }
.enquiry-direct a:hover { color: var(--accent); }
.enquiry-form-section { padding: clamp(5rem, 9vw, 9rem) var(--gutter); background: var(--paper); color: var(--ink); }
.project-form { width: min(1120px, 100%); margin: 0 auto; }
.form-section-heading { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr) auto; gap: 1.25rem; align-items: baseline; margin: 0 0 2rem; padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid rgba(7, 17, 30, 0.2); }
.form-section-heading:first-of-type { padding-top: 0; border-top: 0; }
.form-section-heading > span { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; }
.form-section-heading h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 500; letter-spacing: -0.045em; }
.form-section-heading p { margin: 0; color: rgba(7, 17, 30, 0.55); font-size: 0.85rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2rem; margin-bottom: clamp(4rem, 7vw, 6rem); }
.form-grid > label { display: grid; gap: 0.65rem; }
.form-grid > label > span, .services-field legend { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 58px; border: 1px solid rgba(7, 17, 30, 0.22); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 1rem; transition: border-color 180ms ease, box-shadow 180ms ease; }
.form-grid input, .form-grid select { padding: 0 1rem; }
.form-grid textarea { min-height: 11rem; padding: 1rem; resize: vertical; line-height: 1.65; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(222, 164, 94, 0.18); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(7, 17, 30, 0.42); }
.form-full, .services-field { grid-column: 1 / -1; }
.services-field { margin: 0; padding: 0; border: 0; }
.services-field legend { margin-bottom: 0.75rem; }
.check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(7, 17, 30, 0.22); }
.check-grid label { display: flex; min-height: 66px; align-items: center; gap: 0.75rem; padding: 1rem; border-right: 1px solid rgba(7, 17, 30, 0.16); border-bottom: 1px solid rgba(7, 17, 30, 0.16); cursor: pointer; }
.check-grid label:nth-child(3n) { border-right: 0; }
.check-grid label:nth-last-child(-n + 3) { border-bottom: 0; }
.check-grid input { width: 1rem; min-height: 1rem; accent-color: var(--accent); }
.check-grid span { font-size: 0.83rem; font-weight: 600; line-height: 1.35; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(7, 17, 30, 0.2); }
.form-submit p { max-width: 35rem; margin: 0; color: rgba(7, 17, 30, 0.56); font-size: 0.8rem; line-height: 1.6; }
.form-submit .button { border: 0; cursor: pointer; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.success-page { min-height: 100vh; background: radial-gradient(circle at 80% 20%, rgba(222, 164, 94, 0.16), transparent 30%), var(--ink); }
.success-panel { display: flex; min-height: 100vh; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 5vw, 5rem) var(--gutter); }
.success-panel__content { max-width: 60rem; margin: auto 0; padding: 5rem 0; }
.success-panel h1 { margin: 0; color: var(--paper); font-size: clamp(5rem, 13vw, 13rem); font-weight: 500; letter-spacing: -0.08em; line-height: 0.8; }
.success-panel__content > p:not(.eyebrow) { margin: 2rem 0 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.5rem); }
.success-panel__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }

@media (max-width: 760px) {
  .enquiry-page { padding-top: 82px; }
  .enquiry-intro__grid, .form-grid { grid-template-columns: 1fr; }
  .enquiry-intro__grid { gap: 2.5rem; }
  .enquiry-intro .breadcrumb { margin-bottom: 3rem; }
  .form-section-heading { grid-template-columns: 2.2rem 1fr; }
  .form-section-heading p { grid-column: 2; }
  .check-grid { grid-template-columns: 1fr; }
  .check-grid label, .check-grid label:nth-child(3n), .check-grid label:nth-last-child(-n + 3) { border-right: 0; border-bottom: 1px solid rgba(7, 17, 30, 0.16); }
  .check-grid label:last-child { border-bottom: 0; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
}

.corporate-hero .page-hero__image { object-fit: contain; object-position: center 58%; background: #07111e; }
.corporate-hero::before { background: linear-gradient(90deg, rgba(4, 11, 19, 0.96), rgba(4, 11, 19, 0.72) 42%, rgba(4, 11, 19, 0.18) 78%), linear-gradient(180deg, rgba(4, 11, 19, 0.56), transparent 30%, rgba(4, 11, 19, 0.82)); }
.corporate-intro__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.corporate-intro__copy { color: var(--muted); font-size: 1.04rem; line-height: 1.82; }
.corporate-intro__copy p { margin: 0 0 1.2rem; }
.corporate-project { padding: clamp(6rem, 9vw, 9rem) var(--gutter); }
.corporate-project--paper { background: var(--paper); color: var(--ink); }
.corporate-project--ink { background: #07111e; color: var(--paper); }
.corporate-project__header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.62fr); gap: clamp(3rem, 7vw, 8rem); align-items: end; margin-bottom: clamp(3rem, 5vw, 5rem); }
.corporate-project__number { margin: 0 0 1rem; color: var(--accent); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.corporate-project h2 { max-width: 13ch; margin: 0; font-size: clamp(3rem, 5.3vw, 6.2rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.95; text-wrap: balance; }
.corporate-project__brief { color: rgba(7, 17, 30, 0.7); line-height: 1.75; }
.corporate-project--ink .corporate-project__brief { color: var(--muted); }
.corporate-project__brief p { margin: 0; }
.corporate-scope { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.corporate-scope li { padding: 0.62rem 0.82rem; border: 1px solid rgba(7, 17, 30, 0.2); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.corporate-project--ink .corporate-scope li { border-color: var(--line); color: rgba(247, 245, 240, 0.76); }
.corporate-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 2rem); }
.corporate-shot { grid-column: span 6; margin: 0; border: 1px solid rgba(7, 17, 30, 0.16); background: rgba(7, 17, 30, 0.04); }
.corporate-project--ink .corporate-shot { border-color: var(--line); background: rgba(247, 245, 240, 0.035); }
.corporate-shot--wide { grid-column: 1 / -1; }
.corporate-shot__media { display: grid; min-height: 24rem; place-items: center; overflow: hidden; background: #050b12; }
.corporate-shot img { width: 100%; height: auto; max-height: 52rem; object-fit: contain; object-position: center; }
.corporate-shot figcaption { display: grid; gap: 0.35rem; padding: 1.15rem 1.25rem 1.3rem; }
.corporate-shot figcaption span { color: var(--accent); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.corporate-shot figcaption strong { font-size: 1rem; font-weight: 600; line-height: 1.45; }
.corporate-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid rgba(7, 17, 30, 0.18); }
.corporate-project--ink .corporate-note { border-top-color: var(--line); }
.corporate-note strong { max-width: 46rem; font-size: clamp(1.35rem, 2.2vw, 2.15rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1.25; }
.corporate-note span { color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav, .header-action { display: none; }
  .menu-button { display: grid; justify-self: end; }
  .mobile-menu { position: fixed; inset: 0; z-index: 15; display: grid; align-content: center; gap: 0.2rem; padding: 7rem var(--gutter) 3rem; background: rgba(5, 13, 23, 0.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease; }
  .mobile-menu[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: clamp(1.5rem, 6vw, 2.8rem); font-weight: 500; letter-spacing: -0.03em; }
  .mobile-menu .button { width: max-content; margin-top: 1.5rem; border-bottom: 0; font-size: 0.8rem; letter-spacing: 0.08em; }
  .origin, .legacy { grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr); }
  .one-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .one-item:nth-child(3n) { border-right: 1px solid rgba(7, 17, 30, 0.18); }
  .one-item:nth-child(2n) { border-right: 0; }
  .one-item:nth-last-child(-n + 3) { border-bottom: 1px solid rgba(7, 17, 30, 0.18); }
  .one-item:nth-last-child(-n + 2) { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .service-detail { grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr); }
}

@media (max-width: 760px) {
  :root { --gutter: clamp(1.25rem, 6vw, 2rem); }
  .site-header { min-height: 82px; }
  .site-header.is-scrolled { min-height: 72px; }
  .brand { font-size: 0.76rem; letter-spacing: 0.14em; }
  .page-hero { min-height: max(640px, 86svh); }
  .page-hero__image { object-position: 62% center; }
  .page-hero__content { padding-top: 8rem; padding-bottom: 3.75rem; }
  .page-hero h1 { max-width: 10ch; font-size: clamp(3.7rem, 17vw, 6rem); }
  .page-hero__lead { font-size: 1.04rem; }
  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-title { font-size: clamp(3rem, 12vw, 4.8rem); }
  .origin, .one-system__header, .legacy, .process-header, .services-intro, .service-detail, .delivery-model, .faq-header, .page-cta__inner { grid-template-columns: 1fr; }
  .origin { gap: 3rem; }
  .one-system__mark { font-size: clamp(7rem, 35vw, 11rem); }
  .one-grid { grid-template-columns: 1fr; }
  .one-item, .one-item:nth-child(2n), .one-item:nth-child(3n), .one-item:nth-last-child(-n + 2) { min-height: 9rem; border-right: 0; border-bottom: 1px solid rgba(7, 17, 30, 0.18); }
  .one-item:last-child { border-bottom: 0; }
  .one-item h3 { margin-top: 1.8rem; }
  .one-complete { align-items: flex-start; flex-direction: column; }
  .legacy { min-height: 0; }
  .legacy__visual { min-height: 58svh; }
  .legacy__content { padding: 3rem 1.5rem; border-top: 1px solid var(--line); border-left: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(2) { min-height: 0; padding: 1.75rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 2.5rem; }
  .service-jump { top: 72px; }
  .service-detail { min-height: 0; }
  .service-detail:nth-child(even) .service-detail__visual { order: 0; }
  .service-detail__visual { min-height: 56svh; }
  .service-detail__content, .service-detail:nth-child(even) .service-detail__content { padding: 3rem 1.5rem 3.5rem; border-top: 1px solid var(--line); border-right: 0; border-left: 0; }
  .service-detail h2 { font-size: clamp(2.8rem, 12vw, 4.6rem); }
  .scope-list { grid-template-columns: 1fr; }
  .scope-list li, .scope-list li:nth-child(odd), .scope-list li:nth-child(even) { padding: 0.9rem 0; border-right: 0; }
  .delivery-model__statement { font-size: clamp(3.2rem, 13vw, 5rem); }
  .faq-header { gap: 3rem; }
  .page-cta h2 { font-size: clamp(3.2rem, 13vw, 5.2rem); }
  .page-cta__actions { flex-direction: column; }
  .page-cta__actions .button { width: 100%; }
  .footer__main { grid-template-columns: 1fr; gap: 2.75rem; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Residential projects */
.portfolio-hero h1 { max-width: 10.5ch; }
.portfolio-hero .page-hero__image { object-position: center 58%; }
.portfolio-hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(4.5rem, 7vw, 7rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(247, 245, 240, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.portfolio-hero__scroll span:last-child { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border: 1px solid rgba(247, 245, 240, 0.42); border-radius: 50%; color: var(--paper); transition: transform 220ms ease, background 220ms ease; }
.portfolio-hero__scroll:hover span:last-child { transform: translateY(4px); background: rgba(247, 245, 240, 0.1); }

.project-jump { position: sticky; top: 82px; z-index: 10; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(5, 11, 18, 0.95); backdrop-filter: blur(18px); scrollbar-width: none; }
.project-jump::-webkit-scrollbar { display: none; }
.project-jump__inner { display: flex; width: max-content; min-width: 100%; padding: 0 var(--gutter); }
.project-jump a { display: flex; flex: 1 0 auto; align-items: center; gap: 0.7rem; padding: 1.15rem 1.25rem; border-right: 1px solid var(--line); color: rgba(247, 245, 240, 0.6); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 180ms ease, background 180ms ease; }
.project-jump a:first-child { border-left: 1px solid var(--line); }
.project-jump a span { color: var(--accent); }
.project-jump a:hover, .project-jump a:focus-visible, .project-jump a[aria-current="true"] { background: rgba(222, 164, 94, 0.1); color: var(--paper); }

.portfolio-intro { overflow: hidden; }
.portfolio-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.62fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.portfolio-intro__copy { color: var(--muted); font-size: 1.04rem; line-height: 1.82; }
.portfolio-intro__copy p { margin: 0; }
.portfolio-intro__copy p + p { margin-top: 1.25rem; }
.capability-line { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-line span { display: grid; min-height: 6rem; place-items: center; padding: 1rem; border-right: 1px solid var(--line); color: rgba(247, 245, 240, 0.66); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.11em; text-align: center; text-transform: uppercase; }
.capability-line span:last-child { border-right: 0; }

.project-case { scroll-margin-top: 130px; padding: clamp(6.5rem, 10vw, 11rem) var(--gutter); }
.project-case--paper { background: var(--paper); color: var(--ink); }
.project-case--ink { background: var(--ink); color: var(--paper); }
.project-case__header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.58fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; margin-bottom: clamp(3.5rem, 6vw, 6rem); }
.project-case__number { margin: 0 0 1.35rem; color: var(--accent); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.project-case__header h2 { max-width: 13ch; margin: 0; font-size: clamp(3.4rem, 6.5vw, 7.6rem); font-weight: 500; letter-spacing: -0.068em; line-height: 0.9; text-wrap: balance; }
.project-case__brief > p { margin: 0; color: rgba(247, 245, 240, 0.7); font-size: 1.04rem; line-height: 1.78; }
.project-case--paper .project-case__brief > p { color: rgba(7, 17, 30, 0.7); }
.project-case__brief ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 2rem 0 0; padding: 0; border-top: 1px solid currentColor; list-style: none; }
.project-case__brief li { padding: 0.95rem 0; border-bottom: 1px solid currentColor; color: inherit; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.project-case__brief li:nth-child(odd) { border-right: 1px solid currentColor; }
.project-case__brief li:nth-child(even) { padding-left: 1rem; }
.project-case--ink .project-case__brief ul { border-color: var(--line); }
.project-case--ink .project-case__brief li { border-color: var(--line); }
.project-case--paper .project-case__brief ul, .project-case--paper .project-case__brief li { border-color: rgba(7, 17, 30, 0.18); }

.project-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(0.65rem, 1vw, 1rem); }
.project-shot { position: relative; grid-column: span 6; margin: 0; overflow: hidden; background: #0b1621; }
.project-shot--hero { grid-column: 1 / -1; }
.project-shot img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: filter 500ms ease; }
.project-shot:hover img { filter: saturate(1.03); }
.project-shot::after { content: ""; position: absolute; inset: 45% 0 0; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(4, 11, 18, 0.78)); }
.project-shot figcaption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; display: grid; grid-template-columns: auto 1fr; gap: 0.75rem 1.2rem; align-items: center; padding: clamp(1.15rem, 2.3vw, 2rem); color: rgba(247, 245, 240, 0.82); font-size: 0.84rem; line-height: 1.5; }
.project-shot figcaption span { color: var(--accent); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.project-shot:not(.project-shot--hero)::after { display: none; }
.project-shot:not(.project-shot--hero) figcaption { position: static; min-height: 5.5rem; background: #08131f; }
.project-case__close { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: clamp(2.5rem, 4vw, 4rem); padding-top: 2rem; border-top: 1px solid rgba(7, 17, 30, 0.22); }
.project-case__close strong { max-width: 28ch; font-size: clamp(1.6rem, 2.5vw, 2.8rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1.15; }
.project-case__close span { color: rgba(7, 17, 30, 0.56); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

.build-sequence { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(0.8rem, 1.2vw, 1.25rem); }
.build-step { margin: 0; padding: 0; border: 1px solid var(--line); }
.build-step:first-child { grid-column: 1 / -1; }
.build-step > div { position: relative; overflow: hidden; background: #0a1522; }
.build-step img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; filter: saturate(0.88) contrast(1.03); transition: filter 500ms ease; }
.build-step:hover img { filter: saturate(0.98) contrast(1.02); }
.build-step > div span { position: absolute; top: 1rem; left: 1rem; display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border: 1px solid rgba(247, 245, 240, 0.45); border-radius: 50%; background: rgba(5, 11, 18, 0.58); color: var(--paper); font-size: 0.7rem; font-weight: 700; }
.build-step figcaption { display: grid; gap: 0.6rem; padding: 1.35rem 0.35rem 0.75rem; }
.build-step strong { font-size: 1rem; font-weight: 600; }
.build-step small { color: var(--muted); font-size: 0.78rem; line-height: 1.55; }

.transformation-list { display: grid; gap: clamp(5rem, 9vw, 9rem); }
.transformation-pair__heading { display: grid; grid-template-columns: minmax(10rem, 0.35fr) 1fr; gap: 2rem; align-items: end; margin-bottom: 1.5rem; }
.transformation-pair__heading span { color: #8b6640; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.transformation-pair__heading h3 { margin: 0; font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.compare { position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 16 / 8.5; background: #0c1520; cursor: ew-resize; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
.compare__after { z-index: 1; clip-path: inset(0 calc(100% - var(--split)) 0 0); }
.compare__line { position: absolute; top: 0; bottom: 0; left: var(--split); z-index: 3; width: 2px; background: var(--paper); transform: translateX(-1px); pointer-events: none; }
.compare__line::after { content: "↔"; position: absolute; top: 50%; left: 50%; display: grid; width: 3.5rem; height: 3.5rem; place-items: center; border: 1px solid rgba(7, 17, 30, 0.18); border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 1rem; transform: translate(-50%, -50%); }
.compare__label { position: absolute; top: 1.2rem; z-index: 4; padding: 0.65rem 0.8rem; background: rgba(5, 11, 18, 0.72); color: var(--paper); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; backdrop-filter: blur(8px); pointer-events: none; }
.compare__label--before { right: 1.2rem; }
.compare__label--after { left: 1.2rem; }
.compare input { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }

.project-gallery--editorial .project-shot:nth-child(2) { grid-column: span 7; }
.project-gallery--editorial .project-shot:nth-child(3) { grid-column: span 5; }
.project-gallery--editorial .project-shot:nth-child(4) { grid-column: span 5; }
.project-gallery--editorial .project-shot:nth-child(5) { grid-column: span 7; }

.suite-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(0.7rem, 1vw, 1rem); }
.suite-gallery figure { position: relative; grid-column: span 6; margin: 0; overflow: hidden; background: #0b1621; }
.suite-gallery .suite-gallery__lead { grid-column: 1 / -1; }
.suite-gallery img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: filter 500ms ease; }
.suite-gallery figure:hover img { filter: saturate(1.03); }
.suite-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; gap: 0.8rem; padding: clamp(1rem, 2vw, 1.6rem); background: linear-gradient(180deg, transparent, rgba(5, 11, 18, 0.82)); color: var(--paper); }
.suite-gallery figcaption span { color: var(--accent); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; }
.suite-gallery figcaption strong { font-size: 1rem; font-weight: 600; }
.suite-gallery figcaption small { margin-left: auto; color: rgba(247, 245, 240, 0.68); }
.suite-gallery figure:not(.suite-gallery__lead) figcaption { position: static; min-height: 4.8rem; background: #08131f; }

.outdoor-story { display: grid; gap: clamp(0.7rem, 1vw, 1rem); }
.outdoor-story figure { position: relative; margin: 0; overflow: hidden; background: #0a1522; }
.outdoor-story img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: filter 500ms ease; }
.outdoor-story figure:hover img { filter: saturate(1.03); }
.outdoor-story__hero figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding: clamp(1.5rem, 3vw, 3rem); background: linear-gradient(180deg, transparent, rgba(5, 11, 18, 0.82)); }
.outdoor-story__hero figcaption strong { max-width: 18ch; font-size: clamp(1.8rem, 3vw, 3.6rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.outdoor-story__hero figcaption span { max-width: 30rem; color: rgba(247, 245, 240, 0.74); line-height: 1.6; }
.outdoor-story__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(0.7rem, 1vw, 1rem); }
.outdoor-story__grid figcaption { position: static; min-height: 4.8rem; padding: 1.5rem; background: #08131f; color: var(--paper); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.portfolio-note__grid { display: grid; grid-template-columns: minmax(10rem, 0.25fr) minmax(0, 1fr) minmax(23rem, 0.55fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.portfolio-note__grid h2 { max-width: 14ch; margin: 0; font-size: clamp(3rem, 5vw, 6rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.95; }
.portfolio-note__grid > p:last-child { margin: 0; color: var(--muted); line-height: 1.8; }

@media (max-width: 1120px) {
  .capability-line { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .capability-line span:nth-child(3) { border-right: 0; }
  .capability-line span:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .build-sequence { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .build-step:first-child { grid-column: 1 / -1; }
  .portfolio-note__grid { grid-template-columns: minmax(9rem, 0.28fr) 1fr; }
  .portfolio-note__grid > p:last-child { grid-column: 2; }
  .corporate-project__header { grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.7fr); }
}

@media (max-width: 760px) {
  .portfolio-hero__scroll { display: none; }
  .project-jump { top: 72px; }
  .portfolio-intro__grid, .project-case__header, .transformation-pair__heading, .portfolio-note__grid { grid-template-columns: 1fr; }
  .capability-line { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 3.5rem; }
  .capability-line span, .capability-line span:nth-child(3) { min-height: 4.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .capability-line span:nth-child(even) { border-right: 0; }
  .capability-line span:nth-last-child(-n + 2) { border-bottom: 0; }
  .project-case { padding-top: 5.8rem; padding-bottom: 5.8rem; }
  .project-case__header { gap: 2.5rem; margin-bottom: 3rem; }
  .project-case__header h2 { font-size: clamp(3.25rem, 14vw, 5.2rem); }
  .project-shot, .project-shot--hero, .project-gallery--editorial .project-shot:nth-child(n) { grid-column: 1 / -1; }
  .project-shot figcaption { grid-template-columns: 1fr; gap: 0.35rem; }
  .project-shot figcaption { font-size: 0.72rem; }
  .project-case__close { align-items: flex-start; flex-direction: column; }
  .build-sequence { grid-template-columns: 1fr; }
  .build-step, .build-step:nth-child(even), .build-step:last-child, .build-step:first-child { grid-column: auto; }
  .build-step img, .build-step:last-child img { width: 100%; height: auto; }
  .transformation-pair__heading { gap: 0.85rem; }
  .compare { aspect-ratio: 4 / 5; }
  .compare__line::after { width: 3rem; height: 3rem; }
  .suite-gallery figure, .suite-gallery .suite-gallery__lead { grid-column: 1 / -1; }
  .suite-gallery figcaption small { display: none; }
  .outdoor-story__grid { grid-template-columns: 1fr; }
  .outdoor-story__hero figcaption { align-items: flex-start; flex-direction: column; gap: 0.7rem; }
  .outdoor-story__hero figcaption span { display: none; }
  .portfolio-note__grid > p:last-child { grid-column: auto; }
  .corporate-hero .page-hero__image { object-position: center 46%; }
  .corporate-intro__grid, .corporate-project__header { grid-template-columns: 1fr; gap: 2rem; }
  .corporate-project h2 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .corporate-shot, .corporate-shot--wide { grid-column: 1 / -1; }
  .corporate-shot__media { min-height: 13rem; }
  .corporate-note { align-items: flex-start; flex-direction: column; }
}
