:root {
  color-scheme: light;
  --ink: #102033;
  --navy: #08152a;
  --blue: #1979a8;
  --water: #66c7d0;
  --foam: #eef9f7;
  --forest: #2f6e4f;
  --moss: #7ea15b;
  --earth: #8b5a38;
  --sun: #e7a547;
  --rose: #c45f53;
  --paper: #fffaf0;
  --stone: #e7e2d7;
  --line: rgba(16, 32, 51, 0.15);
  --shadow: 0 28px 80px rgba(8, 21, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px 32px;
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 16px 40px rgba(8, 21, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: rgba(16, 32, 51, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-grid;
  min-width: 48px;
  min-height: 42px;
  place-items: center;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.language-toggle:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.main-nav a,
.text-link {
  position: relative;
}

.main-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-action,
.button-primary {
  background: var(--navy);
  color: white;
}

.button-glass {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 21, 42, 0.9) 0%, rgba(8, 21, 42, 0.76) 38%, rgba(8, 21, 42, 0.22) 70%),
    linear-gradient(0deg, rgba(8, 21, 42, 0.34), rgba(8, 21, 42, 0.03));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 1180px);
  min-height: 88svh;
  margin: 0 auto;
  padding: 72px 32px 100px;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9f2ec;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  line-height: 1.18;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: white;
  border-radius: 50%;
  animation: cueDrop 1.7s ease-in-out infinite;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 96px 32px;
}

section[id] {
  scroll-margin-top: 128px;
}

.story-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(238, 249, 247, 0.72));
}

.story-grid,
.product-grid,
.impact-grid,
.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.story-copy p,
.section-heading p,
.product-copy p,
.impact-grid p,
.team-copy p,
.contact-grid p,
.site-footer p {
  color: rgba(16, 32, 51, 0.73);
  font-size: 1.05rem;
}

.story-figure {
  margin: 0;
}

.story-figure img,
.team-photo img,
.product-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-figure img {
  height: 560px;
}

.story-figure figcaption {
  max-width: 520px;
  margin-top: 14px;
  color: rgba(16, 32, 51, 0.64);
  font-size: 0.94rem;
}

.mascot-note,
.mascot-badge,
.contact-mascot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(100%, 560px);
  margin-top: 26px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 21, 42, 0.08);
}

.mascot-note img,
.mascot-badge img,
.contact-mascot img {
  width: 74px;
  height: 96px;
  object-fit: contain;
}

.mascot-note p,
.mascot-badge span,
.contact-mascot span {
  margin: 0;
  color: rgba(16, 32, 51, 0.78);
  font-weight: 850;
  line-height: 1.35;
}

.emotion-band {
  color: white;
  background:
    linear-gradient(135deg, rgba(8, 21, 42, 0.96), rgba(25, 121, 168, 0.86)),
    var(--navy);
}

.band-inner {
  padding-top: 56px;
  padding-bottom: 56px;
}

.band-inner p {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.45rem);
  font-weight: 950;
  line-height: 1.05;
}

.drain-section {
  background: var(--paper);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 760px;
}

.drain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: stretch;
}

.drain-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.drain-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.drain-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.drain-card-heading span {
  padding: 8px 10px;
  color: white;
  background: var(--navy);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 950;
}

.drain-card-heading strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.drain-card-danger .drain-card-heading span {
  background: var(--rose);
}

.drain-card-good .drain-card-heading span {
  background: var(--forest);
}

.drain-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: white;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
}

.drain-card p {
  margin: 0;
  color: rgba(16, 32, 51, 0.72);
  font-size: 1rem;
}

.kid-explainer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(238, 249, 247, 0.95), rgba(255, 250, 240, 0.9)),
    white;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(8, 21, 42, 0.1);
}

.kid-explainer img {
  width: 118px;
  height: 150px;
  object-fit: contain;
}

.kid-explainer h3 {
  margin-bottom: 8px;
}

.kid-explainer p {
  margin: 0;
  color: rgba(16, 32, 51, 0.72);
}

.technical-schema {
  overflow: hidden;
  background: #fbf7ec;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.schema-topline,
.schema-plan {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(8, 21, 42, 0.94);
  color: white;
}

.schema-topline span,
.schema-plan strong {
  font-weight: 950;
}

.schema-topline small,
.schema-plan span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.schema-canvas {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(180deg, #dceff0 0%, #f5e3b4 45%, #8b6543 100%);
}

.soil,
.schema-lines,
.schema-label {
  position: absolute;
}

.soil-cover {
  inset: 0;
  background: linear-gradient(180deg, rgba(173, 202, 126, 0.86), rgba(130, 159, 90, 0.86));
  clip-path: polygon(0 36%, 18% 25%, 35% 15%, 49% 21%, 63% 31%, 75% 39%, 100% 31%, 100% 100%, 0 100%);
}

.soil-slide {
  right: -2%;
  bottom: 0;
  left: -2%;
  height: 58%;
  background:
    repeating-linear-gradient(25deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12) 8px, transparent 8px, transparent 22px),
    linear-gradient(145deg, #c5905a, #805536);
  clip-path: polygon(0 27%, 20% 10%, 40% 5%, 61% 14%, 80% 31%, 100% 24%, 100% 100%, 0 100%);
}

.soil-bedrock {
  inset: auto -2% 0 -2%;
  height: 30%;
  background:
    repeating-linear-gradient(-20deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16) 6px, transparent 6px, transparent 18px),
    linear-gradient(135deg, #624637, #352820);
  clip-path: polygon(0 32%, 22% 8%, 48% 0, 73% 23%, 100% 15%, 100% 100%, 0 100%);
}

.schema-lines {
  inset: 0;
  width: 100%;
  height: 100%;
}

.terrain-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5;
}

.slip-line {
  fill: none;
  stroke: #c45f53;
  stroke-dasharray: 12 10;
  stroke-linecap: round;
  stroke-width: 5;
}

.water-before,
.water-after {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
}

.water-before {
  stroke: rgba(25, 121, 168, 0.68);
  stroke-dasharray: 13 10;
}

.water-after {
  stroke: rgba(102, 199, 208, 0.96);
}

.surface-ditch,
.collector {
  fill: none;
  stroke: #1a314b;
  stroke-linecap: round;
  stroke-width: 10;
}

.drain-line {
  fill: none;
  stroke: #eef7f7;
  stroke-dasharray: 18 10;
  stroke-linecap: round;
  stroke-width: 8;
  filter: drop-shadow(0 2px 0 rgba(8, 21, 42, 0.48));
}

.flow-line {
  fill: none;
  stroke: #66c7d0;
  stroke-dasharray: 10 9;
  stroke-linecap: round;
  stroke-width: 7;
  animation: flowDash 1.35s linear infinite;
}

.drain-heads circle {
  fill: #1a314b;
  stroke: #eef7f7;
  stroke-width: 4;
}

.schema-label {
  max-width: 170px;
  padding: 7px 10px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.18;
  box-shadow: 0 10px 30px rgba(8, 21, 42, 0.12);
}

.label-runoff {
  top: 28%;
  left: 7%;
}

.label-before {
  top: 43%;
  left: 12%;
}

.label-after {
  top: 55%;
  left: 24%;
}

.label-slip {
  right: 17%;
  bottom: 22%;
}

.label-pipes {
  right: 22%;
  top: 36%;
}

.label-collector {
  right: 5%;
  bottom: 34%;
}

.schema-plan {
  background: white;
  color: var(--ink);
}

.schema-plan span {
  display: block;
  color: rgba(16, 32, 51, 0.64);
}

.plan-lines {
  position: relative;
  width: 210px;
  height: 82px;
  border-left: 8px solid var(--blue);
}

.plan-lines i {
  position: absolute;
  left: 10px;
  width: 168px;
  height: 5px;
  background: var(--navy);
  border-radius: 999px;
  transform-origin: left center;
  transform: rotate(-13deg);
}

.plan-lines i:nth-child(1) {
  top: 5px;
}

.plan-lines i:nth-child(2) {
  top: 22px;
}

.plan-lines i:nth-child(3) {
  top: 39px;
}

.plan-lines i:nth-child(4) {
  top: 56px;
}

.plan-lines i:nth-child(5) {
  top: 73px;
}

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

.drain-explainer article,
.journey article,
.promise-list div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.drain-explainer article {
  min-height: 248px;
  padding: 24px;
  box-shadow: 0 18px 52px rgba(8, 21, 42, 0.08);
}

.drain-explainer span,
.journey span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  background: var(--water);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 950;
}

.drain-explainer p,
.journey p,
.promise-list span {
  margin-bottom: 0;
  color: rgba(16, 32, 51, 0.68);
}

.product-section {
  background: linear-gradient(180deg, var(--foam), #f5efe1);
}

.product-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.product-media img {
  height: 760px;
  object-position: center;
}

.promise-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.mascot-badge {
  margin-top: 24px;
  margin-bottom: 6px;
  background: rgba(238, 249, 247, 0.9);
}

.promise-list div {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.promise-list strong {
  color: var(--navy);
}

.journey-section {
  background: var(--paper);
}

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

.journey article {
  position: relative;
  min-height: 264px;
  padding: 24px;
  overflow: hidden;
}

.journey article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--water), var(--sun), var(--rose));
  content: "";
}

.impact-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(8, 21, 42, 0.96), rgba(47, 110, 79, 0.92)),
    var(--navy);
}

.impact-section .section-kicker,
.impact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.impact-panel {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.15);
}

.impact-mascot {
  position: absolute;
  right: 18px;
  bottom: -38px;
  width: 108px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.25));
}

.impact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: white;
  font-weight: 850;
}

.impact-bar {
  height: 12px;
  margin-bottom: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.impact-bar:last-child {
  margin-bottom: 0;
}

.impact-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--water), var(--sun));
  border-radius: inherit;
  transform-origin: left;
}

.team-section {
  background: #f8f1e5;
}

.team-grid {
  grid-template-columns: 1fr 0.92fr;
}

.team-photo {
  margin: 0;
}

.team-photo img {
  height: 620px;
  object-position: center 36%;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 950;
}

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

.contact-grid {
  align-items: start;
}

.contact-mascot {
  background: rgba(238, 249, 247, 0.76);
}

.contact-panel {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 32, 51, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel-mascot {
  width: 126px;
  height: 154px;
  object-fit: contain;
}

.contact-panel h3 {
  max-width: 12ch;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 0.98;
}

.contact-panel p {
  max-width: 46ch;
  margin: 0;
}

.contact-panel .button {
  margin-top: 6px;
}

.site-footer {
  background: #07111f;
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-brand {
  color: white;
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes cueDrop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(21px);
    opacity: 0.25;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes flowDash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -38;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-tools {
    justify-self: end;
  }

  .story-grid,
  .product-grid,
  .impact-grid,
  .team-grid,
  .contact-grid,
  .drain-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-media img,
  .story-figure img,
  .team-photo img {
    height: 520px;
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 12px;
    padding: 10px 18px;
  }

  .brand span {
    max-width: 120px;
    line-height: 1.1;
  }

  .header-action {
    padding-right: 12px;
    padding-left: 12px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: space-between;
    gap: 8px;
    overflow-x: visible;
    font-size: 0.82rem;
  }

  .header-tools {
    gap: 8px;
  }

  .language-toggle {
    min-width: 42px;
    min-height: 42px;
    font-size: 0.82rem;
  }

  .hero,
  .hero-content {
    min-height: 84svh;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 21, 42, 0.94), rgba(8, 21, 42, 0.68)),
      linear-gradient(0deg, rgba(8, 21, 42, 0.25), rgba(8, 21, 42, 0.08));
  }

  .hero-content,
  .section-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-content {
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .story-figure img,
  .product-media img,
  .team-photo img {
    height: 430px;
  }

  .drain-explainer,
  .journey,
  .drain-showcase {
    grid-template-columns: 1fr;
  }

  .drain-card {
    padding: 16px;
  }

  .drain-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .kid-explainer,
  .mascot-note,
  .mascot-badge,
  .contact-mascot {
    grid-template-columns: 1fr;
  }

  .kid-explainer img,
  .mascot-note img,
  .mascot-badge img,
  .contact-mascot img {
    justify-self: start;
  }

  .schema-canvas {
    min-height: 430px;
  }

  .schema-topline,
  .schema-plan {
    align-items: flex-start;
    flex-direction: column;
  }

  .schema-label {
    max-width: 140px;
    font-size: 0.68rem;
  }

  .label-pipes {
    right: 8%;
    top: 33%;
  }

  .label-slip {
    right: 7%;
  }

  .label-collector {
    right: 4%;
    bottom: 41%;
  }

  .plan-lines {
    width: 100%;
    max-width: 240px;
  }

  .promise-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .impact-panel,
  .contact-panel {
    padding: 22px;
  }

  .impact-mascot {
    position: static;
    width: 84px;
    height: 110px;
    margin-top: 8px;
  }

  .impact-row,
  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-action {
    min-height: 42px;
    font-size: 0.88rem;
  }

  .main-nav {
    font-size: 0.78rem;
  }

  .hero-image {
    object-position: 72% center;
  }
}
