:root {
  --bg: #eef3f4;
  --band: #e5ecee;
  --frost: #f8fbfb;
  --ink: #16201f;
  --muted: #5d6b6c;
  --line: #ccd8da;
  --paper: rgba(248, 251, 251, 0.84);
  --red: #c4212f;
  --red-dark: #901926;
  --green: #118446;
  --green-dark: #0f5f3b;
  --green-soft: #dcefe7;
  --blue: #164b96;
  --ice: #bceaf2;
  --ice-soft: rgba(188, 234, 242, 0.34);
  --amber: #d99b2b;
  --shadow: 0 24px 70px rgba(22, 32, 31, 0.14);
  --soft-shadow: 0 18px 54px rgba(22, 32, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbfb 0%, #e5ecee 46%, #f0f5f6 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 251, 251, 0.92);
  box-shadow: 0 10px 35px rgba(22, 32, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0;
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
}

.language-select select {
  width: auto;
  min-width: 66px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 8px 28px 8px 10px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  cursor: pointer;
}

.site-header.is-scrolled .language-select select {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 5vw, 72px) 110px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 27, 0.92) 0%, rgba(17, 64, 70, 0.68) 42%, rgba(20, 82, 84, 0.22) 74%),
    linear-gradient(0deg, rgba(190, 229, 235, 0.18), rgba(246, 252, 253, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ice), var(--green));
  box-shadow: 0 0 28px rgba(188, 234, 242, 0.52);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-strip {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 26px;
  left: clamp(20px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 940px;
  border: 1px solid rgba(188, 234, 242, 0.32);
  background: rgba(229, 236, 238, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-strip div {
  padding: 20px;
  background: rgba(20, 42, 45, 0.56);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 22px;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.intro {
  background: var(--bg);
}

.intro-grid,
.section-heading,
.fleet,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.intro p,
.section-heading p,
.fleet p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--band);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(188, 234, 242, 0.18), rgba(248, 251, 251, 0.84) 48%),
    var(--paper);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ice-soft), var(--green-soft));
  color: var(--green);
  font-weight: 800;
}

.service-card p,
.timeline p {
  color: var(--muted);
}

.workshop {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(188, 234, 242, 0.2), rgba(17, 132, 70, 0.08), rgba(248, 251, 251, 0.72)),
    var(--bg);
  color: var(--ink);
}

.workshop-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 132, 70, 0.22);
}

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

.workshop-content p {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-list span {
  padding: 10px 12px;
  border: 1px solid rgba(17, 132, 70, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(188, 234, 242, 0.22), rgba(255, 255, 255, 0.62));
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.partners {
  background: var(--band);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.partner-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(188, 234, 242, 0.14), rgba(248, 251, 251, 0.84) 48%),
    var(--paper);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.partner-grid img {
  width: 132px;
  height: 50px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}

.partner-grid p {
  color: var(--muted);
}

.fleet {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: var(--green);
  color: #fff;
}

.fleet p {
  color: rgba(255, 255, 255, 0.74);
}

.fleet-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.fleet-panel div {
  min-height: 152px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.fleet-panel strong,
.fleet-panel span {
  display: block;
}

.fleet-panel strong {
  font-size: 22px;
}

.fleet-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

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

.timeline div {
  position: relative;
  padding: 30px 28px;
  border-top: 3px solid var(--red);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.contact {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: var(--band);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: var(--bg);
}

.map-copy p {
  color: var(--muted);
  font-size: 18px;
}

.place-photo {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 4px solid var(--green);
  background:
    linear-gradient(180deg, rgba(188, 234, 242, 0.12), rgba(248, 251, 251, 0.84)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

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

.place-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-copy .button {
  margin-top: 18px;
}

.map-frame {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ice-soft), var(--green-soft));
  box-shadow: var(--soft-shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-details span {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(188, 234, 242, 0.16), rgba(248, 251, 251, 0.84) 54%),
    var(--paper);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #dfe8ea;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 960px) {
  .service-grid,
  .timeline,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .section-heading,
  .fleet,
  .workshop,
  .map-section,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 860px;
    padding: 112px 20px 250px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    right: 20px;
    left: 20px;
  }

  .service-grid,
  .timeline,
  .fleet-panel,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 112px;
  }

  .language-select span {
    display: none;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
  }
}
  border-top: 4px solid var(--green);
  border-top: 4px solid var(--green);
  border-top: 4px solid var(--green);
