:root {
  --ink: #071c25;
  --ink-soft: #10313d;
  --petroleum: #0d4f5f;
  --teal: #1c7c94;
  --teal-bright: #2aa0ad;
  --leaf: #53b345;
  --leaf-dark: #2f8623;
  --mist: #eef5f4;
  --ice: #dfeceb;
  --paper: #f8faf9;
  --white: #ffffff;
  --muted: #5b6e74;
  --line: rgba(7, 28, 37, 0.14);
  --display: "Sora", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(7, 28, 37, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  transform: translateX(-50%);
  will-change: top, width, border-radius, background-color;
  transition:
    top 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    max-width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms ease,
    border-color 280ms ease,
    border-radius 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  width: calc(100% - 32px);
  max-width: 1080px;
  background: rgba(7, 28, 37, 0.84);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow:
    0 18px 50px rgba(3, 17, 23, 0.22),
    0 2px 8px rgba(3, 17, 23, 0.18);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  transition:
    min-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .header-inner {
  width: 100%;
  min-height: 64px;
  gap: 26px;
  padding-inline: 14px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  transition:
    width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .brand img {
  width: 38px;
  height: 38px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font: 600 17px/1.1 var(--display);
  letter-spacing: -0.03em;
  transition: font-size 280ms ease;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    margin 280ms ease,
    font-size 280ms ease,
    letter-spacing 280ms ease;
}

.site-header.is-scrolled .brand-copy strong {
  font-size: 15px;
}

.site-header.is-scrolled .brand-copy small {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  transition: gap 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .site-nav {
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(110deg, var(--leaf-dark), var(--leaf));
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(47, 134, 35, 0.22);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 134, 35, 0.3);
  filter: saturate(1.1);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 14px;
}

.site-header .header-cta {
  transition:
    min-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.site-header.is-scrolled .header-cta {
  min-height: 40px;
  padding-inline: 15px;
}

.button-small svg {
  width: 17px;
  height: 17px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--teal-bright));
}

.eyebrow-dark {
  color: var(--petroleum);
}

.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("assets/hero-hvac-technician.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 28, 37, 0.98) 0%, rgba(7, 28, 37, 0.9) 36%, rgba(7, 28, 37, 0.32) 68%, rgba(7, 28, 37, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 28, 37, 0.3), transparent 48%, rgba(7, 28, 37, 0.66));
}

.airflow {
  position: absolute;
  pointer-events: none;
}

.airflow path {
  fill: none;
  stroke-linecap: round;
}

.airflow-hero {
  z-index: 1;
  right: -8vw;
  bottom: 50px;
  width: min(70vw, 1030px);
  opacity: 0.55;
}

.airflow-hero path {
  stroke: rgba(83, 179, 69, 0.48);
  stroke-width: 1.6;
}

.airflow-hero path:nth-child(2) {
  stroke: rgba(42, 160, 173, 0.5);
}

.airflow-hero path:nth-child(3) {
  stroke: rgba(255, 255, 255, 0.25);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  gap: 80px;
  padding-top: 136px;
  padding-bottom: 130px;
}

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

.hero h1 {
  max-width: 800px;
  margin: 0;
  font: 500 clamp(52px, 6.4vw, 94px) / 0.99 var(--display);
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--leaf), #85d27a 46%, #55bec5);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--leaf);
}

.text-link span {
  color: var(--leaf);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  list-style: none;
  font-size: 13px;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--leaf);
  stroke-width: 2;
}

.hero-proof {
  align-self: end;
  margin-bottom: 20px;
  padding: 22px;
  background: rgba(7, 28, 37, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.proof-label {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 14px;
}

.proof-item strong {
  color: var(--leaf);
  font: 600 42px/1 var(--display);
  letter-spacing: -0.06em;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.proof-item-compact strong {
  color: var(--white);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.proof-line {
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.12);
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(5, 20, 27, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.audience-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.audience-row span {
  padding: 8px 32px;
  color: rgba(255, 255, 255, 0.62);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font: 500 12px/1 var(--display);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.audience-row span:last-child {
  border-right: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading h2,
.standards-intro h2,
.company-copy h2,
.faq-intro h2,
.contact-copy h2,
.compliance-copy h2 {
  margin: 0;
  font: 500 clamp(40px, 5vw, 66px) / 1.07 var(--display);
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(83, 179, 69, 0.08), transparent 28%),
    var(--paper);
}

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

.service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(7, 28, 37, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(7, 28, 37, 0.04);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(28, 124, 148, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 2%, rgba(83, 179, 69, 0.25), transparent 32%),
    var(--petroleum);
  border-color: transparent;
}

.service-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.service-tag {
  padding: 6px 10px;
  color: var(--petroleum);
  background: var(--mist);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card-featured .service-tag,
.service-card-pmoc .service-tag {
  color: #d6f2d0;
  background: rgba(255, 255, 255, 0.1);
}

.service-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card-featured .service-icon,
.service-card-pmoc .service-icon {
  stroke: var(--leaf);
}

.service-card h3 {
  margin: 0 0 14px;
  font: 600 25px/1.18 var(--display);
  letter-spacing: -0.035em;
}

.service-card > p,
.service-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card-featured > p,
.service-card-pmoc > p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 14px;
}

.service-card ul li {
  position: relative;
  padding-left: 17px;
}

.service-card ul li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
}

.service-card-featured ul {
  color: rgba(255, 255, 255, 0.72);
}

.service-card > a,
.service-card-wide > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--petroleum);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.service-card-featured > a,
.service-card-pmoc > a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card > a span {
  color: var(--leaf-dark);
}

.service-card-wide {
  min-height: 315px;
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 40px;
}

.service-card-wide > a {
  grid-column: 1 / -1;
}

.equipment-list {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 4px;
}

.equipment-list span {
  padding: 9px 13px;
  color: var(--petroleum);
  background: var(--mist);
  border: 1px solid rgba(13, 79, 95, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.service-card-pmoc {
  min-height: 315px;
  color: var(--white);
  background:
    linear-gradient(150deg, transparent 45%, rgba(42, 160, 173, 0.12)),
    var(--ink);
  border-color: transparent;
}

.service-card-pmoc .service-topline {
  margin-bottom: 14px;
}

.service-kicker {
  margin: 0 0 10px !important;
  color: var(--leaf) !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.climate-gallery {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 6%, rgba(42, 160, 173, 0.16), transparent 28%),
    var(--petroleum);
}

.climate-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.climate-gallery-heading h2 {
  max-width: 780px;
  margin: 0;
  font: 500 clamp(40px, 5vw, 66px) / 1.07 var(--display);
  letter-spacing: -0.055em;
}

.climate-gallery-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.climate-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  grid-template-rows: repeat(2, 286px);
  gap: 18px;
}

.climate-scene {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(2, 18, 24, 0.22);
}

.climate-scene-home {
  grid-row: 1 / -1;
}

.climate-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.climate-scene-service img {
  object-position: 44% 42%;
}

.climate-scene-cleaning img {
  object-position: 58% center;
}

.climate-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(4, 22, 29, 0.88) 100%);
  pointer-events: none;
}

.climate-scene figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 7px;
}

.climate-scene figcaption span {
  color: #b9e6b2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.climate-scene figcaption strong {
  max-width: 520px;
  font: 500 20px/1.25 var(--display);
  letter-spacing: -0.025em;
}

.climate-scene-home figcaption strong {
  font-size: 27px;
}

@media (hover: hover) {
  .climate-scene:hover img {
    transform: scale(1.035);
  }
}

.compliance {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 40%, black);
}

.airflow-pmoc {
  right: -140px;
  bottom: -60px;
  width: 760px;
  opacity: 0.45;
}

.airflow-pmoc path {
  stroke: rgba(42, 160, 173, 0.55);
  stroke-width: 1.3;
}

.airflow-pmoc path:last-child {
  stroke: rgba(83, 179, 69, 0.48);
}

.compliance-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 110px;
}

.compliance-copy h2 {
  max-width: 650px;
}

.compliance-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.compliance-panel {
  padding: 38px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin: 0 0 20px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.compliance-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compliance-panel li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.compliance-panel li > span {
  color: rgba(255, 255, 255, 0.33);
  font: 500 12px/1.4 var(--display);
}

.compliance-panel li div {
  display: grid;
  gap: 4px;
}

.compliance-panel li strong {
  font: 500 17px/1.3 var(--display);
}

.compliance-panel li small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.45;
}

.legal-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.55;
}

.standards {
  background: var(--white);
}

.standards-intro {
  max-width: 760px;
  margin-bottom: 66px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-grid article {
  position: relative;
  min-height: 290px;
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
}

.standards-grid article:last-child {
  border-right: 0;
}

.standard-index {
  display: block;
  margin-bottom: 54px;
  color: var(--teal);
  font: 500 12px/1 var(--display);
}

.standards-grid h3 {
  margin: 0 0 14px;
  font: 600 20px/1.25 var(--display);
  letter-spacing: -0.03em;
}

.standards-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.company {
  background: var(--mist);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 100px;
}

.company-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(28, 124, 148, 0.98), rgba(13, 79, 95, 0.98)),
    var(--petroleum);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(13, 79, 95, 0.18);
}

.company-visual::before,
.company-visual::after {
  position: absolute;
  width: 420px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-17deg);
}

.company-visual::before {
  top: -50px;
  left: -110px;
}

.company-visual::after {
  right: -130px;
  bottom: -30px;
  border-color: rgba(83, 179, 69, 0.35);
}

.company-mark {
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.company-mark img {
  width: 200px;
  height: 200px;
}

.company-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  color: var(--white);
}

.company-caption span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-caption strong {
  font: 500 18px/1.4 var(--display);
}

.company-lead {
  margin: 28px 0 22px !important;
  color: var(--ink) !important;
  font-size: 21px !important;
  line-height: 1.55;
}

.company-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.values-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.values-line span {
  padding: 9px 13px;
  color: var(--petroleum);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 79, 95, 0.13);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-list li:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font: 500 12px/1 var(--display);
}

.process-number::after {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--leaf);
}

.process-list li div {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
}

.process-list h3 {
  margin: 0 0 12px;
  font: 600 19px/1.3 var(--display);
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  margin: 24px 0 28px;
  color: var(--muted);
}

.text-link-dark {
  color: var(--petroleum);
  border-color: rgba(13, 79, 95, 0.25);
}

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

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 30px;
  padding: 22px 0;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font: 500 18px/1.35 var(--display);
  text-align: left;
}

.accordion-item button > span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(13, 79, 95, 0.25);
  border-radius: 50%;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--petroleum);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  padding: 0 60px 28px 0;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(42, 160, 173, 0.24), transparent 32%),
    linear-gradient(130deg, var(--petroleum), var(--ink) 62%);
}

.contact::after {
  position: absolute;
  right: -120px;
  bottom: -340px;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(83, 179, 69, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(42, 160, 173, 0.045),
    0 0 0 150px rgba(83, 179, 69, 0.035);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 100px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 38px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 17px;
}

.contact-details a,
.contact-details div {
  display: grid;
  gap: 2px;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 15px;
  font-weight: 500;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.form-heading span {
  font: 600 21px/1.2 var(--display);
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.contact-form label > span {
  color: var(--petroleum);
  font-size: 12px;
  font-weight: 600;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f4f7f6;
  border: 1px solid rgba(7, 28, 37, 0.11);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(28, 124, 148, 0.1);
}

.contact-form ::placeholder {
  color: #89979b;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  display: block;
  margin-top: 12px;
  color: #7b8b8f;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.site-footer {
  color: var(--white);
  background: #041219;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1.15fr 0.7fr;
  gap: 70px;
  padding-top: 76px;
  padding-bottom: 64px;
}

.footer-brand > p {
  max-width: 320px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
}

.footer-label {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--leaf);
}

.footer-column address {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.footer-address a {
  margin-top: 8px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 28, 37, 0.25);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

/* Portal de entrada */
.portal-page {
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.portal-header {
  position: fixed;
  z-index: 20;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 290px;
  padding: 8px 18px 8px 9px;
  background: rgba(4, 18, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.portal-brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.portal-brand-mark img {
  width: 40px;
  height: 40px;
}

.portal-brand > span:last-child {
  display: grid;
  line-height: 1.15;
}

.portal-brand strong {
  font: 600 16px/1.2 var(--display);
  letter-spacing: -0.03em;
}

.portal-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portal-grid {
  min-height: 100svh;
  display: flex;
}

.portal-panel {
  position: relative;
  min-width: 0;
  display: flex;
  flex: 1 1 50%;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: flex-grow 760ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.portal-panel:last-child {
  border-right: 0;
}

.portal-grid:has(.portal-panel:hover) .portal-panel:hover {
  flex-grow: 1.14;
}

.portal-grid:has(.portal-panel:hover) .portal-panel:not(:hover) {
  flex-grow: 0.86;
}

.portal-media,
.portal-overlay {
  position: absolute;
  inset: 0;
}

.portal-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.portal-panel:hover .portal-media {
  transform: scale(1.065);
}

.portal-kitchen .portal-media {
  background-image: url("assets/kitchen-service.webp");
  background-position: 48% center;
}

.portal-climate .portal-media {
  background-image: url("assets/hero-hvac-technician.png");
  background-position: 63% center;
}

.portal-kitchen .portal-overlay {
  background:
    linear-gradient(180deg, rgba(7, 28, 37, 0.28), rgba(7, 28, 37, 0.78)),
    linear-gradient(120deg, rgba(13, 79, 95, 0.88), rgba(28, 124, 148, 0.36));
}

.portal-climate .portal-overlay {
  background:
    linear-gradient(180deg, rgba(7, 28, 37, 0.28), rgba(7, 28, 37, 0.78)),
    linear-gradient(120deg, rgba(47, 134, 35, 0.66), rgba(13, 79, 95, 0.55));
}

.portal-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(4, 18, 25, 0.3));
  pointer-events: none;
}

.portal-index {
  position: absolute;
  z-index: 2;
  top: 42px;
  color: rgba(255, 255, 255, 0.5);
  font: 500 10px/1 var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-kitchen .portal-index {
  left: 40px;
}

.portal-climate .portal-index {
  right: 40px;
}

.portal-content {
  position: relative;
  z-index: 2;
  width: min(80%, 580px);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: auto;
  text-align: center;
}

.portal-eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portal-content > strong {
  font: 600 clamp(38px, 4vw, 66px) / 0.98 var(--display);
  letter-spacing: -0.06em;
}

.portal-description {
  max-width: 540px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.portal-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid rgba(83, 179, 69, 0.82);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.portal-panel:hover .portal-button {
  color: var(--white);
  background: var(--leaf-dark);
  transform: translateY(-3px);
}

.portal-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.portal-footnote {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.portal-seam {
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 132px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(4, 18, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.portal-seam span {
  white-space: nowrap;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.portal-contact {
  position: fixed;
  z-index: 12;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(4, 18, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.portal-contact a {
  color: var(--white);
  font-weight: 600;
}

/* Cozinhas industriais */
.hero-kitchen .hero-photo {
  background-image: url("assets/kitchen-service.webp");
  background-position: center 37%;
}

.hero-kitchen .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 28, 37, 0.98) 0%, rgba(7, 28, 37, 0.9) 38%, rgba(7, 28, 37, 0.28) 72%, rgba(7, 28, 37, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 28, 37, 0.25), transparent 45%, rgba(7, 28, 37, 0.72));
}

.kitchen-body .hero h1 em {
  background: linear-gradient(100deg, var(--leaf), #9bd88f 50%, #b9ced1);
  -webkit-background-clip: text;
  background-clip: text;
}

.kitchen-service-photo {
  min-height: 170px;
  background: url("assets/kitchen-8g.jpg") center / cover;
  border-radius: 14px;
}

.kitchen-structure-card {
  align-items: stretch;
}

.kitchen-risk {
  background:
    radial-gradient(circle at 12% 82%, rgba(232, 174, 77, 0.11), transparent 30%),
    var(--ink);
}

.kitchen-showcase {
  background: var(--mist);
}

.kitchen-showcase-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, transparent 62%, rgba(7, 28, 37, 0.35)),
    url("assets/kitchen-exhaust-cleaning.jpg") center / cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(7, 28, 37, 0.16);
}

.frequency {
  background: var(--white);
}

.frequency-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  align-items: start;
  gap: 100px;
}

.frequency-copy h2 {
  margin: 0;
  font: 500 clamp(40px, 5vw, 66px) / 1.07 var(--display);
  letter-spacing: -0.055em;
}

.frequency-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
}

.frequency-table-wrap {
  padding: 18px 30px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.frequency-table {
  width: 100%;
  border-collapse: collapse;
}

.frequency-table th,
.frequency-table td {
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.frequency-table th {
  color: var(--petroleum);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.frequency-table td {
  font-size: 15px;
}

.frequency-table td:last-child {
  color: var(--leaf-dark);
  font-weight: 600;
}

.frequency-table-wrap > p {
  margin: 18px 10px 0;
  color: var(--muted);
  font-size: 11px;
}

.kitchen-body .contact {
  background:
    radial-gradient(circle at 14% 18%, rgba(83, 179, 69, 0.2), transparent 30%),
    linear-gradient(130deg, #164c59, var(--ink) 64%);
}

.legal-body {
  background: var(--paper);
}

.legal-header .header-inner {
  grid-template-columns: 1fr auto;
}

.legal-header .text-link {
  font-size: 14px;
}

.legal-main {
  padding: 188px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 110px;
}

.legal-aside {
  position: sticky;
  top: 130px;
  align-self: start;
}

.legal-aside > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-aside strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-content h1 {
  margin: 0 0 28px;
  font: 500 clamp(46px, 6vw, 76px) / 1.02 var(--display);
  letter-spacing: -0.06em;
}

.legal-intro {
  margin: 0 0 64px !important;
  color: var(--ink-soft) !important;
  font-size: 21px !important;
  line-height: 1.55;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font: 600 21px/1.3 var(--display);
  letter-spacing: -0.03em;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.legal-content a {
  color: var(--petroleum);
  border-bottom: 1px solid rgba(13, 79, 95, 0.28);
  font-weight: 500;
}

.legal-contact {
  margin-top: 70px;
  padding: 34px;
  color: var(--white);
  background: var(--petroleum);
  border-radius: var(--radius);
}

.legal-contact h2 {
  margin-top: 0;
}

.legal-contact p,
.legal-contact a {
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.35);
}

.legal-footer {
  color: var(--white);
  background: #041219;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .header-inner {
    gap: 24px;
  }

  .site-nav {
    gap: 22px;
  }

  .header-cta {
    font-size: 13px;
  }

  .hero-layout {
    grid-template-columns: 1fr 210px;
    gap: 40px;
  }

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

  .service-card-pmoc {
    grid-column: span 2;
  }

  .compliance-layout,
  .contact-layout {
    gap: 60px;
  }

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

  .standards-grid article:nth-child(2) {
    border-right: 0;
  }

  .standards-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .company-layout {
    gap: 60px;
  }

  .climate-gallery-heading {
    gap: 48px;
  }

  .climate-gallery-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    grid-template-rows: repeat(2, 260px);
  }

  .faq-layout {
    gap: 70px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.6fr 1fr;
  }

  .footer-main .footer-column:last-child {
    grid-column: 2;
  }

  .portal-content {
    width: min(86%, 540px);
  }

  .portal-content > strong {
    font-size: clamp(36px, 4.4vw, 56px);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 92px 0;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .menu-open .site-header {
    background: rgba(7, 28, 37, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .site-header.is-scrolled .header-inner,
  .menu-open .site-header .header-inner {
    width: min(calc(100% - 36px), var(--container));
    min-height: 72px;
    padding-inline: 0;
  }

  .site-header.is-scrolled .brand img,
  .menu-open .site-header .brand img {
    width: 46px;
    height: 46px;
  }

  .site-header.is-scrolled .brand-copy strong,
  .menu-open .site-header .brand-copy strong {
    font-size: 17px;
  }

  .site-header.is-scrolled .brand-copy small,
  .menu-open .site-header .brand-copy small {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .header-cta {
    display: none;
  }

  .site-header > .header-inner > .brand {
    position: relative;
    z-index: 3;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transform-origin: center;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 100px 28px 40px;
    visibility: hidden;
    background: rgba(7, 28, 37, 0.98);
    opacity: 0;
    transform: scale(0.96) translateY(-8px);
    transform-origin: top center;
    transition:
      visibility 260ms ease,
      opacity 260ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font: 500 30px/1.2 var(--display);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-photo {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 28, 37, 0.96), rgba(7, 28, 37, 0.62) 72%, rgba(7, 28, 37, 0.28)),
      linear-gradient(180deg, rgba(7, 28, 37, 0.3), transparent 38%, rgba(7, 28, 37, 0.82));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 116px;
    padding-bottom: 120px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-proof {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .climate-gallery-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .climate-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 430px 270px;
  }

  .climate-scene-home {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .compliance-layout,
  .company-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .compliance-layout {
    gap: 60px;
  }

  .company-visual {
    min-height: 430px;
  }

  .faq-intro {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .process-list li:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .process-list li:nth-child(3) {
    border-left: 1px solid var(--line);
    border-radius: 0 0 0 var(--radius);
  }

  .process-list li:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .contact-layout {
    gap: 52px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-address {
    grid-column: span 2;
  }

  .footer-main .footer-column:last-child {
    grid-column: auto;
  }

  .portal-page {
    overflow: auto;
  }

  .portal-header {
    top: 16px;
  }

  .portal-grid {
    min-height: auto;
    flex-direction: column;
  }

  .portal-panel {
    min-height: 620px;
    flex: none;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .portal-panel:last-child {
    border-bottom: 0;
  }

  .portal-grid:has(.portal-panel:hover) .portal-panel:hover,
  .portal-grid:has(.portal-panel:hover) .portal-panel:not(:hover) {
    flex-grow: 0;
  }

  .portal-index {
    top: 94px;
  }

  .portal-seam,
  .portal-contact {
    display: none;
  }

  .portal-content {
    width: min(calc(100% - 36px), 620px);
    padding-top: 54px;
  }

  .portal-content > strong {
    font-size: clamp(42px, 9vw, 62px);
  }

  .portal-description {
    max-width: 500px;
    font-size: 17px;
  }

  .frequency-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .kitchen-showcase-image {
    min-height: 430px;
  }

  .legal-main {
    padding: 150px 0 92px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

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

  .section {
    padding: 76px 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-header.is-scrolled .header-inner,
  .menu-open .site-header .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header.is-scrolled .brand img,
  .menu-open .site-header .brand img {
    width: 42px;
    height: 42px;
  }

  .portal-header {
    width: calc(100% - 28px);
  }

  .portal-brand {
    min-width: 0;
    width: 100%;
  }

  .portal-panel {
    min-height: 680px;
  }

  .portal-kitchen .portal-media {
    background-position: 55% center;
  }

  .portal-climate .portal-media {
    background-position: 68% center;
  }

  .portal-index {
    top: 92px;
  }

  .portal-kitchen .portal-index {
    left: 20px;
  }

  .portal-climate .portal-index {
    right: 20px;
  }

  .portal-content {
    width: calc(100% - 36px);
    padding-top: 64px;
  }

  .portal-eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .portal-content > strong {
    font-size: clamp(39px, 12vw, 52px);
  }

  .portal-description {
    margin-top: 20px;
    font-size: 16px;
  }

  .portal-button {
    min-height: 50px;
    margin-top: 26px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .portal-footnote {
    right: 18px;
    bottom: 20px;
    left: 18px;
    font-size: 8px;
  }

  .hero-kitchen .hero-photo {
    background-position: 62% center;
  }

  .legal-header .brand-copy small {
    display: none;
  }

  .legal-header .text-link {
    font-size: 12px;
  }

  .legal-content h1 {
    font-size: 44px;
  }

  .legal-intro {
    margin-bottom: 48px !important;
    font-size: 19px !important;
  }

  .legal-contact {
    padding: 26px 22px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-photo {
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 28, 37, 0.97), rgba(7, 28, 37, 0.65)),
      linear-gradient(180deg, rgba(7, 28, 37, 0.2), transparent 35%, rgba(7, 28, 37, 0.94));
  }

  .hero-layout {
    align-items: start;
    padding-top: 126px;
    padding-bottom: 126px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
  }

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

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-assurances {
    display: grid;
    gap: 8px;
  }

  .audience-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0;
  }

  .audience-row span {
    padding: 9px 8px;
    border-right: 0;
    font-size: 10px;
  }

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

  .section-heading h2,
  .climate-gallery-heading h2,
  .standards-intro h2,
  .company-copy h2,
  .faq-intro h2,
  .contact-copy h2,
  .compliance-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .section-heading > p {
    font-size: 16px;
  }

  .climate-gallery-heading {
    margin-bottom: 36px;
  }

  .climate-gallery-heading > p {
    font-size: 16px;
  }

  .climate-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .climate-scene,
  .climate-scene-home {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .climate-scene-home {
    min-height: 410px;
  }

  .climate-scene figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .climate-scene figcaption strong,
  .climate-scene-home figcaption strong {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide,
  .service-card-pmoc {
    min-height: auto;
    grid-column: auto;
  }

  .service-card-wide {
    display: flex;
    gap: 24px;
  }

  .kitchen-service-photo {
    min-height: 190px;
  }

  .service-card-wide .service-topline {
    margin-bottom: 26px;
  }

  .service-card-wide > a,
  .service-card > a {
    margin-top: 30px;
  }

  .compliance-layout {
    gap: 42px;
  }

  .compliance-panel,
  .contact-form {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .standards-intro {
    margin-bottom: 44px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid article,
  .standards-grid article:nth-child(2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .standards-grid article:last-child {
    border-bottom: 0;
  }

  .standard-index {
    margin-bottom: 34px;
  }

  .company-layout {
    gap: 50px;
  }

  .company-visual {
    min-height: 360px;
  }

  .kitchen-showcase-image {
    min-height: 340px;
  }

  .frequency-table-wrap {
    padding: 8px 14px 18px;
  }

  .frequency-table th,
  .frequency-table td {
    padding: 16px 6px;
  }

  .frequency-table td {
    font-size: 13px;
  }

  .company-mark {
    width: 200px;
    height: 200px;
  }

  .company-mark img {
    width: 165px;
    height: 165px;
  }

  .company-caption {
    right: 20px;
    bottom: 18px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(2),
  .process-list li:nth-child(3),
  .process-list li:last-child {
    min-height: 210px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
  }

  .process-list li:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .process-list li:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .faq-layout {
    gap: 48px;
  }

  .accordion-item button {
    min-height: 82px;
    font-size: 16px;
  }

  .contact {
    padding: 82px 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand,
  .footer-address {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
