/* ─── CONTACT PAGE — aligned with home aesthetic ─── */

/* ── Base ── */
.contact-page {
  background: #010101;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* ── Hero: vertically centered, full height ── */
.contact-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

/* Radial glow — hidden */
.contact-hero-glow {
  display: none;
}

/* Dot grid — same pattern as home stats */
.contact-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.deco-line-diag {
  position: absolute;
  top: 0; right: 15%;
  width: 1px; height: 150%;
  background: linear-gradient(to bottom, transparent, rgba(194,209,15,0.12) 50%, transparent);
  transform: rotate(15deg);
  transform-origin: top;
  pointer-events: none;
}

/* Hero inner content */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C2D10F;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 10vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title .line-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.55);
}

.contact-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
}

.contact-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Buttons — match home exactly */
.btn-green {
  background: #C2D10F;
  color: #010101;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(194,209,15,0.28);
  background: #d4e411;
  color: #010101;
}

.btn-ghost {
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-ghost:hover { color: #C2D10F; border-bottom-color: rgba(194,209,15,0.4); }

/* ── Divider ── */
.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent);
}

/* ── Form Section ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 40px 120px;
  position: relative;
}

.contact-left { }
.contact-right {
  padding-left: 48px;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4px;
}

/* Section titles */
.split-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.split-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.5;
}

/* ── Form — floating labels ── */
.form-group {
  margin-bottom: 32px;
  position: relative;
}
.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: #C2D10F; }
.form-textarea { resize: none; }

.form-label {
  position: absolute;
  top: 16px;
  left: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.form-input:focus ~ .form-label,
.form-input:valid ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:valid ~ .form-label {
  top: -10px;
  font-size: 10px;
  font-weight: 700;
  color: #C2D10F;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Submit ── */
.btn-submit {
  background: #C2D10F;
  color: #010101;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(194,209,15,0.28);
  background: #d4e411;
}

/* ── Info blocks ── */
.info-block { margin-bottom: 48px; }
.info-block:last-child { margin-bottom: 0; }

.info-label {
  font-size: 9px;
  font-weight: 700;
  color: #C2D10F;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  display: block;
}
.info-val {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.55;
  display: block;
}
a.info-val:hover { color: #C2D10F; }

/* ── Socials ── */
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.25s ease;
}
.contact-socials svg {
  width: 17px;
  height: 17px;
  stroke: rgba(255,255,255,0.45);
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.25s;
}
.contact-socials a:hover {
  background: rgba(194,209,15,0.08);
  border-color: rgba(194,209,15,0.3);
  transform: translateY(-2px);
}
.contact-socials a:hover svg { stroke: #C2D10F; }

/* ── Reveal animation ── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── Cookie ── */
#cookie-banner { display: none; }
#cookie-banner.visible { display: flex !important; }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 72px 32px 100px;
  }
  .contact-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 64px;
    margin-top: 64px;
  }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .contact-hero {
    padding: 100px 24px 60px;
    text-align: center;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-label,
  .hero-title .line,
  .contact-hero-subtitle,
  .contact-hero-cta { opacity: 1 !important; transform: none !important; }

  .hero-title {
    font-size: clamp(28px, 8.5vw, 110px);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.0;
  }
  .hero-title .line {
    display: block;
    font-size: clamp(28px, 8.5vw, 110px);
    white-space: normal;
  }
  .hero-title .line:nth-child(2) {
    font-size: clamp(24px, 7.5vw, 110px);
  }
  .hero-title .line-outline {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
  }
  .contact-hero-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.55);
  }
  .contact-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .btn-green {
    padding: 15px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .btn-ghost {
    font-size: 14px;
    text-align: center;
    display: block;
  }
  .contact-layout { padding: 48px 20px 72px; }
  .form-input, .form-textarea, .form-label { font-size: 16px; }
  .btn-submit { width: 100%; justify-content: center; padding: 15px 20px; box-sizing: border-box; }
  .deco-line-diag { display: none; }
}
