.page-contact {
  position: relative;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 15% 5%, rgba(245, 197, 66, 0.08), transparent 240px),
    radial-gradient(circle at 85% 15%, rgba(159, 216, 227, 0.06), transparent 200px);
  color: var(--ice);
  overflow: hidden;
}

.page-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(242, 245, 250, 0.05) 1px, transparent 1.5px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 0;
}

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

.page-contact .contact-hero {
  padding: clamp(48px, 7vw, 96px) 0 0;
}

.page-contact .contact-hero .eyebrow {
  margin-bottom: 24px;
}

.page-contact .contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  font-weight: 900;
  transform: skew(-3deg);
  max-width: 900px;
  margin: 0;
}

.page-contact .contact-hero__lead {
  margin-top: 32px;
  max-width: 640px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: var(--lavender);
}

.page-contact .contact-hero__meta {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ice-blue);
  letter-spacing: 0.4px;
}

.page-contact .contact-direct {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
}

.page-contact .contact-direct__beam {
  position: absolute;
  top: 0;
  right: 8%;
  width: 2px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(245, 197, 66, 0.25), transparent);
  transform: rotate(28deg);
  pointer-events: none;
}

.page-contact .contact-direct__grid {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
}

@media (min-width: 1024px) {
  .page-contact .contact-direct__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
  }
}

.page-contact .section__head {
  margin-bottom: 28px;
}

.page-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact .contact-info__intro {
  max-width: 520px;
  color: var(--lavender);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0 0 8px;
}

.page-contact .contact-info__card {
  position: relative;
  padding: 28px 28px 28px 32px;
  background: var(--bg-panel);
  border-left: 2px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.page-contact .contact-info__card--phone {
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.12), rgba(26, 31, 61, 0.92) 60%);
  border-left: none;
}

.page-contact .contact-info__card--email {
  background: linear-gradient(135deg, rgba(26, 31, 61, 0.9), rgba(159, 216, 227, 0.06) 100%);
}

.page-contact .contact-info__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice-blue);
  margin-bottom: 14px;
}

.page-contact .contact-info__tel {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-text-stroke: 1px rgba(255, 226, 122, 0.25);
  text-shadow: 0 0 40px rgba(245, 197, 66, 0.2);
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}

.page-contact .contact-info__tel:hover {
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(255, 226, 122, 0.4);
}

.page-contact .contact-info__mail {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ice);
  text-decoration: none;
  word-break: break-all;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-contact .contact-info__mail:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.page-contact .contact-info__copy {
  display: inline-block;
  margin-left: 12px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.page-contact .contact-info__copy:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.page-contact .contact-info__address {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ice);
  margin-bottom: 8px;
}

.page-contact .contact-info__note {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--lavender);
  margin-top: 10px;
  max-width: 460px;
}

.page-contact .contact-info__figure,
.page-contact .contact-promise__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.page-contact .contact-info__figure img,
.page-contact .contact-promise__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.page-contact .contact-info__figure figcaption,
.page-contact .contact-promise__figure figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--lavender);
  line-height: 1.6;
}

.page-contact .contact-prep {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact .contact-prep__intro {
  color: var(--lavender);
  line-height: 1.8;
  max-width: 480px;
  margin: 0;
}

.page-contact .contact-prep__panel {
  background: var(--bg-panel);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.page-contact .contact-prep__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--ice);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s var(--ease);
}

.page-contact .contact-prep__toggle:hover {
  color: var(--gold-light);
}

.page-contact .contact-prep__icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.page-contact .contact-prep__panel[data-open] .contact-prep__icon {
  transform: rotate(0deg);
  background: rgba(245, 197, 66, 0.15);
}

.page-contact .contact-prep__content {
  max-height: none;
  padding: 0 24px 24px;
}

.page-contact.js .page-contact .contact-prep__content {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
}

.page-contact.js .page-contact .contact-prep__panel[data-open] .contact-prep__content {
  max-height: 720px;
  padding-bottom: 24px;
}

.page-contact .contact-prep__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-contact .contact-prep__list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.page-contact .contact-prep__item-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  line-height: 1.4;
  white-space: nowrap;
  padding-top: 2px;
}

.page-contact .contact-prep__list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ice);
}

.page-contact .contact-prep__list p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--lavender);
  margin: 0;
}

.page-contact .contact-prep__links {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 2px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-contact .contact-prep__links p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--lavender);
}

.page-contact .contact-prep__links a,
.page-contact .contact-promise__privacy {
  color: var(--ice-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 216, 227, 0.3);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-contact .contact-prep__links a:hover,
.page-contact .contact-promise__privacy:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.page-contact .contact-promise {
  padding-top: clamp(56px, 7vw, 96px);
}

.page-contact .contact-promise__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 960px) {
  .page-contact .contact-promise__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.page-contact .contact-promise__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.8;
  color: var(--ice);
  max-width: 560px;
}

.page-contact .contact-promise__steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-contact .contact-promise__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--line-gold);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-contact .contact-promise__step:hover {
  background: rgba(245, 197, 66, 0.06);
  border-left-color: var(--gold);
}

.page-contact .contact-promise__step-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gold);
  line-height: 1.4;
  padding-top: 2px;
}

.page-contact .contact-promise__step-body h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--ice);
  font-weight: 600;
}

.page-contact .contact-promise__step-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lavender);
  margin: 0;
}

.page-contact .contact-promise__data {
  margin-top: 28px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--lavender);
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(245, 197, 66, 0.06), transparent);
}

.page-contact .contact-promise__privacy {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.page-contact .contact-hours {
  margin-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(64px, 8vw, 120px);
}

.page-contact .contact-hours__inner {
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(26, 31, 61, 0.9), rgba(14, 16, 38, 0.96));
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
  overflow: hidden;
}

.page-contact .contact-hours__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(225deg, rgba(245, 197, 66, 0.15), transparent 70%);
  pointer-events: none;
}

.page-contact .contact-hours__range {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.page-contact .contact-hours__scale {
  position: relative;
  margin-top: 32px;
  max-width: 720px;
  padding-right: 48px;
}

.page-contact .contact-hours__bar {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 16px;
}

.page-contact .contact-hours__fill {
  position: absolute;
  top: 0;
  left: 37.5%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.page-contact .contact-hours__tick {
  position: absolute;
  top: -28px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ice-blue);
  white-space: nowrap;
}

.page-contact .contact-hours__tick::after {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
}

.page-contact .contact-hours__tick--start {
  left: 37.5%;
}

.page-contact .contact-hours__tick--end {
  left: 87.5%;
}

.page-contact .contact-hours__note {
  margin-top: 24px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--lavender);
  max-width: 600px;
}

.page-contact .contact-hours__icp {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ice-blue);
  letter-spacing: 1px;
}
