/* =========================================================
   VARIABLES
========================================================= */

:root {
  --bg: #101014;
  --bg2: #15151b;
  --header: #3b3b3d;
  --text: #f5f5f5;
  --muted: #bdbdc5;
  --yellow: #ebba00;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}


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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--bg);
  color: var(--text);

  font-family:
    "geom-graphic",
    Arial,
    sans-serif;

  font-weight: 400;
  line-height: 1.55;

  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}


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

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background: var(--header);

  border-top:
    8px solid
    var(--yellow);

  overflow: visible;
}

.site-header::after {
  content: "";

  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;
  height: 72px;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.32) 38%,
      rgba(0, 0, 0, 0.12) 68%,
      transparent
    );
}


/* =========================================================
   NAV
========================================================= */

.nav {
  position: relative;

  z-index: 3;

  height: 90px;

  display: flex;

  align-items: center;
}


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

.brand-center {
  position: absolute;

  top: 0;
  left: 50%;

  z-index: 5;

  transform:
    translateX(-50%);
}

.brand-shape {
  width: 370px;
  height: 106px;

  display: flex;

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

  background: var(--yellow);

  clip-path:
    polygon(
      8% 0,
      92% 0,
      84% 100%,
      16% 100%
    );
}

.brand-logo {
  width: 215px;
}


/* =========================================================
   BURGER
========================================================= */

.menu-toggle {
  position: relative;

  z-index: 1200;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  position: absolute;

  left: 0;

  width: 36px;
  height: 3px;

  background: #ffffff;

  border-radius: 999px;

  transition:
    top 0.3s ease,
    transform 0.3s ease,
    opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 10px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.is-open {
  position: fixed;

  top: 28px;

  left:
    max(
      20px,
      calc((100vw - 1120px) / 2)
    );

  z-index: 1300;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 20px;

  transform:
    rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 20px;

  transform:
    rotate(-45deg);
}


/* =========================================================
   FULLSCREEN MENU
========================================================= */

.nav-links {
  position: fixed;

  inset: 0;

  z-index: 1100;

  width: 100vw;
  height: 100dvh;

  display: flex;

  flex-direction: column;

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

  gap: 4px;

  padding:
    100px
    30px
    50px;

  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(235, 186, 0, 0.32),
      rgba(235, 186, 0, 0.13) 22%,
      transparent 47%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(235, 186, 0, 0.16),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      #111116,
      #1d1d20 40%,
      #302b18 72%,
      #4b3d0c
    );

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform:
    scale(1.02);

  transition:
    opacity 0.38s ease,
    visibility 0.38s ease,
    transform 0.38s ease;
}

.nav-links.is-open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform:
    scale(1);
}

.nav-links a {
  position: relative;

  width:
    min(
      430px,
      100%
    );

  padding:
    15px
    20px;

  color: #ffffff;

  font-size:
    clamp(
      19px,
      2vw,
      27px
    );

  line-height: 1;

  text-align: center;

  text-transform: uppercase;

  opacity: 0;

  transform:
    translateY(18px);

  transition:
    color 0.25s ease,
    transform 0.4s ease,
    opacity 0.4s ease,
    letter-spacing 0.25s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 64px;
  height: 1px;

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

  transform:
    translateX(-50%);

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.nav-links.is-open a {
  opacity: 1;

  transform:
    translateY(0);
}

.nav-links.is-open a:nth-child(1) {
  transition-delay: 0.05s;
}

.nav-links.is-open a:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-links.is-open a:nth-child(3) {
  transition-delay: 0.15s;
}

.nav-links.is-open a:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-links.is-open a:nth-child(5) {
  transition-delay: 0.25s;
}

.nav-links.is-open a:nth-child(6) {
  transition-delay: 0.3s;
}

.nav-links.is-open a:nth-child(7) {
  transition-delay: 0.35s;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--yellow);

  letter-spacing:
    0.035em;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 115px;

  background: var(--yellow);
}

.nav-links .nav-cta {
  width: auto;

  min-width: 250px;

  margin-top: 22px;

  padding:
    15px
    28px;

  background: var(--yellow);

  color:
    #101014 !important;

  font-size: 18px;

  font-weight: 700;

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

  border-radius: 9px;
}

.nav-links .nav-cta:hover {
  background: transparent;

  color:
    var(--yellow) !important;
}


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

.contact-hero {
  position: relative;

  min-height: 600px;

  display: flex;

  align-items: center;

  padding:
    150px
    0
    150px;

  overflow: hidden;

  background: #101014;
}

.contact-hero-bg {
  position: absolute;

  inset: 0;

  z-index: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 11, 0.98),
      rgba(5, 7, 11, 0.9) 32%,
      rgba(5, 7, 11, 0.62) 60%,
      rgba(5, 7, 11, 0.35)
    ),
    url("../img/hero-car.jpg")
    center /
    cover
    no-repeat;
}

.contact-hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 260px;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(16, 16, 20, 0) 0%,
      rgba(16, 16, 20, 0.08) 18%,
      rgba(16, 16, 20, 0.22) 35%,
      rgba(16, 16, 20, 0.48) 55%,
      rgba(16, 16, 20, 0.72) 72%,
      rgba(16, 16, 20, 0.9) 88%,
      #101014 100%
    );
}


/* =========================================================
   HERO CONTENT POSITION
========================================================= */

.contact-hero-content {
  position: relative;

  z-index: 2;

  transform:
    translateY(45px);
}


/* =========================================================
   SMALL HEADLINE + LINE
========================================================= */

.contact-kicker-row {
  display: flex;

  align-items: flex-end;

  gap: 24px;

  margin-bottom: 28px;
}

.contact-kicker {
  flex-shrink: 0;

  margin: 0;

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

  font-size: 21px;

  font-weight: 300;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.04em;
}

.contact-kicker-line {
  width: 120px;
  height: 4px;

  flex-shrink: 0;

  margin-bottom: 2px;

  background: var(--yellow);

  border-radius: 999px;
}


/* =========================================================
   BIG TITLE
========================================================= */

.contact-title {
  margin-bottom: 32px;
}

.contact-title h1 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(
      70px,
      7.2vw,
      105px
    );

  font-weight: 400;

  line-height: 0.83;

  text-transform: uppercase;

  letter-spacing:
    -0.04em;
}

.contact-title h1 + h1 {
  margin-top: 16px;
}

.contact-intro {
  max-width: 620px;

  margin: 0;

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

  font-size: 16px;

  line-height: 1.72;
}


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

.contact-section {
  position: relative;

  z-index: 2;

  margin-top: -120px;

  padding:
    170px
    0
    110px;

  background:
    linear-gradient(
      to bottom,
      rgba(16, 16, 20, 0) 0%,
      rgba(16, 16, 20, 0.45) 22%,
      rgba(16, 16, 20, 0.82) 48%,
      #101014 72%,
      #101014 100%
    );
}

.contact-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(300px, 0.65fr);

  gap: 30px;

  align-items: stretch;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
  position: relative;

  overflow: hidden;

  padding:
    42px
    42px
    44px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      transparent 35%
    ),
    #15151a;

  border:
    1px solid
    rgba(235, 186, 0, 0.55);

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

    0 0 35px
    rgba(235, 186, 0, 0.04);
}

.contact-form-card::after {
  content: "";

  position: absolute;

  right: -90px;
  bottom: -110px;

  width: 270px;
  height: 270px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(235, 186, 0, 0.08),
      transparent 68%
    );

  pointer-events: none;
}

.contact-card-heading {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 17px;

  margin-bottom: 37px;
}

.contact-card-line {
  width: 4px;
  height: 57px;

  flex-shrink: 0;

  background: var(--yellow);
}

.contact-card-heading p {
  margin:
    0
    0
    4px;

  color: var(--yellow);

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.11em;
}

.contact-card-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: 31px;

  font-weight: 600;

  line-height: 1;

  text-transform: uppercase;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
  position: relative;

  z-index: 2;

  width: 100%;
}

.contact-form-row {
  display: grid;

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

  gap: 18px;

  margin-bottom: 18px;
}

.form-field {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.form-field-full {
  margin-top: 2px;
}

.form-field label {
  color:
    rgba(255, 255, 255, 0.74);

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.065em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  outline: none;

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

  border-radius: 5px;

  background: #0d0e12;

  color: #ffffff;

  font-size: 14px;

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

.form-field input,
.form-field select {
  height: 52px;

  padding:
    0
    16px;
}

.form-field textarea {
  min-height: 160px;

  padding:
    15px
    16px;

  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.34);
}

.form-field select {
  appearance: none;

  cursor: pointer;

  padding-right: 45px;

  background:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--yellow) 50%
    )
    calc(100% - 20px)
    calc(50% - 2px) /
    6px
    6px
    no-repeat,

    linear-gradient(
      135deg,
      var(--yellow) 50%,
      transparent 50%
    )
    calc(100% - 15px)
    calc(50% - 2px) /
    6px
    6px
    no-repeat,

    #0d0e12;
}

.form-field select option {
  background: #111116;

  color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--yellow);

  background: #101116;

  box-shadow:
    0 0 0 3px
    rgba(235, 186, 0, 0.08),

    0 0 25px
    rgba(235, 186, 0, 0.05);
}

.form-field input[type="date"] {
  color-scheme: dark;
}


/* =========================================================
   FORM BOTTOM
========================================================= */

.contact-form-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;

  margin-top: 28px;
}

.contact-form-bottom p {
  max-width: 410px;

  margin: 0;

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

  font-size: 10px;

  line-height: 1.55;
}

.contact-submit {
  min-width: 180px;

  padding:
    14px
    24px;

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

  border-radius: 7px;

  background: var(--yellow);

  color: #111111;

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  cursor: pointer;

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

.contact-submit:hover {
  background: #f5c92a;

  transform:
    translateY(-2px);

  box-shadow:
    0 12px 30px
    rgba(235, 186, 0, 0.22);
}


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

.contact-info-card {
  position: relative;

  overflow: hidden;

  padding:
    42px
    34px;

  background:
    linear-gradient(
      180deg,
      rgba(235, 186, 0, 0.075),
      transparent 37%
    ),
    #0b0c10;

  border:
    1px solid
    rgba(235, 186, 0, 0.46);

  box-shadow:
    0 30px 70px
    rgba(0, 0, 0, 0.28);
}

.contact-info-card::before {
  display: none;
}

.contact-info-heading {
  margin-bottom: 34px;
}

.contact-info-heading p {
  margin:
    0
    0
    6px;

  color: var(--yellow);

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.1em;
}

.contact-info-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: 34px;

  font-weight: 600;

  line-height: 1;

  text-transform: uppercase;
}


/* =========================================================
   INFO LIST
========================================================= */

.contact-info-list {
  display: flex;

  flex-direction: column;
}

.contact-info-item {
  display: block;

  padding:
    22px
    0;

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

.contact-info-item small {
  display: block;

  margin-bottom: 8px;

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

  font-size: 9px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.09em;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;

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

  font-size: 14px;

  line-height: 1.6;
}

.contact-info-item a {
  display: inline-block;

  transition:
    color 0.25s ease;
}

.contact-info-item a:hover {
  color: var(--yellow);
}

.contact-address-link {
  line-height:
    1.65 !important;
}


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

.contact-socials {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin-top: 34px;
}

.contact-socials > a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  min-height: 76px;

  padding:
    15px
    18px;

  border:
    1px solid
    rgba(235, 186, 0, 0.55);

  border-radius: 7px;

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

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

.contact-social-name {
  display: flex;

  align-items: center;

  gap: 13px;

  font-size: 10px;

  font-weight: 700;

  text-transform: uppercase;
}

.contact-instagram-icon {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

  fill: none;

  stroke: var(--yellow);

  stroke-width: 1.7;

  transition:
    stroke 0.3s ease,
    transform 0.3s ease;
}

.contact-instagram-icon .instagram-dot {
  fill: var(--yellow);

  stroke: none;

  transition:
    fill 0.3s ease;
}

.contact-socials > a > strong {
  color: var(--yellow);

  font-size: 20px;

  font-weight: 400;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-socials > a:hover {
  background: var(--yellow);

  color: #111111;

  border-color: var(--yellow);

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 30px
    rgba(235, 186, 0, 0.15);
}

.contact-socials > a:hover
.contact-instagram-icon {
  stroke: #111111;

  transform:
    scale(1.08);
}

.contact-socials > a:hover
.contact-instagram-icon
.instagram-dot {
  fill: #111111;
}

.contact-socials > a:hover > strong {
  color: #111111;

  transform:
    translate(
      2px,
      -2px
    );
}


/* =========================================================
   MAP
========================================================= */

.map-section {
  position: relative;

  padding:
    10px
    0
    105px;

  background: #101014;
}

.map-heading {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  margin-bottom: 42px;

  text-align: center;

  text-transform: uppercase;
}

.map-heading > span {
  width: 80px;
  height: 3px;

  flex-shrink: 0;

  background: var(--yellow);

  border-radius: 999px;
}

.map-heading p {
  margin:
    0
    0
    7px;

  color: var(--yellow);

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  letter-spacing:
    0.1em;
}

.map-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: 27px;

  font-weight: 600;

  line-height: 1;

  letter-spacing:
    0.025em;
}

.map-frame {
  position: relative;

  height: 430px;

  overflow: hidden;

  background: #08090d;

  border:
    1px solid
    rgba(235, 186, 0, 0.65);

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

    0 0 28px
    rgba(235, 186, 0, 0.05);
}

.map-frame::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  box-shadow:
    inset 0 0 80px
    rgba(0, 0, 0, 0.2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter:
    grayscale(1)
    contrast(1.08)
    brightness(0.72)
    saturate(0.35);
}


/* =========================================================
   MAP BOTTOM
========================================================= */

.map-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding:
    22px
    24px;

  background: #15151a;

  border:
    1px solid
    rgba(235, 186, 0, 0.38);

  border-top: 0;
}

.map-address {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.map-address span {
  color: var(--yellow);

  font-size: 9px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.1em;
}

.map-address strong {
  color:
    rgba(255, 255, 255, 0.88);

  font-size: 13px;

  font-weight: 500;
}

.map-google-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  flex-shrink: 0;

  padding:
    12px
    18px;

  background: var(--yellow);

  color: #111111;

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

  border-radius: 6px;

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

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

.map-google-button span {
  font-size: 15px;
}

.map-google-button:hover {
  background: #f5c92a;

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 28px
    rgba(235, 186, 0, 0.2);
}


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

.contact-bottom-cta {
  position: relative;

  padding:
    0
    0
    90px;

  background: #3b3b3d;

  overflow: hidden;
}

.contact-bottom-cta-line {
  width: 100%;
  height: 8px;

  background: var(--yellow);
}

.contact-bottom-cta .container {
  display: flex;

  justify-content: center;
}

.contact-bottom-cta-box {
  position: relative;

  width:
    min(
      1050px,
      calc(100% - 40px)
    );

  margin-top: -1px;

  padding:
    52px
    55px
    55px;

  background: var(--yellow);

  color: #111111;

  text-align: center;

  clip-path:
    polygon(
      7% 0,
      93% 0,
      86% 100%,
      14% 100%
    );

  box-shadow:
    0 24px 60px
    rgba(0, 0, 0, 0.22),

    0 8px 24px
    rgba(235, 186, 0, 0.1);
}

.contact-bottom-kicker {
  margin:
    0
    0
    10px;

  color:
    rgba(17, 17, 17, 0.88);

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.12em;
}

.contact-bottom-title {
  margin:
    0
    0
    28px;

  color: #111111;

  font-size:
    clamp(
      28px,
      2.6vw,
      42px
    );

  font-weight: 700;

  line-height: 1.05;

  text-transform: uppercase;

  letter-spacing:
    -0.02em;

  white-space: nowrap;
}

.contact-bottom-button {
  display: inline-flex;

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

  min-width: 240px;

  padding:
    15px
    28px;

  background: #3b3b3d;

  color: #ffffff;

  border:
    1px solid
    #3b3b3d;

  border-radius: 10px;

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing:
    0.05em;

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

.contact-bottom-button:hover {
  transform:
    translateY(-2px);

  background: #111111;

  color: var(--yellow);

  box-shadow:
    0 12px 28px
    rgba(0, 0, 0, 0.22);
}


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

.contact-footer {
  padding:
    34px
    0;

  background: #353537;

  border-top:
    4px solid
    var(--yellow);
}

.contact-footer-inner {
  display: grid;

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

  align-items: center;

  gap: 30px;
}

.contact-footer-logo {
  width: 145px;

  max-height: 70px;

  object-fit: contain;
}

.contact-footer-inner > p {
  margin: 0;

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

  font-size: 10px;

  font-weight: 600;

  line-height: 1;

  text-align: center;

  text-transform: uppercase;
}

.contact-footer-links {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 22px;
}

.contact-footer-links a {
  color:
    rgba(255, 255, 255, 0.7);

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;

  transition:
    color 0.25s ease;
}

.contact-footer-links a:hover {
  color: var(--yellow);
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow {
  position: fixed;

  left: 0;
  top: 0;

  width: 440px;
  height: 440px;

  z-index: 900;

  display: none;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(235, 186, 0, 0.14) 0%,
      rgba(235, 186, 0, 0.09) 18%,
      rgba(235, 186, 0, 0.055) 36%,
      rgba(235, 186, 0, 0.022) 55%,
      transparent 72%
    );

  filter:
    blur(7px);

  mix-blend-mode:
    screen;

  transform:
    translate(-50%, -50%);

  will-change:
    left,
    top;
}

body.menu-open .cursor-glow {
  opacity: 0;
}


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

.reveal {
  opacity: 0;

  transform:
    translateY(30px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: none;
}

.delay-1 {
  transition-delay:
    0.12s;
}

.delay-2 {
  transition-delay:
    0.22s;
}

.delay-3 {
  transition-delay:
    0.32s;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 900px) {

  .cursor-glow {
    display: block;
  }

}


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

@media (max-width: 860px) {

  .container {
    width:
      min(
        calc(100% - 28px),
        680px
      );
  }


  .site-header {
    border-top-width:
      6px;
  }


  .nav {
    height: 76px;
  }


  .brand-shape {
    width: 280px;
    height: 91px;
  }


  .brand-logo {
    width: 170px;
  }


  .contact-hero {
    min-height: 510px;

    padding:
      140px
      0
      125px;
  }


  .contact-hero::after {
    height: 210px;
  }


  .contact-hero-content {
    transform:
      translateY(30px);
  }


  .contact-kicker-row {
    gap: 18px;

    margin-bottom: 24px;
  }


  .contact-kicker {
    font-size: 18px;
  }


  .contact-kicker-line {
    width: 90px;
    height: 3px;
  }


  .contact-title h1 {
    font-size:
      clamp(
        62px,
        12vw,
        88px
      );
  }


  .contact-section {
    margin-top: -90px;

    padding:
      130px
      0
      90px;
  }


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

    gap: 25px;
  }


  .contact-form-card {
    padding:
      36px
      30px;
  }


  .contact-info-card {
    padding:
      36px
      30px;
  }


  .map-frame {
    height: 360px;
  }


  .contact-bottom-cta {
    padding:
      0
      0
      70px;
  }


  .contact-bottom-cta-line {
    height: 6px;
  }


  .contact-bottom-cta-box {
    width:
      min(
        700px,
        100%
      );

    padding:
      40px
      28px
      42px;

    clip-path:
      polygon(
        6% 0,
        94% 0,
        88% 100%,
        12% 100%
      );
  }


  .contact-bottom-title {
    margin-bottom: 24px;

    font-size:
      clamp(
        24px,
        4.5vw,
        34px
      );

    white-space: normal;
  }


  .contact-footer-inner {
    grid-template-columns: 1fr;

    justify-items: center;

    gap: 20px;

    text-align: center;
  }


  .contact-footer-links {
    justify-content: center;
  }

}


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

@media (max-width: 520px) {

  .site-header {
    border-top-width:
      6px;
  }


  .nav {
    height: 68px;
  }


  .brand-shape {
    width: 220px;
    height: 82px;
  }


  .brand-logo {
    width: 140px;
  }


  .menu-toggle {
    width: 39px;
    height: 40px;
  }


  .menu-toggle span {
    width: 32px;
  }


  .nav-links {
    padding:
      75px
      20px
      30px;
  }


  .nav-links a {
    max-width: 320px;

    padding:
      12px
      10px;

    font-size: 18px;
  }


  /* HERO */

  .contact-hero {
    min-height: 450px;

    padding:
      125px
      0
      110px;
  }


  .contact-hero::after {
    height: 180px;
  }


  .contact-hero-content {
    transform:
      translateY(18px);
  }


  .contact-kicker-row {
    gap: 12px;

    margin-bottom: 20px;
  }


  .contact-kicker {
    font-size: 14px;
  }


  .contact-kicker-line {
    width: 50px;
    height: 3px;

    margin-bottom: 1px;
  }


  .contact-title {
    margin-bottom: 25px;
  }


  .contact-title h1 {
    font-size:
      clamp(
        50px,
        16vw,
        68px
      );
  }


  .contact-title h1 + h1 {
    margin-top: 10px;
  }


  .contact-intro {
    font-size: 14px;

    line-height: 1.6;
  }


  /* CONTACT */

  .contact-section {
    margin-top: -70px;

    padding:
      105px
      0
      72px;
  }


  .contact-form-card {
    padding:
      27px
      19px;
  }


  .contact-card-heading {
    margin-bottom: 28px;
  }


  .contact-card-line {
    height: 49px;
  }


  .contact-card-heading h2 {
    font-size: 24px;
  }


  .contact-card-heading p {
    font-size: 9px;
  }


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

    gap: 15px;

    margin-bottom: 15px;
  }


  .form-field input,
  .form-field select {
    height: 50px;
  }


  .form-field textarea {
    min-height: 145px;
  }


  .contact-form-bottom {
    flex-direction: column;

    align-items: stretch;

    gap: 17px;

    margin-top: 22px;
  }


  .contact-submit {
    width: 100%;
  }


  .contact-info-card {
    padding:
      29px
      20px;
  }


  .contact-info-heading h2 {
    font-size: 27px;
  }


  .contact-socials > a {
    min-height: 68px;

    padding:
      13px
      15px;
  }


  .contact-instagram-icon {
    width: 27px;
    height: 27px;
  }


  /* MAP */

  .map-section {
    padding-bottom: 72px;
  }


  .map-heading {
    gap: 12px;

    margin-bottom: 30px;
  }


  .map-heading > span {
    width: 31px;
    height: 2px;
  }


  .map-heading p {
    font-size: 8px;
  }


  .map-heading h2 {
    font-size: 18px;
  }


  .map-frame {
    height: 300px;
  }


  .map-bottom {
    flex-direction: column;

    align-items: stretch;

    gap: 18px;

    padding:
      18px
      16px;
  }


  .map-google-button {
    width: 100%;
  }


  /* BOTTOM CTA */

  .contact-bottom-cta {
    padding:
      0
      0
      55px;
  }


  .contact-bottom-cta-box {
    width: 100%;

    padding:
      32px
      18px
      34px;

    clip-path:
      polygon(
        4% 0,
        96% 0,
        92% 100%,
        8% 100%
      );
  }


  .contact-bottom-kicker {
    margin-bottom: 8px;

    font-size: 10px;
  }


  .contact-bottom-title {
    margin-bottom: 20px;

    font-size: 23px;

    line-height: 1.05;

    white-space: normal;
  }


  .contact-bottom-button {
    min-width: 100%;

    padding:
      14px
      18px;

    font-size: 10px;
  }


  /* FOOTER */

  .contact-footer {
    padding:
      30px
      0;
  }


  .contact-footer-logo {
    width: 130px;
  }


  .contact-footer-links {
    gap: 17px;
  }

}
/* =========================================================
   MOBILE CONTACT BOTTOM CTA - NEW VERSION
========================================================= */

@media (max-width: 520px) {

  .contact-bottom-cta {
    position: relative;

    padding:
      0
      0
      50px;

    background: #3b3b3d;

    overflow: hidden;
  }


  /* верхняя желтая линия */

  .contact-bottom-cta-line {
    width: 100%;
    height: 5px;

    background: var(--yellow);
  }


  .contact-bottom-cta .container {
    display: block;

    width:
      calc(100% - 28px);

    margin-inline: auto;
  }


  /* единая желтая карточка */

  .contact-bottom-cta-box {
    width: 100%;

    margin:
      22px
      auto
      0;

    padding:
      34px
      20px
      30px;

    background: var(--yellow);

    color: #111111;

    text-align: center;

    clip-path:
      polygon(
        4% 0,
        96% 0,
        100% 100%,
        0 100%
      );

    box-shadow:
      0 20px 45px
      rgba(0, 0, 0, 0.2);
  }


  /* NOCH FRAGEN */

  .contact-bottom-kicker {
    margin:
      0
      0
      10px;

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

    font-size: 9px;

    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing:
      0.13em;
  }


  /* WIR BERATEN SIE GERNE */

  .contact-bottom-title {
    margin:
      0
      0
      24px;

    color: #111111;

    font-size:
      clamp(
        21px,
        6.5vw,
        27px
      );

    font-weight: 700;

    line-height: 1.05;

    letter-spacing:
      -0.025em;

    text-transform: uppercase;

    white-space: normal;
  }


  /* кнопка теперь находится внутри желтой карточки */

  .contact-bottom-button {
    display: inline-flex;

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

    width: auto;

    min-width: 205px;

    margin: 0;

    padding:
      13px
      20px;

    background: #3b3b3d;

    color: #ffffff;

    border:
      1px solid
      #3b3b3d;

    border-radius: 8px;

    font-size: 9px;

    font-weight: 700;

    line-height: 1;

    letter-spacing:
      0.04em;

    text-transform: uppercase;

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


  .contact-bottom-button:hover {
    background: #111111;

    color: var(--yellow);

    transform:
      translateY(-2px);

    box-shadow:
      0 10px 22px
      rgba(0, 0, 0, 0.2);
  }

}


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

@media (max-width: 390px) {

  .contact-bottom-cta {
    padding-bottom: 42px;
  }


  .contact-bottom-cta .container {
    width:
      calc(100% - 22px);
  }


  .contact-bottom-cta-box {
    margin-top: 18px;

    padding:
      30px
      16px
      27px;

    clip-path:
      polygon(
        3% 0,
        97% 0,
        100% 100%,
        0 100%
      );
  }


  .contact-bottom-kicker {
    font-size: 8px;
  }


  .contact-bottom-title {
    margin-bottom: 21px;

    font-size:
      clamp(
        19px,
        6vw,
        23px
      );
  }


  .contact-bottom-button {
    min-width: 190px;

    padding:
      12px
      17px;

    font-size: 8px;
  }

}
/* =========================================================
   MOBILE CONTACT BOTTOM CTA - FINAL CLEAN VERSION
========================================================= */

@media (max-width: 520px) {

  .contact-bottom-cta {
    position: relative;

    padding:
      34px
      0
      46px;

    background: #3b3b3d;

    overflow: hidden;
  }


  /* старую желтую линию убираем */

  .contact-bottom-cta-line {
    display: none;
  }


  .contact-bottom-cta .container {
    width:
      calc(100% - 28px);

    margin-inline: auto;

    display: block;
  }


  /* основная карточка */

  .contact-bottom-cta-box {
    width: 100%;

    margin: 0;

    padding:
      32px
      22px
      28px;

    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.025),
        transparent
      ),
      #2f2f31;

    color: #ffffff;

    text-align: center;

    clip-path: none;

    border:
      1px solid
      rgba(235, 186, 0, 0.48);

    border-top:
      5px solid
      var(--yellow);

    border-radius: 12px;

    box-shadow:
      0 18px 40px
      rgba(0, 0, 0, 0.24);
  }


  /* NOCH FRAGEN? */

  .contact-bottom-kicker {
    margin:
      0
      0
      11px;

    color: var(--yellow);

    font-size: 9px;

    font-weight: 700;

    line-height: 1;

    letter-spacing:
      0.13em;

    text-transform: uppercase;
  }


  /* WIR BERATEN SIE GERNE. */

  .contact-bottom-title {
    margin:
      0
      0
      24px;

    color: #ffffff;

    font-size:
      clamp(
        22px,
        6.4vw,
        27px
      );

    font-weight: 700;

    line-height: 1.08;

    letter-spacing:
      -0.025em;

    text-transform: uppercase;

    white-space: normal;
  }


  /* кнопка */

  .contact-bottom-button {
    display: inline-flex;

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

    width: auto;

    min-width: 210px;

    margin: 0;

    padding:
      13px
      20px;

    background: var(--yellow);

    color: #111111;

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

    border-radius: 8px;

    font-size: 9px;

    font-weight: 700;

    line-height: 1;

    letter-spacing:
      0.04em;

    text-transform: uppercase;

    box-shadow:
      0 8px 20px
      rgba(0, 0, 0, 0.16);

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


  .contact-bottom-button:hover {
    background: #f5c92a;

    color: #111111;

    transform:
      translateY(-2px);

    box-shadow:
      0 10px 24px
      rgba(235, 186, 0, 0.20);
  }

}


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

@media (max-width: 390px) {

  .contact-bottom-cta {
    padding:
      28px
      0
      38px;
  }


  .contact-bottom-cta .container {
    width:
      calc(100% - 22px);
  }


  .contact-bottom-cta-box {
    padding:
      28px
      17px
      24px;

    border-radius: 10px;
  }


  .contact-bottom-kicker {
    margin-bottom: 9px;

    font-size: 8px;
  }


  .contact-bottom-title {
    margin-bottom: 21px;

    font-size:
      clamp(
        20px,
        6.2vw,
        24px
      );
  }


  .contact-bottom-button {
    min-width: 190px;

    padding:
      12px
      16px;

    font-size: 8px;
  }

}
/* =========================================================
   CONTACT BOTTOM CTA - GREY TEXT
========================================================= */

.contact-bottom-cta-box h2,
.contact-bottom-cta-box p,
.contact-bottom-cta-title,
.contact-bottom-cta-kicker {
  color: #3b3b3d;
}
/* =========================================================
   CONTACT CTA TEXT COLOR
========================================================= */

/* DESKTOP */
.contact-bottom-cta-box h2,
.contact-bottom-cta-box p,
.contact-bottom-cta-title,
.contact-bottom-cta-kicker {
  color: #3b3b3d;
}

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

  .contact-bottom-cta-box h2,
  .contact-bottom-cta-box p,
  .contact-bottom-cta-title,
  .contact-bottom-cta-kicker {
    color: #ffffff;
  }

}
/* =========================================================
   MENU - FRAGEN
========================================================= */

.nav-links.is-open a:nth-child(8) {
  transition-delay: 0.4s;
}
/* =========================================================
   CONTACT FORM - WUNSCHZEIT
========================================================= */

.form-field input[type="time"] {
  color-scheme: dark;
  cursor: pointer;
}


/* правая подсказка рядом со временем */

.form-time-note {
  min-height: 52px;

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

  padding:
    8px
    4px;
}


.form-time-note span {
  margin-bottom: 5px;

  color: var(--yellow);

  font-size: 9px;

  font-weight: 700;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.form-time-note p {
  max-width: 360px;

  margin: 0;

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

  font-size: 10px;

  line-height: 1.5;
}


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

@media (max-width: 520px) {

  .contact-form-row-time {
    gap: 12px;
  }


  .form-time-note {
    min-height: 0;

    padding:
      2px
      1px
      5px;
  }


  .form-time-note p {
    max-width: none;

    font-size: 9px;

    line-height: 1.5;
  }

}
/* =========================================================
   DATE / TIME INPUT - IOS / MOBILE FIX
========================================================= */

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


.form-input-icon-wrap {
  position: relative;

  width: 100%;
  max-width: 100%;

  min-width: 0;
}


.form-input-icon-wrap input {
  display: block;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  box-sizing: border-box;

  padding-right: 52px;
}


/* Safari / iPhone */

.form-input-icon-wrap input[type="date"],
.form-input-icon-wrap input[type="time"] {
  width: 100%;

  max-width: 100%;

  min-width: 0;

  box-sizing: border-box;

  color: #f5f5f5;

  background-color: transparent;

  overflow: hidden;
}


/* hide native browser icon because we use our own */

.form-input-icon-wrap
input::-webkit-calendar-picker-indicator {
  position: absolute;

  width: 100%;
  height: 100%;

  inset: 0;

  opacity: 0;

  cursor: pointer;
}


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

.form-input-icon {
  position: absolute;

  top: 50%;
  right: 18px;

  width: 20px;
  height: 20px;

  transform:
    translateY(-50%);

  pointer-events: none;

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

  z-index: 2;
}


.form-input-icon svg {
  width: 100%;
  height: 100%;

  display: block;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}


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

@media (max-width: 520px) {

  .contact-form-row {
    min-width: 0;
  }


  .form-field {
    width: 100%;

    min-width: 0;
  }


  .form-input-icon-wrap {
    width: 100%;

    min-width: 0;

    overflow: hidden;
  }


  .form-input-icon-wrap input {
    width: 100% !important;

    max-width: 100% !important;

    min-width: 0 !important;
  }


  .form-input-icon {
    right: 16px;

    width: 19px;
    height: 19px;
  }

}
/* =========================================================
   KONTAKT - YELLOW LINES FADE STYLE
========================================================= */

/* HERO - линия после "IHR WEG ZUM GLANZ" */

.contact-kicker-line {
  background:
    linear-gradient(
      90deg,
      var(--yellow) 0%,
      rgba(235, 186, 0, 0.55) 55%,
      rgba(235, 186, 0, 0.15) 82%,
      transparent 100%
    ) !important;
}


/* MAP TITLE - левая линия */

.map-heading > span:first-child {
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(235, 186, 0, 0.15) 18%,
      rgba(235, 186, 0, 0.55) 55%,
      var(--yellow) 100%
    ) !important;
}


/* MAP TITLE - правая линия */

.map-heading > span:last-child {
  background:
    linear-gradient(
      90deg,
      var(--yellow) 0%,
      rgba(235, 186, 0, 0.55) 45%,
      rgba(235, 186, 0, 0.15) 82%,
      transparent 100%
    ) !important;
}
/* =========================================================
   INSTAGRAM CARDS - ARROW STYLE
========================================================= */

.contact-social-arrow {
  display: inline-flex;

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

  color: var(--yellow);

  font-size: 30px;

  font-weight: 300;

  line-height: 1;

  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease;
}


/* Desktop hover */

@media (hover: hover) and (pointer: fine) {

  .contact-social-card:hover .contact-social-arrow {
    transform: translateX(-6px);
  }

}


/* Mobile */

@media (max-width: 520px) {

  .contact-social-arrow {
    font-size: 26px;
  }

}
/* =========================================================
   TERMIN INFO - SMALL / MUTED
========================================================= */

.contact-appointment-note p {
  margin: 0 !important;

  color: rgba(255, 255, 255, 0.42) !important;

  font-size: 10px !important;

  font-weight: 400 !important;

  line-height: 1.5 !important;

  letter-spacing: 0.01em !important;
}


/* MOBILE */

@media (max-width: 520px) {

  .contact-appointment-note p {
    font-size: 9px !important;

    line-height: 1.5 !important;
  }

}
/* =========================================================
   TERMIN NACH BESTÄTIGUNG - FINAL STYLE
========================================================= */

.contact-appointment-note {
  margin-top: 4px !important;

  padding: 0 !important;

  background: transparent !important;

  border: 0 !important;
}


/* ЖЁЛТЫЙ ЗАГОЛОВОК */

.contact-appointment-note strong {
  display: block !important;

  margin:
    0
    0
    6px !important;

  color: var(--yellow) !important;

  font-size: 10px !important;

  font-weight: 700 !important;

  line-height: 1 !important;

  letter-spacing: 0.06em !important;

  text-transform: uppercase !important;
}


/* СЕРЫЙ ТЕКСТ */

.contact-appointment-note p {
  max-width: 100% !important;

  margin: 0 !important;

  color:
    rgba(255, 255, 255, 0.38) !important;

  font-size: 9px !important;

  font-weight: 400 !important;

  line-height: 1.45 !important;

  letter-spacing: 0.01em !important;
}


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

@media (max-width: 520px) {

  .contact-appointment-note strong {
    margin-bottom: 5px !important;

    font-size: 9px !important;
  }


  .contact-appointment-note p {
    font-size: 8px !important;

    line-height: 1.45 !important;
  }

}
/* =========================================================
   TERMIN INFO -> NACHRICHT SPACING
========================================================= */

.contact-appointment-note {
  margin-bottom: 16px !important;
}

@media (max-width: 520px) {

  .contact-appointment-note {
    margin-bottom: 14px !important;
  }

}
/* =========================================================
   KONTAKT FORM - BALANCED MOBILE SPACING
========================================================= */

@media (max-width: 520px) {

  .contact-form .form-field {
    margin-bottom: 14px !important;
  }

  .contact-form .form-field label {
    display: block !important;

    margin-bottom: 7px !important;
  }

  .contact-appointment-note {
    margin-top: 2px !important;
    margin-bottom: 18px !important;
  }

  .contact-appointment-note strong {
    margin-bottom: 5px !important;
  }

  .contact-form .form-field-full:last-of-type {
    margin-top: 0 !important;
  }

}
/* =========================================================
   CONTACT FORM - DATE / TIME SPACING + ICONS
========================================================= */

/* немного больше воздуха перед Wunschtermin и Wunschzeit */
.contact-form .form-field-full {
  margin-top: 10px !important;
}

/* конкретно поле времени чуть ниже */
#termin,
#wunschzeit {
  padding-right: 58px !important;
}

/* расстояние перед блоком Termin nach Bestätigung */
.contact-appointment-note {
  margin-top: 12px !important;
}


/* =========================================================
   DATE / TIME ICON POSITION
========================================================= */

.form-field {
  position: relative !important;
}

input[type="date"],
input[type="time"] {
  position: relative !important;
}


/* Safari / Chrome native picker icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  width: 24px !important;
  height: 24px !important;

  margin: 0 !important;

  opacity: 0.75 !important;

  cursor: pointer !important;

  filter:
    invert(76%)
    sepia(0%)
    saturate(0%)
    hue-rotate(180deg)
    brightness(95%) !important;
}


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

@media (max-width: 520px) {

  .contact-form .form-field-full {
    margin-top: 8px !important;
  }

  .contact-appointment-note {
    margin-top: 10px !important;
  }

  #termin,
  #wunschzeit {
    padding-right: 54px !important;
  }

  input[type="date"]::-webkit-calendar-picker-indicator,
  input[type="time"]::-webkit-calendar-picker-indicator {
    width: 22px !important;
    height: 22px !important;
  }

}
/* =========================================================
   CUSTOM DATE / TIME ICONS
========================================================= */

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap input {
  width: 100%;
  padding-right: 58px !important;
}

/* скрываем нативную иконку браузера */
.input-icon-wrap input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.field-icon {
  position: absolute;
  right: 18px;
  top: 50%;

  width: 24px;
  height: 24px;

  transform: translateY(-50%);

  pointer-events: none;

  color: rgba(255,255,255,0.65);
}

.field-icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* MOBILE */

@media (max-width: 520px) {

  .field-icon {
    right: 16px;

    width: 22px;
    height: 22px;
  }

}