.contact-page {
  background: #fffef7;
  color: #000;
  overflow: clip;
}

.contact-page__hero {
  position: relative;
  padding: 196px 0 96px;
}

.contact-page__hero::after {
  content: "";
  position: absolute;
  inset: 189px 0 auto;
  height: 936px;
  background:
    radial-gradient(circle at 50% 88%, rgba(192, 169, 113, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(192, 169, 113, 0.08), rgba(192, 169, 113, 0));
  pointer-events: none;
  z-index: 0;
}

.contact-page__shell,
.contact-page__cta-inner {
  position: relative;
  z-index: 1;
  width: min(1290px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-page__shell {
  display: grid;
  grid-template-columns: 520px minmax(0, 736px);
  gap: 30px;
  align-items: start;
}

.contact-page__intro,
.contact-page__map-column {
  min-width: 0;
}

.contact-page__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-page__eyebrow {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.062em;
  text-transform: uppercase;
}

.contact-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 36.49px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-page__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 390;
  line-height: 1.7;
}

.contact-page__copy p {
  margin: 0;
}

.contact-page__card-list {
  border: 1px solid #c0a971;
  background: rgba(255, 254, 247, 0.72);
}

.contact-page__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
}

.contact-page__item--divided {
  border-bottom: 1px solid #c0a971;
}

.contact-page__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #c0a971;
  border-radius: 999px;
  flex: 0 0 auto;
}

.contact-page__item-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page__item-label {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-page__item-value {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 390;
  line-height: 1.7;
}

.contact-page__item-value--link,
.contact-page__item-value--link a {
  color: #8a7346;
}

.contact-page__item-value--muted {
  color: #5f5d55;
}

.contact-page__map-frame {
  position: relative;
  background: #fffcec;
  border: 1px solid #c0a971;
  min-height: 747px;
  overflow: hidden;
}

.contact-page__map-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-page__map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(192, 169, 113, 0.08);
  pointer-events: none;
}

.contact-page__map-shell iframe {
  display: block;
  width: 100%;
  height: 747px;
  filter: grayscale(1) sepia(0.28) saturate(0.45) contrast(0.94) brightness(1.03);
}

.contact-page__parking-note {
  position: absolute;
  top: 62px;
  right: 48px;
  width: min(184px, calc(100% - 96px));
  padding: 18px 20px;
  background: rgba(255, 252, 236, 0.94);
  border: 1px solid #c0a971;
  backdrop-filter: blur(3px);
}

.contact-page__parking-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page__parking-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #5f5d55;
  font-family: 'Spectral', serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.contact-page__parking-list li {
  position: relative;
  padding-left: 18px;
}

.contact-page__parking-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c0a971;
}

.contact-page__cta {
  position: relative;
  background-color: #c9b08a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-page__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 236, 0.18);
}

.contact-page__cta-inner {
  z-index: 1;
  padding: 96px 0;
}

.contact-page__cta-frame {
  display: flex;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-page__cta-card {
  width: min(850px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px;
  background: #fffcec;
  text-align: center;
}

.contact-page__cta-copywrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.contact-page__cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28.83px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-page__cta-copy {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.contact-page__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 55px;
  padding: 20px 48px;
  border: 2px solid #000;
  background: rgba(255, 255, 255, 0.2);
  color: #000;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-page__cta-button:hover,
.contact-page__cta-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.34);
}

.contact-page__cta-button-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.contact-page__cta-button-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1180px) {
  .contact-page__shell,
  .contact-page__cta-inner {
    width: min(1290px, calc(100% - 32px));
  }

  .contact-page__shell {
    grid-template-columns: 1fr;
  }

  .contact-page__map-column {
    max-width: 736px;
  }
}

@media (max-width: 767px) {
  .contact-page__hero {
    padding: 152px 0 72px;
  }

  .contact-page__title {
    font-size: 30px;
  }

  .contact-page__item,
  .contact-page__cta-card {
    padding: 20px;
  }

  .contact-page__parking-note {
    position: static;
    width: auto;
    margin: 16px;
  }

  .contact-page__map-frame {
    min-height: auto;
  }

  .contact-page__map-shell iframe {
    height: 420px;
  }

  .contact-page__cta-frame {
    padding: 12px;
  }

  .contact-page__cta-card {
    gap: 24px;
    padding: 24px;
  }

  .contact-page__cta-button {
    width: 100%;
    padding-inline: 24px;
  }
}