:root {
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(15, 23, 42, 0.08);
  --text: #101114;
  --muted: #606773;
  --accent: #f05a22;
  --accent-dark: #d84d18;
  --max: 1220px;
  --content: 1060px;
  --shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 90, 34, 0.05), transparent 28rem),
    linear-gradient(180deg, #fcfcfd, #f6f6f7 50%, #f1f2f4);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    linear-gradient(90deg, rgba(16, 17, 20, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(16, 17, 20, 0.018) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 32%);
}

::selection {
  background: rgba(240, 90, 34, 0.18);
  color: #111111;
}

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

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

p,
li {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7.3rem);
}

h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.site-shell {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem max(1.2rem, calc((100vw - var(--max)) / 2));
  background: rgba(245, 245, 247, 0.74);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(16, 17, 20, 0.05);
}

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

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

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.42rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav ul,
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.4rem;
  padding: 0.1rem 0;
  color: #343843;
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.site-nav a::after,
.submenu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 34, 0.65), transparent);
  transform: scaleX(0.3);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav li.active > a,
.site-nav a:hover,
.site-nav a:focus-visible,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: #111111;
}

.site-nav li.active > a::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.submenu-toggle:hover::after,
.submenu-toggle:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav li:not(.has-submenu) {
  min-width: max-content;
}

.has-submenu {
  padding-right: 0;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: -0.8rem;
  right: -0.8rem;
  top: 100%;
  height: 1.2rem;
}

.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2.4rem;
  width: 100%;
  padding: 0.1rem 0;
  border: 0;
  background: transparent;
  color: #343843;
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.submenu-toggle::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  order: 2;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.submenu-toggle span {
  display: inline-block;
  flex: 1;
  text-align: left;
}

.submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1.2rem;
  min-width: 15rem;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 17, 20, 0.06);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu li + li {
  margin-top: 0.35rem;
}

.submenu a {
  width: 100%;
  min-height: 2.5rem;
  padding: 0 0.55rem;
  border-radius: 10px;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(15, 23, 42, 0.04);
}

.has-submenu.open .submenu,
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #111111;
}

main {
  width: 100%;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 78vh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #eceff3;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding:
    clamp(5rem, 8vw, 8rem)
    1.2rem
    clamp(3rem, 6vw, 5rem);
  max-width: 45rem;
  animation: fadeUp 800ms ease both;
}

.hero-copy .eyebrow {
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(240, 90, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin-top: 0.5rem;
}

.hero-copy p {
  margin-top: 1.3rem;
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  line-height: 1.65;
}

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

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

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(252, 252, 253, 0.96) 0%, rgba(252, 252, 253, 0.92) 22%, rgba(252, 252, 253, 0.64) 42%, rgba(252, 252, 253, 0.18) 68%, rgba(252, 252, 253, 0.02) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.02);
}

.hero--illustration {
  min-height: 72vh;
}

.hero--illustration .hero-media::before {
  background:
    linear-gradient(90deg, rgba(252, 252, 253, 0.98) 0%, rgba(252, 252, 253, 0.95) 28%, rgba(252, 252, 253, 0.68) 52%, rgba(252, 252, 253, 0.16) 74%, rgba(252, 252, 253, 0.02) 100%);
}

.hero--illustration .hero-media img {
  object-fit: contain;
  object-position: right center;
  padding:
    clamp(5rem, 8vw, 8rem)
    max(1.2rem, calc((100vw - var(--max)) / 2))
    clamp(3rem, 6vw, 5rem)
    48%;
}

.main-content {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 1.2rem 5rem;
}

.brand-showcase,
.grid,
.feature-band,
.section-head,
.split,
.service-grid,
.panel {
  margin-top: 4.2rem;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0 0;
}

.brand-showcase__logo {
  width: 160px;
  max-width: 100%;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.08));
  animation: floatLogo 7s ease-in-out infinite;
}

.brand-showcase__copy p {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

.panel {
  background: transparent;
}

.panel p + p,
.panel ul {
  margin-top: 1rem;
}

.intro-grid article,
.cta-panel,
.contact-card,
.legal-panel,
.route-panel,
.map-panel {
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 17, 20, 0.06);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  padding-left: 1rem;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(240, 90, 34, 0.9), rgba(240, 90, 34, 0.12));
}

.split,
.legal-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-tile {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(16, 17, 20, 0.06);
  color: #1d222d;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 1.32rem;
  text-transform: uppercase;
  position: relative;
  transition: transform 220ms ease, color 220ms ease;
}

.feature-tile::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff8b57);
  vertical-align: middle;
}

.feature-tile:hover {
  transform: translateX(8px);
  color: #111111;
}

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

.service-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(24rem, 52vw, 42rem);
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.service-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.1) 0%, rgba(16, 17, 20, 0.62) 72%, rgba(16, 17, 20, 0.84) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 70px);
  opacity: 0.65;
  pointer-events: none;
}

.service-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 34, 0.88), transparent);
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 260ms ease;
}

.service-banner:hover::after {
  transform: scaleX(1);
}

.service-banner__inner {
  width: min(100%, var(--content));
  padding: clamp(1.5rem, 3vw, 2.4rem) 1.2rem clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-banner .eyebrow,
.service-banner h3,
.service-banner p {
  color: #ffffff;
}

.service-banner h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.service-banner p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-banner__link {
  margin-top: 1.25rem;
}

.visual-panel img {
  aspect-ratio: 5 / 4;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.4rem 0;
}

.consent-map {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: #e9edf2;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.consent-map__placeholder {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 420px;
  padding: 2rem;
  text-align: center;
}

.consent-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.checklist {
  padding-left: 1.2rem;
}

.checklist li + li {
  margin-top: 0.7rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button,
.text-link {
  transition: 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -120%;
  width: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 320ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(16, 17, 20, 0.08);
  color: #111111;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  color: #ffffff;
}

.button:hover::before,
.button:focus-visible::before {
  left: 120%;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #ffffff;
  color: #111111;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-dark);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem max(1.2rem, calc((100vw - var(--max)) / 2)) 2.5rem;
  background: #ffffff;
  border-top: 1px solid rgba(16, 17, 20, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.footer-links a {
  color: #343843;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #111111;
}

.copyright {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 17, 20, 0.06);
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 50;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(24px);
}

.main-content > *,
.site-footer .footer-grid,
.site-footer .copyright {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.main-content > *.is-visible,
.site-footer .footer-grid.is-visible,
.site-footer .copyright.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.consent-manage {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .hero,
  .grid-2,
  .grid-3,
  .split,
  .legal-split,
  .feature-band,
  .service-grid,
  .footer-grid,
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .hero {
    min-height: 64vh;
  }

  .hero-copy {
    max-width: 34rem;
    padding-top: 4rem;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(252, 252, 253, 0.92) 0%, rgba(252, 252, 253, 0.84) 32%, rgba(252, 252, 253, 0.2) 72%, rgba(252, 252, 253, 0.02) 100%);
  }

  .hero--illustration .hero-media img {
    object-position: center bottom;
    padding: 14rem 1.2rem 2rem;
  }

  .service-banner {
    min-height: clamp(20rem, 70vw, 28rem);
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .brand-showcase__logo {
    width: 120px;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: block;
    padding: 0.9rem 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    padding-top: 0.85rem;
  }

  .site-header.nav-open .site-nav {
    display: block;
  }

  .site-nav > ul {
    flex-direction: column;
    align-items: start;
    gap: 0.75rem;
    width: 100%;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav li:not(.has-submenu) {
    min-width: 0;
  }

  .site-nav a {
    width: 100%;
  }

  .has-submenu {
    width: 100%;
  }

  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 0.7rem;
    padding: 0.5rem 0 0 0.8rem;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

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

  .brand span {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 38rem;
  }

  .hero-copy {
    max-width: none;
    padding: 4.8rem 1rem 2rem;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(252, 252, 253, 0.95) 0%, rgba(252, 252, 253, 0.9) 36%, rgba(252, 252, 253, 0.28) 76%, rgba(252, 252, 253, 0.04) 100%);
  }

  .hero--illustration .hero-media img {
    padding: 16rem 0.6rem 1.5rem;
  }

  .main-content {
    padding: 0 1rem 3.6rem;
  }

  .site-footer {
    padding: 2.4rem 1rem 2rem;
  }

  .cookie-banner {
    inset: auto 0.75rem 0.75rem 0.75rem;
  }
}
