/* =========================
   CONTACT (JEWELRY) - CLEAN
========================= */

/* ---------- Scroll reveal ---------- */
.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Contact hero ---------- */
.contact-hero {
  background: var(--colorsgreyscale-02);
  padding: 40px 80px;
}

.contact-hero-inner {
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
}

.contact-main {
  width: 635px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-title {
  margin: 0;
  font-family: var(--heading-desktop-font-family);
  font-weight: var(--heading-desktop-font-weight);
  color: var(--colorsprimary-01);
  font-size: clamp(28px, 4vw, var(--heading-desktop-font-size));
  letter-spacing: var(--heading-desktop-letter-spacing);
  line-height: var(--heading-desktop-line-height);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field-label {
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: var(--colorsprimary-01);
  font-size: var(--body-large-regular-font-size);
  letter-spacing: var(--body-large-regular-letter-spacing);
  line-height: var(--body-large-regular-line-height);
}

.field-box {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--colorsgreyscale-02);
  border-radius: 2px;
  border: 1px solid var(--colorsgreyscale-03);
}

.field-box--textarea {
  height: auto;
  align-items: stretch;
  padding: 12px;
}

.field-input,
.field-textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: var(--colorsprimary-01);
  font-size: var(--body-large-regular-font-size);
  letter-spacing: var(--body-large-regular-letter-spacing);
  line-height: var(--body-large-regular-line-height);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--colorsprimary-02);
}

.field-textarea {
  min-height: 122px;
  resize: vertical;
}

.contact-btn {
  width: 200px;
  height: 48px;
  border: 0;
  cursor: pointer;
  background: var(--colorsprimary-01);
  border-radius: 2px;
  box-shadow: var(--shadow-xsmall);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-btn-text {
  font-family: var(--body-large-medium-font-family);
  font-weight: var(--body-large-medium-font-weight);
  color: var(--colorsgreyscale-02);
  font-size: var(--body-large-medium-font-size);
  letter-spacing: var(--body-large-medium-letter-spacing);
  line-height: var(--body-large-medium-line-height);
}

.contact-hero-media {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: flex-end;
}

.contact-hero-img {
  width: min(587px, 100%);
  height: 723px;
  object-fit: cover;
  background: var(--colorsgreyscale-03);
}

/* ---------- Stores ---------- */
.stores {
  background: var(--colorsgreyscale-02);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.stores-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.stores-kicker {
  font-family: "Geist", Helvetica;
  font-weight: 600;
  color: var(--colorsprimary-02);
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 22.4px;
}

.stores-title {
  margin: 0;
  font-family: var(--heading-tablet-font-family);
  font-weight: var(--heading-tablet-font-weight);
  color: var(--colorsprimary-01);
  font-size: clamp(26px, 3vw, var(--heading-tablet-font-size));
  letter-spacing: var(--heading-tablet-letter-spacing);
  line-height: var(--heading-tablet-line-height);
}

.stores-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-card--featured {
  background: var(--colorsgreyscale-02);
  box-shadow: 8px 8px 44px #00000014;
}

.store-media {
  height: 440px;
  background: var(--colorsgreyscale-03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.store-media--featured {
  position: relative;
  padding: 0 12px;
  background: var(--colorsgreyscale-02);
}

.store-media-frame {
  width: 100%;
  height: 440px;
  background: var(--colorsbackground-02);
  overflow: hidden;
}

.store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--colorsgreyscale-02);
  border-radius: 4px;
  padding: 12px 24px;
  text-decoration: none;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
}

.store-cta-text {
  font-family: var(--body-large-semibold-font-family);
  font-weight: var(--body-large-semibold-font-weight);
  color: var(--colorsprimary-01);
  font-size: var(--body-large-semibold-font-size);
  letter-spacing: var(--body-large-semibold-letter-spacing);
  line-height: var(--body-large-semibold-line-height);
}

.store-cursor {
  position: absolute;
  width: 28px;
  height: 28px;
  right: 44px;
  top: 52%;
  transform: translateY(-50%);
}

.store-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.store-info--pad {
  padding: 8px 12px;
}

.store-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-name {
  font-family: var(--body-large-medium-font-family);
  font-weight: var(--body-large-medium-font-weight);
  color: var(--colorsprimary-01);
  font-size: var(--body-large-medium-font-size);
  letter-spacing: var(--body-large-medium-letter-spacing);
  line-height: var(--body-large-medium-line-height);
}

.store-address {
  font-family: var(--body-large-medium-font-family);
  font-weight: var(--body-large-medium-font-weight);
  color: var(--colorsprimary-02);
  font-size: var(--body-large-medium-font-size);
  letter-spacing: var(--body-large-medium-letter-spacing);
  line-height: var(--body-large-medium-line-height);
}

.store-arrow {
  width: 36px;
  height: 36px;
  position: relative;
}

.store-arrow-icon {
  position: absolute;
  width: 42%;
  height: 42%;
  top: 29%;
  left: 29%;
}

.stores-btn {
  width: 240px;
  height: 56px;
  border: 0;
  cursor: pointer;
  background: var(--colorsprimary-01);
  border-radius: 2px;
  box-shadow: var(--shadow-xsmall);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stores-btn-text {
  font-family: "Geist", Helvetica;
  font-weight: 500;
  color: var(--colorsgreyscale-02);
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: 28px;
}

/* ---------- Support ---------- */
.support {
  background: var(--colorsgreyscale-02);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.support-inner {
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.support-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 640px;
}

.support-title {
  margin: 0;
  width: min(520px, 100%);
  font-family: var(--body-xlarge-medium-font-family);
  font-weight: var(--body-xlarge-medium-font-weight);
  color: var(--colorsprimary-01);
  font-size: var(--body-xlarge-medium-font-size);
  letter-spacing: var(--body-xlarge-medium-letter-spacing);
  line-height: var(--body-xlarge-medium-line-height);
}

.support-subtitle {
  margin: 0;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: var(--colorsprimary-02);
  font-size: var(--body-large-regular-font-size);
  letter-spacing: var(--body-large-regular-letter-spacing);
  line-height: var(--body-large-regular-line-height);
}

.support-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.support-item {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
}

.support-label {
  font-family: "Geist", Helvetica;
  font-weight: 400;
  color: var(--colorsprimary-02);
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 22.4px;
}

.support-value {
  font-family: "Geist", Helvetica;
  font-weight: 400;
  color: var(--colorsprimary-02);
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 22.4px;
  white-space: nowrap;
}

.support-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.support-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-pill {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 10px;
  backdrop-filter: blur(0.5px) brightness(100%);
  -webkit-backdrop-filter: blur(0.5px) brightness(100%);
  text-decoration: none;
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* media */
.support-media {
  position: relative;
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: flex-end;
}

.support-img {
  width: min(691px, 100%);
  height: 461px;
  object-fit: cover;
  background: var(--colorsgreyscale-03);
}

.support-float {
  position: absolute;
  right: 0;
  top: 24px;
  width: 126px;
  height: 155px;
  object-fit: cover;
  background: var(--colorsgreyscale-03);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--colorsgreyscale-02);
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.faq-title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--heading-tablet-font-family);
  font-weight: var(--heading-tablet-font-weight);
  color: var(--colorsprimary-01);
  font-size: clamp(26px, 3vw, var(--heading-tablet-font-size));
  letter-spacing: var(--heading-tablet-letter-spacing);
  line-height: var(--heading-tablet-line-height);
}

.faq-list {
  width: min(800px, 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: transparent;
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q span {
  font-family: var(--body-xlarge-medium-font-family);
  font-weight: var(--body-xlarge-medium-font-weight);
  color: var(--colorsprimary-01);
  font-size: var(--body-xlarge-medium-font-size);
  letter-spacing: var(--body-xlarge-medium-letter-spacing);
  line-height: var(--body-xlarge-medium-line-height);
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.faq-a {
  margin-top: 16px;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: var(--colorsprimary-02);
  font-size: var(--body-large-regular-font-size);
  letter-spacing: var(--body-large-regular-letter-spacing);
  line-height: var(--body-large-regular-line-height);
}

.faq-sep {
  width: 100%;
  height: 1px;
  background: var(--colorsgreyscale-03);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .contact-hero {
    padding: 40px 40px;
  }
  .stores {
    padding: 90px 40px;
  }
  .support {
    padding: 90px 40px;
  }
  .faq {
    padding: 72px 40px;
  }

  .stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-hero-img {
    height: 640px;
  }
}

@media (max-width: 992px) {
  .contact-hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hero-media {
    justify-content: flex-start;
  }

  .contact-hero-img {
    width: 100%;
    height: 420px;
  }

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

  .support-inner {
    flex-direction: column;
  }

  .support-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 32px 16px;
  }
  .stores {
    padding: 64px 16px;
    gap: 40px;
  }
  .support {
    padding: 64px 16px;
  }
  .faq {
    padding: 56px 16px;
  }

  .store-media,
  .store-media-frame {
    height: 320px;
  }

  .support-img {
    height: 320px;
  }

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