.page-contact {
  --orb-glow: rgba(59, 46, 110, 0.7);
  --orb-orange: rgba(255, 107, 53, 0.9);
  --orb-line: rgba(192, 200, 216, 0.2);
  --orb-deep: rgba(11, 16, 38, 0.88);
  background: linear-gradient(180deg, #0B1026 0%, #0F4C5C 55%, #0B1026 100%);
  color: #C0C8D8;
  overflow-x: hidden;
  font-family: var(--font-body);
}

.page-contact .container {
  width: min(var(--content-w), 92%);
  margin-inline: auto;
}

.page-contact a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.65);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-contact a:hover,
.page-contact a:focus-visible {
  color: var(--color-orange);
  text-decoration-color: var(--color-orange);
  outline: 2px solid rgba(255, 107, 53, 0.7);
  outline-offset: 2px;
}

.page-contact .breadcrumb {
  margin-bottom: 32px;
  color: rgba(192, 200, 216, 0.7);
  font-size: 13px;
}

.page-contact .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-contact .breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(192, 200, 216, 0.4);
}

.page-contact .breadcrumb a {
  color: rgba(192, 200, 216, 0.8);
  text-decoration: none;
}

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

/* ============ HERO ============ */
.contact-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 56px 0 72px;
  background: radial-gradient(ellipse at 85% 8%, var(--orb-glow) 0%, rgba(11, 16, 38, 0) 60%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 38, 0.88) 0%, rgba(11, 16, 38, 0.55) 45%, rgba(11, 16, 38, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-w), 92%);
  margin-inline: auto;
}

.hero-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-orange);
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 12px 0 0;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--color-silver);
  letter-spacing: 0.02em;
}

.hero-lead {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(192, 200, 216, 0.88);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 36px 0 0;
  padding: 20px;
  border: 1px solid rgba(192, 200, 216, 0.2);
  border-left: 4px solid var(--color-orange);
  background: rgba(11, 16, 38, 0.62);
  backdrop-filter: blur(6px);
  max-width: 680px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta dt {
  font-size: 12px;
  color: rgba(192, 200, 216, 0.6);
  letter-spacing: 0.12em;
}

.hero-meta dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
}

.hero-meta a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-meta a:hover {
  color: var(--color-orange);
}

/* ============ ORBIT SECTION ============ */
.contact-orbit-section {
  position: relative;
  padding: 84px 0 72px;
  background: radial-gradient(circle at 22% 18%, rgba(255, 107, 53, 0.08) 0%, transparent 34%);
}

.orbit-board {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.orbit-board::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(255, 107, 53, 0.22);
  pointer-events: none;
  z-index: 0;
}

.orbit-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 24px;
  text-align: center;
  border-radius: 50%;
  width: 100%;
  min-height: 220px;
  background: radial-gradient(circle at 50% 30%, rgba(59, 46, 110, 0.9) 0%, rgba(11, 16, 38, 0.95) 68%);
  border: 2px solid rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 48px rgba(255, 107, 53, 0.14);
}

.orbit-core-star {
  font-size: 30px;
  color: var(--color-orange);
  line-height: 1;
}

.orbit-core-brand {
  font-family: var(--font-heading);
  font-size: 34px;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-top: 6px;
}

.orbit-core-sub {
  font-size: 13px;
  color: rgba(192, 200, 216, 0.66);
  letter-spacing: 0.2em;
  margin-top: 6px;
}

.orbit-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(15, 76, 92, 0.78) 0%, rgba(11, 16, 38, 0.82) 100%);
  border: 1px solid rgba(192, 200, 216, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.orbit-card:hover,
.orbit-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.node-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-orange);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.node-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 10px;
  text-decoration: none;
  word-break: break-all;
}

a.node-value:hover {
  color: var(--color-orange);
}

.node-value-address {
  word-break: normal;
  font-size: 20px;
}

.node-hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(192, 200, 216, 0.82);
}

.node-tip {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(192, 200, 216, 0.58);
  border-top: 1px dashed rgba(192, 200, 216, 0.2);
  padding-top: 10px;
}

/* ============ HOURS ============ */
.contact-hours {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #0B1026 0%, rgba(15, 76, 92, 0.4) 50%, #0B1026 100%);
  position: relative;
}

.section-head {
  margin-bottom: 36px;
}

.chapter-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-orange);
  opacity: 0.8;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 40px);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--color-white);
  line-height: 1.1;
}

.section-sub {
  margin: 10px 0 0;
  font-size: 16px;
  color: rgba(192, 200, 216, 0.72);
}

.section-head-wine .chapter-num {
  -webkit-text-stroke: 2px var(--color-wine);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hours-card {
  padding: 30px 26px;
  background: rgba(11, 16, 38, 0.72);
  border: 1px solid var(--orb-line);
  border-top: 4px solid var(--color-teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
}

.hours-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.14), transparent 70%);
  pointer-events: none;
}

.hours-index {
  font-family: var(--font-heading);
  font-size: 28px;
  color: rgba(255, 107, 53, 0.8);
  display: block;
  margin-bottom: 12px;
}

.hours-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

.hours-value {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: -0.01em;
}

.hours-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(192, 200, 216, 0.82);
}

.hours-note {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 4px solid var(--color-wine);
  background: rgba(107, 42, 58, 0.14);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(192, 200, 216, 0.86);
}

.hours-note p {
  margin: 0;
}

/* ============ BUSINESS ============ */
.contact-business {
  padding: 84px 0 76px;
  background: radial-gradient(circle at 78% 16%, rgba(59, 46, 110, 0.56), transparent 50%);
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.business-card {
  position: relative;
  padding: 30px 26px 26px 70px;
  background: rgba(15, 76, 92, 0.4);
  border: 1px solid rgba(192, 200, 216, 0.2);
  border-radius: var(--radius);
  min-height: 180px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.business-card:hover {
  background: rgba(15, 76, 92, 0.62);
  transform: translateY(-3px);
}

.business-num {
  position: absolute;
  left: 18px;
  top: 28px;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 107, 53, 0.7);
}

.business-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

.business-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(192, 200, 216, 0.82);
}

.business-cta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  padding: 24px 26px;
  background: rgba(11, 16, 38, 0.86);
  border: 1px solid rgba(255, 107, 53, 0.42);
  border-radius: var(--radius);
}

.cta-signal {
  flex: 0 0 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.85);
  margin-top: 8px;
  width: 14px;
}

.business-cta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 244, 248, 0.9);
}

.cta-email-highlight {
  font-weight: 700;
  color: var(--color-orange);
}

/* ============ LOCATION ============ */
.contact-location {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #0B1026 0%, rgba(59, 46, 110, 0.32) 48%, #0B1026 100%);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 36px;
}

.location-card {
  padding: 30px 26px;
  background: rgba(11, 16, 38, 0.8);
  border: 1px solid rgba(192, 200, 216, 0.22);
  border-right: 4px solid var(--color-orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.loc-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-orange);
  border: 1px solid rgba(255, 107, 53, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.location-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  color: var(--color-white);
}

.loc-address {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}

.loc-note {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(192, 200, 216, 0.66);
}

.loc-call {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  border: 1px solid rgba(255, 107, 53, 0.5);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.loc-call:hover {
  background: rgba(255, 107, 53, 0.18);
}

.location-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(192, 200, 216, 0.26);
  box-shadow: var(--shadow-card);
  background: #1A1D29;
}

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

.media-frame-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background: rgba(11, 16, 38, 0.82);
  border: 1px solid rgba(192, 200, 216, 0.28);
  padding: 6px 12px;
  border-radius: 3px;
}

.map-wrap {
  position: relative;
  background: rgba(11, 16, 38, 0.6);
  border: 1px solid rgba(192, 200, 216, 0.22);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.map-drawing {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: linear-gradient(160deg, #0B1026 0%, #0F4C5C 100%);
}

.map-pop {
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.map-wrap:hover .map-pop,
.map-wrap:focus-within .map-pop {
  opacity: 1;
}

.map-hint {
  margin: 14px 2px 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(192, 200, 216, 0.56);
}

/* ============ MORE LINKS ============ */
.contact-more {
  padding: 64px 0 80px;
  background: rgba(11, 16, 38, 0.7);
  border-top: 1px solid rgba(192, 200, 216, 0.12);
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.more-card {
  position: relative;
  padding: 28px 24px 30px;
  background: rgba(15, 76, 92, 0.26);
  border: 1px solid rgba(192, 200, 216, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.more-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

.more-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(192, 200, 216, 0.78);
}

.more-index {
  position: absolute;
  right: 14px;
  bottom: 4px;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(192, 200, 216, 0.14);
  opacity: 0.8;
  pointer-events: none;
}

/* ============ MEDIA QUERIES ============ */
@media (min-width: 540px) {
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .more-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .contact-hero {
    min-height: 600px;
    padding: 88px 0 96px;
  }

  .hero-title {
    font-size: clamp(60px, 8vw, 92px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
  }

  .orbit-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 48px 0;
  }

  .orbit-board::before {
    display: block;
  }

  .orbit-core {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    min-height: 260px;
    margin: 0 auto;
    width: 260px;
    height: 260px;
  }

  .node-phone {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .node-email {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }

  .node-address {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
  }

  .node-address .node-type {
    margin: 0;
    white-space: nowrap;
  }

  .node-address .node-value-address {
    margin: 0;
    font-size: 22px;
  }

  .node-address .node-hint {
    grid-column: 2;
  }

  .hours-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .business-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .location-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: start;
  }

  .location-info-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-figure img {
    height: 320px;
    object-fit: cover;
  }

  .map-wrap {
    position: sticky;
    top: 96px;
  }

  .map-drawing {
    min-height: 420px;
  }

  .more-card {
    min-height: 180px;
  }
}

@media (min-width: 1200px) {
  .orbit-board::before {
    width: 580px;
    height: 580px;
  }

  .node-phone,
  .node-email {
    min-height: 260px;
  }
}
