.page-contact {
  --contact-orange-soft: rgba(255, 106, 0, 0.08);
  --contact-border-dim: rgba(119, 141, 169, 0.45);
  --contact-gutter: clamp(20px, 4vw, 44px);
  background:
    linear-gradient(rgba(58, 80, 107, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 80, 107, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center;
  padding-bottom: 64px;
}

.page-contact .breadcrumb {
  margin-bottom: 28px;
  font-family: var(--font-body);
}

.page-contact .breadcrumb a {
  color: var(--dim-blue);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}

.page-contact .breadcrumb a:hover {
  color: var(--phn-orange);
}

.page-contact .breadcrumb-current {
  color: var(--moon-gray);
}

.contact-hero {
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
}

.contact-hero-copy h1 {
  font-family: var(--font-title);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--moon-gray);
  max-width: 640px;
  margin-bottom: 20px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 2px solid var(--contact-border-dim);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
}

.contact-hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--star-purple);
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
}

.contact-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.contact-channels {
  margin-bottom: 64px;
}

.contact-section-head {
  margin-bottom: 24px;
}

.contact-section-head h2,
.service-text-block h2,
.quick-support .section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.channel-stack {
  display: grid;
  gap: 20px;
}

.channel-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 2px solid var(--star-purple);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.channel-card:hover,
.channel-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--phn-orange);
  box-shadow: var(--shadow-card-hover);
}

.channel-index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--dim-blue);
}

.channel-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--phn-orange);
  color: var(--bg-deep);
  font-size: 28px;
}

.channel-detail {
  margin: 0;
}

.channel-detail dt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dim-blue);
  margin-bottom: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.channel-value {
  display: inline-block;
  font-family: var(--font-data);
  font-size: clamp(18px, 3.6vw, 26px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1.4;
  word-break: break-all;
  transition: color var(--speed) var(--ease);
}

.channel-email .channel-value:hover {
  color: var(--phn-orange);
}

.address-line {
  word-break: normal;
}

.channel-note {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim-blue);
}

.channel-copy-hint {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dim-blue);
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}

.channel-email:hover .channel-copy-hint {
  opacity: 1;
}

.service-info {
  display: grid;
  gap: 32px;
  margin-bottom: 64px;
  padding: 32px var(--contact-gutter);
  background: var(--bg-card);
  border: 2px solid var(--star-purple);
  border-radius: var(--radius);
}

.service-copy {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--moon-gray);
  margin-bottom: 24px;
}

.service-rule-list {
  border-top: 1px solid var(--contact-border-dim);
}

.service-rule-list .data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--contact-border-dim);
}

.service-rule-list .data-row-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dim-blue);
}

.service-rule-list .data-row-value {
  font-family: var(--font-data);
  font-size: 16px;
  font-weight: 700;
  color: var(--phn-orange);
  text-align: right;
}

.service-visual-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--star-purple);
}

.service-visual-block img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.visual-caption {
  margin: 12px 16px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dim-blue);
  text-align: center;
}

.quick-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.quick-card {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: var(--bg-card);
  border: 2px solid var(--contact-border-dim);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.quick-card:hover,
.quick-card:focus-visible {
  border-color: var(--phn-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.quick-num {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--phn-orange);
}

.quick-question {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

.quick-arrow {
  font-size: 22px;
  color: var(--dim-blue);
  transition: color var(--speed) var(--ease);
}

.quick-card:hover .quick-arrow {
  color: var(--phn-orange);
}

.support-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--contact-orange-soft);
  border: 2px solid var(--phn-orange);
  border-radius: var(--radius);
}

.support-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--moon-gray);
  margin: 0;
}

@media (min-width: 768px) {
  .page-contact {
    padding-bottom: 80px;
  }

  .contact-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 36px;
  }

  .contact-hero-copy h1 {
    font-size: 76px;
  }

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

  .channel-address {
    grid-column: 1 / -1;
  }

  .service-info {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .visual-caption {
    text-align: right;
    margin-right: 24px;
  }

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

@media (min-width: 1000px) {
  .contact-hero-copy h1 {
    font-size: 96px;
  }

  .channel-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .channel-address {
    grid-column: auto;
  }

  .channel-card {
    grid-template-columns: 64px 1fr;
    padding: 28px 24px;
  }

  .channel-glyph {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .support-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .support-cta p {
    max-width: 720px;
  }

  .support-cta .btn {
    flex-shrink: 0;
  }
}
