:root {
  --ink: #111820;
  --charcoal: #1f292f;
  --muted: #5e6a70;
  --line: #e6ebee;
  --soft: #f6f8f7;
  --blue: #0b7fbe;
  --blue-dark: #075e8c;
  --orange: #f58220;
  --orange-dark: #dc6e14;
  --green: #4f8f63;
  --white: #ffffff;
  --max: 1120px;
  --shadow: 0 16px 38px rgba(17, 24, 32, 0.14);
}

@media (max-width: 760px) {
  .home-page .header-inner {
    min-height: 34px;
  }

  .home-page .brand img {
    width: 78px;
  }

  .home-page .site-nav {
    gap: 3px;
    max-width: calc(100vw - 100px);
    font-size: 0.29rem;
  }

  .home-page .hero {
    min-height: 205px;
  }

  .home-page .hero-content {
    width: min(300px, calc(100% - 40px));
    padding: 23px 0;
  }

  .home-page .hero h1 {
    max-width: 285px;
    margin-bottom: 0.7rem;
    font-size: 1.18rem;
  }

  .home-page .hero-stats {
    width: 250px;
    margin-bottom: 0.75rem;
  }

  .home-page .hero-stat strong {
    font-size: 0.9rem;
  }

  .home-page .hero-stat span {
    font-size: 0.34rem;
  }

  .home-page .btn {
    min-height: 22px;
    padding: 0.34rem 0.58rem;
    font-size: 0.43rem;
  }

  .home-page .section {
    padding: 26px 0;
  }

  .home-page .section-title {
    font-size: 0.78rem;
  }

  .home-page .section-kicker {
    font-size: 0.45rem;
  }

  .home-page p {
    font-size: 0.48rem;
  }

  .home-intro-image img,
  .home-service-image img,
  .home-page .image-frame img {
    min-height: 118px;
  }

  .home-why {
    padding-top: 20px;
  }

  .home-feature-grid {
    gap: 4px;
    margin-top: 12px;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
  }

  .home-feature-card h3 {
    font-size: 0.36rem;
  }

  .home-feature-card p {
    font-size: 0.31rem;
  }

  .home-orange-panel {
    padding: 10px 0;
  }

  .orange-mock-grid {
    gap: 10px;
  }

  .temp-card {
    min-height: 38px;
    padding-right: 10px;
  }

  .temp-card strong {
    font-size: 1.25rem;
  }

  .temp-card span {
    font-size: 0.33rem;
  }

  .orange-service-list {
    gap: 3px 6px;
    font-size: 0.31rem;
  }

  .tick-list li {
    font-size: 0.45rem;
  }

  .home-page .cta {
    padding: 28px 0;
  }

  .home-page .cta h2 {
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
  }

  .equipment-shell {
    padding: 11px;
  }

  .home-page .equipment-grid {
    gap: 6px;
  }

  .home-page .equipment-card h3 {
    font-size: 0.39rem;
  }

  .home-page .equipment-card p {
    font-size: 0.29rem;
  }

  .home-page .testimonial-card {
    padding: 8px;
  }

  .home-page .quote-mark {
    font-size: 0.95rem;
  }

  .home-page .testimonial-card p {
    font-size: 0.32rem;
  }

  .home-page .testimonial-card h3 {
    font-size: 0.36rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-toggle {
  display: none;
}

.nav-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-button span,
.nav-button span::before,
.nav-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  position: relative;
}

.nav-button span::before {
  position: absolute;
  top: -7px;
}

.nav-button span::after {
  position: absolute;
  top: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: #20282e;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--orange);
}

.btn.secondary:hover {
  background: var(--orange-dark);
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(rgba(7, 11, 15, 0.67), rgba(7, 11, 15, 0.67)), url("assets/protectoraircare.com.au/wp-content/uploads/2019/04/Plant-Room-1024x285.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(860px, calc(100% - 40px));
  padding: 56px 0;
}

.hero h1 {
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4.8vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  width: min(660px, 100%);
  margin: 0 auto 1.4rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(620px, 100%);
  margin: 1.6rem auto 1.8rem;
}

.hero-stat {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 54px 0;
}

.section.soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-kicker {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.image-frame {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: #dfe5e7;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

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

.feature-card,
.equipment-card,
.testimonial-card,
.post-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.feature-card {
  padding: 24px 18px;
  text-align: center;
}

.feature-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.13);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-card h3,
.equipment-card h3,
.testimonial-card h3,
.post-card h3,
.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.26;
}

.feature-card p,
.equipment-card p,
.testimonial-card p,
.post-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.orange-panel {
  background: var(--orange);
  color: var(--white);
}

.orange-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.orange-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.orange-item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.tick-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.tick-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--orange);
  font-weight: 900;
  content: "+";
}

.cta {
  padding: 70px 0;
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(rgba(8, 13, 17, 0.7), rgba(8, 13, 17, 0.7)), url("assets/protectoraircare.com.au/wp-content/uploads/2019/04/Silver-1024x768.jpg");
  background-size: cover;
  background-position: center;
}

.cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.cta p {
  width: min(650px, 100%);
  margin: 0 auto 1.3rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.equipment-card {
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17, 24, 32, 0.08);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.equipment-card div {
  padding: 18px;
}

.area-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
}

.area-gallery img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: 4px;
  object-fit: cover;
}

.area-gallery img:first-child {
  grid-row: span 2;
}

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

.testimonial-card {
  padding: 26px;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.quote-mark {
  display: block;
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 0.85;
  font-weight: 900;
}

.testimonial-card h3 {
  margin-top: 1rem;
  color: var(--blue-dark);
}

.cert-strip {
  padding: 30px 0;
  background: var(--white);
}

.cert-strip img {
  width: 100%;
  height: auto;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #0e1419;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.95fr 1.05fr;
  gap: 34px;
  padding: 54px 0 36px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 4px;
  background: var(--white);
}

.center-action {
  margin-top: 24px;
  text-align: center;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 18px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}

.page-hero {
  padding: 92px 0;
  color: var(--white);
  background-image: linear-gradient(rgba(10, 18, 23, 0.7), rgba(10, 18, 23, 0.7)), url("assets/protectoraircare.com.au/wp-content/uploads/2019/04/Plant-Room-1024x285.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  width: min(760px, 100%);
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p {
  width: min(670px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.content-block + .content-block {
  margin-top: 42px;
}

.content-block h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.18;
}

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

.service-card,
.post-card {
  padding: 22px;
}

.post-date {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.approach-step {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-align: center;
}

.approach-step strong {
  display: block;
  color: var(--orange);
  font-size: 1.25rem;
}

.approach-step span {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}

.contact-panel {
  padding: 26px;
  border-radius: 6px;
  background: var(--charcoal);
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.78rem 0.85rem;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 980px) {
  .feature-grid,
  .equipment-grid,
  .testimonial-grid,
  .footer-grid,
  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .nav-button {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    top: 68px;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 14px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero {
    min-height: 620px;
    text-align: left;
  }

  .hero p {
    margin-left: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-left: 0;
  }

  .hero-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-right: 0;
    text-align: left;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .equipment-grid,
  .testimonial-grid,
  .service-grid,
  .post-grid,
  .footer-grid,
  .orange-grid,
  .approach-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .area-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .area-gallery img:first-child {
    grid-column: 1 / -1;
  }
}

.home-page .site-header {
  position: relative;
}

.home-page .header-inner {
  min-height: 58px;
}

.home-page .brand img {
  width: 122px;
}

.home-page .site-nav {
  gap: 16px;
  font-size: 0.63rem;
}

.home-page .site-nav a {
  padding: 22px 0 20px;
}

.home-page .site-nav a::after {
  bottom: 12px;
  height: 2px;
}

.home-page .btn {
  min-height: 36px;
  padding: 0.58rem 1rem;
  font-size: 0.68rem;
  border-radius: 3px;
}

.home-page .hero {
  min-height: 410px;
  background-image: linear-gradient(rgba(7, 10, 13, 0.72), rgba(7, 10, 13, 0.72)), url("assets/protectoraircare.com.au/wp-content/uploads/2019/04/Plant-Room-1024x285.jpg");
  background-position: center;
}

.home-page .hero-content {
  width: min(760px, calc(100% - 40px));
  padding: 44px 0;
}

.home-page .hero h1 {
  max-width: 720px;
  margin-bottom: 1.45rem;
  font-size: clamp(1.9rem, 3.3vw, 3.25rem);
  line-height: 1.05;
}

.home-page .hero-stats {
  width: min(520px, 100%);
  margin: 0 auto 1.55rem;
  gap: 0;
}

.home-page .hero-stat strong {
  font-size: clamp(1.55rem, 2.9vw, 2.15rem);
}

.home-page .hero-stat span {
  font-size: 0.64rem;
}

.home-page .section {
  padding: 54px 0;
}

.home-page .split {
  gap: 42px;
}

.home-page .section-title {
  font-size: clamp(1.35rem, 2.25vw, 2rem);
}

.centered {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-page p {
  font-size: 0.95rem;
}

.home-page .image-frame {
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.1);
}

.home-intro-image img,
.home-service-image img {
  min-height: 270px;
}

.home-why {
  padding-top: 38px;
  background: var(--white);
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.home-feature-card {
  padding: 0 8px;
  text-align: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: var(--orange);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.84rem;
  line-height: 1.25;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.home-orange-panel {
  padding: 24px 0;
  background: var(--orange);
  color: var(--white);
}

.orange-mock-grid {
  display: grid;
  grid-template-columns: 0.95fr 3.05fr;
  gap: 26px;
  align-items: center;
}

.temp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.temp-card strong {
  display: block;
  font-size: 2.45rem;
  line-height: 1;
}

.temp-card span {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.orange-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 22px;
  font-size: 0.78rem;
  font-weight: 700;
}

.orange-service-list span {
  position: relative;
  padding-left: 14px;
}

.orange-service-list span::before {
  position: absolute;
  left: 0;
  content: "•";
}

.compact-list {
  gap: 0.38rem;
  margin: 0.8rem 0 1.05rem;
}

.home-page .cta {
  padding: 58px 0;
  background-image: linear-gradient(rgba(8, 13, 17, 0.72), rgba(8, 13, 17, 0.72)), url("assets/protectoraircare.com.au/wp-content/uploads/2019/04/Silver-1024x768.jpg");
  background-position: center 42%;
}

.home-page .cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
}

.home-equipment {
  background: #f4f1ea;
}

.equipment-shell {
  padding: 28px;
  border: 1px solid #e6dccb;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}

.equipment-shell .section-title {
  margin-bottom: 24px;
}

.home-page .equipment-grid {
  gap: 18px;
}

.home-page .equipment-card {
  border-color: #e4e8eb;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(17, 24, 32, 0.08);
}

.home-page .equipment-card img {
  aspect-ratio: 4 / 2.65;
}

.home-page .equipment-card div {
  padding: 14px 14px 16px;
  text-align: center;
}

.home-page .equipment-card h3,
.home-page .testimonial-card h3 {
  font-size: 0.9rem;
}

.home-page .equipment-card p {
  font-size: 0.75rem;
  line-height: 1.45;
}

.home-areas .area-gallery {
  gap: 12px;
}

.home-areas .area-gallery img {
  min-height: 140px;
}

.home-testimonials {
  background: var(--white);
}

.home-testimonials .testimonial-grid {
  margin-top: 20px;
}

.home-page .testimonial-card {
  padding: 20px;
  border-radius: 4px;
}

.home-page .testimonial-card p {
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-page .quote-mark {
  font-size: 2rem;
}

.home-page .cert-strip {
  padding: 22px 0;
}

@media (max-width: 980px) {
  .home-page .site-nav {
    gap: 10px;
    font-size: 0.58rem;
  }

  .home-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .orange-mock-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .temp-card {
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 0 16px;
  }
}

@media (max-width: 760px) {
  .home-page .header-inner {
    min-height: 62px;
  }

  .home-page .brand img {
    width: 124px;
  }

  .home-page .site-nav {
    top: 62px;
    font-size: 0.72rem;
  }

  .home-page .hero {
    min-height: 360px;
    text-align: center;
  }

  .home-page .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .home-page .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
  }

  .home-page .hero-stat {
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
  }

  .home-page .hero-stat:last-child {
    border-right: 0;
  }

  .home-page .hero-stat strong {
    font-size: 1.45rem;
  }

  .home-page .hero-stat span {
    font-size: 0.56rem;
  }

  .home-page .section {
    padding: 44px 0;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .equipment-shell {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .home-page .wrap {
    width: calc(100% - 24px);
    max-width: 366px;
  }

  .home-page {
    overflow-x: hidden;
  }

  .home-page .site-header {
    position: relative;
  }

  .home-page .header-inner {
    min-height: 42px;
    gap: 8px;
  }

  .home-page .brand {
    flex: 0 0 auto;
  }

  .home-page .brand img {
    width: 100px;
  }

  .home-page .nav-button {
    display: none;
  }

  .home-page .site-nav {
    position: static;
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    min-width: 0;
    max-width: calc(100vw - 130px);
    overflow: hidden;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.36rem;
    line-height: 1;
    white-space: nowrap;
  }

  .home-page .site-nav a {
    padding: 0;
    border: 0;
  }

  .home-page .hero {
    min-height: 256px;
  }

  .home-page .hero-content {
    width: min(332px, calc(100% - 40px));
    padding: 28px 0;
  }

  .home-page .hero h1 {
    max-width: 315px;
    margin-bottom: 1rem;
    font-size: 1.72rem;
    line-height: 1.05;
  }

  .home-page .hero-stats {
    width: 300px;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .home-page .hero-stat strong {
    font-size: 1.2rem;
  }

  .home-page .hero-stat span {
    font-size: 0.45rem;
  }

  .home-page .btn {
    min-height: 26px;
    padding: 0.42rem 0.68rem;
    font-size: 0.53rem;
  }

  .home-page .section {
    padding: 32px 0;
  }

  .home-page .split,
  .home-page .split.reverse {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 13px;
    align-items: center;
  }

  .home-page .section-title {
    margin-bottom: 0.55rem;
    font-size: 1rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .home-page .section-kicker {
    margin-bottom: 0.18rem;
    font-size: 0.58rem;
  }

  .home-page p {
    margin-bottom: 0.55rem;
    font-size: 0.64rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .home-intro-image img,
  .home-service-image img,
  .home-page .image-frame img {
    min-height: 138px;
  }

  .home-why {
    padding-top: 26px;
  }

  .home-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .home-feature-card {
    padding: 0 1px;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 7px;
  }

  .home-feature-card h3 {
    font-size: 0.47rem;
    line-height: 1.2;
  }

  .home-feature-card p {
    font-size: 0.39rem;
    line-height: 1.35;
  }

  .home-orange-panel {
    padding: 12px 0;
  }

  .orange-mock-grid {
    grid-template-columns: 0.9fr 3.1fr;
    gap: 14px;
  }

  .temp-card {
    justify-content: flex-start;
    gap: 8px;
    min-height: 46px;
    padding: 0 12px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
    border-bottom: 0;
  }

  .temp-card strong {
    font-size: 1.55rem;
  }

  .temp-card span {
    font-size: 0.43rem;
  }

  .orange-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px 8px;
    font-size: 0.4rem;
    line-height: 1.25;
  }

  .orange-service-list span {
    padding-left: 8px;
  }

  .compact-list {
    gap: 0.18rem;
    margin: 0.45rem 0 0.65rem;
  }

  .tick-list li {
    padding-left: 0.85rem;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .tick-list li::before {
    top: 0;
  }

  .home-page .cta {
    padding: 34px 0;
  }

  .home-page .cta h2 {
    font-size: 1.05rem;
  }

  .equipment-shell {
    padding: 14px;
  }

  .equipment-shell .section-title {
    margin-bottom: 14px;
  }

  .home-page .equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .equipment-card img {
    aspect-ratio: 4 / 2.85;
  }

  .home-page .equipment-card div {
    padding: 7px 5px 8px;
  }

  .home-page .equipment-card h3 {
    margin-bottom: 0.18rem;
    font-size: 0.48rem;
  }

  .home-page .equipment-card p {
    font-size: 0.36rem;
    line-height: 1.3;
  }

  .home-areas .area-gallery {
    grid-template-columns: 1.25fr 0.85fr;
    gap: 7px;
  }

  .home-areas .area-gallery img:first-child {
    grid-column: auto;
    grid-row: span 2;
  }

  .home-areas .area-gallery img {
    min-height: 70px;
  }

  .home-testimonials .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .home-page .testimonial-card {
    padding: 10px;
  }

  .home-page .quote-mark {
    font-size: 1.15rem;
  }

  .home-page .testimonial-card p {
    font-size: 0.4rem;
    line-height: 1.42;
  }

  .home-page .testimonial-card h3 {
    margin-top: 0.45rem;
    font-size: 0.47rem;
  }

  .home-page .cert-strip {
    padding: 12px 0;
  }

  .home-page .footer-grid {
    grid-template-columns: 1.2fr 0.75fr 0.95fr 1.1fr;
    gap: 12px;
    padding: 26px 0 18px;
  }

  .home-page .footer-logo {
    width: 96px;
    padding: 5px;
    margin-bottom: 8px;
  }

  .home-page .site-footer h3 {
    font-size: 0.52rem;
  }

  .home-page .site-footer p,
  .home-page .site-footer li {
    font-size: 0.43rem;
    line-height: 1.45;
  }

  .home-page .site-footer ul {
    gap: 0.12rem;
  }

  .home-page .footer-bottom {
    padding: 9px 0;
    font-size: 0.45rem;
  }
}

@media (max-width: 760px) {
  .home-page .header-inner {
    min-height: 34px;
  }

  .home-page .brand img {
    width: 78px;
  }

  .home-page .site-nav {
    gap: 3px;
    max-width: calc(100vw - 100px);
    font-size: 0.29rem;
  }

  .home-page .hero {
    min-height: 205px;
  }

  .home-page .hero-content {
    width: min(300px, calc(100% - 40px));
    padding: 23px 0;
  }

  .home-page .hero h1 {
    max-width: 285px;
    margin-bottom: 0.7rem;
    font-size: 1.18rem;
  }

  .home-page .hero-stats {
    width: 250px;
    margin-bottom: 0.75rem;
  }

  .home-page .hero-stat strong {
    font-size: 0.9rem;
  }

  .home-page .hero-stat span {
    font-size: 0.34rem;
  }

  .home-page .btn {
    min-height: 22px;
    padding: 0.34rem 0.58rem;
    font-size: 0.43rem;
  }

  .home-page .section {
    padding: 26px 0;
  }

  .home-page .section-title {
    font-size: 0.78rem;
  }

  .home-page .section-kicker {
    font-size: 0.45rem;
  }

  .home-page p {
    font-size: 0.48rem;
  }

  .home-intro-image img,
  .home-service-image img,
  .home-page .image-frame img {
    min-height: 118px;
  }

  .home-why {
    padding-top: 20px;
  }

  .home-feature-grid {
    gap: 4px;
    margin-top: 12px;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
  }

  .home-feature-card h3 {
    font-size: 0.36rem;
  }

  .home-feature-card p {
    font-size: 0.31rem;
  }

  .home-orange-panel {
    padding: 10px 0;
  }

  .orange-mock-grid {
    gap: 10px;
  }

  .temp-card {
    min-height: 38px;
    padding-right: 10px;
  }

  .temp-card strong {
    font-size: 1.25rem;
  }

  .temp-card span {
    font-size: 0.33rem;
  }

  .orange-service-list {
    gap: 3px 6px;
    font-size: 0.31rem;
  }

  .tick-list li {
    font-size: 0.45rem;
  }

  .home-page .cta {
    padding: 28px 0;
  }

  .home-page .cta h2 {
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
  }

  .equipment-shell {
    padding: 11px;
  }

  .home-page .equipment-grid {
    gap: 6px;
  }

  .home-page .equipment-card h3 {
    font-size: 0.39rem;
  }

  .home-page .equipment-card p {
    font-size: 0.29rem;
  }

  .home-page .testimonial-card {
    padding: 8px;
  }

  .home-page .quote-mark {
    font-size: 0.95rem;
  }

  .home-page .testimonial-card p {
    font-size: 0.32rem;
  }

  .home-page .testimonial-card h3 {
    font-size: 0.36rem;
  }
}
