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

.contact-page {
  --contact-dark: #0c021f;
  --contact-accent: rgba(202, 127, 255, 1);
  --contact-accent-soft: rgba(202, 127, 255, 0.12);
  --contact-bg: #fbfafd;
  --contact-text: #171126;
  --contact-muted: #686174;
  --contact-border: rgba(12, 2, 31, 0.09);

  background: var(--contact-dark);
}


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

.contact-page .site-header {
  position: absolute;

  z-index: 20;

  top: 0;
  left: 0;

  width: 100%;

  background: transparent;
}


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

.contact-hero {
  position: relative;

  padding: 120px 82px 70px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      ellipse 55% 75% at -12% 5%,
      rgba(145, 0, 255, 0.72) 0%,
      rgba(115, 0, 210, 0.42) 28%,
      rgba(60, 0, 110, 0.18) 52%,
      rgba(12, 2, 31, 0) 74%
    ),
    #0c021f;
}


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

.contact-hero__inner {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(420px, 1fr)
    minmax(360px, 520px);

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

  margin: 0 auto;

  align-items: center;

  gap: clamp(64px, 8vw, 130px);
}


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

.contact-hero__content h1 {
  max-width: 650px;

  margin: 18px 0 26px;

  color: #ffffff;

  font-size: clamp(50px, 5vw, 74px);
  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -0.055em;

  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}


.contact-hero__content h1 span {
  color: var(--contact-accent);
}


.contact-hero__content > p {
  max-width: 560px;

  margin: 0;

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

  font-size: 18px;
  font-weight: 500;

  line-height: 1.65;

  letter-spacing: 0.02em;
}

.section-eyebrow {
  margin: 0 0 22px;

  color: #8d5cff;

  font-size: 15px;
  font-weight: 650;

  letter-spacing: 0.035em;

  text-transform: uppercase;
}

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

.contact-hero__visual {
  position: relative;

  display: grid;

  min-height: 390px;

  place-items: center;
}


.contact-visual__orb {
  position: absolute;
  

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(202, 127, 255, 0.22) 0%,
      rgba(145, 0, 255, 0.12) 42%,
      rgba(12, 2, 31, 0) 72%
    );
}


.contact-visual__image {
  position: relative;

  z-index: 2;
  margin-top:20px;

  border-radius: 8%;
  width: min(100%, 410px);
  

  filter:
    drop-shadow(
      0 30px 36px rgba(0, 0, 0, 0.28)
    );
}


.contact-visual__dot {
  position: absolute;

  z-index: 3;

  left: 54px;
  top: 178px;

  width: 18px;
  height: 18px;

  border-radius: 50%;


  box-shadow:
    0 0 18px rgba(202, 127, 255, 0.38);
}


/* =========================
   MAIN
========================= */

.contact-main {
  padding: 20px 82px 80px;

}


.contact-main__inner {
  display: grid;

  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(310px, 0.8fr);

  gap: 28px;

  max-width: 1362px;

  margin: 0 auto;
}


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

.contact-form,
.contact-info-card,
.contact-help-card,
.stores-layout {
  border:
    1px solid var(--contact-border);

  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 4px 12px rgba(12, 2, 31, 0.025),
    0 18px 44px rgba(12, 2, 31, 0.055);
}


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

.contact-form {
  padding: 36px;
}


.contact-form h2,
.contact-info-card h2 {
  margin: 0 0 26px;

  color: var(--contact-dark);

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

  line-height: 1.2;

  letter-spacing: -0.025em;
}


.contact-form__grid {
  display: grid;

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

  gap: 18px;
}


.contact-form label {
  display: flex;

  flex-direction: column;

  gap: 9px;
}


.contact-form label span {
  color: #4d4658;

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


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

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

  outline: 0;

  border:
    1px solid rgba(12, 2, 31, 0.12);

  border-radius: 12px;

  color: var(--contact-dark);

  background: #fbfafd;

  font: inherit;

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

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}


.contact-form input,
.contact-form select {
  height: 48px;

  padding: 0 15px;
}


.contact-form textarea {
  min-height: 125px;

  padding: 15px;

  resize: vertical;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a94a4;
}


.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color:
    rgba(202, 127, 255, 0.45);
}


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

  background: #ffffff;

  box-shadow:
    0 0 0 4px
    rgba(202, 127, 255, 0.10);
}


.contact-form__message {
  margin-top: 18px;
}


.contact-form button {
  margin-top: 24px;

  cursor: pointer;
}


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


.contact-button {
  display: inline-flex;

  height: 54px;

  padding:
    0
    29px;

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

  gap: 10px;

  flex: 0 0 auto;

  border: 0;

  border-radius: 999px;

  cursor: pointer;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #7651f7 0%,
      #6b37f3 55%,
      #5c27df 100%
    );

  box-shadow:
    0 8px 20px rgba(103, 55, 225, 0.22);

  font: inherit;

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

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}


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

  filter:
    brightness(1.04);

  box-shadow:
    0 12px 26px rgba(103, 55, 225, 0.30);
}


.contact-button:active {
  transform:
    translateY(0);
}




/* =========================
   SIDE
========================= */

.contact-side {
  display: flex;

  flex-direction: column;

  gap: 22px;
}


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


.contact-info {
  display: flex;

  gap: 16px;

  margin-bottom: 26px;

  align-items: flex-start;

  color: var(--contact-dark);

  font-size: 15px;
  font-weight: 650;

  line-height: 1.5;

  text-decoration: none;

  transition:
    color 180ms ease;
}


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


.contact-info:last-child {
  margin-bottom: 0;
}


.contact-info small {
  display: block;

  margin-bottom: 4px;

  color: #797282;

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

  line-height: 1.4;
}


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

.contact-info__icon {
  display: grid;

  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  place-items: center;

  border-radius: 12px;

  color: var(--contact-accent);

  background:
    rgba(202, 127, 255, 0.12);
}


/* =========================
   HELP CARD
========================= */

.contact-help-card {
  display: flex;

  padding: 30px;

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

  gap: 24px;

  border:
    1px solid rgba(202, 127, 255, 0.22);

  background:
    radial-gradient(
      ellipse 90% 130% at -10% 0%,
      rgba(145, 0, 255, 0.36) 0%,
      rgba(71, 8, 82, 0.18) 48%,
      rgba(12, 2, 31, 0) 75%
    ),
    #0c021f;

  box-shadow:
    0 20px 42px
    rgba(12, 2, 31, 0.14);
}


.contact-help-card h3 {
  margin: 0 0 8px;

  color: #ffffff;

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

  line-height: 1.25;
}


.contact-help-card p {
  max-width: 250px;

  margin: 0;

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

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

  line-height: 1.55;
}


/* =========================
   HELP CARD ACTION
========================= */

.contact-help-card > a {
  display: grid;

  width: 56px;
  height: 56px;

  flex: 0 0 56px;

  place-items: center;

  border:
    2px solid
    rgba(202, 127, 255, 1);

  border-radius: 50%;

  color: #ffffff;

  background:
    rgba(71, 8, 82, 0.5);

  box-shadow:
    0 12px 30px
    rgba(225, 32, 255, 0.12);

  font-size: 24px;

  text-decoration: none;

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}


.contact-help-card > a:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 10px 35px
    rgba(225, 32, 255, 0.25);
}


/* =========================
   STORES
========================= */

.stores-section {
  padding: 10px 82px 100px;
}


.stores-section__inner {
  max-width: 1362px;

  margin: 0 auto;
}


.stores-section h2 {
  margin: 0 0 30px;

  color: #ffffff;

  font-size:
    clamp(34px, 4vw, 50px);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.045em;
}


.stores-section h2 span {
  color: var(--contact-accent);
}


/* =========================
   STORES
========================= */

.stores-section {
  padding: 10px 82px 100px;
}

.stores-section__inner {
  max-width: 1362px;
  margin: 0 auto;
}

.stores-section h2 {
  margin: 0 0 30px;

  color: #ffffff;

  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;

  line-height: 1.08;
  letter-spacing: -0.045em;
}

.stores-section h2 span {
  color: rgba(202, 127, 255, 1);
}


/* =========================
   STORES LAYOUT
========================= */

.stores-layout {
  display: grid;

  grid-template-columns:
    360px 1fr;

  overflow: hidden;

  border:
    1px solid rgba(202, 127, 255, 0.16);

  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18);
}


/* =========================
   STORES LIST
========================= */

.stores-list {
  display: flex;
  flex-direction: column;

  background: #ffffff;
}


.store-button {
  display: flex;

  width: 100%;
  min-height: 62px;

  padding: 0 24px;

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

  border: 0;
  border-bottom:
    1px solid rgba(12, 2, 31, 0.08);

  color: #171126;

  background: #ffffff;

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

  text-align: left;

  cursor: pointer;

  transition:
    color 180ms ease,
    background 180ms ease,
    padding-left 180ms ease;
}


.store-button:hover {
  padding-left: 28px;

  color:
    rgba(145, 0, 255, 0.95);

  background:
    rgba(202, 127, 255, 0.06);
}


.store-button.active {
  color:
    rgba(145, 0, 255, 1);

  background:
    rgba(202, 127, 255, 0.10);
}


.store-button.active span:last-child {
  transform: translateX(3px);
}


.store-button span:last-child {
  font-size: 18px;

  transition:
    transform 180ms ease;
}


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

.stores-map {
  min-height: 434px;

  background:
    rgba(202, 127, 255, 0.08);

  overflow: hidden;
}


.stores-map iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 434px;

  border: 0;
}


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

@media (max-width: 1050px) {

  .stores-section {
    padding-left: 48px;
    padding-right: 48px;
  }

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

  .stores-map {
    min-height: 360px;
  }

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

}


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

@media (max-width: 680px) {

  .stores-section {
    padding:
      10px
      24px
      80px;
  }

  .stores-section h2 {
    font-size: 36px;
  }

  .stores-layout {
    border-radius: 20px;
  }

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

    padding:
      0
      20px;

    font-size: 13px;
  }

  .stores-map {
    min-height: 280px;
  }

  .stores-map iframe {
    min-height: 280px;
  }

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

@media (max-width: 1050px) {

  .contact-hero {
    padding:
      100px
      48px
      60px;
  }


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

    gap: 45px;
  }


  .contact-hero__visual {
    min-height: 330px;
  }


  .contact-main,
  .stores-section {
    padding-left: 48px;
    padding-right: 48px;
  }


  .contact-main__inner,
  .stores-layout {
    grid-template-columns:
      1fr;
  }


  .stores-list__all {
    margin-top: 0;
  }
}


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

@media (max-width: 680px) {

  .contact-page .site-header {
    position: absolute;

    z-index: 20;

    top: 0;
    left: 0;

    width: 100%;

    background: transparent;
  }


  .contact-hero {
    padding:
      100px
      24px
      50px;
  }


  .contact-hero__inner {
    gap: 30px;
  }


  .contact-hero__content h1 {
    margin-bottom: 20px;

    font-size:
      clamp(40px, 12vw, 48px);

    line-height: 1.02;
  }


  .contact-hero__content > p {
    font-size: 16px;

    line-height: 1.6;
  }


  .contact-hero__visual {
    min-height: 280px;
  }


  .contact-visual__orb {
          width: 100%;

    aspect-ratio: 1 / 1;

    order: 1;


  border-radius: 50%;
  }


  .contact-visual__image {
    width:
      min(100%, 320px);
  }


  .contact-main,
  .stores-section {
    padding-left: 24px;
    padding-right: 24px;
  }


  .contact-main {
    padding-bottom: 65px;
  }


  .contact-form,
  .contact-info-card {
    padding: 24px;
  }


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


  .contact-help-card {
    padding: 26px;

    align-items: flex-start;
  }


  .contact-help-card > a {
    width: 52px;
    height: 52px;

    flex-basis: 52px;
  }


  .stores-section {
    padding-bottom: 80px;
  }


  .stores-section h2 {
    font-size: 36px;
  }


  .stores-layout {
    border-radius: 20px;
  }


  .stores-map {
    min-height: 240px;
  }


  .contact-button {
    width: 100%;
  }
}