:root {
  --charcoal: #1e1e1e;
  --ink: #171412;
  --surface: #f7f5f2;
  --surface-strong: #ffffff;
  --plaster: #e5dfd4;
  --muted: #665f56;
  --blue: #3a86ff;
  --terracotta: #d97a45;
  --forest: #2d6a4f;
  --mustard: #e9b949;
  --line: rgba(30, 30, 30, 0.16);
  --shadow: 0 24px 60px rgba(23, 20, 18, 0.14);
  --max: 1180px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--blue);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 48px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(247, 245, 242, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  background:
    linear-gradient(90deg, currentColor 0 2px, transparent 2px 100%),
    linear-gradient(0deg, currentColor 0 2px, transparent 2px 100%);
  color: inherit;
  font-size: 15px;
  line-height: 1;
}

.site-nav {
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a,
.nav-item > a {
  text-decoration: none;
}

.site-nav a:hover,
.nav-item > a:hover {
  color: var(--blue);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 250px;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(247, 245, 242, 0.98);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.submenu a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  background: var(--charcoal);
  color: white;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-cta,
.button {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(58, 134, 255, 0.28);
}

.nav-cta {
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-cta span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 15px;
}

.button:hover,
.nav-cta:hover {
  background: #1d73f0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  color: var(--ink);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(44%, 1fr);
  align-items: stretch;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header) + 48px) clamp(22px, 5vw, 66px) 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 76%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(90deg, rgba(30, 30, 30, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(30, 30, 30, 0.035) 0 1px, transparent 1px 72px);
}

.hero h1,
section h2 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 3px;
  margin: 28px 0 24px;
  background: linear-gradient(90deg, var(--blue), var(--terracotta), transparent);
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: #2c2823;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  border: 1px solid var(--line);
  background: rgba(247, 245, 242, 0.72);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 64px);
}

.section-intro,
.portfolio-heading,
.audiences,
.process,
.faq,
.search-intent {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section h2 {
  max-width: 820px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 0.98;
}

.service-selector {
  background: var(--surface);
}

.service-paths {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-paths article {
  min-height: 380px;
  padding: clamp(28px, 4vw, 48px);
}

.service-paths article + article {
  border-left: 1px solid var(--line);
}

.path-number,
.process-list span {
  color: var(--blue);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.service-paths h3,
.audience-list h3,
.process-list h3 {
  margin: 20px 0 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.service-paths p,
.service-paths li,
.audience-list p,
.process-list p,
.keyword-columns p,
.faq p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.service-paths ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-paths li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.service-paths li a {
  color: var(--blue);
  text-underline-offset: 4px;
}

.portfolio {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

.portfolio-heading .section-label,
.portfolio-heading h2 {
  grid-column: 1;
}

.portfolio-heading .text-link {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-grid {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.portfolio-grid figure {
  margin: 0;
}

.portfolio-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portfolio-feature img {
  height: 680px;
}

.portfolio-grid figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.portfolio-grid strong {
  display: block;
  color: var(--ink);
}

.industry-preview,
.industry-hub {
  background: var(--surface);
}

.industry-preview {
  border-bottom: 1px solid var(--line);
}

.industry-card-grid {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.industry-card {
  min-width: 0;
}

.industry-card a {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  height: 100%;
  min-height: 420px;
  color: inherit;
  text-decoration: none;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.industry-card a:hover,
.industry-card a:focus-visible {
  border-color: rgba(58, 134, 255, 0.58);
  box-shadow: 0 18px 44px rgba(23, 20, 18, 0.12);
  transform: translateY(-2px);
}

.industry-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.industry-card span {
  margin: 20px 22px 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-card h3 {
  margin: 12px 22px 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.industry-card p {
  margin: 14px 22px 24px;
  color: var(--muted);
  font-weight: 600;
}

.industry-preview-link {
  max-width: var(--max);
  margin: 28px auto 0;
}

.industry-gallery {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-gallery-grid {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.industry-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.industry-gallery-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.industry-keywords,
.related-industries {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  gap: clamp(34px, 6vw, 72px);
}

.industry-keywords ul,
.related-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-keywords li,
.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  background: var(--charcoal);
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.related-links a {
  background: var(--surface-strong);
  color: var(--ink);
  border: 1px solid var(--line);
}

.related-links a:hover,
.related-links a:focus-visible {
  background: var(--charcoal);
  color: white;
}

.audiences {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(36px, 7vw, 78px);
  align-items: start;
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-list article {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.audience-list h3 {
  margin: 0;
  font-size: 22px;
}

.audience-list p {
  margin: 0;
}

.region-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.region-panel p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.region-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-panel li {
  padding: 10px 12px;
  background: var(--charcoal);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.durability {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(42%, 1fr);
  gap: 0;
  padding: 0;
  background: var(--charcoal);
  color: white;
}

.durability-copy {
  padding: clamp(54px, 8vw, 110px) clamp(24px, 6vw, 76px);
}

.durability .section-label {
  color: var(--terracotta);
}

.durability h2 {
  color: white;
}

.durability-copy > p:not(.section-label) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.durability-points {
  margin: 38px 0 0;
}

.durability-points div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.durability-points dt {
  color: var(--mustard);
  font-weight: 900;
}

.durability-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.durability-image {
  margin: 0;
  min-height: 640px;
}

.durability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process {
  position: relative;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 50px 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li {
  padding: 28px 22px 30px;
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list span {
  font-size: 38px;
}

.process-list h3 {
  font-size: 18px;
}

.process-list p {
  margin: 0;
  font-size: 14px;
}

.search-intent {
  padding-top: 0;
}

.keyword-columns {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  border-top: 1px solid var(--line);
}

.keyword-columns p {
  margin: 0;
  padding-top: 22px;
  font-weight: 600;
}

.faq {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(34px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0 0 22px;
  max-width: 680px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  background:
    linear-gradient(90deg, rgba(30, 30, 30, 0.98), rgba(30, 30, 30, 0.82)),
    url("assets/images/botanical-indoor-mural-kuala-lumpur.jpg") right center / auto 100% no-repeat;
  color: white;
}

.final-cta .section-label {
  color: var(--terracotta);
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.final-cta .button {
  min-width: 260px;
  min-height: 72px;
  text-align: left;
  line-height: 1.2;
}

.final-cta .button span {
  font-size: 20px;
}

.subpage-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(42%, 1fr);
  align-items: stretch;
  padding: 0;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
}

.subpage-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header) + 70px) clamp(24px, 6vw, 78px) 76px;
  background:
    repeating-linear-gradient(90deg, rgba(30, 30, 30, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(30, 30, 30, 0.035) 0 1px, transparent 1px 72px);
}

.subpage-copy h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(46px, 5.4vw, 84px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.subpage-copy h1 span {
  display: block;
}

.subpage-copy > p:not(.section-label) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #2c2823;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.subpage-media {
  position: relative;
  margin: 0;
  min-height: 680px;
  background: var(--charcoal);
}

.subpage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.problem-solution {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(36px, 7vw, 80px);
}

.copy-stack {
  border-top: 1px solid var(--line);
}

.copy-stack p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
}

.surface-types {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surface-grid {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.surface-grid article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surface-grid h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}

.surface-grid p {
  color: var(--muted);
}

.surface-grid .search-terms {
  margin-top: 20px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.surface-faq {
  border-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 64px);
  background: #121212;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: white;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header: 64px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .durability,
  .audiences,
  .faq,
  .subpage-hero,
  .problem-solution,
  .industry-keywords,
  .related-industries,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: calc(var(--header) + 34px);
  }

  .hero-media {
    min-height: 420px;
  }

  .service-paths,
  .portfolio-grid,
  .industry-gallery-grid,
  .process-list,
  .keyword-columns,
  .surface-grid {
    grid-template-columns: 1fr;
  }

  .service-paths article + article,
  .process-list li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
  }

  .portfolio-heading .text-link {
    grid-column: 1;
    grid-row: auto;
  }

  .portfolio-grid img,
  .portfolio-feature img {
    height: min(76vh, 620px);
  }

  .audience-list article,
  .region-panel,
  .durability-points div {
    grid-template-columns: 1fr;
  }

  .region-panel {
    gap: 16px;
  }

  .durability-image {
    min-height: 520px;
  }

  .subpage-media {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    justify-content: center;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 0;
  }

  .nav-cta span {
    display: grid;
    width: auto;
    height: auto;
    border: 0;
    font-size: 11px;
  }

  .hero {
    position: relative;
    display: block;
    min-height: 88vh;
    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    min-height: 88vh;
    padding: calc(var(--header) + 22px) 22px 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0.62) 100%),
      repeating-linear-gradient(90deg, rgba(30, 30, 30, 0.035) 0 1px, transparent 1px 52px),
      repeating-linear-gradient(0deg, rgba(30, 30, 30, 0.035) 0 1px, transparent 1px 52px);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
  }

  .hero-media img {
    height: 100%;
    object-position: 58% center;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .subpage-copy {
    padding: calc(var(--header) + 28px) 22px 38px;
  }

  .subpage-copy h1 {
    width: 100%;
    max-width: 346px;
    font-size: clamp(29px, 8.3vw, 34px);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .subpage-copy > p:not(.section-label) {
    width: 100%;
    max-width: 346px;
    font-size: 14px;
    line-height: 1.4;
  }

  .subpage-copy .hero-actions {
    width: 100%;
    max-width: 346px;
  }

  .subpage-media {
    min-height: 360px;
  }

  .hero p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
    max-width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  section {
    padding-inline: 18px;
  }

  .service-paths article {
    padding: 28px 0;
  }

  .surface-grid {
    border-left: 0;
  }

  .surface-grid article {
    padding: 24px 0;
    border-right: 0;
  }

  .industry-card a {
    min-height: 0;
  }

  .industry-card h3,
  .industry-card p,
  .industry-card span {
    margin-inline: 18px;
  }

  .industry-keywords li,
  .related-links a {
    width: 100%;
  }

  .portfolio-grid {
    gap: 28px;
  }

  .portfolio-grid img,
  .portfolio-feature img {
    height: auto;
    max-height: none;
  }

  .durability-copy {
    padding-inline: 18px;
  }

  .process-list li {
    padding-inline: 0;
  }

  .final-cta {
    padding-bottom: 90px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(58, 134, 255, 0.35);
  }
}

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