@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --ink: #171b1d;
  --charcoal: #34393b;
  --graphite: #4d5558;
  --steel: #747c7f;
  --concrete: #e5e5e1;
  --concrete-dark: #c9c8c1;
  --paper: #f8f8f5;
  --accent: #d66a2c;
  --accent-dark: #a64b1f;
  --gold: #867854;
  --line: rgba(32, 36, 38, 0.15);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 54px rgba(32, 36, 38, 0.16);
  --radius: 4px;
  --container: 1180px;
  --hero-height: clamp(620px, 76svh, 760px);
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-heading: "Oswald", "Arial Narrow", "Inter", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-ui: "Oswald", "Inter", Arial, sans-serif;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--concrete);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(229, 229, 225, 0.72)),
    repeating-linear-gradient(0deg, rgba(32, 36, 38, 0.026) 0, rgba(32, 36, 38, 0.026) 1px, transparent 1px, transparent 7px),
    var(--concrete);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

main {
  overflow: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: rgba(23, 27, 29, 0.74);
  font-size: 1rem;
  line-height: 1.72;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0.034em;
  text-transform: capitalize;
  color: var(--ink);
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 820px;
  line-height: 0.98;
  font-size: clamp(2.55rem, 4.85vw, 5.15rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.02rem, 1.42vw, 1.32rem);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
  letter-spacing: 0;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.container,
.split > *,
.image-split > *,
.process-grid > *,
.project-grid > *,
.service-row > *,
.product-category-grid > *,
.value-grid > *,
.faq-grid > *,
.footer-grid > *,
.quote-layout > *,
.form-grid > * {
  min-width: 0;
}

.section-pad {
  padding: clamp(56px, 7vw, 108px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(78, 86, 88, 0.96), rgba(50, 55, 57, 0.96)),
    var(--charcoal);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(32, 36, 38, 0.16);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.nav-shell {
  width: min(1300px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 0;
  min-height: 54px;
  color: var(--paper);
  transition: transform 220ms ease, opacity 220ms ease;
}

.brand-logo {
  width: clamp(164px, 16vw, 224px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  transform: translateY(1px);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
  transition: transform 260ms ease, filter 260ms ease;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.site-nav a,
.phone-link {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: capitalize;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--accent);
  color: var(--paper);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.active {
  background: #e07835;
}

.phone-link {
  position: relative;
  z-index: 2;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  white-space: nowrap;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  background: transparent;
  color: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  outline: none;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  height: var(--hero-height);
  padding-top: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-carousel {
  display: block;
  min-height: var(--hero-height);
  padding-top: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: inherit;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
  isolation: isolate;
}

.hero-slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-carousel .hero-slide {
  align-items: flex-start;
}

.inner-hero {
  min-height: var(--hero-height);
  height: var(--hero-height);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(32, 36, 38, 0.84) 0%, rgba(50, 55, 57, 0.62) 42%, rgba(32, 36, 38, 0.18) 100%),
    linear-gradient(180deg, rgba(201, 200, 193, 0.1), rgba(32, 36, 38, 0.5));
}

.home-hero .hero-media-one {
  background-image: url("../images/optimized/home-hero-flatbed-dsc02852-clean.jpg");
  background-position: center 52%;
}

.home-hero .hero-media-two {
  background-image: url("../images/optimized/vertical-mould-zcast.png");
  background-position: center 52%;
}

.drawing-hero .hero-media {
  background-image: url("../images/optimized/hero-whatwedo-project33-clean.jpg");
  background-position: center 54%;
}

.about-hero .hero-media {
  background-image: url("../images/optimized/hero-about-vertical-mould-clean.jpg");
  background-position: center 44%;
}

.quote-hero .hero-media {
  background-image: url("../images/optimized/construction-project.jpg");
  background-position: center 42%;
}

.hero-content {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0 clamp(66px, 8vw, 104px);
  color: var(--paper);
}

.hero-carousel .hero-content {
  padding-top: clamp(104px, 13vh, 138px);
  padding-bottom: clamp(96px, 11vh, 132px);
}

.hero-carousel .hero-slide:nth-child(2) .hero-content {
  padding-top: clamp(104px, 13vh, 138px);
}

.hero-content h1,
.hero-content p {
  color: var(--paper);
}

.hero-content h1 {
  max-width: min(10.8em, 100%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.62rem, 4.55vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0.032em;
  text-transform: capitalize;
}

.hero-content p {
  max-width: min(620px, 100%);
  margin-top: 22px;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.64;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f0a36f;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: capitalize;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-controls button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.hero-controls button.is-active {
  width: 54px;
  background: var(--accent);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(32, 36, 38, 0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(32, 36, 38, 0.2);
  outline: none;
}

.button.primary {
  color: var(--paper);
  background: var(--accent);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary.dark-text {
  color: var(--ink);
  background: rgba(32, 36, 38, 0.04);
  border-color: rgba(32, 36, 38, 0.22);
}

.button.secondary.dark-text:hover,
.button.secondary.dark-text:focus-visible {
  background: rgba(32, 36, 38, 0.09);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.lead {
  margin-top: 20px;
  font-size: clamp(1.04rem, 1.18vw, 1.16rem);
  line-height: 1.78;
}

.intro-grid .split {
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(26px, 4vw, 42px);
}

.intro-copy {
  max-width: 860px;
}

.intro-grid .proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-list,
.capability-stack,
.contact-stack {
  display: grid;
  gap: 14px;
}

.proof-list div,
.capability-stack div,
.contact-stack div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.proof-list strong,
.capability-stack strong,
.contact-stack strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.032em;
  text-transform: capitalize;
}

.proof-list span,
.capability-stack .capability-card > span:not(.capability-icon),
.contact-stack span,
.contact-stack a {
  display: block;
  color: rgba(23, 27, 29, 0.72);
  font-size: 0.96rem;
  line-height: 1.62;
}

.proof-list .proof-card {
  padding: 0;
  overflow: hidden;
}

.proof-media {
  margin: 0;
  height: clamp(160px, 18vw, 220px);
  overflow: hidden;
  background: var(--concrete);
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.proof-card strong {
  padding: 18px 18px 0;
}

.proof-card span {
  padding: 0 18px 18px;
}

.dark-band {
  padding: clamp(72px, 9vw, 124px) 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(214, 106, 44, 0.16), rgba(214, 106, 44, 0) 36%),
    linear-gradient(180deg, #3d4345, #2f3436);
}

.dark-band.compact {
  padding: clamp(64px, 8vw, 104px) 0;
}

.dark-band h2,
.dark-band h3,
.dark-band p {
  color: var(--paper);
}

.dark-band p {
  color: rgba(255, 255, 255, 0.74);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 6vw, 76px);
}

.process-copy p {
  margin-top: 24px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.process-steps article {
  min-height: 198px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease;
}

.process-steps span,
.service-number {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: capitalize;
}

.process-steps h3 {
  margin-top: 22px;
}

.process-steps p {
  margin-top: 14px;
}

.image-split {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--concrete);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.media-frame.tall img {
  min-height: 500px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 36, 37, 0.98), rgba(58, 63, 62, 0.95)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 9px),
    var(--charcoal);
  color: #fff;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 106, 44, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.55;
}

.feature-panel .container {
  position: relative;
  z-index: 1;
}

.feature-panel .media-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.feature-panel h2 {
  color: #fff;
}

.feature-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-panel .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.feature-panel .text-link {
  color: #f0a36f;
}

.feature-panel .text-link:hover,
.feature-panel .text-link:focus-visible {
  color: #fff;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(23, 27, 29, 0.76);
  font-size: 1rem;
  line-height: 1.68;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 180ms ease, background 180ms ease;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--accent-dark);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: capitalize;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
  outline: none;
}

.section-heading {
  max-width: 720px;
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.section-heading.left {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: capitalize;
}

.section-heading p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.72;
}

.projects-section {
  background:
    linear-gradient(180deg, rgba(229, 229, 225, 0.96), rgba(209, 208, 201, 0.78)),
    var(--concrete);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  background: var(--charcoal);
  box-shadow: 0 0 0 rgba(32, 36, 38, 0);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.project-card.wide {
  grid-column: span 2;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 420ms ease;
}

.project-card.remuera-card img {
  object-position: center 34%;
}

.project-card.glendale-card img {
  object-position: center 48%;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 36, 38, 0.04), rgba(32, 36, 38, 0.76));
  transition: background 260ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  z-index: 1;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.project-card div {
  padding: 28px;
  transition: transform 260ms ease;
}

.project-card h3,
.project-card p {
  color: var(--paper);
}

.project-card h3 {
  font-size: clamp(1.1rem, 1.45vw, 1.34rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: capitalize;
}

.project-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.project-card:hover img {
  transform: scale(1.035);
}

.cta-band {
  padding: clamp(48px, 7vw, 84px) 0;
  background: linear-gradient(180deg, #3d4345, #2f3436);
  color: var(--paper);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2,
.cta-inner p {
  color: var(--paper);
}

.cta-inner p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 60px 0;
  background: #303537;
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 0.8fr;
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: capitalize;
  color: var(--paper);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.68;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
  outline: none;
}

.service-list {
  display: grid;
  gap: 22px;
}

.service-overview {
  background:
    linear-gradient(180deg, rgba(248, 248, 245, 0.98), rgba(229, 229, 225, 0.86)),
    var(--concrete);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  padding: clamp(26px, 3.8vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0 0 rgba(32, 36, 38, 0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-row.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  background: #eeeeea;
}

.service-row p {
  margin-top: 18px;
}

.service-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1.35;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.components-section,
.product-categories-section {
  background:
    linear-gradient(180deg, rgba(248, 248, 245, 0.98), rgba(229, 229, 225, 0.82)),
    var(--concrete);
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 28, 29, 0.99), rgba(52, 57, 58, 0.96) 48%, rgba(28, 32, 33, 0.99)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.038) 0, rgba(255, 255, 255, 0.038) 1px, transparent 1px, transparent 88px),
    var(--charcoal);
  color: var(--paper);
  border-top: 1px solid rgba(230, 107, 37, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(230, 107, 37, 0.22), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.84;
}

.product-showcase::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: -20%;
  width: 140%;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(230, 107, 37, 0.04), var(--accent), #f0a36f, rgba(230, 107, 37, 0.04), transparent);
  background-size: 220% 100%;
  animation: orangeRailSweep 5.8s linear infinite;
  opacity: 0.95;
}

.product-showcase .container {
  position: relative;
  z-index: 1;
}

.product-showcase .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.62fr);
  gap: clamp(18px, 4vw, 54px);
  max-width: var(--container);
  align-items: end;
}

.product-showcase .section-kicker,
.product-showcase h2 {
  grid-column: 1;
  color: var(--paper);
}

.product-showcase .section-kicker {
  color: #f0a36f;
}

.product-showcase p {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: rgba(255, 255, 255, 0.78);
}

.component-grid,
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.component-card,
.product-category-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0 0 rgba(32, 36, 38, 0);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.product-showcase .product-category-card {
  min-height: clamp(300px, 30vw, 410px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.product-showcase .product-category-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
}

.component-card img,
.product-category-card img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.component-card div {
  padding: 24px;
}

.component-card p {
  margin-top: 12px;
}

.product-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 36, 38, 0.02), rgba(32, 36, 38, 0.72));
  pointer-events: none;
}

.product-category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-16deg) translateX(-120%);
  transition: transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
  pointer-events: none;
}

.product-category-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(18px, 2.4vw, 24px);
  color: #fff;
}

.product-category-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #f0a36f;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: capitalize;
}

.product-category-card h3 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(1.12rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.capability-stack div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.capability-stack .capability-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 20px;
  overflow: hidden;
}

.capability-stack .capability-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.capability-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  width: 70px;
  min-height: 92px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
  border-right: 1px solid rgba(214, 106, 44, 0.34);
  color: #e07835;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.35rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.02em;
  box-shadow: none;
  transition: color 220ms ease, transform 260ms ease, border-color 220ms ease;
}

.capability-card strong,
.capability-card > span:not(.capability-icon) {
  grid-column: 2;
  transition: color 220ms ease, transform 260ms ease;
}

.capability-stack .capability-card > span:not(.capability-icon) {
  color: rgba(255, 255, 255, 0.72);
}

.quote-block {
  padding: clamp(28px, 5vw, 44px);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 220ms ease, border-color 220ms ease;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  min-height: 236px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.value-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.value-number {
  display: inline-flex;
  width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 4px;
  color: var(--accent);
  background: rgba(214, 106, 44, 0.1);
  border: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.value-grid p {
  margin-top: 16px;
}

.factory-note {
  background:
    linear-gradient(180deg, rgba(248, 248, 245, 0.96), rgba(229, 229, 225, 0.78)),
    var(--concrete);
}

.map-frame {
  position: relative;
  min-height: 430px;
  background: #303537;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(0.78) contrast(1.05) saturate(0.82);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(32, 36, 38, 0.08), rgba(32, 36, 38, 0.18)),
    linear-gradient(90deg, rgba(214, 106, 44, 0.12), transparent 45%);
}

.map-pin {
  position: absolute;
  z-index: 3;
  left: 52%;
  top: 46%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(214, 106, 44, 0.2), 0 18px 34px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.map-pin span {
  position: absolute;
  left: 24px;
  top: 50%;
  width: max-content;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--paper);
  background: rgba(32, 36, 38, 0.9);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  transform: translateY(-50%);
}

.map-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--paper);
  background: rgba(32, 36, 38, 0.84);
  border-left: 3px solid var(--accent);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: capitalize;
}

.inline-media {
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--concrete);
}

.inline-media img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
  transition: transform 520ms ease, filter 260ms ease;
}

.quote-section {
  background:
    linear-gradient(180deg, rgba(229, 229, 225, 0.96), rgba(201, 200, 193, 0.72)),
    var(--concrete);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 100px;
}

.quote-copy p {
  margin-top: 18px;
}

.contact-stack {
  margin-top: 30px;
}

.contact-stack div {
  background: var(--paper);
}

.quote-form {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hidden-field {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(23, 27, 29, 0.78);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 36, 38, 0.18);
  border-radius: 4px;
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form textarea {
  resize: vertical;
  min-height: 168px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(216, 111, 47, 0.34);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(32, 36, 38, 0.08);
}

.thank-you-section {
  min-height: calc(100vh - 310px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 22%, rgba(214, 106, 44, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(248, 248, 245, 0.96), rgba(229, 229, 225, 0.9));
}

.narrow-copy {
  max-width: 760px;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(214, 106, 44, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(248, 248, 245, 0.96), rgba(229, 229, 225, 0.9));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.faq-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 248, 245, 0.86)),
    var(--paper);
  box-shadow: 0 12px 34px rgba(32, 36, 38, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.faq-grid h3 {
  margin-bottom: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover,
  .brand:focus-visible {
    transform: translateY(-1px);
  }

  .brand:hover .brand-logo,
  .brand:focus-visible .brand-logo {
    transform: translateY(0) scale(1.025);
    filter: drop-shadow(0 9px 24px rgba(0, 0, 0, 0.34));
  }

  .proof-list div:hover,
  .contact-stack div:hover,
  .faq-grid article:hover,
  .value-grid article:hover,
  .service-row:hover,
  .component-card:hover,
  .product-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 106, 44, 0.5);
    box-shadow: 0 16px 34px rgba(32, 36, 38, 0.13);
  }

  .product-category-card:hover::before {
    transform: skewX(-16deg) translateX(520%);
  }

  .proof-card:hover .proof-media img,
  .component-card:hover img,
  .product-category-card:hover img {
    transform: scale(1.035);
    filter: contrast(1.03) saturate(1.02);
  }

  .capability-stack div:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 106, 44, 0.5);
    background: rgba(255, 255, 255, 0.09);
  }

  .capability-stack .capability-card:hover .capability-icon {
    color: #f0a36f;
    border-color: rgba(240, 163, 111, 0.62);
    transform: translateX(-4px);
  }

  .capability-stack .capability-card:hover strong,
  .capability-stack .capability-card:hover > span:not(.capability-icon) {
    transform: translateX(6px);
  }

  .capability-stack .capability-card:hover::after,
  .value-grid article:hover::after {
    transform: scaleX(1);
  }

  .value-grid article:hover .value-number {
    transform: translateY(-2px);
    color: var(--paper);
    background: var(--accent);
  }

  .inline-media:hover img {
    transform: scale(1.035);
    filter: contrast(1.03) saturate(1.02);
  }

  .process-steps article:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.095);
  }

  .media-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(32, 36, 38, 0.2);
  }

  .media-frame:hover img,
  .service-row:hover .service-image img {
    transform: scale(1.035);
    filter: contrast(1.03) saturate(1.02);
  }

  .check-list li:hover::before {
    transform: rotate(45deg) scale(1.05);
    background: var(--accent-dark);
  }

  .project-card:hover,
  .project-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(32, 36, 38, 0.18);
  }

  .project-card:hover::after,
  .project-card:focus-within::after {
    background: linear-gradient(180deg, rgba(32, 36, 38, 0.03), rgba(32, 36, 38, 0.84));
  }

  .project-card:hover::before,
  .project-card:focus-within::before {
    transform: scaleX(1);
  }

  .project-card:hover div,
  .project-card:focus-within div {
    transform: translateY(-4px);
  }

  .quote-block:hover {
    background: rgba(255, 255, 255, 0.085);
    border-left-color: #e07835;
  }

  .quote-form:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 106, 44, 0.38);
    box-shadow: 0 22px 58px rgba(32, 36, 38, 0.17);
  }
}

@keyframes orangeRailSweep {
  from {
    background-position: 220% 0;
  }

  to {
    background-position: -220% 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerSettle 520ms ease both;
  }

  .hero-media {
    animation: heroDrift 1600ms ease-out both;
  }

  .hero-content h1,
  .hero-content p,
  .hero-actions {
    animation: heroCopyIn 720ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  .hero-content p {
    animation-delay: 110ms;
  }

  .hero-actions {
    animation-delay: 210ms;
  }

  .hero-slide.is-active .hero-media {
    animation: heroZoomOut 5000ms ease-out both;
  }

  .hero-slide.is-active .hero-kicker,
  .hero-slide.is-active .hero-content h1,
  .hero-slide.is-active .hero-content p,
  .hero-slide.is-active .hero-actions {
    animation: heroCopyIn 760ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  .hero-slide.is-active .hero-content h1 {
    animation-delay: 60ms;
  }

  .hero-slide.is-active .hero-content p {
    animation-delay: 150ms;
  }

  .hero-slide.is-active .hero-actions {
    animation-delay: 260ms;
  }

  body.motion-ready .capability-card.is-visible .capability-icon {
    animation: numberLift 640ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  body.motion-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  body.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes headerSettle {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes heroDrift {
    from {
      transform: scale(1.06) translateY(-8px);
      filter: saturate(0.96);
    }

    to {
      transform: scale(1.02) translateY(0);
      filter: saturate(1);
    }
  }

  @keyframes heroZoomOut {
    from {
      transform: scale(1.09);
    }

    to {
      transform: scale(1.01);
    }
  }

  @keyframes heroCopyIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes numberLift {
    from {
      opacity: 0;
      transform: translateX(-14px) scale(0.96);
    }

    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }
}

.form-status {
  min-height: 1.7em;
  margin-top: 16px;
  color: var(--accent-dark);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.035em;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(23, 27, 29, 0.62);
}

@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .phone-link {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    background: rgba(50, 55, 57, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: max-height 260ms ease;
  }

  body.nav-open .site-nav {
    max-height: 360px;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 52px;
    border-radius: 0;
    padding: 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.96rem;
    letter-spacing: 0.07em;
  }

  .hero,
  .hero.hero-carousel {
    min-height: var(--hero-height);
  }

  .hero-content h1 {
    max-width: min(10.2em, 100%);
    font-size: clamp(2.32rem, 5.7vw, 4.15rem);
    letter-spacing: 0.032em;
  }

  .hero-content p {
    max-width: 58ch;
  }

  .split,
  .image-split,
  .process-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .project-grid,
  .value-grid,
  .faq-grid,
  .component-grid,
  .product-category-grid,
  .intro-grid .proof-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase .section-heading {
    grid-template-columns: 1fr;
  }

  .product-showcase .section-kicker,
  .product-showcase h2,
  .product-showcase p {
    grid-column: 1;
    grid-row: auto;
  }

  .project-card.wide {
    grid-column: span 2;
  }

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-image {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --hero-height: clamp(650px, 92svh, 760px);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: clamp(48px, 12vw, 76px) 0;
  }

  .hero-content {
    width: min(100% - 28px, 390px);
    margin-left: 14px;
    margin-right: auto;
  }

  .nav-shell {
    width: calc(100% - 24px);
    min-height: 64px;
  }

  .brand {
    min-height: 40px;
  }

  .brand-logo {
    width: clamp(148px, 42vw, 180px);
    max-height: 46px;
  }

  .hero {
    min-height: var(--hero-height);
    padding-top: 64px;
  }

  .hero.hero-carousel {
    min-height: var(--hero-height);
    padding-top: 0;
  }

  .inner-hero {
    min-height: var(--hero-height);
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(32, 36, 38, 0.9), rgba(50, 55, 57, 0.58)),
      linear-gradient(180deg, rgba(32, 36, 38, 0.1), rgba(32, 36, 38, 0.66));
  }

  .hero-content {
    padding: 32px 0 34px;
  }

  .hero-carousel .hero-content,
  .hero-carousel .hero-slide:nth-child(2) .hero-content {
    padding-top: clamp(86px, 11svh, 108px);
    padding-bottom: clamp(84px, 12svh, 102px);
  }

  h1 {
    max-width: 17ch;
    font-size: clamp(2rem, 8.4vw, 2.8rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.58rem, 7vw, 2.18rem);
  }

  .hero-content h1 {
    max-width: min(12.5ch, 100%);
    font-size: clamp(1.72rem, 7.8vw, 2.38rem);
    line-height: 1;
    letter-spacing: 0.032em;
  }

  .hero-actions,
  .cta-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-content p {
    max-width: min(36ch, 100%);
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-controls {
    left: 14px;
    bottom: 22px;
    transform: none;
  }

  .button {
    width: 100%;
    min-height: 48px;
    font-size: 0.72rem;
    white-space: normal;
  }

  .process-steps,
  .project-grid,
  .value-grid,
  .faq-grid,
  .component-grid,
  .product-category-grid,
  .intro-grid .proof-list,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .proof-media {
    height: clamp(150px, 44vw, 190px);
  }

  .project-card,
  .project-card.wide {
    grid-column: auto;
    min-height: clamp(270px, 68vw, 330px);
  }

  .media-frame img,
  .media-frame.tall img {
    min-height: clamp(260px, 70vw, 330px);
  }

  .product-showcase .product-category-card {
    min-height: clamp(240px, 68vw, 320px);
  }

  .service-row {
    padding: clamp(22px, 7vw, 34px);
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .inline-media img {
    aspect-ratio: 1.3;
  }

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .capability-stack .capability-card {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
  }

  .capability-icon {
    width: 54px;
    min-height: 78px;
    font-size: 2.9rem;
  }

  .service-number {
    font-size: 0.78rem;
  }

  .quote-form {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 390px);
    margin-left: 14px;
    margin-right: auto;
  }

  .nav-shell {
    width: min(100% - 24px, 396px);
    margin-left: 12px;
    margin-right: auto;
  }

  .service-row,
  .service-row.reverse {
    gap: 20px;
  }

  .service-image {
    aspect-ratio: 1.18;
  }

  .value-grid article,
  .faq-grid article {
    min-height: auto;
  }
}

@media (min-width: 721px) and (max-height: 760px) {
  :root {
    --hero-height: clamp(620px, 86svh, 720px);
  }

  .hero,
  .hero.hero-carousel {
    min-height: var(--hero-height);
  }

  .hero-carousel .hero-content,
  .hero-carousel .hero-slide:nth-child(2) .hero-content {
    padding-top: clamp(88px, 13vh, 112px);
    padding-bottom: 96px;
  }

  .hero-content h1 {
    max-width: 11.5em;
    font-size: clamp(2.28rem, 4.1vw, 4.05rem);
    line-height: 0.98;
  }

  .hero-content p {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 720px) and (max-height: 760px) {
  :root {
    --hero-height: clamp(650px, 100svh, 740px);
  }

  .nav-shell {
    min-height: 58px;
  }

  .brand-logo {
    width: clamp(136px, 39vw, 166px);
    max-height: 42px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-carousel .hero-content,
  .hero-carousel .hero-slide:nth-child(2) .hero-content {
    padding-top: 76px;
    padding-bottom: 78px;
  }

  .hero-content h1 {
    max-width: min(13.5ch, 100%);
    font-size: clamp(1.52rem, 7.2vw, 2.06rem);
    line-height: 1;
    letter-spacing: 0.026em;
  }

  .hero-content p {
    max-width: min(37ch, 100%);
    margin-top: 13px;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 8px;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.66rem;
    letter-spacing: 0.055em;
  }

  .hero-controls {
    bottom: 16px;
  }

  .hero-controls button {
    width: 28px;
  }

  .hero-controls button.is-active {
    width: 42px;
  }
}

@media (max-width: 720px) and (max-height: 620px) {
  :root {
    --hero-height: clamp(620px, 108svh, 700px);
  }

  .section-pad {
    padding: 44px 0;
  }

  .hero-carousel .hero-content,
  .hero-carousel .hero-slide:nth-child(2) .hero-content {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  .hero-content h1 {
    max-width: min(14.5ch, 100%);
    font-size: clamp(1.36rem, 6.4vw, 1.74rem);
  }

  .hero-content p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .button {
    min-height: 38px;
  }

  .hero-controls {
    bottom: 12px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 132px;
    max-height: 38px;
  }

  .hero-content h1 {
    max-width: min(13.8ch, 100%);
    font-size: clamp(1.44rem, 7.7vw, 1.94rem);
    letter-spacing: 0.028em;
  }

  .hero-content p {
    font-size: 0.86rem;
  }

  .hero-carousel .hero-content,
  .hero-carousel .hero-slide:nth-child(2) .hero-content {
    padding-bottom: 82px;
  }
}

@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;
  }
}
