/* ════════ CONTACT ════════ */
.extra_color {
  background: #214944;
  height: 196px;
  position: relative;
  top: -5px;
}

.ct {
  padding: 35px 0 70px;
  background: var(--cream);
  color: var(--green);
}

.ct-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 62px;
  color: var(--green);
  margin-bottom: 38px;
}

.ct-cards {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  top: 50px;
  z-index: 10;
}

.ct-card {
  border: 1px solid #2e4d3d;
  border-radius: 14px;
  padding: 30px 20px 34px;
  text-align: center;
  background: #ffffff;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .4s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.ct-card .ic {
  width: 90px;
  height: 90px;
  border: 1px solid #2e4d3d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.ct-card .ic svg {
  width: 50px;
  height: 50px;
  stroke: var(--green);
  fill: none;
}

.ct-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--green);
  margin-bottom: 12px;
}

.ct-card p {
  font-size: 24px;
  color: #33473b;
  word-break: break-all;
}

.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  border-color: var(--gold);
}

.ct-card:hover .ic {
  transform: scale(1.08);
}

.ct-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.ct-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  margin-bottom: 26px;
}

.ct-field.ct-msg {
  grid-column: 1 / 3;
}

.ct-field label {
  display: block;
  font-size: 17px;
  color: #33473b;
  margin-bottom: 9px;
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c9c0b0;
  background: transparent;
  padding: 6px 0;
  font-size: 14px;
  color: #33473b;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-bottom-color: var(--green);
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #a39c8c;
}

.ct-field textarea {
  resize: vertical;
  min-height: 80px;
}

.ct-media {
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.ct-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.ct-media:hover img {
  transform: scale(1.05);
}

.ct-foot {
  max-width: 1080px;
  margin: 36px auto 0;
  padding: 0 30px;
}

.ct-foot hr {
  border: none;
  border-top: 1px solid #cfc6b4;
  margin-bottom: 26px;
}

/* ════════ FORM STATUS BANNER ════════ */
.form-status {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-gold.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-gold.loading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: #2a2410;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .ct-title {
    font-size: 40px;
  }
  .ct-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
  }
  .ct-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ct-form {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ct-field.ct-msg {
    grid-column: auto;
  }
  .ct-media {
    order: 2;
  }
  .ct-media img {
    min-height: 300px;
  }
}
@media (max-width: 600px) {
  .ct-card p {
    font-size: 18px;
  }
}
