/* Contact Page Styles */
section {
  margin-top: 0;
}
:where(.wp-site-blocks) > * {
  margin-block-start: 0;
}

/* =========================================
   CONTACT HERO
   ========================================= */
.hero-contact {
  background: var(--dark-bg);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--copper-gradient);
  border-radius: 2px;
  margin-bottom: 40px;
}
.hero-contact .container {
  position: relative;
  z-index: 2;
}
.hero-heading .copper-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  margin-right: 16px;
  vertical-align: baseline;
}
.hero-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-heading);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.hero-heading .word {
  display: inline-block;
  white-space: nowrap;
}
.hero-heading .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterReveal 0.4s ease forwards;
}
.hero-heading .copper-word .letter {
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-heading .copper-word {
  filter: drop-shadow(0 0 30px rgba(184,115,51,0.4)) drop-shadow(0 0 60px rgba(184,115,51,0.2));
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-dark-body);
  max-width: 520px;
  margin: 0 auto;
}

.arc-divider.dark-to-light {
  background: none;
  margin-top: -40px;
}

/* =========================================
   KEYFRAMES
   ========================================= */
@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   CONTACT INFO STRIP
   ========================================= */
.contact-info {
  background: var(--dark-charcoal);
  padding: 80px 0;
  position: relative;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.info-card {
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(184,115,51,0.12), 0 20px 60px rgba(0,0,0,0.3);
}
.info-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.15);
  transition: all 0.4s ease;
}
.info-card:hover .icon-wrap {
  background: rgba(184,115,51,0.15);
  box-shadow: 0 0 30px rgba(184,115,51,0.25);
  border-color: rgba(184,115,51,0.3);
}
.info-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--copper);
}
.info-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-dark-heading);
  margin-bottom: 10px;
}
.info-card p {
  font-size: 15px;
  color: var(--text-dark-body);
  line-height: 1.7;
}
.info-card a {
  color: var(--text-dark-body);
  transition: color 0.3s ease;
}
.info-card a:hover {
  color: var(--copper);
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.contact-form-section {
  background: var(--light-bg);
  padding: 100px 0;
  position: relative;
}
.contact-form-section .curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.contact-form-section .curve-top svg {
  display: block;
  width: 100%;
  height: 60px;
}
.contact-form-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: start;
}

/* =========================================
   FORM LEFT — PHOTO + SOCIALS
   ========================================= */
.form-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.form-socials h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light-heading);
  margin-bottom: 16px;
}
.form-socials-links {
  display: flex;
  gap: 14px;
}
.form-socials-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-body);
  transition: all 0.3s ease;
}
.form-socials-links a:hover {
  border-color: var(--copper);
  color: var(--copper);
  box-shadow: 0 0 20px rgba(184,115,51,0.15);
  transform: translateY(-2px);
}

/* =========================================
   FORM CARD
   ========================================= */
.form-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.03);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184,115,51,0.15), transparent 40%, rgba(184,115,51,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-card h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  color: var(--text-light-heading);
  margin-bottom: 12px;
}
.form-email-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}
.form-email-line svg {
  color: var(--copper);
  flex-shrink: 0;
}
.form-email-line a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.form-email-line a:hover {
  opacity: 0.8;
}
.form-email-note {
  color: var(--text-light-muted);
}
.form-card .form-subtitle {
  font-size: 15px;
  color: var(--text-light-muted);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  position: relative;
  margin-bottom: 28px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light-heading);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--light-border);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group label {
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 2px 16px rgba(184,115,51,0.15);
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}
.form-card .btn-primary {
  width: 100%;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 15px;
  margin-top: 8px;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--dark-bg);
  padding: 100px 0;
  position: relative;
}
.faq-section .curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.faq-section .curve-top svg {
  display: block;
  width: 100%;
  height: 60px;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  color: var(--text-dark-heading);
  margin-bottom: 12px;
}
.faq-header p {
  font-size: 16px;
  color: var(--text-dark-body);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.active {
  border-left: 3px solid var(--copper);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
  gap: 16px;
}
.faq-question:hover {
  background: rgba(255,255,255,0.02);
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-dark-heading);
  flex: 1;
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: transparent;
}
.faq-item.active .faq-toggle {
  background: rgba(184,115,51,0.1);
  border-color: var(--copper);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-dark-body);
  line-height: 1.7;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 48px;
  }
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-photo {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px) {

  /* --- Hero --- */
  .hero-contact {
    padding: 96px 0 40px;
  }
  .hero-heading {
    font-size: 32px;
    margin-bottom: 14px;
  }
  .hero-heading .copper-label {
    font-size: 11px;
    margin-right: 10px;
  }
  .hero-sub {
    font-size: 15px;
  }

  /* --- Contact Info Strip --- */
  .contact-info {
    padding: 48px 0;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .info-card {
    padding: 20px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .info-card .icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
  }
  .info-card .icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  .info-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .info-card p {
    font-size: 13px;
  }

  /* --- Contact Form Section --- */
  .contact-form-section {
    padding: 56px 0;
  }
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-photo {
    aspect-ratio: 16/9;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .form-socials-links a {
    width: 40px;
    height: 40px;
  }

  /* --- Form Card --- */
  .form-card {
    padding: 28px 20px;
    border-radius: 14px;
  }
  .form-card h2 {
    font-size: 24px;
  }
  .form-card .form-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group {
    margin-bottom: 22px;
  }
  .form-card .btn-primary {
    padding: 16px 32px;
  }

  /* --- FAQ Section --- */
  .faq-section {
    padding: 56px 0;
  }
  .faq-header {
    margin-bottom: 32px;
  }
  .faq-header h2 {
    font-size: 28px;
  }
  .faq-header p {
    font-size: 14px;
  }
  .faq-list {
    gap: 12px;
  }
  .faq-question {
    padding: 18px 20px;
    gap: 12px;
  }
  .faq-question h3 {
    font-size: 15px;
  }
  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}
