:root {
  --yellow: #f8b400;
  --yellow-soft: #ffd56a;
  --yellow-pale: #fff4d7;
  --black: #101014;
  --ink: #202027;
  --muted: #70727a;
  --line: #ece4d4;
  --paper: #fffaf0;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(24, 22, 18, 0.12);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f7f7;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 4%, rgba(248, 180, 0, 0.12), transparent 22%),
    radial-gradient(circle at 92% 22%, rgba(248, 180, 0, 0.13), transparent 26%);
}

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

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

button,
a {
  font: inherit;
}

.topbar {
  position: relative;
  z-index: 60;
  background: var(--yellow);
  min-height: 48px;
}

.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 48px;
  margin: 0 auto;
  padding: 0 22px;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
  clip-path: polygon(28px 0, 100% 0, calc(100% - 42px) 100%, 0 100%);
}

.topbar__inner a,
.topbar__inner span {
  font-size: 0.92rem;
  white-space: nowrap;
}

.topbar__social {
  margin-left: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(236, 228, 212, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand-pin {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: none;
  border-radius: 50% 50% 50% 10%;
  background: var(--yellow);
  transform: rotate(-45deg);
  box-shadow: 0 16px 35px rgba(248, 180, 0, 0.28);
}

.brand-pin::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--white);
}

.brand-pin span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--black);
  font-weight: 1000;
  transform: rotate(45deg);
}

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

.brand-text strong {
  color: var(--yellow);
  font-size: 1.36rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.brand-text span {
  display: inline-flex;
  width: max-content;
  margin-top: 2px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: #3b3b3f;
  font-size: 0.78rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: #25252a;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.header-call {
  gap: 10px;
  padding: 0 25px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 14px 28px rgba(248, 180, 0, 0.28);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 1000;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.92) 0 63%, rgba(255, 235, 176, 0.58) 63% 100%),
    var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(248, 180, 0, 0.08);
}

.hero::before {
  width: 560px;
  height: 560px;
  left: -170px;
  top: -30px;
}

.hero::after {
  width: 420px;
  height: 420px;
  left: 48px;
  bottom: -120px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.intro-copy h2,
.yellow-callout h2,
.contact-panel h2 {
  margin: 14px 0 18px;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
}

.hero-copy p,
.intro-copy p,
.yellow-callout p,
.service-card p,
.process-grid p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  padding: 0 24px;
}

.button--dark {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 30px rgba(16, 16, 20, 0.18);
}

.button--light {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.06);
}

.hero-slider {
  position: relative;
  overflow: visible;
  min-height: 450px;
  border-radius: 46px;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: -28px -28px 86px 120px;
  border: 7px solid rgba(248, 180, 0, 0.46);
  border-radius: 52px;
}

.slider-track {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border-radius: 42px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.75s ease, transform 0.9s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.02) 0%, rgba(16, 16, 20, 0.2) 44%, rgba(16, 16, 20, 0.82) 100%),
    rgba(255, 222, 140, 0.18);
}

.slide-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 34px;
  color: var(--white);
}

.slide-badge {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--black);
  background: rgba(248, 180, 0, 0.92);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-overlay h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.slide-overlay p {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(16, 16, 20, 0.66);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-button--prev {
  left: 18px;
}

.slider-button--next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.is-active {
  width: 34px;
  background: var(--yellow);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 84px;
  background: var(--white);
}

.intro-media {
  position: relative;
}

.intro-media::before {
  content: "";
  position: absolute;
  inset: 48px 80px 0 78px;
  z-index: 0;
  border: 7px dashed rgba(248, 180, 0, 0.55);
  border-radius: 50%;
}

.intro-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.phone-chip {
  position: absolute;
  left: 22px;
  top: 0;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px 22px;
  border-radius: 999px;
  color: var(--white);
  background: #7d7e80;
  box-shadow: var(--shadow);
}

.phone-chip span {
  color: #fff2c4;
  font-size: 0.85rem;
  font-weight: 900;
}

.phone-chip strong {
  font-size: 1.02rem;
}

.intro-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--white);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 1000;
}

.yellow-callout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 82px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--yellow);
}

.yellow-callout::before,
.yellow-callout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  background:
    linear-gradient(45deg, var(--black) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(45deg, transparent 75%, var(--black) 75%) 0 0 / 34px 34px,
    linear-gradient(45deg, transparent 25%, var(--black) 25%, var(--black) 50%, transparent 50%, transparent 75%, var(--black) 75%) 17px 17px / 34px 34px,
    var(--yellow);
}

.yellow-callout::before {
  top: 0;
}

.yellow-callout::after {
  bottom: 0;
}

.yellow-callout h2 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.yellow-callout p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.yellow-callout__action {
  display: grid;
  justify-items: start;
  gap: 22px;
  padding-left: 48px;
  border-left: 2px solid rgba(255, 255, 255, 0.72);
}

.yellow-callout__action strong {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 1000;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.section-heading .eyebrow::after {
  content: "";
  width: 58px;
  height: 5px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

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

.service-card,
.stop-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card img,
.stop-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card > div,
.stop-card {
  position: relative;
}

.service-card > div {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.service-card span {
  position: absolute;
  right: 24px;
  top: -24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-weight: 1000;
}

.service-card h3,
.stop-card h3,
.process-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.service-card a,
.stop-card a {
  color: var(--yellow);
  font-weight: 1000;
}

.stops-section {
  padding-top: 76px;
}

.stop-grid {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.stop-card {
  padding-bottom: 24px;
}

.stop-card h3,
.stop-card p,
.stop-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.stop-card h3 {
  margin-top: 22px;
}

.stop-card p {
  color: var(--muted);
  font-weight: 800;
}

.process-section {
  margin-top: 90px;
  padding: 78px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--black);
}

.section-heading--light h2 {
  color: var(--white);
}

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

.process-grid article {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 1000;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 32px));
  margin: -36px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.stats-strip div {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 26px 18px;
  color: var(--black);
  background: var(--yellow);
  text-align: center;
}

.stats-strip strong {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 1000;
}

.stats-strip span {
  color: rgba(16, 16, 20, 0.74);
  font-weight: 900;
}

.contact-section {
  padding-bottom: 88px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  padding: 44px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(248, 180, 0, 0.28), transparent 28%),
    var(--black);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--white);
  max-width: 13ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-panel p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list span {
  color: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1.28rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #111115;
}

.site-footer .brand-text span {
  background: rgba(255, 255, 255, 0.14);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a:last-child {
  color: var(--yellow);
  font-weight: 1000;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .topbar__social,
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero__inner,
  .intro-section,
  .yellow-callout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .yellow-callout__action {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .topbar__inner {
    justify-content: center;
    gap: 14px;
    clip-path: none;
  }

  .topbar__inner a:nth-child(2),
  .topbar__inner span:not(.topbar__social) {
    display: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
  }

  .brand-pin {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0 68px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-slider,
  .slider-track {
    min-height: 420px;
  }

  .hero-slider::before {
    inset: -16px -12px 70px 58px;
    border-width: 5px;
  }

  .intro-section,
  .section {
    padding-top: 62px;
  }

  .service-grid,
  .process-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

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

  .yellow-callout {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding-bottom: 116px;
  }

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 56px;
    border-radius: 18px;
    color: var(--black);
    background: var(--yellow);
    font-weight: 1000;
    box-shadow: 0 16px 34px rgba(16, 16, 20, 0.18);
  }

  .mobile-cta a:last-child {
    color: var(--white);
    background: #25d366;
  }
}

@media (max-width: 520px) {
  .topbar__inner,
  .hero__inner,
  .intro-section,
  .section,
  .stats-strip {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-text span {
    font-size: 0.7rem;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

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

  .hero-slider,
  .slider-track {
    min-height: 390px;
    border-radius: 28px;
  }

  .hero-slider::before {
    display: none;
  }

  .slide-overlay {
    padding: 22px;
  }

  .slide-overlay h2 {
    font-size: 2.05rem;
  }

  .slider-button {
    top: 18px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .slider-button--prev {
    left: 16px;
  }

  .slider-button--next {
    right: 16px;
  }

  .intro-media::before {
    display: none;
  }

  .phone-chip {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-bottom: 14px;
    border-radius: 22px;
  }

  .yellow-callout h2,
  .contact-panel h2 {
    font-size: 2.3rem;
  }

  .service-card img,
  .stop-card img {
    height: 190px;
  }

  .process-grid article,
  .contact-panel {
    padding: 24px;
  }
}

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

  .slide,
  .slider-dots button,
  .button,
  .header-call {
    transition: none;
  }
}
