:root {
  --brand-primary: #f2a23a;
  --brand-primary-dark: #d88d2f;
  --brand-dark: #121212;
  --brand-dark-soft: #1e1e1e;
  --brand-light: #fff8ef;
  --white: #ffffff;
  --text: #1c1c1c;
  --muted: #626262;
  --border: rgba(18, 18, 18, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--brand-light) 0%, #fff 100%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark-soft);
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-primary);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.1;
  color: var(--brand-dark);
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 1.08rem;
  color: #393939;
  max-width: 64ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

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

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.site-nav a {
  font-weight: 700;
  color: #2c2c2c;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(242, 162, 58, 0.28);
}

.btn-secondary {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--brand-dark);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 42px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 162, 58, 0.22), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(0, 0, 0, 0.06), transparent 20%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 12% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 36px solid rgba(18, 18, 18, 0.035);
}

.hero-grid,
.story-grid,
.quote-grid,
.location-grid,
.social-banner,
.footer-wrap,
.info-strip,
.review-grid,
.faq-grid,
.route-boxes {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 42px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.left-actions {
  justify-content: flex-start;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.hero-points li,
.quick-tag,
.chip-cloud span {
  border-radius: 999px;
  font-weight: 800;
}

.hero-points li {
  padding: 10px 14px;
  background: rgba(18, 18, 18, 0.05);
}

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

.route-card,
.info-strip article,
.info-card,
.contact-card,
.quote-form,
.stats-box,
.map-placeholder,
.review-card,
.faq-card,
.brand-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.route-card {
  padding: 22px;
}

.route-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-card {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,248,239,0.92));
  border: 1px solid rgba(18,18,18,0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-logo-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,0.08);
  background: #fff;
}

.hero-logo-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges span {
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  background: rgba(18, 18, 18, 0.06);
}

.hero-note {
  margin-top: 18px;
  padding: 18px 18px 2px;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.04);
}

.strip-section {
  padding-top: 0;
}

.info-strip {
  grid-template-columns: repeat(3, 1fr);
}

.info-strip article {
  padding: 22px;
}

.info-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.brand-logo-card {
  min-height: 108px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.brand-logo-card img {
  width: 100%;
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
}

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

.cards-grid.expanded {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.08);
}

.info-card a {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  color: var(--brand-primary-dark);
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip-cloud span {
  padding: 11px 16px;
  background: rgba(18, 18, 18, 0.06);
}

.story-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.stats-box {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.stats-box div {
  padding: 18px;
  border-radius: 18px;
  background: var(--brand-light);
  border: 1px solid rgba(18,18,18,0.06);
}

.stats-box strong {
  display: block;
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.1;
}

.stats-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.quote-grid,
.location-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-tag {
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: var(--white);
  cursor: pointer;
  padding: 10px 15px;
}

.quick-tag:hover {
  background: var(--brand-primary);
}

.quote-form {
  padding: 28px;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  font-weight: 800;
  font-size: 0.96rem;
}

input {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: #fff;
}

input:focus {
  outline: 3px solid rgba(242, 162, 58, 0.18);
  border-color: var(--brand-primary-dark);
}

.wide {
  width: 100%;
  margin-top: 18px;
}

.review-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card,
.faq-card,
.contact-card {
  padding: 24px;
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--brand-primary-dark);
  margin-bottom: 12px;
}

.map-box {
  min-height: 100%;
}

.map-placeholder {
  min-height: 100%;
  padding: 18px;
  background: linear-gradient(135deg, rgba(242,162,58,0.16), rgba(18,18,18,0.04));
  display: grid;
  align-content: start;
}

.map-placeholder span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.map-placeholder iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
  display: block;
}

.map-placeholder a {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  font-weight: 800;
  color: var(--brand-dark);
}

.social-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: var(--brand-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.social-banner h2,
.social-banner .eyebrow,
.social-banner p {
  color: var(--white);
}

.social-banner .eyebrow::before {
  background: var(--brand-primary);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.social-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-weight: 800;
}

.site-footer {
  padding: 28px 0 40px;
  background: #0f0f0f;
  color: rgba(255,255,255,0.84);
}

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

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #0c2011;
  font-weight: 900;
  box-shadow: 0 18px 28px rgba(37, 211, 102, 0.25);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  margin: 5px auto;
}

@media (max-width: 1180px) {
  .brand-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-grid.expanded {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .story-grid,
  .quote-grid,
  .location-grid,
  .footer-wrap,
  .social-banner,
  .info-strip,
  .review-grid,
  .faq-grid,
  .route-boxes {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.nav-cta) {
    padding: 10px 4px;
  }

  .field-grid,
  .cards-grid,
  .cards-grid.expanded,
  .brand-logo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .brand {
    max-width: calc(100% - 72px);
  }

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

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

  .hero-card,
  .quote-form,
  .contact-card,
  .map-placeholder,
  .social-banner,
  .stats-box,
  .review-card,
  .faq-card,
  .route-card,
  .info-strip article,
  .brand-logo-card {
    padding: 20px;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
    min-height: 54px;
    padding: 0 16px;
  }

  .map-placeholder iframe {
    height: 300px;
  }
}
