/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — assets/css/contact.css
   Contact-details-only layout (no form)
═══════════════════════════════════════════════════════════ */

.ct-body { background: #06101E; }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06101E;
}

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

.ct-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.48) saturate(.75);
  transform: scale(1.05);
  transition: transform 14s ease;
}

.ct-hero-bg img.loaded { transform: scale(1); }

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,16,30,.65) 0%, rgba(6,16,30,.2) 100%);
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: calc(var(--nav-h, 72px) + 80px);
  padding-bottom: 120px;
  width: 100%;
}

.ct-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.ct-eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold, #C8860A);
  flex-shrink: 0;
}

.ct-eyebrow-ref {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(200,134,10,.7);
  text-transform: uppercase;
}

.ct-hero-title {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.ct-ht-word {
  display: block;
  color: #fff;
  opacity: 0;
  transform: translateY(60px);
}

.ct-ht-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.5);
  color: transparent;
}

.ct-hero-sub {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 0 48px;
}

.ct-hero-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ct-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold, #C8860A);
  color: #fff;
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .25s;
}

.ct-channel-btn:hover { background: #a06c05; transform: translateY(-2px); color: #fff; }

.ct-channel-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
}

.ct-channel-btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}

.ct-hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.ct-hero-scroll-cue span {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
}

.ct-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,134,10,.6), transparent);
  animation: ctScrollPulse 2s ease infinite;
}

@keyframes ctScrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}


/* ══════════════════════════════════════════════════════════
   DETAILS SECTION — DARK NAVY
══════════════════════════════════════════════════════════ */
.ct-details-sec {
  position: relative;
  background: #06101E;
  padding: 120px 0;
  overflow: hidden;
}

.ct-details-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.ct-details-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.ct-details-header {
  text-align: center;
  margin-bottom: 72px;
}

.ct-sec-mono {
  display: block;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  letter-spacing: 3.5px;
  color: rgba(200,134,10,.7);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ct-sec-title {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1;
}

.ct-sec-gold { color: var(--gold, #C8860A); }

.ct-sec-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards grid */
.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.ct-card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 44px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background .3s, border-color .3s, transform .3s;
  overflow: hidden;
}

.ct-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold, #C8860A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.ct-card:hover { background: rgba(255,255,255,.06); border-color: rgba(200,134,10,.2); transform: translateY(-4px); }
.ct-card:hover::before { transform: scaleX(1); }

.ct-card-icon {
  font-size: 22px;
  color: var(--gold, #C8860A);
  margin-bottom: 28px;
}

.ct-card-num {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.2);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ct-card-title {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 14px;
}

.ct-card-val {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
  word-break: break-all;
  overflow-wrap: break-word;
}

.ct-card-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.ct-card-arrow {
  margin-top: 28px;
  font-size: 16px;
  color: var(--gold, #C8860A);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}

.ct-card:hover .ct-card-arrow { opacity: 1; transform: translateX(0); }
.ct-card--address .ct-card-arrow { opacity: .3; }


/* ══════════════════════════════════════════════════════════
   INFO SECTION — CREAM
══════════════════════════════════════════════════════════ */
.ct-info-sec {
  background: #F4F2ED;
  padding: 120px 0;
}

.ct-info-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ct-info-mono {
  display: block;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  letter-spacing: 3.5px;
  color: rgba(6,16,30,.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ct-info-title {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #06101E;
  margin: 0 0 44px;
  line-height: 1;
}

.ct-info-gold { color: var(--gold, #C8860A); }

.ct-hours-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.ct-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6,16,30,.08);
}

.ct-hours-day {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #06101E;
}

.ct-hours-time {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 13px;
  color: rgba(6,16,30,.6);
}

.ct-hours-row--closed .ct-hours-day { color: rgba(6,16,30,.4); }
.ct-hours-row--closed .ct-hours-time { color: rgba(6,16,30,.3); }
.ct-hours-gold { color: var(--gold, #C8860A) !important; font-weight: 600; }

.ct-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ct-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(6,16,30,.15);
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(6,16,30,.6);
  text-transform: uppercase;
}

.ct-cert-badge i { color: var(--gold, #C8860A); }

.ct-map-frame {
  position: relative;
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(6,16,30,.1);
}

.ct-map-frame iframe { width: 100%; height: 100%; display: block; }

.ct-map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #06101E;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11px;
  letter-spacing: 1.5px;
  pointer-events: none;
}

.ct-map-label i { color: var(--gold, #C8860A); }


/* ══════════════════════════════════════════════════════════
   CTA STRIP — DARK NAVY
══════════════════════════════════════════════════════════ */
.ct-cta-sec {
  background: #06101E;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.ct-cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.ct-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.ct-cta-mono {
  display: block;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  letter-spacing: 3.5px;
  color: rgba(200,134,10,.7);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ct-cta-title {
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: .95;
  margin: 0 0 24px;
}

.ct-cta-gold { color: var(--gold, #C8860A); }

.ct-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 0 0 48px;
}

.ct-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ct-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--gold, #C8860A);
  color: #fff;
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .25s;
}

.ct-cta-btn-primary:hover { background: #a06c05; transform: translateY(-3px); color: #fff; }

.ct-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-family: var(--font-head, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .25s, color .25s, transform .25s;
}

.ct-cta-btn-secondary:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-3px);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ct-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ct-info-inner { grid-template-columns: 1fr; gap: 60px; }
  .ct-map-frame { height: 320px; }
}

@media (max-width: 600px) {
  .ct-hero-inner {
    padding: 0 20px;
    padding-top: calc(var(--nav-h, 72px) + 60px);
    padding-bottom: 80px;
  }
  .ct-cards-grid { grid-template-columns: 1fr; }
  .ct-details-inner, .ct-cta-inner, .ct-info-inner { padding: 0 20px; }
  .ct-details-sec, .ct-info-sec, .ct-cta-sec { padding: 80px 0; }
  .ct-hero-channels { flex-direction: column; }
  .ct-channel-btn { justify-content: center; }
  .ct-cta-actions { flex-direction: column; align-items: center; }
  .ct-hours-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}
