/* ============================================================
   BRESKO — Contact Page CSS
   Hero · Form · Info · FAQ · CTA
   ============================================================ */

/* ── Contact Hero ───────────────────────────────────────────── */
.contact-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 12rem;
  padding-bottom: 5rem;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 60%, rgba(255,45,85,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(122,30,53,0.08) 0%, transparent 55%);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
}
.contact-hero-label { margin-bottom: 2.5rem; }
.contact-hero-headline {
  font-size: clamp(3.5rem, 9vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.contact-hero-headline .editorial { color: var(--accent); }
.contact-hero-sub {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}
.contact-hero-sub p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.75;
}

/* ── Contact Section ────────────────────────────────────────── */
.contact-section {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8rem;
  align-items: start;
}

/* Left — Info Panel */
.contact-info {}
.contact-info-label { margin-bottom: 2rem; }
.contact-info-title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.contact-info-title .editorial { color: var(--accent); }

.contact-detail-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.3s ease;
}
.contact-detail-value:hover { color: var(--accent); }

.contact-socials { display: flex; gap: 1rem; }
.contact-social-link {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.contact-social-link:hover {
  border-color: var(--accent);
  background: rgba(255,45,85,0.06);
  box-shadow: 0 0 14px var(--accent-glow);
}
.contact-social-link svg { width: 16px; height: 16px; fill: var(--text); }

/* Availability badge */
.contact-availability {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(255,45,85,0.03);
}
.availability-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,45,85,0.6);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 8px rgba(255,45,85,0.6); }
  50%       { box-shadow: 0 0 16px rgba(255,45,85,0.9), 0 0 24px rgba(255,45,85,0.4); }
}
.availability-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.availability-text strong { color: var(--accent); font-weight: 600; }

/* Right — Form */
.contact-form-wrap {}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.form-field {
  position: relative;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.form-row .form-field:last-child { border-right: none; }
.form-field:last-of-type { border-right: none; }
.form-field.full-width { border-right: none; }

.form-field:focus-within { border-color: rgba(255,45,85,0.4); }
.form-field:focus-within::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,45,85,0.4);
}

.form-label {
  position: absolute;
  top: 1.5rem; left: 1.8rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  pointer-events: none;
}
.form-field:focus-within .form-label { color: var(--accent); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 3.5rem 1.8rem 1.5rem;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: none;
}
.form-select { cursor: none; }
.form-select option { background: var(--bg); color: var(--text); }
.form-textarea { min-height: 180px; }

/* Send button */
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.8rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.form-submit-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 1.1rem 2.5rem;
  border: none;
  cursor: none;
  display: flex; align-items: center; gap: 0.8rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.form-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.form-submit-btn:hover::before { transform: scaleX(1); transform-origin: left; }
.form-submit-btn span { position: relative; z-index: 1; }
.form-submit-btn svg { width: 14px; height: 14px; fill: var(--bg); position: relative; z-index: 1; }

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.faq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: end;
}
.faq-headline {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  letter-spacing: -0.03em;
}
.faq-headline .editorial { color: var(--accent); }
.faq-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  position: relative;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0%;
  background: var(--accent);
  transition: height 0.5s var(--ease-out);
}
.faq-item.open::before { height: 100%; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 2rem 2rem;
  cursor: none;
  background: transparent;
  text-align: left;
  gap: 2rem;
}
.faq-q {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.3s ease;
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, transform 0.45s var(--ease-out), background 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(255,45,85,0.4);
  background: rgba(255,45,85,0.06);
}
.faq-icon svg { width: 15px; height: 15px; stroke: var(--text-muted); fill: none; stroke-width: 2; transition: stroke 0.3s ease; }
.faq-item.open .faq-icon svg { stroke: var(--accent); }

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.55s var(--ease-out);
}
.faq-body-inner {
  padding: 0 2rem 2.5rem 2rem;
}
.faq-a {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 680px;
}

/* ── Contact Final CTA ──────────────────────────────────────── */
.contact-cta {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,45,85,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.contact-cta-overline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.contact-cta-headline {
  font-size: clamp(3.5rem, 8vw, 9.5rem);
  letter-spacing: -0.04em;
  line-height: 0.93;
  margin-bottom: 3rem;
}
.contact-cta-headline .editorial { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 5rem; }
}
@media (max-width: 768px) {
  .contact-hero-content { padding: 0 24px; }
  .contact-hero-sub { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-field { border-right: none; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .faq-header { grid-template-columns: 1fr; gap: 2rem; }
  .faq-trigger { padding-left: 0; }
}
