.page-contact {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.page-contact__hero {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: "";
  position: absolute;
  right: -64px;
  top: -84px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(212, 168, 69, 0.32);
  transform: rotate(24deg);
  pointer-events: none;
}

.page-contact__hero::after {
  content: "";
  position: absolute;
  right: 72px;
  bottom: 0;
  width: 160px;
  height: 16px;
  background: var(--crimson);
  transform: skewX(-36deg);
  transform-origin: right bottom;
  pointer-events: none;
}

.page-contact__title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.015em;
  margin: 16px 0 12px;
  max-width: 720px;
}

.page-contact__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 239, 224, 0.82);
  max-width: 36em;
  margin: 0;
}

.page-contact__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 239, 224, 0.16);
}

.page-contact__anchor {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-contact__anchor:hover {
  border-bottom-color: var(--gold);
}

.page-contact__main {
  padding-top: 56px;
  padding-bottom: 64px;
}

.page-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.page-contact__left,
.page-contact__right {
  min-width: 0;
}

.page-contact__media {
  position: relative;
  overflow: hidden;
  background: var(--pearl);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  margin-bottom: 24px;
}

.page-contact__media-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-contact__card {
  background: var(--white);
  padding: 28px 24px 20px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid var(--gold);
}

.page-contact__card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 8px;
  padding-right: 12px;
}

.page-contact__card-title::before {
  content: "01";
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--crimson);
  letter-spacing: 0.12em;
  margin-right: 10px;
}

.page-contact__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(16, 24, 32, 0.74);
  margin: 0 0 20px;
}

.page-contact__channel {
  border-top: 1px solid var(--pearl);
  padding: 16px 0;
}

.page-contact__channel-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26, 58, 74, 0.08);
  padding: 3px 8px;
  margin-bottom: 6px;
}

.page-contact__channel-email,
.page-contact__channel-phone {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.page-contact__channel-phone {
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.page-contact__channel-email:hover,
.page-contact__channel-phone:hover {
  color: var(--crimson);
}

.page-contact__channel-note {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.6);
  margin-top: 4px;
}

.page-contact__promise {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 22px 24px;
  position: relative;
  border-top: 4px solid var(--gold);
}

.page-contact__promise-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 12px 0 8px;
}

.page-contact__promise-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 239, 224, 0.78);
  margin: 0;
}

.page-contact__promise-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(245, 239, 224, 0.14);
}

.page-contact__promise-meta-item dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.page-contact__promise-meta-item dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}

.page-contact__map {
  position: relative;
}

.page-contact__map-frame {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--pearl);
}

.page-contact__map-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-contact__map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-contact__map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 40px);
  box-shadow: 4px 4px 0 rgba(16, 24, 32, 0.15);
}

.page-contact__map-pin {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  animation: page-contact-pulse 1.6s ease-out infinite;
}

@keyframes page-contact-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(192, 57, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
  }
}

.page-contact__address {
  background: var(--gold);
  color: var(--ink);
  padding: 24px 22px;
  position: relative;
  z-index: 2;
  box-shadow: 8px 8px 0 rgba(16, 24, 32, 0.12);
}

.page-contact__address-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.page-contact__address-title::before {
  content: "02";
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(16, 24, 32, 0.6);
  margin-right: 10px;
}

.page-contact__address-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 6px;
}

.page-contact__address-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.72);
  margin: 0;
}

.page-contact__faq {
  background: var(--teal);
  color: var(--paper);
  padding: 52px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-contact__faq::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -64px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(245, 239, 224, 0.14);
  transform: rotate(30deg);
  pointer-events: none;
}

.page-contact__faq::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson) 22%, var(--gold) 22%, var(--gold) 100%);
}

.page-contact__faq-inner {
  position: relative;
  z-index: 1;
}

.page-contact__faq-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 12px 0 10px;
}

.page-contact__faq-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 239, 224, 0.8);
  max-width: 36em;
  margin: 0 0 24px;
}

.page-contact__faq-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid rgba(245, 239, 224, 0.14);
}

.page-contact__faq-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 239, 224, 0.14);
  font-size: 14px;
  line-height: 1.6;
}

.page-contact__faq-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.page-contact__faq-text {
  display: block;
}

.page-contact__faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-contact__faq-extra {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.66);
}

.page-contact__faq-extra a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-contact__hero .breadcrumbs__link {
  color: rgba(245, 239, 224, 0.74);
}

.page-contact__hero .breadcrumbs__item {
  color: rgba(245, 239, 224, 0.58);
}

.page-contact__hero .breadcrumbs__link:hover {
  color: var(--gold);
}

.page-contact__hero .eyebrow,
.page-contact__faq .eyebrow {
  color: var(--gold);
}

.page-contact [id] {
  scroll-margin-top: 84px;
}

@media (min-width: 992px) {
  .page-contact__hero {
    padding: 56px 0 88px;
  }

  .page-contact__title {
    font-size: 48px;
    max-width: 760px;
  }

  .page-contact__lead {
    font-size: 17px;
    max-width: 42em;
  }

  .page-contact__main {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .page-contact__grid {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }

  .page-contact__left {
    margin-top: 44px;
  }

  .page-contact__card {
    padding: 32px 28px 24px;
    margin-bottom: 24px;
  }

  .page-contact__promise {
    padding: 26px 28px 28px;
  }

  .page-contact__map-label {
    left: 20px;
    bottom: 44px;
  }

  .page-contact__address {
    margin-top: -20px;
    margin-left: 48px;
    margin-right: 12px;
  }

  .page-contact__faq {
    padding: 64px 0 72px;
  }

  .page-contact__faq-title {
    font-size: 32px;
  }

  .page-contact__faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: none;
    margin-bottom: 32px;
  }

  .page-contact__faq-item {
    display: block;
    padding: 16px;
    border: 1px solid rgba(245, 239, 224, 0.14);
    background: rgba(16, 24, 32, 0.22);
    margin: 0;
  }

  .page-contact__faq-index {
    display: block;
    margin-bottom: 8px;
  }
}
