/* =====================================================
   CONTACT PAGE
   CLASICOH KARLS
===================================================== */

.contact-page {
  background: #040315;
  color: #fdf9fa;
}


.contact-container {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;

  padding:
    0 var(--page-padding);
}


/* =====================================================
   HERO
===================================================== */

.contact-hero {
  position: relative;

  padding:
    90px 0 54px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(236, 244, 1, 0.055),
      transparent 26%
    ),
    #040315;
}


.contact-hero::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -210px;
  top: -250px;

  border:
    1px solid rgba(236, 244, 1, 0.10);

  border-radius: 50%;

  pointer-events: none;
}


.contact-kicker {
  margin:
    0 0 18px;

  color: #ecf401;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.contact-hero h1 {
  max-width: 850px;

  margin:
    0 0 24px;

  color: #fdf9fa;

  font-size:
    clamp(55px, 6.6vw, 96px);

  line-height: 0.94;

  letter-spacing: -0.06em;
}


.contact-hero h1 em {
  color: #ecf401;

  font-style: normal;
}


.contact-intro {
  max-width: 680px;

  margin: 0;

  color:
    rgba(253, 249, 250, 0.58);

  font-size: 16px;

  line-height: 1.72;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.contact-main {
  padding:
    30px 0 86px;

  background: #040315;
}


.contact-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.65fr)
    minmax(300px, 0.75fr);

  gap: 24px;

  align-items: start;
}


/* =====================================================
   FORM PANEL
===================================================== */

.contact-form-panel {
  padding:
    38px;

  border:
    1px solid rgba(253, 249, 250, 0.11);

  border-radius: 10px;

  background:
    rgba(253, 249, 250, 0.025);

  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.18);
}


.contact-form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    24px 22px;
}


.contact-field {
  min-width: 0;
}


.contact-field-full {
  grid-column:
    1 / -1;
}


.contact-field label {
  display: block;

  margin-bottom: 9px;

  color:
    rgba(253, 249, 250, 0.48);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;

  border:
    1px solid rgba(253, 249, 250, 0.14);

  border-radius: 6px;

  background:
    rgba(253, 249, 250, 0.035);

  color: #fdf9fa;

  font: inherit;

  outline: none;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.contact-field input,
.contact-field select {
  min-height: 52px;

  padding:
    0 15px;
}


.contact-field textarea {
  min-height: 160px;

  padding:
    15px;

  resize: vertical;

  line-height: 1.6;
}


.contact-field select {
  appearance: auto;

  color:
    rgba(253, 249, 250, 0.80);
}


.contact-field select option {
  background: #040315;

  color: #fdf9fa;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color:
    rgba(253, 249, 250, 0.28);
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color:
    rgba(236, 244, 1, 0.70);

  background:
    rgba(236, 244, 1, 0.025);

  box-shadow:
    0 0 0 3px rgba(236, 244, 1, 0.05);
}


.contact-submit {
  min-width: 220px;
  min-height: 54px;

  margin-top: 28px;

  padding:
    0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 16px;

  border: 0;

  border-radius: 999px;

  background: #ecf401;

  color: #040315;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.035em;

  cursor: pointer;

  box-shadow:
    0 12px 30px rgba(236, 244, 1, 0.09);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.contact-submit span {
  font-size: 18px;

  transition:
    transform 0.25s ease;
}


.contact-submit:hover {
  background: #fdf9fa;

  transform:
    translateY(-3px);

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22);
}


.contact-submit:hover span {
  transform:
    translateX(4px);
}


.contact-form-note {
  margin:
    16px 0 0;

  color:
    rgba(253, 249, 250, 0.35);

  font-size: 11px;

  line-height: 1.5;
}


.contact-form-note strong {
  color:
    rgba(253, 249, 250, 0.62);
}


.contact-honeypot {
  position: absolute !important;

  left: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  opacity: 0 !important;

  pointer-events: none !important;
}


/* =====================================================
   SIDE CARDS
===================================================== */

.contact-side {
  display: grid;

  gap: 18px;
}


.contact-info-card {
  padding:
    30px;

  border:
    1px solid rgba(253, 249, 250, 0.10);

  border-radius: 10px;

  background:
    #F4F5E8;

  color: #040315;
}


.contact-card-label {
  margin:
    0 0 10px;

  color:
    rgba(4, 3, 21, 0.48);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.contact-info-card h2 {
  margin:
    0 0 24px;

  color: #040315;

  font-size: 27px;

  line-height: 1.05;

  letter-spacing: -0.035em;
}


.contact-info-row {
  display: flex;

  align-items: center;

  gap: 14px;

  padding:
    13px 0;

  color: #040315;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}


a.contact-info-row:hover {
  color: #7d8200;

  transform:
    translateX(4px);
}


.contact-info-icon {
  width: 42px;
  height: 42px;

  flex:
    0 0 42px;

  display: grid;

  place-items: center;

  border:
    1px solid rgba(4, 3, 21, 0.13);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.35);

  color: #7d8200;

  font-size: 18px;
}


.contact-info-row span:last-child {
  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 4px;
}


.contact-info-row small {
  color:
    rgba(4, 3, 21, 0.45);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.08em;
}


.contact-info-row strong {
  color: inherit;

  font-size: 14px;

  line-height: 1.45;

  overflow-wrap: anywhere;
}


.contact-card-divider {
  height: 1px;

  margin:
    15px 0 20px;

  background:
    rgba(4, 3, 21, 0.10);
}


.contact-availability {
  margin: 0;

  display: flex;

  align-items: center;

  gap: 9px;

  color:
    rgba(4, 3, 21, 0.55);

  font-size: 12px;

  line-height: 1.5;
}


.contact-availability span {
  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 50%;

  background: #7d8200;

  box-shadow:
    0 0 0 5px rgba(125, 130, 0, 0.10);
}


/* =====================================================
   LOCATION VISUAL
===================================================== */

.contact-location-visual {
  position: relative;

  min-height: 205px;

  overflow: hidden;

  border:
    1px solid rgba(253, 249, 250, 0.10);

  border-radius: 10px;

  background: #02020e;
}


.location-grid {
  position: absolute;

  inset: 0;

  opacity: 0.38;

  background-image:
    linear-gradient(
      rgba(253, 249, 250, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(253, 249, 250, 0.07) 1px,
      transparent 1px
    );

  background-size:
    26px 26px;
}


.location-radar {
  position: absolute;

  left: 50%;
  top: 47%;

  width: 66px;
  height: 66px;

  transform:
    translate(-50%, -50%);

  display: grid;

  place-items: center;

  border:
    1px solid rgba(236, 244, 1, 0.18);

  border-radius: 50%;

  box-shadow:
    0 0 0 18px rgba(236, 244, 1, 0.025),
    0 0 0 38px rgba(236, 244, 1, 0.015);
}


.location-radar span {
  width: 15px;
  height: 15px;

  border-radius: 50%;

  background: #ecf401;

  box-shadow:
    0 0 24px rgba(236, 244, 1, 0.40);
}


.location-caption {
  position: absolute;

  left: 20px;
  bottom: 18px;

  display: flex;

  flex-direction: column;

  gap: 4px;
}


.location-caption small {
  color:
    rgba(253, 249, 250, 0.35);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.13em;
}


.location-caption strong {
  color:
    rgba(253, 249, 250, 0.76);

  font-size: 11px;

  letter-spacing: 0.05em;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .contact-hero {
    padding:
      70px 0 44px;
  }


  .contact-main {
    padding:
      20px 0 70px;
  }


  .contact-layout {
    grid-template-columns: 1fr;
  }


  .contact-side {
    grid-template-columns:
      1fr 1fr;
  }


  .contact-location-visual {
    grid-column:
      1 / -1;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .contact-hero {
    padding:
      54px 0 34px;
  }


  .contact-hero h1 {
    font-size: 52px;
  }


  .contact-intro {
    font-size: 14px;
  }


  .contact-main {
    padding:
      14px 0 54px;
  }


  .contact-form-panel {
    padding:
      24px 20px;
  }


  .contact-form-grid {
    grid-template-columns: 1fr;

    gap: 19px;
  }


  .contact-field-full {
    grid-column: auto;
  }


  .contact-submit {
    width: 100%;

    min-width: 0;
  }


  .contact-side {
    grid-template-columns: 1fr;
  }


  .contact-location-visual {
    grid-column: auto;
  }


  .contact-info-card {
    padding:
      25px 22px;
  }

}


/* =====================================================
   REAL MAP — PRESERVES EXISTING CARD SIZE / LAYOUT
===================================================== */
.contact-location-visual {
  padding: 0;
  overflow: hidden;
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}
