:root {
  --bg: oklch(98.5% .004 200);
  --text: oklch(30% .055 240);
  --navy: #103047;
  --teal: #4da9a4;
  --teal-dark: #155a62;
  --teal-soft: #dfeeed;
  --gold: #d8b548;
  --muted: #637987;
  --line: #9bb3b7;
  --card: #ffffff;
  --radius: 18px;
  --deep-shadow: 0 30px 80px -20px rgba(27, 67, 79, .26);
  --glow: 0 20px 60px -12px rgba(77, 169, 164, .45);
  --font: "Space Grotesk", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(at 18% 0, rgba(94, 182, 177, .18), transparent 55%),
    radial-gradient(at 82% 12%, rgba(54, 130, 128, .12), transparent 55%),
    radial-gradient(at 50% 100%, rgba(220, 168, 60, .08), transparent 60%);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  margin: 28px auto 0;
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-box {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.56);
}

.logo-box.small { width: 32px; height: 32px; }
.logo-box.footer-logo {
  width: 84px;
  height: 84px;
}
.logo-box img { width: 76%; height: 76%; object-fit: contain; }
.dot { color: var(--teal); padding-left: 4px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  color: #3b5160;
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
}

.nav a.active,
.nav a:hover {
  background: #fff;
  color: var(--navy);
}

.quote-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: linear-gradient(135deg, #3fafa8, #1f6f78);
  box-shadow: 0 18px 35px rgba(63, 175, 168, .25);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.quote-btn:hover,
.quote-btn:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #46c3bc, #23818d);
  box-shadow: 0 22px 42px rgba(63, 175, 168, .32);
}

.quote-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.quote-icon i {
  font-size: 0.8rem;
}

.hero,
.page-hero,
.section-pad,
.contact-layout,
.footer {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .72fr 1.08fr;
  align-items: center;
  padding: 42px 0 80px;
}

.hero-copy { position: relative; z-index: 2; }
.dynamic-word {
  display: inline-block;
  min-width: 3.2em;
  color: var(--teal);
  transform-origin: left center;
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}

.dynamic-word.switching {
  opacity: 0;
  transform: translateY(.12em) skewX(-5deg);
  filter: blur(4px);
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy p,
.hero-copy .actions {
  animation: heroRise .85s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-copy h1 { animation-delay: .08s; }
.hero-copy p { animation-delay: .16s; }
.hero-copy .actions { animation-delay: .24s; }
.kicker {
  margin: 0 0 18px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: .78rem;
  font-weight: 500;
}
.kicker span { letter-spacing: 0; }

.gst-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 8px 14px;
  border: 1px solid rgba(77, 169, 164, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 16px 42px -28px rgba(21, 90, 98, .45);
  backdrop-filter: blur(14px);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: .01em;
  font-weight: 400;
}

h1 {
  font-size: clamp(5rem, 9.6vw, 9.3rem);
  line-height: .79;
  max-width: 850px;
}
h1 span, h2 span { color: var(--teal); }
h1 em { display: block; font-style: italic; }
h2 {
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  line-height: .86;
}
h3 { font-size: 2rem; line-height: .9; }
p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p:not(.kicker) {
  max-width: 560px;
  margin: 24px 0 0;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.actions.center { justify-content: center; }
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: var(--glow);
}
.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--navy);
}
.secondary.light {
  background: #fff;
  border-color: #fff;
}

.hero-art {
  position: relative;
  min-height: 560px;
  perspective: 1000px;
  --hero-x: 0px;
  --hero-y: 0px;
}
.hero-art img {
  position: absolute;
  right: -11vw;
  top: 40px;
  width: min(980px, 72vw);
  height: 500px;
  object-fit: cover;
  object-position: 55% center;
  border-radius: 280px 0 0 280px;
  clip-path: ellipse(70% 50% at 68% 50%);
  filter: drop-shadow(0 40px 44px rgba(22, 70, 80, .26));
  transform: translate3d(calc(var(--hero-x) * .45), calc(var(--hero-y) * .45), 0);
  transition: transform .18s ease-out;
}
.hero-art:before {
  content: "";
  position: absolute;
  left: 14%;
  top: 150px;
  width: 620px;
  height: 330px;
  background: linear-gradient(90deg, rgba(77,169,164,.84), rgba(77,169,164,.15));
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 64%);
  opacity: .85;
  transform: translate3d(calc(var(--hero-x) * -.25), calc(var(--hero-y) * -.16), 0);
  transition: transform .18s ease-out;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1280px, calc(100% - 64px));
  margin: -72px auto 72px;
  border: 1px solid rgba(155, 179, 183, .78);
  border-radius: 16px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 24px 70px -36px rgba(21, 90, 98, .45);
  backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.stats-band article {
  min-height: 124px;
  padding: 24px 22px;
  border-right: 1px solid rgba(155, 179, 183, .55);
  position: relative;
  overflow: hidden;
}

.stats-band article:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(77, 169, 164, .12), transparent);
  transform: translateX(-120%);
}

.stats-band.counted article:before {
  animation: statSweep 1.4s ease both;
}

.stats-band article:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 400;
  line-height: .78;
}

.stats-band strong > span:not(.stat-number):not(.stat-infinity) {
  color: var(--teal);
  font-size: .55em;
}

.stat-number,
.stat-infinity {
  color: var(--navy);
}

.stat-infinity {
  display: inline-block;
  animation: infinityPulse 2.6s ease-in-out infinite;
}

.stats-band p {
  margin: 12px 0 0;
  color: #526a77;
  font-size: .92rem;
  font-weight: 700;
}

.orb {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -22px -25px 42px rgba(13, 50, 61, .18), 0 18px 40px rgba(77,169,164,.25);
  animation: floatOrb 5.5s ease-in-out infinite;
}
.orb-a { width: 120px; height: 120px; left: 0; top: 140px; background: linear-gradient(135deg, #8bd7d0, #287c7c); transform: translate3d(calc(var(--hero-x) * -.45), calc(var(--hero-y) * -.4), 0); }
.orb-b { width: 64px; height: 64px; right: 12%; top: 80px; background: linear-gradient(135deg, #f2d971, #c2a33e); animation-delay: -1.4s; transform: translate3d(calc(var(--hero-x) * .35), calc(var(--hero-y) * -.3), 0); }
.ring {
  position: absolute;
  right: 2%;
  top: 320px;
  width: 430px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, #a77a22, #f5d963, #a77a22, transparent);
  transform: rotate(-3deg);
  filter: drop-shadow(0 10px 14px rgba(130,95,24,.32));
  animation: ringDrift 6s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid #cedadc;
  padding: 46px 0;
  color: rgba(16,48,71,.2);
  background: rgba(255,255,255,.28);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  white-space: nowrap;
}
.ticker span {
  display: inline-block;
  animation: marquee 26s linear infinite;
}

.section-pad { padding: 120px 0; }
.border-top { border-top: 1px solid #b5c7ca; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}
.split > p,
.split p { max-width: 620px; font-weight: 500; }

.services-preview { padding-top: 20px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  min-height: 540px;
}
.service-image {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: #eaf3f4;
}
.service-image:after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, #fff);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-image span {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  color: var(--teal);
  font-weight: 800;
}
.service-body { padding: 28px; }
.service-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(77, 169, 164, .14);
  color: var(--teal);
  font-size: 1.5rem;
}
.service-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.service-title h3 {
  margin: 0;
}
.service-body p { font-weight: 600; }
.service-body ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
  color: #526a77;
  font-weight: 600;
}
.service-body li:before {
  content: "⊙";
  color: var(--teal);
  margin-right: 10px;
}
.learn {
  color: var(--teal);
  font-weight: 800;
}

.why { padding-top: 180px; }
.why h2 span { display: block; }

.case-study-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--deep-shadow);
  min-height: 510px;
}

.case-study-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.case-study-card div {
  padding: 28px;
}

.case-study-card h3 {
  margin: 10px 0 14px;
  font-size: 2.6rem;
}

.case-study-card a {
  color: var(--teal);
  font-weight: 800;
}

.mini-grid,
.safety-grid,
.reason-grid,
.procedure-grid,
.system-list,
.gallery-grid,
.contact-info {
  display: grid;
  gap: 16px;
}
.mini-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.mini-grid article,
.safety-grid article,
.reason-grid article,
.procedure-grid article,
.system-list article,
.contact-info article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255,255,255,.46);
}
.why .mini-grid article b,
.reason-grid article b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(77, 169, 164, .14);
  color: var(--teal);
  font-size: 1.35rem;
}
.mini-grid h3,
.safety-grid h3,
.reason-grid h3,
.procedure-grid h3,
.system-list h3,
.contact-info h3 { font-family: var(--font); font-size: 1rem; font-weight: 800; line-height: 1.25; }
.mini-grid p,
.safety-grid p,
.reason-grid p,
.procedure-grid p,
.system-list p { margin: 6px 0 0; font-size: .92rem; }

.gallery-block { text-align: center; }
.gallery-block h2 { margin-bottom: 10px; }
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  text-align: left;
}
.gallery-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.gallery-grid img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.gallery-grid h3,
.gallery-grid p { padding-inline: 18px; }
.gallery-grid h3 { padding-top: 18px; font-size: 1.5rem; }
.gallery-grid p { margin: 8px 0 18px; }
.pill-link {
  display: inline-flex;
  margin-top: 54px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.safety-list {
  position: relative;
  overflow: visible;
  background: none;
  border-radius: 0;
  border: 0;
  color: inherit;
}
.safety-list::before,
.safety-list::after {
  display: none;
}
.safety-list .split {
  position: static;
  z-index: auto;
}
.safety-list .split > div {
  max-width: 620px;
}
.safety-list p {
  color: var(--muted);
}
.safety-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.safety-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: var(--deep-shadow);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.safety-grid article:hover {
  transform: translateY(-6px);
  background: #f8fcfb;
  box-shadow: 0 30px 55px rgba(27, 67, 79, .16);
}
.safety-list .safety-grid small {
  display: block;
  color: var(--teal);
  letter-spacing: .16em;
  font-size: .78rem;
  margin-bottom: 14px;
}
.safety-grid h3 {
  color: var(--navy);
  font-size: 1.22rem;
  margin: 0 0 14px;
}
.safety-grid p {
  color: var(--text);
  margin: 0;
  line-height: 1.75;
}
small {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}

.cta-panel {
  width: min(900px, calc(100% - 64px));
  margin: 60px auto 120px;
  padding: 64px;
  text-align: center;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(135deg, #64bcb7, #0d354d);
  box-shadow: var(--deep-shadow);
}
.cta-panel h2,
.cta-panel p { color: #fff; }
.cta-panel h2 { font-size: 4.7rem; }
.cta-panel p { max-width: 560px; margin: 12px auto 0; }

.page-hero {
  padding: 120px 0 132px;
}
.page-hero p {
  max-width: 740px;
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 30px;
}
.services-title h1 { max-width: 1120px; }

.profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--deep-shadow);
}
.profile-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.profile-card small,
.profile-card h3 {
  display: block;
  margin-inline: 28px;
}
.profile-card small { margin-top: 24px; }
.profile-card h3 { margin: 8px 28px 28px; font-family: var(--font); font-size: 1.4rem; font-weight: 800; }

.mv-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 80px;
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
  padding: 110px 0;
}

.mv-section.inverse {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
}

.mv-copy p {
  max-width: 720px;
  font-weight: 500;
}

.mv-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 181, 72, .22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(223,238,237,.72));
  box-shadow: var(--deep-shadow);
  position: relative;
  overflow: hidden;
}

.mv-card:before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -58px;
  top: -62px;
  border-radius: 50%;
  background: rgba(77, 169, 164, .16);
}

.mv-card h3 {
  margin: 12px 0 8px;
  font-size: 4.6rem;
}

.mv-card p {
  max-width: 430px;
  margin: 0;
  font-weight: 700;
}

.vision .mv-card {
  background:
    radial-gradient(circle at 12% 14%, rgba(77, 169, 164, .24), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(245,249,250,.78));
}

.center-title { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.reason-grid { grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; gap: 0; }
.reason-grid article { border: 0; border-right: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,.45); }
.master-card {
  width: min(860px, calc(100% - 64px));
  margin: 0 auto 130px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(100deg, #fff 0 74%, rgba(77,169,164,.15) 74%);
}
.master-card h3 { margin-top: 10px; }
.final-cta {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto 120px;
  text-align: center;
}
.final-cta p { max-width: 580px; margin-inline: auto; }

.procedure-grid { grid-template-columns: repeat(3, 1fr); }
.system-list { grid-template-columns: repeat(3, 1fr); }

.contact-info {
  grid-template-columns: repeat(3, 1fr);
}
.contact-info article {
  min-height: 190px;
  background: #fff;
}
.contact-info b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .75fr;
  gap: 30px;
  padding-bottom: 120px;
}
.contact-form,
.map-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  background: #fff;
}
.contact-form h2 { font-size: 3rem; margin-bottom: 28px; }
.contact-form label {
  display: grid;
  gap: 10px;
  color: #516a78;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 54px;
  background: var(--bg);
  padding: 12px 16px;
  outline: none;
}
.contact-form textarea { min-height: 170px; resize: vertical; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  margin: -32px -32px 24px;
  width: calc(100% + 64px);
  border-radius: 18px 18px 0 0;
}

.footer {
  border-top: 1px solid #b5c7ca;
  padding: 64px 0 8px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 100px;
}
.footer h4 {
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
}
.footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4e6674;
  margin: 8px 0;
}
.footer-top a:hover {
  color: var(--navy);
}
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(77, 169, 164, .14);
  color: var(--teal);
  font-size: 1rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #b5c7ca;
  color: #526a77;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-bottom span:first-child { text-transform: none; letter-spacing: 0; }
.tilt {
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease;
}
.tilt:hover { box-shadow: var(--deep-shadow); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes infinityPulse {
  0%, 100% { transform: scale(1); color: var(--navy); }
  50% { transform: scale(1.08); color: var(--teal); }
}

@keyframes floatOrb {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes ringDrift {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-8px); }
}

@media (max-width: 920px) {
  .site-header {
    width: min(100% - 28px, 1280px);
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nav { order: 3; justify-content: flex-start; gap: 6px; overflow-x: auto; }
  .quote-btn { position: absolute; right: 0; top: 10px; }
  .hero, .split, .contact-layout, .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero, .page-hero, .section-pad, .contact-layout, .footer, .mv-section { width: min(100% - 28px, 1280px); }
  .hero { min-height: auto; padding-top: 72px; }
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 1280px);
    margin: 4px auto 42px;
  }
  .stats-band article {
    min-height: 98px;
    border-bottom: 1px solid rgba(155, 179, 183, .55);
  }
  .stats-band article:nth-child(2n) {
    border-right: 0;
  }
  .stats-band article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  h1 { font-size: clamp(4.6rem, 17vw, 6.8rem); }
  h2 { font-size: clamp(3.2rem, 12vw, 4.8rem); }
  .hero-art { min-height: 340px; }
  .hero-art { overflow: hidden; }
  .hero-art img { right: -170px; width: 740px; height: 330px; top: 10px; }
  .hero-art:before { left: 0; width: 420px; height: 210px; top: 90px; }
  .orb-a { width: 78px; height: 78px; top: 70px; }
  .orb-b { right: 2%; top: 40px; }
  .ring { width: 260px; right: 0; top: 190px; }
  .service-grid, .gallery-grid, .safety-grid, .reason-grid, .procedure-grid, .system-list, .contact-info {
    grid-template-columns: 1fr;
  }
  .mv-section,
  .mv-section.inverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 78px 0;
  }
  .mv-section.inverse .mv-card {
    order: 2;
  }
  .mv-section.inverse .mv-copy {
    order: 1;
  }
  .mv-card {
    min-height: 260px;
  }
  .why { padding-top: 90px; }
  .case-study-card {
    min-height: 0;
  }
  .case-study-card img {
    height: 230px;
  }
  .reason-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card { min-height: auto; }
  .two { grid-template-columns: 1fr; gap: 0; }
  .cta-panel { width: min(100% - 28px, 900px); padding: 44px 22px; }
  .master-card, .final-cta { width: min(100% - 28px, 900px); }
  .footer-bottom { flex-direction: column; }
}
