/* contact.html page styles — Direction B (Soft Premium), design-system/MASTER.md
   Shared tokens/components live in styles.css (.nx-*). No raw hex — var(--nx-*) only. */

.nx-contact-body { background: var(--nx-surface-warm); }

/* ── hero ──────────────────────────────────────────────────────────── */
.nx-contact-hero {
  padding: clamp(56px, 9vw, 88px) 0 var(--nx-s-16);
  text-align: center;
}
.nx-contact-hero .nx-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--nx-text-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--nx-ink-soft);
  background: var(--nx-orange-tint); border-radius: var(--nx-r-pill); padding: 6px 14px;
}
.nx-contact-hero .nx-hero__chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--nx-orange);
}
.nx-contact-hero h1 {
  font-size: var(--nx-text-h1); font-weight: 800; letter-spacing: -.02em;
  color: var(--nx-ink); margin: var(--nx-s-6) auto var(--nx-s-4); max-width: 20ch;
}
.nx-contact-hero p {
  font-size: var(--nx-text-body-lg); color: var(--nx-ink-soft);
  max-width: 52ch; margin: 0 auto;
}

/* ── main layout ───────────────────────────────────────────────────── */
.nx-contact-main { padding: 0 0 var(--nx-s-32); }

.nx-contact-grid {
  display: grid;
  gap: var(--nx-s-10);
}
@media (min-width: 1024px) {
  .nx-contact-grid { grid-template-columns: 1.15fr 1fr; }
}

/* ── section cards ─────────────────────────────────────────────────── */
.nx-contact-card {
  background: var(--nx-surface); border-radius: var(--nx-r-lg);
  box-shadow: var(--nx-shadow-soft); padding: clamp(24px, 4vw, 40px);
}
.nx-contact-card h3 {
  font-size: var(--nx-text-h3); font-weight: 700; color: var(--nx-ink);
  margin: 0 0 var(--nx-s-2);
}
.nx-contact-card .nx-calendar-sub {
  font-size: var(--nx-text-body); color: var(--nx-ink-soft);
  margin: 0 0 var(--nx-s-6);
}

/* ── contact form inputs ───────────────────────────────────────────── */
.nx-contact-card .form-group label {
  font-size: var(--nx-text-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--nx-ink);
}
.nx-contact-card .form-group input,
.nx-contact-card .form-group textarea {
  border: 1.5px solid var(--nx-line); border-radius: var(--nx-r-sm);
  padding: 12px 14px; font-size: var(--nx-text-body); font-family: inherit;
  color: var(--nx-ink); background: var(--nx-surface-warm); min-height: 48px;
  transition: border-color var(--nx-t-base) var(--nx-ease-out);
  width: 100%; box-sizing: border-box;
}
.nx-contact-card .form-group textarea { min-height: 120px; resize: vertical; }
.nx-contact-card .form-group input:focus,
.nx-contact-card .form-group textarea:focus {
  outline: none;
  border-color: var(--nx-orange);
  box-shadow: 0 0 0 3px rgba(247,148,29,.18);
}
.nx-contact-card .form-group input::placeholder,
.nx-contact-card .form-group textarea::placeholder { color: var(--nx-ink-soft); opacity: .65; }

/* privacy note inside form */
.nx-contact-card .form-legal {
  font-size: 12px; color: var(--nx-ink-soft); line-height: 1.5;
}
.nx-contact-card .form-legal a { color: var(--nx-orange-dark); text-decoration: underline; }

/* form feedback message */
#form-message { border-radius: var(--nx-r-md); }

/* booking calendar form button alignment */
.nx-contact-card .booking-submit {
  width: 100%;
}

/* booking privacy note inline style override (uses tokens) */
.nx-booking-note {
  font-size: 12px; color: var(--nx-ink-soft); line-height: 1.5;
  margin: 8px 0 12px;
}
.nx-booking-note a { color: var(--nx-orange-dark); text-decoration: underline; }
