/* ─── MAIN LAYOUT ─── */
.page-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 5%;
}

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* left column */
.info-block {
  margin-bottom: 48px;
}
.info-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.info-list {
  list-style: none;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 9px 0;
  border-bottom: 1px solid var(--green-100);
}
.info-list li:last-child {
  border-bottom: none;
}
.info-list li::before {
  content: "—";
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-direct a,
.contact-direct p {
  display: block;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 10px;
  text-decoration: none;
}
.contact-direct a:hover {
  color: var(--gold);
}
.contact-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* right column — form */
.form-head {
  margin-bottom: 28px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green-900);
}
.form-title em {
  font-style: italic;
  color: var(--gold);
}
.form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-grid {
  display: grid;
  gap: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--green-100);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f6e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-field.full {
  grid-column: 1 / -1;
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
}
.privacy-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.privacy-row label {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
  cursor: pointer;
}
.privacy-row a {
  color: var(--gold);
  text-decoration: none;
}
.privacy-row a:hover {
  text-decoration: underline;
}

.btn-send {
  display: block;
  width: 100%;
  background: var(--green-900);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-send:hover {
  background: var(--gold);
}

/* ─── LOCATION ─── */
.location-section {
  margin-top: 80px;
}
.location-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.btn-directions {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.btn-directions:hover {
  gap: 10px;
}
.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--green-950);
  color: var(--white);
  padding: 80px 0;
  margin-top: 80px;
}
.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}
.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.faq-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
}
.faq-title em {
  color: var(--gold);
  font-style: italic;
}
.faq-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q span {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-body {
    padding: 48px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-inner {
    padding: 0 24px;
  }
}
