/* ============================================
   CONTACT PAGE
============================================ */

.ct-section {
  background:
    radial-gradient(40% 60% at 75% 40%, rgba(201,150,42,0.06) 0%, rgba(201,150,42,0) 60%),
    radial-gradient(60% 80% at 25% 50%, rgba(180,60,0,0.15) 0%, rgba(180,60,0,0) 70%),
    #0E0600;
  padding: 90px 0 100px;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}

/* Two-col layout */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── LEFT ── */
.ct-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 18px;
}
.ct-tag-line {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, #C9962A, #E7AD3F);
}
.ct-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  color: #F0D5A0;
  margin-bottom: 20px;
}
.ct-heading em {
  font-style: italic;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F, #C9962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ct-intro {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: rgba(239,227,206,0.55);
  margin-bottom: 44px;
}

/* Contact person card */
.ct-person {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.ct-person-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,35,18,0.6), rgba(13,13,13,0.9));
  border: 1px solid rgba(201,150,42,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-person-avatar span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  color: #C9962A;
  letter-spacing: 1px;
}
.ct-person-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #EFE3CE;
  margin-bottom: 4px;
}
.ct-person-role {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.6);
  margin-bottom: 14px;
}
.ct-person-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(239,227,206,0.85);
  text-decoration: none;
  transition: color .2s;
}
.ct-contact-link:hover { color: #E7AD3F; }
.ct-contact-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: rgba(201,150,42,0.55);
  display: flex;
}
.ct-contact-icon svg { width: 100%; height: 100%; }

.ct-person-divider {
  height: 0.5px;
  background: rgba(201,150,42,0.15);
  margin: 28px 0;
}

/* Event info */
.ct-event-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(201,150,42,0.12);
}
.ct-event-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ct-event-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,150,42,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,150,42,0.6);
  flex-shrink: 0;
}
.ct-event-icon svg { width: 16px; height: 16px; }
.ct-event-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.5);
  margin-bottom: 3px;
}
.ct-event-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 17px;
  color: #EFE3CE;
}

/* ── RIGHT: Form ── */
.ct-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(201,150,42,0.18);
  padding: 44px 40px;
  position: relative;
}
.ct-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6D2312, #E7AD3F, #FEEB94, #E7AD3F, #6D2312);
}
.ct-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  color: #EFE3CE;
  margin-bottom: 32px;
}

/* Form elements */
.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-form-group { display: flex; flex-direction: column; gap: 8px; }
.ct-form-group label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.65);
}
.ct-form-group label span { color: #E7AD3F; }

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(201,150,42,0.2);
  color: rgba(239,227,206,0.85);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder { color: rgba(239,227,206,0.25); }
.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
  border-color: rgba(201,150,42,0.5);
  background: rgba(255,255,255,0.04);
}
.ct-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9962A' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.ct-form-group select option {
  background: #0E0600;
  color: rgba(239,227,206,0.85);
}
.ct-form-group textarea { resize: vertical; min-height: 120px; line-height: 22px; }

/* Submit button */
.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 36px;
  background: linear-gradient(101.06deg, #6D2312 0%, #8A3015 60%, #BD7B2E 100%);
  border: 1px solid #E7AD3F;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FEEB94;
  cursor: pointer;
  transition: filter .25s, transform .25s;
  align-self: flex-start;
}
.ct-submit-btn svg { width: 16px; height: 16px; }
.ct-submit-btn:hover { filter: brightness(1.15); transform: translateY(-2px); }
.ct-submit-btn:disabled { opacity: 0.7; transform: none; cursor: default; }

.ct-form-note {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #C9962A;
  opacity: 0;
  transition: opacity .3s;
  min-height: 20px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ct-grid { gap: 50px; }
  .ct-form-wrap { padding: 36px 28px; }
}
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 56px; }
  .ct-heading { font-size: 34px; line-height: 42px; }
}
@media (max-width: 600px) {
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 28px 20px; }
  .ct-heading { font-size: 28px; line-height: 36px; }
  .ct-submit-btn { width: 100%; justify-content: center; }
}

/* Single column layout when form is removed */
.ct-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.ct-grid-single .ct-left {
  max-width: 100%;
}
.ct-grid-single .ct-person {
  max-width: 560px;
}
.ct-grid-single .ct-event-info {
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
}
