/* =============================================
   CONTACT PAGE — Specific Styles
   ============================================= */

.nav-active { color: var(--earth) !important; font-weight: 600; }

/* Hero layout */
.contact-hero {
  background: var(--cream);
  padding: 72px 32px 80px;
  min-height: calc(90vh - 68px);
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.contact-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}
.contact-expect { border-top: 1px solid rgba(232,130,58,0.2); padding-top: 32px; }
.contact-expect .section-label { margin-bottom: 20px; }
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-list li {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.expect-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--earth);
}

/* Form */
.contact-form {
  background: var(--sand);
  padding: 44px 40px;
  border-radius: 10px;
  border: 1px solid rgba(232,130,58,0.12);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-hidden { display: none; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(90,74,58,0.18);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate);
  font-style: italic;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--earth);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A4A3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  margin-top: 4px;
}

/* Quiet note below form */
.contact-note {
  background: var(--sand);
  padding: 28px 32px;
  text-align: center;
  border-top: 1px solid rgba(232,130,58,0.1);
}
.contact-note-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.7;
}
.contact-note-text a {
  color: var(--earth);
  text-decoration: underline;
  text-decoration-color: rgba(232,130,58,0.35);
  text-underline-offset: 3px;
}
.contact-note-text a:hover { text-decoration-color: var(--earth); }

/* Responsive */
@media (max-width: 900px) {
  .contact-hero { min-height: auto; padding: 40px 20px 48px; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-heading { font-size: clamp(40px, 10vw, 64px); }
  .contact-sub { max-width: 100%; font-size: 16px; margin-bottom: 32px; }
  .contact-form { padding: 28px 20px; }
  .contact-note { padding: 20px 20px; }
}
