/* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  background-color: var(--ink);
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: var(--nav-height) 0 0 0;
  overflow: hidden;
}

.contact-hero-bg-letter {
  position: absolute;
  bottom: 70px;
  right: 0px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 300px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.contact-hero-text-bg {
  position: absolute;
  top: 60%;
  right: 70px;
  transform: translateY(-70%);
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.contact-hero-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--coral);
}

/* ===== FORM ===== */
.contact-form-section {
  padding: 64px 0;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  border: 0.5px solid var(--ink);
  padding: 48px;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate);
  margin-bottom: 8px;
}

.contact-form-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 120%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate);
}

.form-input {
  background: transparent;
  border: 0.5px solid var(--ink);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input:focus {
  border-color: var(--coral);
}

.form-input::placeholder {
  color: rgba(10, 17, 40, 0.3);
  font-style: italic;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background-color: var(--coral);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--ink);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  padding: 64px 0 200px 0;
}

.contact-cards {
  position: relative;
  min-height: 550px;
}

.contact-card {
  padding: 40px;
}

.contact-card-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 16px;
}

/* მუქი — მარცხნივ დიდი */
.contact-card--dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  background-color: var(--ink);
  color: var(--white);
  z-index: 1;
}

.contact-card--dark h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-card--dark p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 160%;
}

.contact-card-divider {
  width: 100%;
  height: 0.5px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.contact-card-phone-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.contact-card-phone a {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s ease;
}

.contact-card-phone a:hover {
  color: var(--coral);
}

/* parchment — მარჯვნივ გადახურული */
.contact-card--light {
  position: absolute;
  top: 150px;
  right: 0;
  width: 50%;
  background-color: var(--parchment);
  border: 0.5px solid var(--ink);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(10, 17, 40, 0.08);
}

.contact-card--light h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card-link-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--ink);
  border: 0.5px solid rgba(10, 17, 40, 0.2);
  padding: 8px;
}

.contact-card-link-item a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s ease;
}

.contact-card-link-item a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* coral — ქვემოთ შუაში */
.contact-card--coral {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 35%;
  background-color: var(--coral);
  border: 0.5px solid var(--ink);
  z-index: 3;
}

.contact-card--coral .contact-card-label {
  color: rgba(10, 17, 40, 0.7);
}

.contact-card--coral p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink);
  line-height: 180%;
}

/* ===== MAP ===== */
.contact-map {
  position: relative;
  width: 100%;
  height: 500px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.map-pin-label {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--ink);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.map-pin-label .material-symbols-outlined {
  color: var(--coral);
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Hero */
  .contact-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 40px) 0 48px;
    align-items: flex-start;
  }

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

  .contact-hero-text-bg {
    display: none;
  }

  .contact-hero-inner {
    max-width: 100%;
  }

  /* Form */
  .contact-form-section {
    padding: 40px 0;
  }

  .contact-form-wrap {
    padding: 32px 20px;
    margin: 0 4px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* iOS zoom fix */
  .form-input,
  .form-textarea {
    font-size: 16px;
  }

  /* Cards */
  .contact-cards {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }

  .contact-card--dark,
  .contact-card--light,
  .contact-card--coral {
    position: static;
    width: 100%;
  }

  .contact-card--dark h3 {
    font-size: 22px;
  }

  .contact-card--light h3 {
    font-size: 20px;
  }

  .contact-info {
    padding: 40px 0 64px;
  }

  /* Map */
  .contact-map {
    height: 300px;
  }
}
