@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #000621;
  --navy-900: #00104a;
  --navy-800: #001b68;
  --navy-700: #07318d;
  --gold-500: #d7aa35;
  --gold-400: #f1c75a;
  --gold-300: #ffe08a;
  --ink: #101522;
  --muted: #5e6678;
  --paper: #f7f6f1;
  --white: #ffffff;
  --line: rgba(215, 170, 53, 0.28);
  --shadow: 0 22px 60px rgba(2, 8, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  background: var(--navy-950);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-950);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overscroll-behavior-y: none;
  font-optical-sizing: auto;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 44px);
  color: var(--white);
  background: rgba(0, 6, 33, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 176px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a,
.text-link {
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover,
.text-link:hover {
  color: var(--gold-400);
}

.header-call,
.button {
  min-height: 44px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-call,
.button-primary {
  color: var(--navy-950);
  border-color: rgba(123, 87, 10, 0.38);
  background:
    linear-gradient(135deg, #fff0a8 0%, var(--gold-400) 42%, #c88f16 100%);
  box-shadow:
    0 14px 28px rgba(0, 6, 33, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(78, 48, 0, 0.2);
}

.header-call::before,
.button-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 42%);
}

.header-call:hover,
.button-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 87, 10, 0.55);
  box-shadow:
    0 18px 38px rgba(0, 6, 33, 0.28),
    0 0 0 3px rgba(215, 170, 53, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(78, 48, 0, 0.24);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 170, 53, 0.56);
  background: rgba(255, 255, 255, 0.12);
}

.button-sales {
  gap: 10px;
  color: var(--white);
  border-color: rgba(0, 16, 74, 0.42);
  background:
    linear-gradient(135deg, var(--navy-800), var(--navy-950)),
    var(--navy-900);
  box-shadow:
    0 10px 24px rgba(0, 6, 33, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-sales svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button-sales:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 170, 53, 0.58);
  box-shadow:
    0 14px 30px rgba(0, 6, 33, 0.2),
    0 0 0 3px rgba(0, 16, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.button-sales:hover svg {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

main {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

section[id] {
  scroll-margin-top: 96px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 6, 33, 0.98) 0%, rgba(0, 16, 74, 0.9) 36%, rgba(0, 6, 33, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 6, 33, 0.84) 0%, rgba(0, 6, 33, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: max(16px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 16, 74, 0.12);
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(215, 170, 53, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow,
.legal-hero .eyebrow {
  border-color: rgba(215, 170, 53, 0.36);
  color: var(--gold-300);
  background: rgba(0, 6, 33, 0.44);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-400);
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.14rem;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.quick-facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 0.88rem;
}

.achievement-list span {
  flex: 0 1 calc(50% - 5px);
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 16, 74, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy-800);
  background: rgba(215, 170, 53, 0.13);
  font-weight: 800;
  font-size: 0.88rem;
  text-align: center;
}

.services,
.team,
.contact {
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.services {
  padding-top: 84px;
}

.services-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  border: 1px solid rgba(0, 16, 74, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 6, 33, 0.07);
}

.service-card {
  min-height: 238px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 170, 53, 0.55);
  box-shadow: 0 18px 44px rgba(0, 6, 33, 0.11);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  color: var(--navy-900);
  font-weight: 900;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.achievement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.team-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.team {
  background:
    linear-gradient(135deg, rgba(0, 16, 74, 0.96), rgba(0, 6, 33, 0.98)),
    var(--navy-950);
}

.team .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.team-member {
  position: relative;
  display: grid;
  grid-template-rows: clamp(300px, 30vw, 390px) 1fr;
  overflow: hidden;
  border: 1px solid rgba(215, 170, 53, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.team-member::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0) 60%, transparent 100%);
  transform: translateX(-130%);
}

.member-media {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.member-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 6, 33, 0.62), rgba(0, 6, 33, 0));
}

.member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.team-member-meister .member-media img {
  object-position: 50% 46%;
}

.team-member-owner .member-media img {
  object-position: 50% 43%;
}

.member-copy {
  min-height: 360px;
  padding: clamp(24px, 4vw, 38px);
}

.member-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.team-member h3 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  color: var(--white);
}

.team-member-owner {
  background:
    linear-gradient(135deg, rgba(215, 170, 53, 0.14), rgba(255, 255, 255, 0.035) 46%),
    rgba(255, 255, 255, 0.055);
}

.team-member-meister {
  background:
    linear-gradient(135deg, rgba(7, 49, 141, 0.32), rgba(255, 255, 255, 0.035) 48%),
    rgba(255, 255, 255, 0.055);
}

.team .achievement-list span {
  border-color: rgba(215, 170, 53, 0.34);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .team-split .team-member:hover {
    border-color: rgba(215, 170, 53, 0.58);
    box-shadow: 0 30px 68px rgba(0, 0, 0, 0.34);
  }

  .team-split .team-member:hover::before {
    animation: glass-shine 760ms ease forwards;
  }

  .team-member:hover .member-media img {
    transform: scale(1.045);
  }
}

@keyframes glass-shine {
  from {
    transform: translateX(-130%);
  }

  to {
    transform: translateX(130%);
  }
}

.profile-role {
  margin: 0 0 8px;
  color: var(--gold-300) !important;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.sales {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(215, 170, 53, 0.1), rgba(255, 255, 255, 0) 42%),
    var(--paper);
}

.sales-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.mobility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.mobility-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(0, 16, 74, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 6, 33, 0.07);
}

.mobility-card-copy {
  padding: clamp(24px, 4vw, 38px);
}

.mobility-card h3 {
  color: var(--navy-900);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  text-wrap: balance;
}

.mobility-card .button {
  margin-top: 18px;
}

.mobility-actions {
  display: grid;
  margin-top: 22px;
}

.mobility-actions .button {
  width: 100%;
}

.mobility-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.mobility-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 16, 74, 0.22), rgba(0, 16, 74, 0));
  pointer-events: none;
}

.mobility-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact {
  padding: 64px 0;
  background:
    linear-gradient(135deg, rgba(0, 27, 104, 0.96), rgba(0, 6, 33, 0.98)),
    var(--navy-950);
}

.contact-layout {
  display: block;
}

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

.contact-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-link {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(215, 170, 53, 0.25);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 170, 53, 0.58);
  background: rgba(255, 255, 255, 0.09);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 170, 53, 0.42);
  border-radius: 50%;
  color: var(--gold-300);
  background: rgba(215, 170, 53, 0.1);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-whatsapp {
  color: #57d38c;
}

.contact-link strong,
.contact-link small {
  display: block;
  min-width: 0;
}

.contact-link strong {
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
}

.contact-link small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  color: rgba(255, 255, 255, 0.62);
  background: #000416;
  padding: 18px 0;
  font-size: 0.92rem;
}

.footer-layout {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-layout a:hover {
  color: var(--gold-400);
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 150px 0 74px;
  background:
    linear-gradient(135deg, rgba(0, 16, 74, 0.96), rgba(0, 6, 33, 0.98)),
    var(--navy-950);
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
}

.legal-content {
  padding: 64px 0 84px;
}

.legal-card {
  max-width: 860px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(0, 16, 74, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 6, 33, 0.07);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--navy-700);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--white);
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(2, 8, 23, 0.96);
  }

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

  .main-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: right 24%;
  }

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

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

  .team-split {
    grid-template-columns: 1fr;
  }

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

  .mobility-card .button {
    justify-self: start;
  }
}

@media (min-width: 1400px) {
  .hero-media img {
    object-position: right 16%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 142px;
    height: 48px;
  }

  .main-nav {
    top: 70px;
  }

  .hero {
    min-height: 680px;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 6, 33, 0.97), rgba(0, 6, 33, 0.72)),
      linear-gradient(0deg, rgba(0, 6, 33, 0.86), rgba(0, 6, 33, 0.12));
  }

  .hero-content {
    margin-inline: 12px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-actions .button,
  .mobility-actions .button {
    width: 100%;
  }

  .quick-facts {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-facts span {
    width: 100%;
  }

  .services,
  .sales,
  .team,
  .contact {
    padding-block: 54px;
  }

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

  .contact {
    padding-block: 42px;
  }

  .contact-heading {
    margin-bottom: 18px;
  }

  .contact-heading h2 {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

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

  .contact-link {
    min-height: 58px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
  }

  .contact-icon svg {
    width: 17px;
    height: 17px;
  }

  .contact-link strong {
    font-size: 0.86rem;
  }

  .contact-link small {
    font-size: 0.7rem;
  }

  .mobility-card h3 {
    font-size: clamp(1.25rem, 6.4vw, 1.6rem);
  }

  .team-member {
    grid-template-rows: minmax(240px, 62vw) 1fr;
  }

  .member-copy {
    min-height: auto;
  }

  .footer-layout {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
