:root {
  --red: #d31f26;
  --red-dark: #a8181e;
  --black: #111111;
  --yellow: #f5c518;
  --white: #ffffff;
  --off-white: #f7f6f4;
  --grey: #5c5c5c;
  --grey-light: #e8e6e3;
  --shadow: 0 12px 40px rgba(17, 17, 17, 0.12);
  --radius: 14px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--off-white);
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(247, 246, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-light);
}

.logo img {
  height: clamp(48px, 10vw, 64px);
  width: auto;
}

.header-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--red);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--red-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 620px);
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.45) 55%),
    url("assets/hero.jpg") center / cover no-repeat,
    linear-gradient(160deg, #2d5a3d 0%, #4a7c59 35%, #6b8f71 60%, #8fa888 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(245, 197, 24, 0.15),
    transparent 50%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: var(--white);
}

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  opacity: 0.95;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* Fleet */
.fleet {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--white);
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.fleet-copy h2,
.local-copy h2,
.services h2,
.download h2,
.contact-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.fleet-copy > p {
  margin: 0 0 1.5rem;
  color: var(--grey);
  max-width: 52ch;
}

.fleet-tiers {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.fleet-tiers li {
  padding: 1rem 1.15rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
}

.fleet-tiers strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.fleet-tiers span {
  display: block;
  color: var(--grey);
  font-size: 0.92rem;
}

.fleet-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--grey);
  max-width: 48ch;
}

.fleet-visual img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  filter: drop-shadow(var(--shadow));
}

/* Local */
.local {
  padding: clamp(3rem, 6vw, 4rem) 0;
  background: var(--off-white);
}

.local-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.local-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.local-copy p {
  margin: 0;
  color: var(--grey);
  max-width: 48ch;
}

/* Services */
.services {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--white);
}

.section-intro {
  margin: 0 0 2.5rem;
  color: var(--grey);
  max-width: 58ch;
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  background: var(--yellow);
  border-radius: 12px;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.95rem;
}

/* Contact */
.contact-strip {
  padding: clamp(3rem, 6vw, 4rem) 0;
  background: var(--black);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.contact-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.phone-large {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--yellow);
  text-decoration: none;
}

.phone-large:hover {
  color: var(--white);
}

/* Download */
.download {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, var(--off-white) 0%, #efecea 100%);
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.download-copy p {
  margin: 0;
  color: var(--grey);
  max-width: 48ch;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.25rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey);
}

@media (max-width: 768px) {
  .fleet-layout,
  .local-layout {
    grid-template-columns: 1fr;
  }

  .local-layout {
    display: flex;
    flex-direction: column;
  }

  .local-visual {
    order: -1;
  }

  .fleet-visual img {
    max-width: 320px;
  }

  .download-inner {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .store-link {
    flex: 0 1 auto;
  }
}

@media (max-width: 480px) {
  .header-phone {
    font-size: 0.9rem;
  }

  .logo img {
    height: 42px;
  }
}
