.page-contact {
  background: var(--dark);
  color: var(--light);
  overflow: clip;
}

.page-contact .contact-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-deep) 100%);
}

.page-contact .contact-hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-contact .contact-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 13, 0.78) 0%, rgba(11, 61, 46, 0.6) 46%, rgba(10, 15, 13, 0.96) 100%);
  z-index: 1;
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(10, 15, 13, 0) 0%, var(--dark) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-contact .contact-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.26) 0%, rgba(201, 162, 39, 0) 72%);
  z-index: 1;
  pointer-events: none;
}

.page-contact .contact-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 64px;
}

.page-contact .contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(240, 239, 233, 0.64);
  margin-bottom: 28px;
}

.page-contact .contact-breadcrumb a {
  color: rgba(240, 239, 233, 0.64);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.page-contact .contact-breadcrumb-sep {
  color: rgba(240, 239, 233, 0.36);
}

.page-contact .contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.page-contact .contact-title {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--light);
  margin: 0 0 16px;
}

.page-contact .contact-title-dot {
  color: var(--gold);
}

.page-contact .contact-intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(240, 239, 233, 0.76);
  max-width: 560px;
  margin: 0 0 28px;
}

.page-contact .contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-contact .contact-hero-actions .btn {
  min-width: 132px;
  text-align: center;
  margin: 0;
}

.page-contact .contact-section {
  position: relative;
  padding: 72px 0;
}

.page-contact .contact-section > .container {
  position: relative;
  z-index: 1;
}

.page-contact .contact-service {
  background: linear-gradient(180deg, var(--dark) 0%, var(--green-deep) 100%);
}

.page-contact .contact-service::before {
  content: "01";
  position: absolute;
  top: 12px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 150px;
  line-height: 1;
  font-weight: 700;
  color: rgba(240, 239, 233, 0.035);
  pointer-events: none;
  z-index: 0;
}

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

.page-contact .contact-section-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-contact .contact-section-number::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--border-gold);
}

.page-contact .contact-section-title {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  color: var(--light);
  margin: 0 0 10px;
}

.page-contact .contact-section-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(240, 239, 233, 0.66);
  max-width: 560px;
  margin: 0;
}

.page-contact .contact-split {
  display: grid;
  gap: 30px;
}

.page-contact .contact-cards {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-contact .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

@media (hover: hover) {
  .page-contact .contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: var(--glass-strong);
  }
}

.page-contact .contact-card-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold);
}

.page-contact .contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-contact .contact-card-body {
  min-width: 0;
}

.page-contact .contact-card-label {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 600;
  color: rgba(240, 239, 233, 0.86);
  margin: 0 0 4px;
}

.page-contact .contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
  margin: 0 0 8px;
  word-break: break-all;
}

.page-contact .contact-card-note {
  font-size: 13px;
  color: rgba(240, 239, 233, 0.58);
  margin: 0;
  line-height: 1.6;
}

.page-contact .contact-card-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-contact .contact-card-action:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.page-contact .contact-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact .contact-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}

.page-contact .contact-map::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 18px;
  width: 72px;
  height: 72px;
  background: rgba(201, 162, 39, 0.14);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}

.page-contact .contact-map-overlay {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  text-align: center;
  width: 100%;
}

.page-contact .contact-map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid var(--border-gold);
}

.page-contact .contact-map-pin svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-contact .contact-map-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}

.page-contact .contact-map-address {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--light);
  margin: 0 0 10px;
}

.page-contact .contact-map-note {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240, 239, 233, 0.6);
  margin: 0 auto;
  max-width: 260px;
}

.page-contact .contact-business {
  background: linear-gradient(125deg, var(--indigo) 0%, var(--dark) 48%, var(--green-deep) 100%);
  overflow: hidden;
}

.page-contact .contact-business::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.page-contact .contact-coop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-contact .contact-coop-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s ease, background 0.25s ease;
}

@media (hover: hover) {
  .page-contact .contact-coop-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.09);
  }
}

.page-contact .contact-coop-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.page-contact .contact-coop-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240, 239, 233, 0.68);
  margin: 0;
}

.page-contact .contact-coop-mailbox {
  margin-top: 32px;
  padding: 28px 24px;
  background: rgba(10, 15, 13, 0.5);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
}

.page-contact .contact-coop-mailbox .contact-card-label {
  margin-bottom: 2px;
}

.page-contact .contact-coop-mail {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--light);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}

.page-contact .contact-coop-mail:hover {
  color: var(--gold);
}

.page-contact .contact-coop-note {
  font-size: 13px;
  color: rgba(240, 239, 233, 0.56);
  line-height: 1.6;
  margin: 0;
}

.page-contact .contact-address {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--dark) 100%);
}

.page-contact .contact-address::before {
  content: "03";
  position: absolute;
  top: 10px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 140px;
  line-height: 1;
  font-weight: 700;
  color: rgba(240, 239, 233, 0.035);
  pointer-events: none;
}

.page-contact .contact-address-inner {
  display: grid;
  gap: 28px;
}

.page-contact .contact-address-card {
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-contact .contact-address-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold);
}

.page-contact .contact-address-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-contact .contact-address-line {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--light);
  margin: 0 0 10px;
}

.page-contact .contact-address-note {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240, 239, 233, 0.6);
  margin: 0;
}

.page-contact .contact-help {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}

.page-contact .contact-help h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
  margin: 0 0 10px;
}

.page-contact .contact-help p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(240, 239, 233, 0.68);
  margin: 0 0 22px;
  max-width: 440px;
}

.page-contact .contact-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-contact .contact-help-links .btn {
  margin: 0;
}

.page-contact .contact-text-link {
  font-size: 14px;
  color: rgba(240, 239, 233, 0.66);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.page-contact .contact-text-link:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  .page-contact .contact-hero {
    min-height: 580px;
  }

  .page-contact .contact-hero-container {
    padding-top: 96px;
    padding-bottom: 84px;
  }

  .page-contact .contact-title {
    font-size: 54px;
  }

  .page-contact .contact-intro {
    font-size: 16px;
  }

  .page-contact .contact-hero-actions {
    gap: 16px;
  }

  .page-contact .contact-section {
    padding: 104px 0;
  }

  .page-contact .contact-service::before {
    font-size: 260px;
    top: 28px;
  }

  .page-contact .contact-section-title {
    font-size: 36px;
  }

  .page-contact .contact-section-desc {
    font-size: 15px;
  }

  .page-contact .contact-coop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .page-contact .contact-address::before {
    font-size: 240px;
    top: 24px;
  }

  .page-contact .contact-address-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-contact .contact-split {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    align-items: stretch;
  }
}
