/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-wrap {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 8rem 0 4rem;
}
.contact-headline {
  font-family: var(--font-name);
  font-size: clamp(70px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.contact-headline em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}
.contact-links {
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-bottom: 4rem;
}
.contact-link-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-dim);
  background: var(--bg-card);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-link-item:hover {
  border-color: var(--border);
  background: rgba(200,169,110,0.04);
}
.contact-link-item .corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(200,169,110,0.0);
  border-style: solid;
  transition: border-color 0.3s, width 0.3s, height 0.3s;
}
.contact-link-item:hover .corner { border-color: var(--accent); width: 14px; height: 14px; }
.contact-link-item .corner.tl { top:0; left:0;   border-width:1px 0 0 1px; }
.contact-link-item .corner.tr { top:0; right:0;  border-width:1px 1px 0 0; }
.contact-link-item .corner.bl { bottom:0; left:0;  border-width:0 0 1px 1px; }
.contact-link-item .corner.br { bottom:0; right:0; border-width:0 1px 1px 0; }
.contact-link-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-width: 80px;
}
.contact-link-value {
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text);
  font-weight: 500;
}
.contact-link-arrow {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.contact-link-item:hover .contact-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.contact-availability {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dimmer);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf82;
  box-shadow: 0 0 0 0 rgba(76,175,130,0.5);
  animation: avail-pulse 2.4s cubic-bezier(0.4,0,0.6,1) infinite;
  flex-shrink: 0;
}
@keyframes avail-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76,175,130,0.5); }
  60%  { box-shadow: 0 0 0 7px rgba(76,175,130,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,130,0); }
}

/* ===================================================
   UFO SCENE
   =================================================== */
.ufo-scene {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  pointer-events: none;
  will-change: transform;
}
.ufo-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: ufo-float 3.6s ease-in-out infinite;
  will-change: transform;
  position: relative;
}
@keyframes ufo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
.ufo-svg {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
  cursor: pointer;
  pointer-events: auto;
  filter: drop-shadow(0 6px 24px rgba(200,169,110,0.22))
          drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: filter 0.2s ease;
}
.ufo-svg:hover {
  filter: drop-shadow(0 6px 28px rgba(200,169,110,0.5))
          drop-shadow(0 2px 6px rgba(0,0,0,0.5))
          drop-shadow(0 0 20px rgba(200,169,110,0.3));
}
.ufo-svg.ufo-zap {
  animation: ufo-zap-flash 0.4s ease forwards;
}
@keyframes ufo-zap-flash {
  0%   { filter: drop-shadow(0 6px 24px rgba(200,169,110,0.22)) drop-shadow(0 2px 6px rgba(0,0,0,0.5)) brightness(1); }
  25%  { filter: drop-shadow(0 0 40px rgba(200,169,110,1)) drop-shadow(0 2px 6px rgba(0,0,0,0.5)) brightness(1.9); }
  100% { filter: drop-shadow(0 6px 24px rgba(200,169,110,0.22)) drop-shadow(0 2px 6px rgba(0,0,0,0.5)) brightness(1); }
}
.ufo-light {
  animation: ufo-blink 1.8s ease-in-out infinite;
}
@keyframes ufo-blink {
  0%, 40%, 100% { opacity: 1; }
  20%            { opacity: 0.15; }
}
/* Tractor beam */
.ufo-beam {
  width: clamp(80px, 10vw, 130px);
  height: clamp(120px, 16vw, 200px);
  background: linear-gradient(
    to bottom,
    rgba(200,169,110,0.28) 0%,
    rgba(200,169,110,0.10) 55%,
    transparent 100%
  );
  clip-path: polygon(22% 0%, 78% 0%, 100% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  margin-top: -4px;
  animation: beam-breathe 3.6s ease-in-out infinite;
}
@keyframes beam-breathe {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}
.ufo-beam-scan {
  position: absolute;
  left: 0; right: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200,169,110,0.18) 50%,
    transparent 100%
  );
  animation: beam-scan 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes beam-scan {
  0%   { top: -50%; }
  100% { top: 120%; }
}

/* ===================================================
   COW ABDUCTION — Dan Da Dan easter egg 🐄
   =================================================== */
.ufo-cow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(44px, 6vw, 64px);
  height: auto;
  mix-blend-mode: screen;
  filter: invert(1) sepia(0.55) saturate(2.2) hue-rotate(6deg) brightness(0.88);
  animation: cow-abduct 6.5s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes cow-abduct {
  0%, 4%  {
    transform: translateX(-50%) translateY(65px) rotate(-6deg) scale(1);
    opacity: 0;
  }
  10% {
    transform: translateX(-50%) translateY(55px) rotate(5deg) scale(1);
    opacity: 0.85;
  }
  38% {
    transform: translateX(-50%) translateY(-30px) rotate(-4deg) scale(0.85);
    opacity: 0.75;
  }
  62% {
    transform: translateX(-50%) translateY(-110px) rotate(3deg) scale(0.6);
    opacity: 0.45;
  }
  78% {
    transform: translateX(-50%) translateY(-190px) rotate(-2deg) scale(0.3);
    opacity: 0;
  }
  79%, 100% {
    transform: translateX(-50%) translateY(65px) rotate(-6deg) scale(1);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .contact-headline { font-size: clamp(56px, 18vw, 100px); }
  .contact-link-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .contact-link-arrow { display: none; }
}
