/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION — 2-STAGE LUSION-STYLE FINALE
   Stage 1: Interactive Physics Canvas ("Let's work together!" + Continue to Scroll)
   Stage 2: Editorial Multi-Column Professional Inquiries Grid
   ══════════════════════════════════════════════════════════════ */

/* ── STAGE 1: Physics Track with Sticky Dwell Runway ── */
.contact-physics-track {
  position: relative;
  width: 100%;
  height: 220vh; /* Deliberate scroll runway for interactive physics experience */
  background: var(--obsidian-bg);
}

.contact-physics-section {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--obsidian-bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(59, 130, 246, 0.08), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Precision Crosshairs Overlay */
.crosshair-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.crosshair {
  position: absolute;
  font-family: var(--mono);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.22);
  user-select: none;
}

.crosshair-tl { top: 15%; left: 12%; }
.crosshair-tr { top: 15%; right: 12%; }
.crosshair-bl { bottom: 20%; left: 12%; }
.crosshair-bc { bottom: 20%; left: 50%; transform: translateX(-50%); }
.crosshair-br { bottom: 20%; right: 12%; }

/* Interactive Physics Canvas */
.contact-physics-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
  cursor: crosshair;
}

/* Stage 1 Content Overlay */
.contact-physics-wrap {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.contact-kicker-bar {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.contact-massive-title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(4.2rem, 9.4vw, 9.4rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #ffffff;
  text-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

/* Bottom "Continue to Scroll" Pill with Elegantly Timed Entrance & Breathing Glow */
.continue-scroll-wrap {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: auto;
  opacity: 0;
  animation: pillEntrance 900ms cubic-bezier(0.16, 1, 0.3, 1) 600ms forwards;
}

@keyframes pillEntrance {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.continue-scroll-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  background: #ffffff;
  color: #090a0f;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 240ms var(--ease-out);
  cursor: pointer;
}

.continue-scroll-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.45);
}

.continue-scroll-pill:active {
  transform: translateY(0) scale(0.98);
}

.continue-scroll-pill i {
  font-style: normal;
  font-size: 12px;
  transition: transform 200ms var(--ease-out);
}

.continue-scroll-pill:hover i {
  transform: translateY(3px);
}

/* ══════════════════════════════════════════════════════════════
   STAGE 2: EDITORIAL 'WORK WITH ME' FINALE (Crimson Red Theme)
   Matching Section 04 Skills — Saturated Crimson Red with Bold Black Type
   ══════════════════════════════════════════════════════════════ */
.contact-inquiries-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ff2a1a;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(255, 95, 80, 0.45), transparent 85%),
    var(--noise-overlay);
  color: #000000;
  padding: 100px 80px 80px;
  box-sizing: border-box;
  z-index: 30;
}

.inquiries-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: stretch;
}

/* ── Left Column: Editorial Narrative & Channels ── */
.contact-editorial-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.contact-editorial-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-editorial-desc {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 14.5px;
  line-height: 1.65;
  color: #000000;
  font-weight: 600;
  max-width: 520px;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.editorial-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #ff2a1a;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 180ms ease;
}

.editorial-cta-btn:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.editorial-cta-btn .btn-arrow-sq {
  width: 20px;
  height: 20px;
  background: #ff2a1a;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
}

.editorial-cta-btn-outline {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.editorial-cta-btn-outline:hover {
  background: #000000;
  color: #ff2a1a;
}

.editorial-cta-btn-outline .btn-arrow-sq {
  background: #000000;
  color: #ff2a1a;
}

.editorial-cta-btn-outline:hover .btn-arrow-sq {
  background: #ff2a1a;
  color: #000000;
}

/* ── Middle Channels & Official Brand SVG Icons ── */
.contact-editorial-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channels-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.channel-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000000;
  color: #ff2a1a;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.channel-social-pill:hover {
  transform: translateY(-3px) scale(1.08);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.channel-social-pill svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-research-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12px;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-research-pill .pub-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000000;
}

/* ── Bottom Telemetry Line ── */
.contact-editorial-footer-bar {
  border-top: 1.5px solid rgba(0, 0, 0, 0.25);
  padding-top: 24px;
}

.contact-telemetry-text {
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 13px;
  line-height: 1.6;
  color: #000000;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── Right Column: Monumental 'WORK WITH ME' Headline ── */
.contact-editorial-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-editorial-headline {
  font-family: var(--font, "Instrument Sans", -apple-system, sans-serif);
  font-size: clamp(5.4rem, 10.8vw, 12.5rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  color: #000000;
  text-align: right;
  margin: 0;
  user-select: none;
}

/* Site Footer Theme Adjustment */
.site-footer {
  background: #ff2a1a;
  color: #000000;
  font-weight: 600;
  border-top: 1.5px solid rgba(0, 0, 0, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .contact-inquiries-section {
    padding: 70px 36px 60px;
  }
  .inquiries-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-editorial-headline {
    text-align: left;
    font-size: clamp(4.2rem, 14vw, 8rem);
  }
  .contact-editorial-right {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .contact-physics-track { height: auto; }
  .contact-physics-section { position: relative; height: 80vh; min-height: auto; }
  .contact-inquiries-section { padding: 50px 20px 40px; }
  .contact-editorial-headline { font-size: clamp(3.4rem, 16vw, 5.5rem); }
}
