:root {
  --paper: #f5faef;
  --paper-strong: #edf5e7;
  --surface: #ffffff;
  --ink: #13231b;
  --muted: #5e6c63;
  --green: #1f8f55;
  --green-deep: #0d5431;
  --green-soft: #e4f4df;
  --yellow: #f4d233;
  --lime: #d8f45b;
  --teal: #5cb8ad;
  --line: rgba(19, 35, 27, 0.12);
  --line-strong: rgba(19, 35, 27, 0.2);
  --shadow: 0 22px 70px rgba(18, 63, 39, 0.14);
  --shadow-soft: 0 12px 34px rgba(18, 63, 39, 0.09);
  --radius: 8px;
  --shell: min(1160px, calc(100vw - 40px));
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --z-header: 40;
  --z-menu: 50;
  --z-fixed: 80;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 143, 85, 0.45);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: var(--z-fixed);
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  padding: 0.7rem 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  width: var(--shell);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(18, 63, 39, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.78rem;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(13, 84, 49, 0.16);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  color: #405249;
  padding: 0.56rem 0.78rem;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 160ms ease, color 160ms ease;
}

.desktop-nav a:hover {
  background: var(--green-soft);
  color: var(--green-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.call-link,
.whatsapp-link,
.primary-action,
.secondary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  gap: 0.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.call-link {
  border: 1px solid rgba(13, 84, 49, 0.18);
  background: #f7fbf3;
  color: var(--green-deep);
  padding: 0.7rem 0.86rem;
}

.call-link svg,
.primary-action svg,
.secondary-action svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-link,
.primary-action,
.text-action {
  border: 1px solid rgba(244, 210, 51, 0.64);
  background: var(--yellow);
  color: #253212;
  padding: 0.82rem 1rem;
  box-shadow: 0 12px 24px rgba(244, 210, 51, 0.23);
}

.secondary-action {
  border: 1px solid rgba(13, 84, 49, 0.18);
  background: var(--surface);
  color: var(--green-deep);
  padding: 0.82rem 1rem;
}

.call-link:hover,
.whatsapp-link:hover,
.primary-action:hover,
.secondary-action:hover,
.text-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(13, 84, 49, 0.16);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 24px 0 0;
}

.hero-stage {
  position: relative;
  min-height: 672px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 39%;
  height: 150px;
  border-radius: var(--radius);
  background: var(--yellow);
  z-index: -1;
}

.hero-photo {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border: 1px solid rgba(19, 35, 27, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: absolute;
  left: 28px;
  top: 50%;
  width: min(500px, calc(100% - 56px));
  transform: translateY(-50%);
  border: 1px solid rgba(19, 35, 27, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-panel h1,
.section-heading h2,
.area-copy h2,
.process-copy h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-panel h1 {
  max-width: 10ch;
  font-size: 4.4rem;
}

.hero-text {
  max-width: 39rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.45rem;
}

.service-ticket {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.ticket-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 0.28rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-ticket strong {
  display: block;
  margin-top: 0.72rem;
  font-size: 1.06rem;
  font-weight: 900;
}

.service-ticket p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-route {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-route span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-deep);
  padding: 0.4rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 900;
}

.quickbar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.quickbar > div,
.quickbar > a {
  display: grid;
  gap: 0.18rem;
  min-height: 96px;
  align-content: center;
  background: var(--surface);
  padding: 1rem 1.15rem;
}

.quickbar span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.quickbar strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 560px;
  margin-bottom: 0;
}

.section-heading h2,
.area-copy h2,
.process-copy h2,
.contact-panel h2 {
  font-size: 3.35rem;
}

.section-heading p,
.area-copy p,
.contact-panel p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
  text-wrap: pretty;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.18rem;
  box-shadow: 0 10px 28px rgba(18, 63, 39, 0.05);
}

.service-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(31, 143, 85, 0.18);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-deep);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.wash-icon::before {
  width: 30px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.wash-icon::after {
  width: 26px;
  height: 4px;
  bottom: 16px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.22;
}

.runner-icon::before {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, currentColor 0 5px, rgba(31, 143, 85, 0.2) 5px 10px);
}

.runner-icon::after {
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.22;
}

.stain-icon::before {
  width: 31px;
  height: 31px;
  border-radius: 52% 48% 58% 42%;
  background: currentColor;
  opacity: 0.2;
  transform: rotate(18deg);
}

.stain-icon::after {
  width: 10px;
  height: 10px;
  right: 16px;
  top: 16px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.48;
}

.pack-icon::before {
  width: 34px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.pack-icon::after {
  width: 18px;
  height: 3px;
  top: 26px;
  border-radius: 999px;
  background: currentColor;
}

.service-card h3 {
  margin: 1.2rem 0 0.56rem;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-card p,
.process-list span,
.proof-grid p,
.faq-answer p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  text-wrap: pretty;
}

.area-section {
  padding: 5.6rem 0;
  background: #153d2a;
  color: var(--surface);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 4.5rem;
}

.area-copy .eyebrow,
.area-copy h2 {
  color: var(--surface);
}

.area-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.text-action {
  width: fit-content;
  margin-top: 1.4rem;
}

.route-board {
  display: grid;
  gap: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.35rem;
}

.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
  min-height: 180px;
  align-items: center;
}

.route-track::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(216, 244, 91, 0.54);
}

.route-track span {
  position: relative;
  display: grid;
  min-height: 80px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f8fbf3;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.route-track span::before {
  content: "";
  position: absolute;
  top: -15px;
  width: 14px;
  height: 14px;
  border: 3px solid #153d2a;
  border-radius: 50%;
  background: var(--yellow);
}

.route-track span:nth-child(2),
.route-track span:nth-child(4) {
  transform: translateY(28px);
}

.route-note {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.route-note strong {
  font-size: 1.18rem;
  font-weight: 900;
}

.route-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.route-note a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #253212;
  padding: 0.65rem 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.process-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 4rem;
}

.process-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 32% 52%;
  border: 1px solid rgba(19, 35, 27, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.process-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.process-list li::before {
  content: counter(steps);
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-deep);
  color: var(--lime);
  font-weight: 900;
}

.process-list strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(18, 63, 39, 0.05);
}

.proof-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-section {
  background: #fbfdf8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-deep);
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.faq-item button[aria-expanded="true"] span::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  display: block;
}

.contact-section {
  padding: 5.6rem 0;
  background: #153d2a;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.site-footer {
  background: #0e2418;
  color: var(--surface);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.site-footer p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.mobile-sticky-actions {
  display: none;
}

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

  .desktop-nav {
    justify-content: flex-end;
  }

  .call-link span {
    display: none;
  }

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

  .area-grid,
  .process-grid,
  .proof-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .area-grid,
  .process-grid,
  .faq-grid {
    gap: 2rem;
  }

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

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

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: var(--z-menu);
    grid-template-columns: 1fr;
    gap: 0.35rem;
    border: 1px solid rgba(19, 35, 27, 0.1);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 0.7rem;
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .mobile-menu {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-radius: var(--radius);
    padding: 0.7rem 0.9rem;
    color: var(--ink);
    font-weight: 850;
  }

  .mobile-menu a:hover {
    background: var(--green-soft);
  }
}

@media (max-width: 820px) {
  .hero-stage {
    min-height: 0;
  }

  .hero-stage::before {
    width: 48%;
    height: 108px;
  }

  .hero-photo {
    height: 390px;
  }

  .hero-panel {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 24px);
    margin: -48px auto 0;
    transform: none;
    padding: 1.5rem;
  }

  .hero-panel h1 {
    max-width: 12ch;
    font-size: 3.2rem;
  }

  .service-ticket {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% - 24px);
    margin: 0.8rem auto 0;
  }

  .hero-route {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.8rem;
  }

  .quickbar {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .quickbar > div,
  .quickbar > a {
    min-height: 78px;
  }

  .section {
    padding: 4.4rem 0;
  }

  .section-heading h2,
  .area-copy h2,
  .process-copy h2,
  .contact-panel h2 {
    font-size: 2.35rem;
  }

  .route-note,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .route-note a,
  .contact-actions {
    justify-content: flex-start;
  }

  .process-media img {
    height: 390px;
  }

}

@media (max-width: 620px) {
  :root {
    --shell: min(100vw - 24px, 1160px);
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    top: 10px;
    min-height: 66px;
    margin-top: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-photo {
    height: 320px;
  }

  .hero-panel {
    padding: 1.18rem;
  }

  .hero-panel h1 {
    font-size: 2.72rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .service-ticket {
    display: none;
  }

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

  .primary-action,
  .secondary-action,
  .text-action {
    width: 100%;
  }

  .hero-route span {
    font-size: 0.82rem;
  }

  .section-heading h2,
  .area-copy h2,
  .process-copy h2,
  .contact-panel h2 {
    font-size: 2rem;
  }

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

  .service-card {
    min-height: auto;
  }

  .area-section,
  .contact-section {
    padding: 4rem 0;
  }

  .route-board {
    padding: 1rem;
  }

  .route-track {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .route-track::before {
    left: 24px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 2px;
    height: auto;
    transform: none;
  }

  .route-track span,
  .route-track span:nth-child(2),
  .route-track span:nth-child(4) {
    min-height: 56px;
    justify-content: start;
    padding-left: 3.2rem;
    transform: none;
  }

  .route-track span::before {
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
  }

  .process-media img {
    height: 310px;
  }

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

  .process-list li::before {
    grid-row: auto;
  }

  .contact-panel {
    padding: 1.18rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: var(--z-fixed);
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 0.55rem;
    border: 1px solid rgba(19, 35, 27, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    padding: 0.48rem;
    box-shadow: 0 16px 36px rgba(18, 63, 39, 0.2);
  }

  .mobile-sticky-actions a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 900;
  }

  .mobile-sticky-actions a:first-child {
    background: var(--yellow);
    color: #253212;
  }

  .mobile-sticky-actions a:last-child {
    background: var(--green-deep);
    color: var(--surface);
  }
}

@media (max-width: 390px) {
  .hero-panel h1 {
    font-size: 2.46rem;
  }

  .section-heading h2,
  .area-copy h2,
  .process-copy h2,
  .contact-panel h2 {
    font-size: 1.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
