.page-contact {
  --contact-side-ratio: 5fr 7fr;
  --contact-form-glow: rgba(57, 255, 20, .07);
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== Hero ===== */
.page-contact .contact-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(32px, 7vw, 80px)) 0 clamp(48px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(138, 43, 226, .35) 0%, rgba(11, 22, 40, .85) 55%, rgba(11, 22, 40, 1) 78%),
    var(--c-deep);
  overflow: hidden;
}
.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18%;
  width: 72%;
  height: 100%;
  background: linear-gradient(135deg, rgba(57, 255, 20, .2), rgba(138, 43, 226, .08) 62%);
  clip-path: polygon(68% 0, 100% 0, 100% 100%, 22% 100%);
  pointer-events: none;
}
.page-contact .contact-hero__inner {
  position: relative;
  z-index: 1;
}
.page-contact .contact-hero .breadcrumbs {
  margin-bottom: 28px;
  color: var(--c-muted);
}
.page-contact .contact-hero .breadcrumbs a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color .2s var(--ease-cubic);
}
.page-contact .contact-hero .breadcrumbs a:hover {
  color: var(--c-neon);
}
.page-contact .contact-hero .breadcrumbs__sep {
  margin: 0 8px;
  color: var(--c-muted);
}
.page-contact .contact-hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-neon);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-contact .contact-hero__tagline::before {
  content: "";
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-purple));
}
.page-contact .contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  font-style: italic;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 24px;
}
.page-contact .contact-hero__title-accent {
  color: var(--c-neon);
}
.page-contact .contact-hero__lede {
  max-width: 660px;
  color: var(--c-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 40px;
}
.page-contact .contact-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.page-contact .contact-hero__stats .stat {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}
.page-contact .stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-contact .stat-block__label {
  color: var(--c-muted);
  font-size: .875rem;
}
@media (min-width: 640px) {
  .page-contact .stat-block {
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, .1);
  }
  .page-contact .stat-block:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

/* ===== Channels ===== */
.page-contact .contact-channels {
  padding: clamp(64px, 10vw, 120px) 0;
}
.page-contact .contact-channels__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) {
  .page-contact .contact-channels__layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
  }
  .page-contact .contact-channels__note {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}
.page-contact .contact-channels__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-style: italic;
  line-height: .94;
  text-transform: uppercase;
  margin: 16px 0 20px;
}
.page-contact .contact-channels__desc {
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 36ch;
}
.page-contact .contact-channels__media {
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--c-card);
}
.page-contact .contact-channels__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-contact .contact-channels__list {
  display: grid;
  gap: 20px;
}
.page-contact .contact-channel-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--c-card);
  border-left: 3px solid var(--c-neon);
  transition: transform .3s var(--ease-cubic), box-shadow .3s var(--ease-cubic), border-color .3s var(--ease-cubic);
}
@media (hover: hover) {
  .page-contact .contact-channel-card:hover {
    transform: translateX(6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    border-left-color: var(--c-orange);
  }
}
.page-contact .contact-channel-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(57, 255, 20, .08);
  color: var(--c-neon);
  border: 1px solid rgba(57, 255, 20, .28);
}
.page-contact .contact-channel-card__body {
  min-width: 0;
}
.page-contact .contact-channel-card__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-muted);
  margin: 0 0 8px;
}
.page-contact .contact-channel-card__value {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--c-white);
  margin: 0 0 8px;
  overflow-wrap: break-word;
}
.page-contact .contact-channel-card:nth-child(1) .contact-channel-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-style: italic;
  letter-spacing: .02em;
}
.page-contact .contact-channel-card__value--address {
  font-size: 1rem;
  line-height: 1.55;
}
.page-contact .contact-channel-card__meta {
  color: var(--c-muted);
  font-size: .84375rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Inquiry ===== */
.page-contact .contact-inquiry {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  background:
    linear-gradient(170deg, rgba(18, 28, 40, 1) 0%, rgba(11, 22, 40, 1) 68%),
    var(--c-deep);
  border-top: 1px solid rgba(57, 255, 20, .2);
  border-bottom: 1px solid rgba(57, 255, 20, .2);
  overflow: hidden;
}
.page-contact .contact-inquiry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 43, 226, .22), rgba(138, 43, 226, 0) 70%);
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
  pointer-events: none;
}
.page-contact .contact-inquiry__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .page-contact .contact-inquiry__layout {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 72px;
    align-items: start;
  }
}
.page-contact .contact-inquiry__head {
  min-width: 0;
}
.page-contact .contact-inquiry__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  line-height: .96;
  text-transform: uppercase;
  margin: 16px 0 20px;
}
.page-contact .contact-inquiry__desc {
  color: var(--c-muted);
  line-height: 1.7;
}
.page-contact .contact-inquiry__points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-contact .contact-inquiry__points li {
  position: relative;
  padding-left: 22px;
  color: var(--c-muted);
  line-height: 1.6;
}
.page-contact .contact-inquiry__points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-orange);
  font-weight: 700;
}
.page-contact .contact-inquiry__form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--c-card);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  position: relative;
}
.page-contact .contact-inquiry__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-orange), var(--c-purple));
}
.page-contact .form-field {
  display: grid;
  gap: 8px;
}
.page-contact .form-field__label {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
}
.page-contact .form-field__control {
  position: relative;
  background: var(--c-deep);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 14px 16px;
  color: var(--c-white);
  font-size: .9375rem;
  line-height: 1.5;
  transition: border-color .25s var(--ease-cubic), box-shadow .25s var(--ease-cubic);
}
.page-contact .form-field__control--select::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-neon);
  font-weight: 700;
}
.page-contact .form-field__control--area {
  min-height: 116px;
  color: var(--c-muted);
}
.page-contact .contact-inquiry__submit {
  justify-self: start;
  min-width: 180px;
  text-align: center;
  margin-top: 6px;
}
.page-contact .contact-inquiry__notice {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--c-muted);
  font-size: .8125rem;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.page-contact .contact-faq {
  padding: clamp(64px, 10vw, 120px) 0;
}
.page-contact .contact-faq__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 760px) {
  .page-contact .contact-faq__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.page-contact .contact-faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-style: italic;
  line-height: .96;
  text-transform: uppercase;
  margin: 16px 0 0;
}
.page-contact .contact-faq__more {
  color: var(--c-muted);
  margin: 0;
  font-size: .9375rem;
}
.page-contact .contact-faq__more a {
  color: var(--c-neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, .4);
}
.page-contact .contact-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .page-contact .contact-faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .page-contact .contact-faq__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-contact .contact-faq-card {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--c-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 0;
  text-decoration: none;
  transition: transform .3s var(--ease-cubic), border-color .3s var(--ease-cubic);
}
@media (hover: hover) {
  .page-contact .contact-faq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 255, 20, .55);
  }
}
.page-contact .contact-faq-card .badge {
  align-self: flex-start;
  background: rgba(57, 255, 20, .1);
  border: 1px solid rgba(57, 255, 20, .35);
  color: var(--c-neon);
  padding: 2px 10px;
  font-size: .8125rem;
  font-weight: 800;
}
.page-contact .contact-faq-card h3 {
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0;
}
.page-contact .contact-faq-card p {
  color: var(--c-muted);
  font-size: .875rem;
  line-height: 1.65;
  margin: 0;
}
.page-contact .contact-faq-card__link {
  margin-top: auto;
  color: var(--c-neon);
  font-size: .875rem;
  font-weight: 700;
}

/* ===== Promise ===== */
.page-contact .contact-promise {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  background: linear-gradient(135deg, rgba(11, 22, 40, 1) 0%, rgba(31, 15, 54, 1) 100%);
  border-top: 1px solid rgba(138, 43, 226, .35);
  overflow: hidden;
}
.page-contact .contact-promise::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 46%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 106, 0, .12), transparent 70%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.page-contact .contact-promise__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
@media (min-width: 900px) {
  .page-contact .contact-promise__layout {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    gap: 72px;
    align-items: center;
  }
}
.page-contact .contact-promise__content {
  min-width: 0;
}
.page-contact .contact-promise__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-style: italic;
  line-height: .94;
  text-transform: uppercase;
  margin: 16px 0 20px;
}
.page-contact .contact-promise__desc {
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 46ch;
}
.page-contact .contact-promise__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.page-contact .contact-promise__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.page-contact .contact-promise__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 106, 0, .16), rgba(57, 255, 20, .08));
  border: 1px solid rgba(255, 106, 0, .4);
  color: var(--c-orange);
  font-size: 1.25rem;
}
.page-contact .contact-promise__list h3 {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  color: var(--c-white);
}
.page-contact .contact-promise__list p {
  margin: 0;
  color: var(--c-muted);
  font-size: .875rem;
  line-height: 1.65;
}
.page-contact .contact-promise__media {
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--c-card);
}
.page-contact .contact-promise__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Legal ===== */
.page-contact .contact-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
@media (min-width: 640px) {
  .page-contact .contact-legal {
    flex-direction: row;
    justify-content: space-between;
  }
}
.page-contact .contact-legal__icp {
  margin: 0;
  color: var(--c-muted);
  font-size: .8125rem;
}
.page-contact .contact-legal__links {
  display: flex;
  gap: 24px;
}
.page-contact .contact-legal__links a {
  color: var(--c-muted);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s var(--ease-cubic);
}
.page-contact .contact-legal__links a:hover {
  color: var(--c-neon);
}
