.contact-page {
  background: #0b0f14;
  color: #fff;
  min-height: 30vh;
  overflow-x: clip;
  height: fit-content;
}

/* Premium Hero */
.contact-page__hero {
  position: relative;
  min-height: clamp(480px, 65vh, 640px);
  display: flex;
  align-items: center;
  padding: clamp(140px, 12vw, 180px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  background: #030a07;
}

.contact-page__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-page__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.contact-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 20, 0.2) 0%,
    rgba(11, 15, 20, 0.8) 60%,
    #0b0f14 100%
  );
}

/* Premium Hero Layout */
.contact-page__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-page__hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: center;
}

.contact-page__hero-content {
  display: flex;
  flex-direction: column;
}

.contact-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: rgba(246, 241, 234, 0.5);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-page__breadcrumb-link {
  color: #ec7d45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page__breadcrumb-link:hover {
  color: #fff;
}

.contact-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  text-wrap: balance;
}

.contact-page__summary {
  max-width: 36rem;
  margin-top: 28px;
  color: rgba(246, 241, 234, 0.74);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.68;
}

.contact-page__summary p {
  margin: 0 0 1.2em;
}

.contact-page__summary p:last-child {
  margin-bottom: 0;
}

.contact-page__summary a {
  color: #ec7d45;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.contact-page__summary a:hover {
  color: #fff;
}

/* Info Grid (2 Columns) */
.contact-page__hero-info {
  width: 100%;
}

.contact-page__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-page__info-card:nth-child(1),
.contact-page__info-card:nth-child(2) {
  grid-column: 1 / -1;
}

.contact-page__info-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.contact-page__info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 125, 69, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.contact-page__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(236, 125, 69, 0.12);
  border: 1px solid rgba(236, 125, 69, 0.25);
  color: #ec7d45;
  border-radius: 0;
}

.contact-page__info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-page__info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-page__info-label {
  margin: 0;
  color: rgba(246, 241, 234, 0.5);
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-page__info-link {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-page__info-link:hover {
  color: #ec7d45;
}

.contact-page__hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.contact-page__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.contact-page__hours-day {
  color: rgba(246, 241, 234, 0.6);
  font-weight: 700;
}

.contact-page__hours-time {
  color: #fff;
  text-align: right;
}

.contact-page__hero-bottom-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(63, 193, 217, 0) 0%,
    rgba(63, 193, 217, 0.4) 50%,
    rgba(63, 193, 217, 0) 100%
  );
}

/* Form Section */
.contact-page__form-section {
  padding: 80px 0;
  background: #0b0f14;
}

.contact-page__form-container {
  width: min(1340px, calc(100% - 48px));
  margin: 0 auto;
}

/* Accordions Section */
.contact-page__content-accordions {
  padding: 80px 0 140px;
  background: #0b0f14;
}

.contact-page__accordions-inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-page__accordions-head {
  text-align: center;
  margin-bottom: 60px;
}

.contact-page__accordions-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.contact-page__accordions-copy {
  color: rgba(246, 241, 234, 0.6);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page__section-image {
  margin: 20px 0;
}

.contact-page__section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-page__internal-accordion {
  margin: 15px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid #ec7d45;
}

.contact-page__internal-accordion h4 {
  margin-top: 0;
  color: #ec7d45;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-page__hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-page__hero {
    padding-bottom: 80px;
  }

  .contact-page__title {
    font-size: clamp(42px, 8vw, 64px);
  }
}

@media (max-width: 640px) {
  .contact-page__info-grid {
    grid-template-columns: 1fr;
  }

  .contact-page__hero {
    padding-top: 130px;
  }

  .contact-page__accordions-inner {
    width: calc(100% - 32px);
  }
}
