:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5f6368;
  --soft: #f5f5f7;
  --line: #dedee3;
  --dark: #111111;
  --accent: #6f7f55;
  --accent-dark: #53613e;
  --max: 1440px;
  --wide-max: 1480px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.site-container,
.inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.nav,
.header-inner {
  width: min(calc(100% - 64px), 1400px);
  margin-inline: auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 0; font-weight: 700; letter-spacing: 0; }
.brand img { width: 91px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; color: #2a2a2a; }
.nav-item { position: relative; padding: 28px 0; }
.dropdown {
  position: absolute;
  top: 72px;
  left: -22px;
  min-width: 250px;
  padding: 10px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; color: var(--muted); border-radius: 6px; }
.dropdown a:hover { background: var(--soft); color: var(--ink); }
.quote-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 14px;
  background: var(--accent);
  color: white;
  transition: background-color .18s ease, opacity .18s ease, transform .18s ease;
}
.btn.secondary { background: rgba(255,255,255,.92); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.quote-btn:hover, .btn:hover { transform: translateY(-1px); opacity: .92; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }
main { padding-top: var(--header-height); }
.quote-btn { min-height: 42px; }
.btn { min-height: 44px; padding-inline: 22px; }
.hero-shell {
  width: 100%;
  background: var(--soft);
}
.hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  height: clamp(680px, 82vh, 900px);
  max-height: 900px;
  color: white;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}
.hero-media picture { display: block; }
.hero-media img {
  object-fit: cover;
  object-position: 50% 34%;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.58) 30%,
      rgba(0, 0, 0, 0.25) 58%,
      rgba(0, 0, 0, 0.05) 82%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.12));
}
.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-content-inner {
  width: min(calc(100% - 96px), 1340px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(600px, 48%);
  max-width: 600px;
  margin-left: 70px;
  transform: translateY(48px);
}
.eyebrow { color: var(--accent); font-weight: 750; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: 76px; line-height: 1; letter-spacing: 0; margin-bottom: 22px; }
h2 { font-size: 54px; line-height: 1.08; letter-spacing: 0; margin-bottom: 18px; }
h3 { font-size: 24px; line-height: 1.18; letter-spacing: 0; }
.hero-eyebrow { font-size: 15px; letter-spacing: .08em; color: rgba(255,255,255,.86); margin-bottom: 18px; }
.hero-title { font-size: clamp(52px, 4vw, 72px); line-height: 1.02; letter-spacing: 0; max-width: 720px; }
.hero-description { font-size: 20px; line-height: 1.45; max-width: 500px; margin-top: 18px; color: rgba(255,255,255,.88); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-actions { gap: 12px; margin-top: 24px; }
.section { padding: 104px 28px; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--dark); color: white; }
.section-lede { max-width: 720px; color: var(--muted); font-size: 19px; }
.dark .section-lede, .dark .muted { color: rgba(255,255,255,.72); }
.capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 46px; background: var(--line); }
.capability { background: white; padding: 28px; min-height: 120px; }
.capability strong { display: block; font-size: 19px; }
.capability span { display: block; margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.45; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.selected-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.card { background: white; border: 1px solid rgba(17,17,17,.08); border-radius: 8px; overflow: hidden; }
.card img { aspect-ratio: 4 / 3; object-fit: cover; background: #ddd; }
.featured-project-card img { aspect-ratio: 16 / 10; }
.card img[src*="nuo-blue-linear-acoustic-wall-system"] { object-position: 66% 38%; }
.card img[src*="nuo-wave-baffles-ceiling-corridor"] { object-position: 50% 18%; }
.card img[src*="nuo-color-sculptural-acoustic-feature"] { object-position: 50% 22%; }
.card img[src*="nuo-hanging-acoustic-divider-screens"] { aspect-ratio: 4 / 3.35; object-position: 50% 42%; }
.card img[src*="nuo-printed-acoustic-green-wall"] { object-position: 50% 40%; }
.card img[src*="nuo-custom-acoustic-green-feature-workplace"] { object-position: 50% 22%; }
.card-body { padding: 22px; }
.card p { color: var(--muted); }
.card a { color: var(--accent-dark); font-weight: 700; }
.project-meta { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.project-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
  margin-top: 46px;
}
.project-gallery figure {
  margin: 0;
  background: white;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 8px;
  overflow: hidden;
}
.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.project-gallery figure:first-child img { aspect-ratio: 16 / 10; }
.single-gallery { grid-template-columns: minmax(0, 1fr); }
.single-gallery figure:first-child img { aspect-ratio: 16 / 9; }
.project-gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}
.project-intro {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
}
.stat {
  background: white;
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.stat strong {
  display: block;
  font-size: clamp(26px, 2.2vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}
.stat span { color: var(--muted); }
.capability-grid { margin-top: 24px; }
.capability-card {
  background: white;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 8px;
  padding: 26px;
}
.capability-card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.split img { border-radius: 8px; aspect-ratio: 5/4; object-fit: cover; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: #343434; background: white; }
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 46px; }
.step { border-top: 1px solid rgba(17,17,17,.2); padding-top: 22px; }
.step span { color: var(--accent-dark); font-weight: 800; }
.logos { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }
.project-logo { min-height: 104px; border: 1px solid rgba(17,17,17,.055); border-radius: 9px; display: grid; place-items: center; background: white; padding: 20px 22px; transition: border-color .18s ease; }
.project-logo:hover { border-color: rgba(17,17,17,.16); }
.project-logo img { display: block; width: auto; height: auto; max-width: min(130px, 100%); max-height: 52px; object-fit: contain; filter: saturate(.9); opacity: .94; transition: filter .18s ease, opacity .18s ease, transform .18s ease; }
.project-logo:hover img { filter: saturate(1); opacity: 1; transform: translateY(-1px); }
.logo-wide img { max-width: 146px; max-height: 46px; }
.logo-square img { max-width: 64px; max-height: 64px; }
.logo-round img { max-width: 62px; max-height: 62px; }
.logo-crest img { max-width: 118px; max-height: 62px; }
.logo-bytedance img { max-width: 162px; max-height: 50px; }
.logo-smu img { max-width: 158px; max-height: 60px; }
.logo-louis-vuitton img { max-width: 82px; max-height: 74px; }
.logo-scoot img { max-width: 68px; max-height: 68px; }
.logo-aia img, .logo-grab img { max-width: 64px; max-height: 64px; }
.logo-keppel img { max-width: 114px; max-height: 38px; }
.logo-philips img { max-width: 122px; max-height: 40px; }
.logo-ntu img { max-width: 124px; max-height: 58px; }
.logo-moh img { max-width: 122px; max-height: 58px; }
.logo-coca-cola img { max-width: 60px; max-height: 60px; }
.cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.footer { padding: 44px 28px; background: #080808; color: rgba(255,255,255,.72); }
.footer .inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.page-hero { padding: 140px 28px 72px; background: var(--soft); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.filter { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 10px 15px; color: var(--muted); }
.detail { display: grid; grid-template-columns: 320px 1fr; gap: 48px; margin-top: 48px; }
.facts { border-top: 1px solid var(--line); }
.facts div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.facts strong { display: block; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 34px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 650; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}
textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: start; color: var(--muted); font-size: 14px; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }
.notice { margin-top: 14px; color: var(--muted); font-size: 14px; }
.mobile-only { display: none; }

.materials-hero {
  padding: 132px 28px 84px;
  background:
    radial-gradient(circle at 82% 16%, rgba(111,127,85,.18), transparent 34%),
    linear-gradient(135deg, #f5f5f7 0%, #ffffff 58%, #ededee 100%);
}
.materials-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .8fr);
  gap: 64px;
  align-items: center;
}
.materials-hero h1 { max-width: 760px; }
.material-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 70px rgba(17,17,17,.08);
}
.material-board.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); box-shadow: none; }
.material-chip {
  min-height: 148px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
}
.material-chip:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(45deg, rgba(255,255,255,.45) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.45) 50%, rgba(255,255,255,.45) 75%, transparent 75%, transparent);
  background-size: 18px 18px;
}
.material-chip span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: white;
  font-weight: 750;
  font-size: 13px;
  text-shadow: 0 1px 12px rgba(0,0,0,.32);
}
.chip-felt-blue { background: #315d83; }
.chip-stone { background: #bab8af; }
.chip-warm { background: #b76f4a; }
.chip-charcoal { background: #252628; }
.chip-green { background: #516f4c; }
.chip-print { background: linear-gradient(135deg, #0f8ca3, #ca1f4e 44%, #344b86 70%, #d8b35c); }
.material-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.material-card img { aspect-ratio: 4 / 3; }
.material-card img[src*="nuo-blue-pet-wall-system"] { object-position: 62% 42%; }
.material-card img[src*="custom-acoustic-lighting-feature"] { object-position: 45% 45%; }
.material-card img[src*="solution-custom-acoustic-features"] { object-position: 50% 50%; }
.material-card img[src*="nuo-freestanding-acoustic-dividers"] { object-position: 50% 34%; }
.material-card img[src*="nuo-integrated-lighting-green-feature"] { object-position: 50% 28%; }
.material-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .75fr);
  gap: 56px;
  align-items: start;
}
.spec-panel {
  background: white;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 10px;
  padding: 28px;
}
.soft .spec-panel { background: #fff; }
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 28px;
}
.spec-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--soft);
  font-weight: 650;
}
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.clean-list li {
  padding-left: 18px;
  position: relative;
}
.clean-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.clean-list.columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-stack { display: grid; gap: 1px; background: var(--line); }
.detail-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 40px;
  background: white;
  padding: 34px;
}
.detail-row p { color: var(--muted); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.mini-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--soft);
}
.green-moss-detail {
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
  align-items: start;
}
.moss-intro {
  display: grid;
  gap: 18px;
}
.moss-intro .mini-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}
.moss-hero-card,
.moss-process-grid figure,
.moss-process-figure {
  margin: 0;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft);
}
.moss-hero-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.moss-hero-card figcaption,
.moss-process-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(17,17,17,.08);
}
.moss-process-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}
.moss-process-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.moss-process-grid figure:nth-child(1) img { object-position: center; }
.moss-process-grid figure:nth-child(2) img { object-position: center 45%; }
.moss-process-grid figure:nth-child(3) img { object-position: center 42%; }
.moss-process-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 5px;
}
.moss-process-grid span {
  display: block;
  line-height: 1.45;
}
.moss-process-figure {
  grid-column: 1 / -1;
  margin: 10px 0 0;
}
.moss-process-figure img {
  width: min(100%, 760px);
  margin-inline: auto;
  aspect-ratio: 1024 / 1536;
  object-fit: contain;
  background: #f3f2f1;
}
.moss-process-figure figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(17,17,17,.08);
}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.swatch-card {
  border: 1px solid rgba(17,17,17,.08);
  background: white;
  border-radius: 10px;
  padding: 14px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.swatch-card strong { font-size: 18px; }
.swatch-card em { color: var(--muted); font-style: normal; font-size: 14px; }
.swatch {
  display: block;
  aspect-ratio: 1 / .82;
  border-radius: 8px;
  border: 1px solid rgba(17,17,17,.08);
}
.swatch-white { background: #e8e5dc; }
.swatch-grey { background: #a8a9a5; }
.swatch-charcoal { background: #292b2f; }
.swatch-blue { background: #315d83; }
.swatch-green { background: #526d4b; }
.swatch-warm { background: #b66a46; }
.colour-card-figure {
  margin: 36px 0 0;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.colour-card-figure img {
  width: 100%;
  aspect-ratio: 6240 / 4848;
  object-fit: cover;
}
.colour-card-figure figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(17,17,17,.08);
}
.moq-box {
  display: inline-grid;
  gap: 4px;
  min-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 10px;
  background: var(--soft);
  margin: 6px 0 22px;
}
.moq-box strong { font-size: 14px; color: var(--muted); }
.moq-box span { font-size: 26px; line-height: 1; font-weight: 800; }
.material-split { align-items: start; }
.technical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.technical-grid div {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 8px;
  background: white;
  font-weight: 700;
}
.technical-note { max-width: 980px; }
.material-form .btn { border: 0; cursor: pointer; }
.file-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.file-field span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  color: var(--muted);
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .site-container, .inner, .nav, .header-inner, .hero-content-inner { width: min(100% - 32px, var(--max)); }
  .brand img { width: 76px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    background: white;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  body.menu-open .nav-links { display: flex; }
  .nav-item { padding: 12px 0; }
  .dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; padding: 6px 0 0 12px; }
  .quote-btn { width: 100%; margin-top: 8px; }
  .hero {
    min-height: 680px;
    height: 82svh;
    max-height: 780px;
  }
  .hero-content-wrap { align-items: flex-end; }
  .hero-content-inner { display: block; height: auto; }
  .hero-media img { object-position: 52% 28%; }
  .hero-copy {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-bottom: 46px;
    transform: none;
  }
  .hero-title { font-size: 48px; line-height: 1; max-width: 360px; }
  .hero-eyebrow { font-size: 13px; margin-bottom: 18px; }
  .hero-description { font-size: 17px; max-width: 31ch; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 220px; }
  .section { padding: 64px 18px; }
  .section-lede { font-size: 17px; line-height: 1.5; }
  p { font-size: 16px; }
  [data-mobile] { font-size: 0; }
  [data-mobile]::after { content: attr(data-mobile); font-size: 16px; line-height: 1.5; }
  .capabilities, .grid, .selected-projects-grid, .project-gallery, .project-intro, .stats-grid, .process, .split, .cta, .detail, .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
  .stat { min-height: 118px; padding: 20px; gap: 12px; }
  .stat strong { font-size: 26px; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
  .capability-card { padding: 18px; }
  .capability-card h3 { font-size: 18px; line-height: 1.16; margin-bottom: 8px; }
  .capability-card p { margin-bottom: 0; }
  .split { gap: 28px; }
  .split .pill-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .pill { border-radius: 8px; padding: 10px 12px; }
  .process { gap: 12px; margin-top: 28px; }
  .step { min-height: 132px; padding: 16px; border: 1px solid rgba(17,17,17,.08); border-radius: 8px; background: white; }
  .step h3 { font-size: 18px; margin-bottom: 8px; }
  .step p { margin-bottom: 0; }
  .card-body { padding: 18px; }
  .card h3 { font-size: 21px; }
  .card p { font-size: 16px; }
  .logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .project-logo { min-width: 0; min-height: 98px; padding: 14px 12px; }
  .logo-wide img { max-width: min(132px, 100%); }
  .logo-smu img, .logo-bytedance img { max-width: min(140px, 100%); }
  .logo-philips img { max-width: min(118px, 100%); }
  .logo-keppel img { max-width: min(110px, 100%); }
  .desktop-only { display: none; }
  .mobile-only { display: initial; }
  .materials-hero { padding: 108px 18px 60px; }
  .materials-hero-grid, .material-detail-grid, .detail-row, .material-split { grid-template-columns: 1fr; gap: 28px; }
  .materials-hero h1 { font-size: clamp(44px, 12vw, 56px); }
  .material-board { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 12px; }
  .material-chip { min-height: 112px; }
  .material-card-grid { grid-template-columns: 1fr; }
  .detail-row { padding: 22px; }
  .mini-grid, .clean-list.columns { grid-template-columns: 1fr; }
  .green-moss-detail { grid-template-columns: 1fr; }
  .moss-hero-card img { aspect-ratio: 4 / 3; }
  .moss-process-grid { grid-template-columns: 1fr; gap: 14px; }
  .moss-process-grid img { aspect-ratio: 4 / 3; }
  .moss-process-figure img { width: 100%; }
  .swatch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .swatch-card { min-height: 156px; }
  .colour-card-figure { margin-top: 26px; }
  .colour-card-figure img { aspect-ratio: 4 / 3.2; object-position: center; }
  .technical-grid { grid-template-columns: 1fr; }
  .technical-grid div { min-height: 64px; }
  .moq-box { width: 100%; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1440px) {
  .hero-media img { object-position: 50% 35%; }
}

@media (max-width: 767px) {
  h1 { font-size: 48px; }
  .page-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.06;
    overflow-wrap: break-word;
  }
  .page-hero .section-lede {
    max-width: 28ch;
    font-size: 18px;
    overflow-wrap: break-word;
  }
  h2 { font-size: 36px; }
  .hero-media img { object-position: 52% 28%; }
  .hero:after {
    background:
      linear-gradient(
        0deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.44) 48%,
        rgba(0,0,0,.14) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0,0,0,.44) 0%,
        rgba(0,0,0,.12) 70%,
        rgba(0,0,0,0) 100%
      );
  }
}

@media (max-width: 390px) {
  .hero-title { font-size: 44px; max-width: 340px; }
}

@media (max-width: 380px) {
  .capability-grid, .stats-grid { grid-template-columns: 1fr; }
}

@media (max-height: 800px) and (min-width: 1024px) {
  .hero {
    min-height: 620px;
    height: calc(100vh - var(--header-height));
    max-height: 760px;
  }
  .hero-copy { transform: translateY(8px); }
}

@media (min-aspect-ratio: 19/10) and (min-width: 1400px) {
  .header-inner {
    width: min(calc(100% - 96px), 1400px);
  }
  .hero-shell {
    padding: 24px 32px 32px;
  }
  .hero {
    width: min(calc(100vw - 64px), 1600px);
    height: clamp(620px, 72vh, 760px);
    min-height: 620px;
    max-height: 760px;
    margin-inline: auto;
    border-radius: 0 0 20px 20px;
  }
  .hero-media img {
    object-position: 50% 32%;
  }
  .hero-content-inner {
    width: min(calc(100% - 120px), 1340px);
  }
  .hero-copy {
    margin-left: 45px;
    transform: translateY(38px);
  }
}

@media (min-aspect-ratio: 21/10) and (min-width: 1500px) {
  .hero {
    width: min(calc(100vw - 96px), 1600px);
    height: clamp(620px, 70vh, 740px);
  }
}

@media (min-aspect-ratio: 23/10) {
  .hero {
    width: min(calc(100vw - 128px), 1540px);
    height: 680px;
    max-height: 680px;
  }
}
