:root {
  --red: #e10600;
  --red-light: #ff1a13;
  --red-dark: #9b0000;

  --black: #050505;
  --dark: #080809;
  --dark-soft: #101012;
  --card: #0d0d0f;

  --white: #ffffff;
  --grey: #a7a7ad;
  --grey-dark: #707078;

  --container: 1200px;
}


/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  background: var(--black);
  color: var(--white);

  overflow-x: hidden;
}

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

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

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease;
}

.nav-wrapper {
  min-height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

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

.brand-logo {
  width: 250px;
  height: 72px;

  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 38px;
}

.main-nav a {
  position: relative;

  color: rgba(255,255,255,0.78);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.5px;

  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--red);

  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 30px;

  background: var(--red);

  color: #fff;

  border: 1px solid var(--red);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.7px;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

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

  background: var(--red-light);

  box-shadow:
    0 14px 40px rgba(225,6,0,0.27);
}

.btn-small {
  min-height: 44px;

  padding: 0 22px;

  font-size: 12px;
}

.btn-secondary {
  background: rgba(255,255,255,0.035);

  border-color: rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);

  box-shadow: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.99) 0%,
      rgba(0,0,0,0.88) 45%,
      rgba(0,0,0,0.55) 100%
    ),
    radial-gradient(
      circle at 82% 48%,
      #29292e 0%,
      #101013 40%,
      #050505 72%
    );
}


/* Grid */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image:
    linear-gradient(
      to right,
      black,
      transparent 78%
    );

  pointer-events: none;
}


/* Huge word */

.hero-background-text {
  position: absolute;

  right: -70px;
  top: 48%;

  transform: translateY(-50%);

  color: rgba(255,255,255,0.018);

  font-size: clamp(180px,22vw,430px);
  font-weight: 900;

  letter-spacing: -22px;

  text-transform: uppercase;

  z-index: 1;

  user-select: none;
  pointer-events: none;
}


/* Vehicle */

.hero-visual {
  position: absolute;

  right: -4%;
  bottom: 4%;

  width: min(58vw,1050px);

  z-index: 3;

  pointer-events: none;

  will-change:
    transform,
    opacity;
}

.hero-visual::before {
  content: "";

  position: absolute;

  right: 8%;
  bottom: 5%;

  width: 70%;
  height: 50%;

  border-radius: 50%;

  background: rgba(225,6,0,0.27);

  filter: blur(110px);

  z-index: -1;
}

.hero-visual img {
  width: 100%;

  filter:
    drop-shadow(0 40px 70px rgba(0,0,0,0.95))
    contrast(1.06)
    saturate(1.05);

  animation:
    heroCarIn 1.2s cubic-bezier(.22,.9,.3,1) forwards;
}

@keyframes heroCarIn {

  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Hero overlay */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5,5,5,1),
      transparent 30%
    );

  z-index: 2;

  pointer-events: none;
}


/* Glows */

.hero-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: var(--red);

  filter: blur(120px);

  opacity: 0.16;

  pointer-events: none;
}

.hero-glow-left {
  left: -250px;
  bottom: -180px;
}

.hero-glow-right {
  right: -250px;
  top: -200px;
}


/* Hero text */

.hero-content {
  position: relative;

  z-index: 5;

  max-width: 760px;

  padding-top: 120px;
}

.hero-badge {
  display: inline-block;

  margin-bottom: 28px;

  padding: 10px 15px;

  background: rgba(225,6,0,0.08);

  border: 1px solid rgba(225,6,0,0.45);

  color: #ff4b45;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;

  margin-bottom: 30px;

  font-size: clamp(64px,7vw,115px);
  font-weight: 900;

  line-height: 0.88;

  letter-spacing: -5px;

  text-transform: uppercase;
}

.hero h1 span {
  color: var(--red);
}

.hero-subtitle {
  max-width: 620px;

  margin-bottom: 35px;

  color: var(--grey);

  font-size: 19px;

  line-height: 1.7;
}

.hero-actions {
  display: flex;

  gap: 15px;

  margin-bottom: 70px;
}

/* =====================================================
   HERO TRUST
===================================================== */

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  width: 100%;
  max-width: 760px;

  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-item {
  position: relative;

  min-width: 0;

  padding: 24px 28px 4px 0;
  margin-right: 28px;

  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item:last-child {
  margin-right: 0;
  border-right: 0;
}

.hero-trust-label {
  display: block;

  margin-bottom: 7px;

  color: #77777d;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hero-trust strong {
  display: block;

  color: #ffffff;

  font-size: 16px;
  font-weight: 800;

  line-height: 1.25;
}

.hero-trust-address {
  display: block;

  margin-top: 5px;

  color: #77777d;

  font-size: 12px;
  line-height: 1.45;
}


/* KFZ Meisterbetrieb hervorheben */

.hero-trust-item--master::before {
  content: "";

  position: absolute;

  top: -2px;
  left: 0;

  width: 44px;
  height: 3px;

  background: var(--red);
}

.hero-trust-item--master strong {
  color: #ffffff;

  font-size: 18px;
}

.hero-trust-item--master .hero-trust-label {
  color: #ff4b45;
}


/* Scroll indicator

.scroll-indicator {
  position: absolute;

  left: 50%;
  bottom: 30px;

  width: 26px;
  height: 42px;

  transform: translateX(-50%);

  border:
    1px solid rgba(255,255,255,0.3);

  border-radius: 20px;

  z-index: 8;
}

.scroll-indicator span {
  position: absolute;

  left: 50%;
  top: 8px;

  width: 4px;
  height: 4px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: var(--red);

  animation: scrollMove 1.8s infinite;
} */

@keyframes scrollMove {

  0% {
    opacity: 0;
    transform: translate(-50%,0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%,18px);
  }
}


/* =====================================================
   SHARED SECTION ELEMENTS
===================================================== */

.section-kicker {
  display: inline-block;

  margin-bottom: 20px;

  color: var(--red);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
  position: relative;

  padding:
    135px 0 150px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 4% 20%,
      rgba(225,6,0,0.11),
      transparent 22%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(225,6,0,0.045),
      transparent 20%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #080809 100%
    );
}


/* TOP LINE */

.services-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width:
    min(92%, var(--container));

  height: 1px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.15),
      transparent
    );
}


/* =====================================================
   SECTION HEADER
===================================================== */

.section-head {
  position: relative;

  z-index: 2;

  margin-bottom: 70px;
}


.section-head-row {
  display: grid;

  grid-template-columns:
    1.45fr 0.55fr;

  align-items: end;

  gap: 70px;
}


.section-head h2 {
  max-width: 760px;

  font-size:
    clamp(54px,6.4vw,98px);

  font-weight: 900;

  line-height: 0.88;

  letter-spacing: -5px;

  text-transform: uppercase;
}


.section-head h2 span {
  color: var(--red);
}


.section-head p {
  max-width: 430px;

  padding-bottom: 7px;

  color: #8a8a91;

  font-size: 16px;

  line-height: 1.75;
}


/* =====================================================
   SERVICE GRID
===================================================== */

.services-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
  position: relative;

  min-height: 330px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.01)
    );

  border:
    1px solid rgba(255,255,255,0.085);

  isolation: isolate;

  transition:
    transform 0.4s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.4s ease;
}


/* RED TOP LINE */

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--red),
      #ff443e
    );

  transition:
    width 0.45s
    cubic-bezier(.2,.8,.2,1);

  z-index: 6;
}


/* DIAGONAL LIGHT */

.service-card::after {
  content: "";

  position: absolute;

  width: 160%;
  height: 100px;

  top: -120px;
  left: -40%;

  transform:
    rotate(-18deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.035),
      transparent
    );

  transition:
    top 0.65s
    cubic-bezier(.2,.8,.2,1);

  pointer-events: none;

  z-index: 1;
}


/* =====================================================
   CARD HOVER
===================================================== */

.service-card:hover {
  transform:
    translateY(-9px);

  border-color:
    rgba(225,6,0,0.43);

  background:
    linear-gradient(
      145deg,
      rgba(225,6,0,0.075),
      rgba(255,255,255,0.018)
    );

  box-shadow:
    0 30px 70px
    rgba(0,0,0,0.5),

    0 0 50px
    rgba(225,6,0,0.05);
}


.service-card:hover::before {
  width: 100%;
}


.service-card:hover::after {
  top: 115%;
}


/* =====================================================
   FEATURED CARDS
===================================================== */

.service-card-featured {
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(225,6,0,0.11),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.012)
    );
}


.service-card-featured::before {
  width: 3px;

  height: 100%;

  background: var(--red);
}


.service-card-featured:hover::before {
  width: 100%;

  height: 2px;
}


/* =====================================================
   BACKGROUND NUMBER
===================================================== */

.service-number {
  position: absolute;

  top: 15px;
  right: 22px;

  color:
    rgba(255,255,255,0.025);

  font-size: 82px;
  font-weight: 900;

  line-height: 1;

  letter-spacing: -6px;

  z-index: 0;

  pointer-events: none;

  transition:
    color 0.35s ease,
    transform 0.45s
    cubic-bezier(.2,.8,.2,1);
}


.service-card:hover
.service-number {
  color:
    rgba(225,6,0,0.11);

  transform:
    translateY(-8px)
    scale(1.06);
}


/* =====================================================
   RED GLOW
===================================================== */

.service-card-glow {
  position: absolute;

  right: -110px;
  bottom: -130px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    var(--red);

  filter:
    blur(105px);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.4s ease;

  z-index: 0;
}


.service-card:hover
.service-card-glow {
  opacity: 0.17;
}


/* =====================================================
   ICON
===================================================== */

.service-icon {
  position: relative;

  z-index: 3;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 50px;

  color:
    rgba(255,255,255,0.48);

  border:
    1px solid rgba(255,255,255,0.1);

  background:
    rgba(255,255,255,0.018);

  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}


.service-icon svg {
  width: 25px;
  height: 25px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.service-card:hover
.service-icon {
  color:
    var(--red);

  border-color:
    rgba(225,6,0,0.45);

  background:
    rgba(225,6,0,0.065);

  transform:
    translateY(-4px);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.service-card-content {
  position: relative;

  z-index: 4;

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}


.service-category {
  display: block;

  margin-bottom: 10px;

  color:
    #5f5f66;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.7px;

  text-transform: uppercase;

  transition:
    color 0.3s ease;
}


.service-card:hover
.service-category {
  color:
    rgba(255,255,255,0.55);
}


.service-card h3 {
  margin-bottom: 12px;

  color: #fff;

  font-size: 22px;
  font-weight: 800;

  letter-spacing: -0.7px;
}


.service-card p {
  max-width: 285px;

  color: #85858d;

  font-size: 13px;

  line-height: 1.65;
}


/* =====================================================
   CARD FOOTER
===================================================== */

.service-card-footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 32px;

  padding-top: 20px;

  border-top:
    1px solid rgba(255,255,255,0.075);
}


/* PRICE */

.service-price {
  margin: 0;

  color:
    var(--red);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.service-price-neutral {
  color:
    #8a8a91;
}


/* ARROW */

.service-arrow {
  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color:
    #727279;

  border:
    1px solid rgba(255,255,255,0.09);

  font-size: 18px;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}


.service-card:hover
.service-arrow {
  color: #fff;

  border-color:
    var(--red);

  background:
    var(--red);

  transform:
    translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .section-head-row {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


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


  .service-card {
    min-height: 320px;
  }

}


/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 700px) {

  .hero-trust {
    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 8px;

    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero-trust-item {
    margin: 0;

    padding: 20px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero-trust-item:last-child {
    border-bottom: 0;
  }

  .hero-trust-item--master {
    padding-left: 18px;
  }

  .hero-trust-item--master::before {
    top: 18px;
    left: 0;

    width: 3px;
    height: calc(100% - 36px);
  }

  .hero-trust-label {
    margin-bottom: 5px;

    font-size: 10px;
  }

  .hero-trust strong {
    font-size: 17px;
  }

  .hero-trust-item--master strong {
    font-size: 21px;
    font-weight: 900;
  }

  .hero-trust-address {
    margin-top: 6px;

    font-size: 13px;
  }

}



@media (max-width: 650px) {

  .services-section {
    padding:
      90px 0 105px;
  }


  .section-head {
    margin-bottom: 45px;
  }


  .section-head h2 {
    letter-spacing:
      -3px;
  }


  .services-grid {
    grid-template-columns:
      1fr;

    gap: 12px;
  }


  .service-card {
    min-height: 285px;

    padding: 25px;
  }


  .service-icon {
    margin-bottom: 38px;
  }


  .service-number {
    font-size: 70px;
  }

}

/* =====================================================
   ABOUT
===================================================== */

.about-section {
  position: relative;

  padding: 135px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(225,6,0,0.07),
      transparent 27%
    ),
    #070708;
}


/* About header */

.about-header {
  display: grid;

  grid-template-columns:
    1.25fr 0.75fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}

.about-header h2 {
  margin-top: 14px;

  font-size: clamp(54px,6.5vw,98px);

  line-height: 0.88;

  letter-spacing: -5px;

  text-transform: uppercase;
}

.about-header h2 span {
  color: var(--red);
}

.about-header > p {
  max-width: 470px;

  padding-bottom: 6px;

  color: #85858c;

  font-size: 17px;

  line-height: 1.75;
}


/* Main about card */

.about-showcase {
  display: grid;

  grid-template-columns:
    0.95fr 1.05fr;

  min-height: 560px;

  overflow: hidden;

  background: #0b0b0d;

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.28);
}


/* Workshop image */

.about-photo {
  position: relative;

  height: 560px;

  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center 55%;

  filter:
    brightness(0.74)
    contrast(1.08)
    saturate(0.9);

  transition:
    transform 0.8s cubic-bezier(.2,.8,.2,1),
    filter 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.035);

  filter:
    brightness(0.82)
    contrast(1.08)
    saturate(1);
}

.about-photo-gradient {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(0,0,0,0.88)
    );
}


/* Location */

.about-location {
  position: absolute;

  left: 32px;
  bottom: 30px;

  z-index: 3;

  display: flex;
  flex-direction: column;

  padding: 16px 20px;

  background:
    rgba(5,5,5,0.72);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
}

.about-location span {
  margin-bottom: 5px;

  color: var(--red);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.about-location strong {
  font-size: 27px;

  letter-spacing: -1px;
}

.about-location small {
  margin-top: 4px;

  color: rgba(255,255,255,0.5);

  font-size: 12px;
}


/* Right panel */

.about-panel {
  position: relative;

  min-height: 560px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px 60px;

  background:
    linear-gradient(
      145deg,
      #101012,
      #080809
    );
}

.about-panel::before {
  content: "";

  position: absolute;

  left: 0;
  top: 12%;

  width: 2px;
  height: 76%;

  background:
    linear-gradient(
      to bottom,
      transparent,
      var(--red),
      transparent
    );
}

.about-panel-label {
  margin-bottom: 25px;

  color: #68686f;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.about-panel h3 {
  margin-bottom: 26px;

  font-size:
    clamp(38px,3.6vw,60px);

  line-height: 0.94;

  letter-spacing: -3px;

  text-transform: uppercase;
}

.about-panel h3 span {
  color: var(--red);
}

.about-panel > p {
  max-width: 520px;

  margin-bottom: 30px;

  color: #8d8d94;

  font-size: 15px;

  line-height: 1.75;
}


/* Feature rows */

.about-features {
  margin-bottom: 28px;

  border-top:
    1px solid rgba(255,255,255,0.075);
}

.about-feature {
  display: grid;

  grid-template-columns:
    48px 1fr;

  align-items: center;

  padding: 16px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.075);

  transition:
    padding-left 0.25s ease,
    background 0.25s ease;
}

.about-feature:hover {
  padding-left: 7px;
}

.about-feature > span {
  color: var(--red);

  font-size: 11px;
  font-weight: 900;
}

.about-feature div {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.about-feature strong {
  font-size: 14px;
}

.about-feature small {
  color: #5f5f66;

  font-size: 12px;
}

.about-link {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 17px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.16);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: color 0.25s ease;
}

.about-link > span {
  color: var(--red);

  font-size: 22px;

  transition:
    transform 0.25s ease;
}

.about-link:hover {
  color: var(--red);
}

.about-link:hover > span {
  transform: translateX(8px);
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
  position: relative;

  padding: 105px 0;

  overflow: hidden;

  background:
    linear-gradient(
      118deg,
      #940000 0%,
      #d70600 48%,
      #f21810 100%
    );
}


/* Horizontal decorative lines */

.cta-lines {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.055) 1px,
      transparent 1px
    );

  background-size:
    100% 68px;

  opacity: 0.3;
}


/* Huge DRIVE */

.cta-word {
  position: absolute;

  right: -60px;
  top: 50%;

  transform: translateY(-50%);

  color: rgba(0,0,0,0.075);

  font-size:
    clamp(180px,24vw,440px);

  font-weight: 900;

  line-height: 1;

  letter-spacing: -24px;

  pointer-events: none;

  user-select: none;
}


/* CTA grid */

.cta-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  align-items: center;

  gap: 90px;
}

.cta-small {
  display: block;

  margin-bottom: 18px;

  color:
    rgba(255,255,255,0.62);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.cta-left h2 {
  color: white;

  font-size:
    clamp(58px,6.5vw,105px);

  line-height: 0.87;

  letter-spacing: -5px;

  text-transform: uppercase;
}

.cta-left h2 span {
  color: #1b0000;
}

.cta-right {
  max-width: 480px;
}

.cta-right > p {
  margin-bottom: 30px;

  color:
    rgba(255,255,255,0.8);

  font-size: 16px;

  line-height: 1.7;
}

.cta-main-button {
  width: 100%;
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-left: 26px;

  background: #080808;

  color: white;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-main-button:hover {
  transform: translateY(-5px);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.25);
}

.cta-button-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #141414;

  color: var(--red);

  font-size: 25px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.cta-main-button:hover
.cta-button-icon {
  background: #000;

  transform: translateX(4px);
}

.cta-call {
  display: flex;
  flex-direction: column;

  margin-top: 24px;
}

.cta-call small {
  margin-bottom: 5px;

  color:
    rgba(255,255,255,0.55);

  font-size: 11px;
}

.cta-call strong {
  color: white;

  font-size: 21px;
}


/* =====================================================
   REVEAL
===================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(35px);

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .hero-visual {
    right: -20%;

    width: 70vw;

    opacity: 0.45;
  }

  .hero-background-text {
    right: -100px;

    font-size: 220px;
  }


  /* SERVICES */

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

  .section-head-row {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  /* ABOUT */

  .about-header {
    grid-template-columns:
      1fr;

    gap: 25px;
  }

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

  .about-photo {
    height: 480px;
  }

  .about-panel {
    min-height: auto;

    padding: 50px;
  }


  /* CTA */

  .cta-container {
    grid-template-columns:
      1fr;

    gap: 45px;
  }

  .cta-right {
    max-width: 600px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

  .main-nav {
    display: none;
  }

  .nav-wrapper > .btn {
    display: none;
  }

  .nav-wrapper {
    min-height: 80px;
  }

  .brand-logo {
    width: 180px;
    height: 65px;
  }


  /* HERO */

  .hero-content {
    padding-top: 110px;
  }

  .hero h1 {
    font-size:
      clamp(55px,17vw,85px);

    letter-spacing: -3px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    max-width: 400px;

    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;

    gap: 15px;

    padding-top: 25px;
  }

  .hero-trust > div {
    margin-right: 0;

    padding: 0;

    border-right: none;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 700px) {

  .hero-visual,
  .hero-background-text {
    display: none;
  }

}


@media (max-width: 650px) {

  /* SERVICES */

  .services-section {
    padding:
      85px 0 100px;
  }

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

  .service-card {
    min-height: 220px;
  }

  .section-head h2 {
    letter-spacing: -2px;
  }


  /* ABOUT */

  .about-section {
    padding:
      90px 0;
  }

  .about-header {
    margin-bottom: 38px;
  }

  .about-header h2 {
    letter-spacing: -3px;
  }

  .about-photo {
    height: 380px;
  }

  .about-panel {
    padding:
      32px 24px;
  }

  .about-feature div {
    flex-direction: column;

    align-items: flex-start;

    gap: 3px;
  }


  /* CTA */

  .cta-section {
    padding:
      80px 0;
  }

  .cta-left h2 {
    letter-spacing: -3px;
  }

  .cta-word {
    display: none;
  }
}


/* =====================================================
   APPOINTMENT
===================================================== */

.appointment-section {
  position: relative;

  padding: 140px 0;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(225,6,0,0.065),
      transparent 25%
    ),
    #070708;
}


/* HEADER */

.appointment-header {
  margin-bottom: 60px;
}

.appointment-heading-row {
  display: grid;

  grid-template-columns:
    1.35fr 0.65fr;

  gap: 70px;

  align-items: end;
}

.appointment-heading-row h2 {
  font-size:
    clamp(52px,6.5vw,98px);

  line-height: 0.88;

  letter-spacing: -5px;

  text-transform: uppercase;
}

.appointment-heading-row h2 span {
  color: var(--red);
}

.appointment-heading-row p {
  max-width: 470px;

  color: #888890;

  font-size: 17px;

  line-height: 1.75;
}


/* LAYOUT */

.appointment-layout {
  display: grid;

  grid-template-columns:
    0.35fr 0.65fr;

  gap: 24px;

  align-items: start;
}


/* LEFT */

.appointment-info {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.appointment-info-card {
  position: relative;

  padding: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.012)
    );

  border:
    1px solid rgba(255,255,255,0.075);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.appointment-info-card:hover {
  transform:
    translateX(5px);

  border-color:
    rgba(225,6,0,0.3);
}

.appointment-step-number {
  display: block;

  margin-bottom: 28px;

  color: var(--red);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1px;
}

.appointment-info-card h3 {
  margin-bottom: 9px;

  font-size: 21px;
}

.appointment-info-card p {
  color: #77777f;

  font-size: 14px;

  line-height: 1.6;
}


/* FORM CARD */

.appointment-form-card {
  padding: 42px;

  background:
    linear-gradient(
      145deg,
      #101012,
      #09090a
    );

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 35px 90px rgba(0,0,0,0.25);
}


/* FORM */

.form-grid {
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 20px;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column:
    1 / -1;
}

.form-field label {
  display: block;

  margin-bottom: 8px;

  color: #77777f;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 54px;

  padding: 0 16px;

  appearance: none;

  background: #080809;

  color: #fff;

  border:
    1px solid rgba(255,255,255,0.1);

  border-radius: 0;

  outline: none;

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.form-field input::placeholder {
  color: #4f4f55;
}

.form-field input:focus,
.form-field select:focus {
  border-color:
    rgba(225,6,0,0.7);

  background:
    #0b0b0d;

  box-shadow:
    0 0 0 3px
    rgba(225,6,0,0.07);
}


/* SELECT */

.form-field select {
  cursor: pointer;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #777 50%
    ),
    linear-gradient(
      135deg,
      #777 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 19px) 23px,
    calc(100% - 14px) 23px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat:
    no-repeat;

  padding-right:
    40px;
}


/* OTHER INPUT */

.form-other-input {
  display: none;

  margin-top: 8px;
}

.form-other-input.is-visible {
  display: block;
}


/* FOOTER */

.appointment-form-footer {
  margin-top: 28px;

  padding-top: 25px;

  border-top:
    1px solid rgba(255,255,255,0.075);
}

.appointment-note {
  max-width: 560px;

  margin-bottom: 22px;

  color: #5f5f66;

  font-size: 11px;

  line-height: 1.6;
}


/* SUBMIT */

.appointment-submit {
  width: 100%;
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-left: 25px;

  border: 0;

  background: var(--red);

  color: #fff;

  cursor: pointer;

  font-family: inherit;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.appointment-submit:hover {
  transform:
    translateY(-3px);

  background:
    var(--red-light);

  box-shadow:
    0 18px 45px
    rgba(225,6,0,0.22);
}

.appointment-submit:disabled {
  cursor: wait;

  opacity: 0.65;
}

.appointment-submit-arrow {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(0,0,0,0.16);

  font-size: 24px;
}


/* MESSAGE */

.appointment-message {
  display: none;

  margin-top: 20px;

  padding: 18px 20px;

  font-size: 13px;

  line-height: 1.6;
}

.appointment-message.is-success,
.appointment-message.is-error {
  display: block;
}

.appointment-message.is-success {
  background:
    rgba(36,126,72,0.12);

  color: #b8e1c5;

  border:
    1px solid rgba(72,170,103,0.25);
}

.appointment-message.is-error {
  background:
    rgba(225,6,0,0.08);

  color: #ffc3c1;

  border:
    1px solid rgba(225,6,0,0.25);
}

.appointment-message strong {
  display: block;

  margin-bottom: 4px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .appointment-heading-row {
    grid-template-columns:
      1fr;

    gap: 25px;
  }

  .appointment-layout {
    grid-template-columns:
      1fr;
  }

  .appointment-info {
    display: grid;

    grid-template-columns:
      repeat(3,1fr);
  }

}


@media (max-width: 700px) {

  .appointment-section {
    padding:
      90px 0;
  }

  .appointment-info {
    grid-template-columns:
      1fr;
  }

  .appointment-form-card {
    padding:
      28px 20px;
  }

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

  .form-field-full {
    grid-column:
      auto;
  }

}

/* =====================================================
   APPOINTMENT BACKGROUND WORD
===================================================== */

.appointment-background-word {
  position: absolute;

  right: -40px;
  top: 90px;

  color: rgba(255,255,255,0.018);

  font-size: clamp(180px, 22vw, 420px);
  font-weight: 900;

  line-height: 1;

  letter-spacing: -20px;

  text-transform: uppercase;

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

.appointment-section > .container {
  position: relative;
  z-index: 2;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
  position: relative;

  padding: 135px 0;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(225,6,0,0.07),
      transparent 25%
    ),
    #050506;
}


.contact-header {
  margin-bottom: 60px;
}

.contact-heading-row {
  display: grid;

  grid-template-columns:
    1.25fr 0.75fr;

  align-items: end;

  gap: 70px;
}

.contact-heading-row h2 {
  font-size:
    clamp(52px,6.3vw,96px);

  line-height: 0.88;

  letter-spacing: -5px;

  text-transform: uppercase;
}

.contact-heading-row h2 span {
  color: var(--red);
}

.contact-heading-row p {
  max-width: 480px;

  color: #85858c;

  font-size: 17px;

  line-height: 1.75;
}


/* GRID */

.contact-grid {
  display: grid;

  grid-template-columns:
    1.05fr 0.95fr;

  gap: 22px;
}


/* MAIN CARD */

.contact-main-card,
.opening-card {
  background:
    linear-gradient(
      145deg,
      #101012,
      #080809
    );

  border:
    1px solid rgba(255,255,255,0.08);
}


.contact-main-card {
  padding: 45px;
}


.contact-label {
  display: block;

  margin-bottom: 20px;

  color: var(--red);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.contact-main-top {
  margin-bottom: 45px;
}

.contact-main-top h3 {
  margin-bottom: 13px;

  font-size: 48px;

  letter-spacing: -2px;
}

.contact-main-top p {
  color: #808087;

  font-size: 15px;

  line-height: 1.7;
}


/* CONTACT LINKS */

.contact-links {
  border-top:
    1px solid rgba(255,255,255,0.08);
}

.contact-link {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 22px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  transition:
    padding-left 0.25s ease,
    color 0.25s ease;
}

.contact-link:hover {
  padding-left: 8px;
}

.contact-link div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.contact-link div span {
  color: #65656c;

  font-size: 10px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.contact-link strong {
  font-size: 17px;
}

.contact-arrow {
  color: var(--red);

  font-size: 24px;

  transition:
    transform 0.25s ease;
}

.contact-link:hover
.contact-arrow {
  transform:
    translateX(7px);
}


/* =====================================================
   OPENING HOURS
===================================================== */

.opening-card {
  padding: 45px;
}


.opening-status {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 32px;

  color: #8b8b92;

  font-size: 13px;
}


.opening-status-dot {
  width: 8px;
  height: 8px;

  background: var(--red);

  border-radius: 50%;

  box-shadow:
    0 0 14px rgba(225,6,0,0.65);
}


.opening-list {
  border-top:
    1px solid rgba(255,255,255,0.08);
}


.opening-row {
  display: grid;

  grid-template-columns:
    1fr 0.9fr 0.9fr;

  gap: 15px;

  align-items: center;

  min-height: 58px;

  border-bottom:
    1px solid rgba(255,255,255,0.07);
}

.opening-row span {
  color: #8c8c92;

  font-size: 13px;
}

.opening-row strong {
  color: #fff;

  font-size: 12px;

  font-weight: 700;
}


.opening-row-closed {
  grid-template-columns:
    1fr 1.8fr;
}

.opening-row-closed strong {
  color: #68686f;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  position: relative;

  padding:
    80px 0 30px;

  background: #020203;

  border-top:
    1px solid rgba(255,255,255,0.07);
}


.footer-top {
  display: grid;

  grid-template-columns:
    1.5fr 0.75fr 1fr;

  gap: 70px;

  padding-bottom: 60px;
}


.footer-logo {
  width: 280px;

  margin-bottom: 20px;
}


.footer-brand p {
  max-width: 270px;

  color: #66666d;

  font-size: 14px;

  line-height: 1.6;
}


.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}

.footer-column > span {
  margin-bottom: 8px;

  color: var(--red);

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.footer-column a,
.footer-column p {
  color: #8a8a91;

  font-size: 13px;

  line-height: 1.6;

  transition:
    color 0.25s ease;
}

.footer-column a:hover {
  color: #fff;
}


.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,0.07);
}


.footer-bottom span,
.footer-bottom a {
  color: #505057;

  font-size: 11px;
}


.footer-bottom div {
  display: flex;

  gap: 22px;
}


.footer-bottom a:hover {
  color: #fff;
}


/* =====================================================
   CONTACT + FOOTER RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .contact-heading-row {
    grid-template-columns:
      1fr;

    gap: 25px;
  }

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

  .footer-top {
    grid-template-columns:
      1fr 1fr;

    gap: 45px;
  }

  .footer-brand {
    grid-column:
      1 / -1;
  }

}


@media (max-width: 650px) {

  .contact-section {
    padding:
      90px 0;
  }

  .contact-main-card,
  .opening-card {
    padding:
      30px 22px;
  }

  .contact-main-top h3 {
    font-size: 38px;
  }

  .opening-row {
    grid-template-columns:
      1fr;

    gap: 5px;

    padding:
      14px 0;
  }

  .opening-row-closed {
    grid-template-columns:
      1fr;
  }

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

  .footer-brand {
    grid-column:
      auto;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

}


/* =====================================================
   LEGAL PAGES
===================================================== */

.legal-page {
  background: #050505;
  color: #fff;
}

.legal-header {
  position: relative;

  width: 100%;

  z-index: 100;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(5,5,5,0.96);
}

.legal-nav {
  min-height: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.legal-back {
  color: #8d8d94;

  font-size: 13px;
  font-weight: 700;

  transition: color 0.25s ease;
}

.legal-back:hover {
  color: var(--red);
}

.legal-main {
  padding: 110px 0 130px;

  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(225,6,0,0.08),
      transparent 23%
    ),
    #070708;
}

.legal-container {
  max-width: 980px;
}

.legal-heading {
  margin-bottom: 70px;
}

.legal-heading h1 {
  margin-bottom: 22px;

  font-size: clamp(58px,8vw,120px);
  line-height: 0.9;

  letter-spacing: -6px;

  text-transform: uppercase;
}

.legal-heading h1 span {
  color: var(--red);
}

.legal-heading > p {
  max-width: 650px;

  color: #85858c;

  font-size: 17px;

  line-height: 1.7;
}

.legal-content {
  display: flex;
  flex-direction: column;
}

.legal-block {
  padding: 34px 0;

  border-top:
    1px solid rgba(255,255,255,0.08);
}

.legal-block:last-child {
  border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.legal-block h2 {
  margin-bottom: 17px;

  color: #fff;

  font-size: 21px;

  letter-spacing: -0.5px;
}

.legal-block p,
.legal-block li {
  color: #93939a;

  font-size: 15px;

  line-height: 1.8;
}

.legal-block p + p {
  margin-top: 14px;
}

.legal-block ul {
  margin:
    15px 0 15px 20px;
}

.legal-block a {
  color: #fff;

  border-bottom:
    1px solid rgba(225,6,0,0.45);

  transition: color 0.25s ease;
}

.legal-block a:hover {
  color: var(--red);
}

.legal-footer {
  padding: 26px 0;

  background: #020203;

  border-top:
    1px solid rgba(255,255,255,0.07);
}

.legal-footer-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.legal-footer span,
.legal-footer a {
  color: #57575e;

  font-size: 11px;
}

.legal-footer-inner > div {
  display: flex;

  gap: 24px;
}

.legal-footer a:hover {
  color: #fff;
}


@media (max-width: 650px) {

  .legal-nav {
    min-height: 80px;
  }

  .legal-main {
    padding:
      80px 0 100px;
  }

  .legal-heading {
    margin-bottom: 50px;
  }

  .legal-heading h1 {
    letter-spacing: -4px;
  }

  .legal-footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }

}



/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.mobile-menu-button {
  display: none;

  position: relative;

  width: 48px;
  height: 48px;

  padding: 0;

  background: transparent;

  border:
    1px solid rgba(255,255,255,0.14);

  cursor: pointer;

  z-index: 301;
}


/* HAMBURGER LINES */

.mobile-menu-button span {
  position: absolute;

  left: 13px;

  width: 20px;
  height: 2px;

  background: #fff;

  transition:
    transform 0.3s ease,
    top 0.3s ease,
    background 0.3s ease;
}

.mobile-menu-button span:first-child {
  top: 18px;
}

.mobile-menu-button span:last-child {
  top: 27px;

  width: 14px;
}


/* ACTIVE X */

.mobile-menu-button.is-active span:first-child {
  top: 23px;

  transform:
    rotate(45deg);
}

.mobile-menu-button.is-active span:last-child {
  top: 23px;

  width: 20px;

  transform:
    rotate(-45deg);
}


/* =====================================================
   MOBILE MENU OVERLAY
===================================================== */

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: 290;

  visibility: hidden;

  opacity: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(225,6,0,0.15),
      transparent 25%
    ),
    #050505;

  transform:
    translateY(-20px);

  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    visibility 0.35s;
}


.mobile-menu.is-open {
  visibility: visible;

  opacity: 1;

  pointer-events: auto;

  transform:
    translateY(0);
}


/* CONTENT */

.mobile-menu-inner {
  width: min(88%, 520px);

  margin: 0 auto;

  padding-top: 130px;
}


.mobile-menu-label {
  display: block;

  margin-bottom: 25px;

  color: var(--red);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* LINKS */

.mobile-navigation {
  border-top:
    1px solid rgba(255,255,255,0.1);
}


.mobile-navigation a {
  display: grid;

  grid-template-columns:
    45px 1fr;

  align-items: center;

  min-height: 78px;

  border-bottom:
    1px solid rgba(255,255,255,0.1);

  color: #fff;

  font-size: 30px;
  font-weight: 800;

  letter-spacing: -1px;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}


.mobile-navigation a span {
  color: var(--red);

  font-size: 10px;

  letter-spacing: 1px;
}


.mobile-navigation a:hover {
  padding-left: 8px;

  color: var(--red);
}


/* CONTACT */

.mobile-menu-contact {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 8px;

  margin-top: 38px;
}


.mobile-menu-contact a {
  color: #fff;

  font-size: 14px;

  font-weight: 700;
}


.mobile-menu-contact p {
  margin-top: 10px;

  color: #68686f;

  font-size: 13px;

  line-height: 1.6;
}


/* LOCK PAGE */

body.menu-open {
  overflow: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

  .mobile-menu-button {
    display: block;
  }

  .header-appointment {
    display: none;
  }

}


/* SMALL PHONE */

@media (max-width: 500px) {

  .mobile-menu-inner {
    padding-top: 110px;
  }

  .mobile-navigation a {
    min-height: 70px;

    font-size: 26px;
  }

}

/* =====================================================
   HANDWASH
===================================================== */

.handwash-section {
  position: relative;

  padding: 55px 0;

  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      #9d0000 0%,
      #df0800 55%,
      #ff1b13 100%
    );
}

.handwash-section::after {
  content: "WASH";

  position: absolute;

  right: -40px;
  top: 50%;

  transform: translateY(-50%);

  color: rgba(0,0,0,0.09);

  font-size: 180px;
  font-weight: 900;

  line-height: 1;

  letter-spacing: -10px;

  pointer-events: none;
}


.handwash-inner {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}


.handwash-kicker {
  display: block;

  margin-bottom: 10px;

  color: rgba(255,255,255,0.6);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.handwash-left h2 {
  color: #fff;

  font-size: clamp(40px,5vw,70px);

  line-height: 0.9;

  letter-spacing: -3px;

  text-transform: uppercase;
}


.handwash-right {
  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 30px;
}


.handwash-price {
  display: flex;

  gap: 3px;

  flex-direction: column;
}

.handwash-price span {
  color: rgba(255,255,255,0.6);

  font-size: 11px;
  margin-bottom: 2px;
  align-items: center;
  text-transform: uppercase;
}

.handwash-price strong {
  color: #fff;

  font-size: 48px;

  line-height: 1;
}


.handwash-right p {
  max-width: 360px;

  color: rgba(255,255,255,0.78);
  text-align: center;
  font-size: 14px;

  line-height: 1.6;
}


.handwash-button {
  min-height: 58px;

  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding: 0 20px;

  background: #080808;

  color: #fff;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.handwash-button span {
  color: var(--red);

  font-size: 20px;
}

.handwash-button:hover {
  transform: translateY(-4px);

  background: #000;
}


@media (max-width: 900px) {

  .handwash-inner {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .handwash-right {
    grid-template-columns: auto 1fr;
  }

  .handwash-button {
    grid-column: 1 / -1;

    justify-content: space-between;
  }

}


@media (max-width: 600px) {

  .handwash-section {
    padding: 45px 0;
  }

  .handwash-right {
    grid-template-columns: 1fr;
  }

  .handwash-price strong {
    font-size: 42px;
  }

  .handwash-section::after {
    right: -70px;
    top: 58%;
    opacity: 0.7;
  }

}

/* =====================================================
   APPOINTMENT DATE + TIME
===================================================== */

.appointment-datetime-row {
  grid-column: 1 / -1;

  display: grid;

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

  gap: 20px;

  align-items: start;
}


/* DATE INPUT */

#sd-wunschtermin {
  width: 100%;
  height: 54px;

  padding:
    0 48px
    0 16px;

  background-color: #080809;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18'/%3E%3C/svg%3E");

  background-repeat:
    no-repeat;

  background-position:
    right 16px center;

  background-size:
    17px 17px;

  color: #fff;

  border:
    1px solid rgba(255,255,255,0.1);

  border-radius: 0;

  outline: none;

  font-family: inherit;

  font-size: 14px;

  cursor: pointer;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}


#sd-wunschtermin:focus {
  border-color:
    rgba(225,6,0,0.7);

  background-color:
    #0b0b0d;

  box-shadow:
    0 0 0 3px
    rgba(225,6,0,0.07);
}


/* Hide native icon, keep the native picker area clickable */

#sd-wunschtermin::-webkit-calendar-picker-indicator {
  position: absolute;

  right: 0;

  width: 50px;
  height: 54px;

  opacity: 0;

  cursor: pointer;
}


/* DATE HINT */

.appointment-date-hint {
  display: none;

  margin:
    7px 0 0;

  color: #77777f;

  font-size: 11px;

  line-height: 1.45;
}


.appointment-date-hint.is-visible {
  display: block;
}


.appointment-date-hint.is-error {
  color: var(--red);
}


/* MOBILE */

@media (max-width: 700px) {

  .appointment-datetime-row {
    grid-template-columns:
      1fr;
  }

}


/* =====================================================
   FINAL MOBILE FIXES
   Keep desktop design untouched
===================================================== */


/* =====================================================
   GLOBAL OVERFLOW PROTECTION
===================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

img,
svg {
  max-width: 100%;
}


/* Prevent grid/flex children from forcing overflow */

.container,
.section-head,
.section-head-row,
.section-head-row > *,
.about-header,
.about-header > *,
.about-showcase,
.about-panel,
.about-panel > *,
.cta-container,
.cta-container > *,
.appointment-layout,
.appointment-layout > *,
.appointment-heading-row,
.appointment-heading-row > *,
.contact-grid,
.contact-grid > *,
.contact-heading-row,
.contact-heading-row > * {
  min-width: 0;
}


/* =====================================================
   MOBILE NAV FIX
===================================================== */

.mobile-menu {
  position: fixed;

  top: 0;
  left: 0;

  width: 100vw;
  max-width: 100vw;

  height: 100vh;
  height: 100dvh;

  overflow-x: hidden;
  overflow-y: auto;

  overscroll-behavior: contain;
}


.mobile-menu-inner {
  width: 100%;

  max-width: 520px;

  margin: 0 auto;

  padding-left: 24px;
  padding-right: 24px;

  box-sizing: border-box;
}


.mobile-navigation a {
  grid-template-columns:
    40px minmax(0, 1fr);

  max-width: 100%;
}


/*
   main.js adds backdrop-filter to the header
   while scrolling.

   Disable it while the mobile menu is open
   so position:fixed stays stable.
*/

body.menu-open .site-header {
  width: 100vw;

  max-width: 100vw;

  backdrop-filter:
    none !important;

  -webkit-backdrop-filter:
    none !important;
}


body.menu-open {
  overflow: hidden;
}


/* =====================================================
   MOBILE TYPOGRAPHY
===================================================== */

@media (max-width: 650px) {

  .container {
    width:
      calc(100% - 32px);

    max-width: 100%;
  }


  /* SERVICES */

  .section-head h2 {
    max-width: 100%;

    font-size:
      clamp(
        42px,
        12vw,
        54px
      );

    line-height: 0.9;

    letter-spacing: -2px;

    overflow-wrap: normal;

    word-break: normal;
  }


  .section-head p {
    max-width: 100%;

    font-size: 15px;
  }


  /* ABOUT HEADER */

  .about-header h2 {
    max-width: 100%;

    font-size:
      clamp(
        42px,
        12vw,
        54px
      );

    line-height: 0.9;

    letter-spacing: -2px;
  }


  .about-header > p {
    max-width: 100%;

    font-size: 15px;
  }


  /* ABOUT PANEL */

  .about-panel {
    width: 100%;

    padding:
      34px 22px;
  }


  .about-panel h3 {
    max-width: 100%;

    font-size:
      clamp(
        38px,
        11vw,
        50px
      );

    line-height: 0.93;

    letter-spacing: -2px;
  }


  .about-panel > p {
    max-width: 100%;

    font-size: 14px;

    line-height: 1.7;
  }


  /*
     Restore the feature rows properly on mobile.
  */

  .about-features {
    width: 100%;

    margin-bottom: 28px;
  }


  .about-feature {
    width: 100%;

    grid-template-columns:
      38px minmax(0, 1fr);

    gap: 0;

    padding:
      15px 0;
  }


  .about-feature > span {
    display: block;

    font-size: 10px;
  }


  .about-feature div {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 4px;
  }


  .about-feature strong {
    display: block;

    font-size: 14px;

    line-height: 1.35;
  }


  .about-feature small {
    display: block;

    font-size: 11px;

    line-height: 1.4;
  }


  .about-link {
    width: 100%;

    gap: 15px;
  }


  /* CTA */

  .cta-left h2 {
    max-width: 100%;

    font-size:
      clamp(
        46px,
        13vw,
        60px
      );

    line-height: 0.9;

    letter-spacing: -2px;
  }


  /* APPOINTMENT */

  .appointment-heading-row h2 {
    max-width: 100%;

    font-size:
      clamp(
        42px,
        12vw,
        54px
      );

    line-height: 0.9;

    letter-spacing: -2px;
  }


  /* CONTACT */

  .contact-heading-row h2 {
    max-width: 100%;

    font-size:
      clamp(
        42px,
        12vw,
        54px
      );

    line-height: 0.9;

    letter-spacing: -2px;
  }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 500px) {

  .mobile-menu-inner {
    padding:
      105px 18px 35px;
  }


  .mobile-navigation a {
    min-height: 68px;

    grid-template-columns:
      34px minmax(0, 1fr);

    font-size:
      clamp(
        24px,
        7.5vw,
        28px
      );

    letter-spacing: -0.7px;
  }


  .mobile-menu-contact a,
  .mobile-menu-contact p {
    max-width: 100%;

    overflow-wrap: anywhere;
  }

}