/* CONTACT PAGE */
.contact-hero {
  padding: 160px 0 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(86,196,184,0.08), transparent 50%);
  pointer-events: none;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-hero-left h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 400;
  margin: 20px 0 28px;
  letter-spacing: -1px;
}

.contact-hero-left h1 em { color: var(--accent); font-style: italic; }

.contact-hero-left > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 48px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-direct-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.contact-direct-row:hover:not(.static) {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-muted);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cd-icon svg { width: 22px; height: 22px; }

.cd-main { flex: 1; display: flex; flex-direction: column; gap: 2px; }

.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cd-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.cd-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}

.contact-direct-row:hover .cd-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* FORM */
.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.cf-head { margin-bottom: 32px; }

.cf-head h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cf-head p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cf-field { margin-bottom: 20px; }

.cf-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.cf-field textarea { resize: vertical; min-height: 120px; }

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

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

.cf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cf-pill {
  position: relative;
  cursor: pointer;
}

.cf-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cf-pill span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.cf-pill:hover span { color: var(--text-primary); }

.cf-pill.active span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
}

.contact-form > button {
  margin-top: 8px;
  width: 100%;
}

.cf-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

.cf-note a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.cf-note a:hover { border-color: var(--accent); }

/* SUCCESS */
.contact-success {
  display: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
}

.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--accent-muted);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.success-mark svg { width: 36px; height: 36px; }

.contact-success h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 12px;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-success a { color: var(--accent); }

/* FAQ */
.section-faq {
  background: var(--bg-surface);
  padding: 140px 0;
}

.faq-head {
  text-align: center;
  margin-bottom: 64px;
}

.faq-head .section-label { justify-content: center; }
.faq-head .section-label::before { display: none; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item summary {
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Abril Fatface', serif;
  font-size: 22px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Abril Fatface', serif;
  font-size: 28px;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--accent); }

.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

@media (max-width: 900px) {
  .contact-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .contact-hero-inner > * { min-width: 0; }
  .contact-direct-row { flex-wrap: wrap; word-break: break-word; }
  .contact-form { padding: 32px 24px; }
  .cf-grid { grid-template-columns: 1fr; }
  .contact-success { padding: 40px 24px; }
  .faq-item summary { font-size: 18px; }
}
