/* ─────────────────────────────────────────────────────────
   STATIC PAGES — contact, terms, privacy
   Shared stylesheet. Extends styles.css.
───────────────────────────────────────────────────────── */

/* ─── HERO ────────────────────────────────────────────── */
.static-hero {
  padding: calc(var(--nav-h) + 80px) 0 70px;
  background: var(--linen);
  border-bottom: 1px solid var(--ash);
  text-align: center;
}
.static-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.static-subtitle {
  font-size: 0.88rem;
  color: var(--smoke);
  letter-spacing: 0.06em;
  font-weight: 300;
}

/* ─── BODY WRAPPER ────────────────────────────────────── */
.static-body {
  padding: 80px 0 120px;
  background: var(--white);
}
.static-content-wrap {
  max-width: 780px;
  margin: 0 auto;
}

/* ─── CONTACT PAGE ────────────────────────────────────── */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.contact-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.contact-primary-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ash);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-primary-link:hover {
  color: var(--red);
  border-color: var(--red);
}
.contact-address {
  font-style: normal;
  font-size: 0.96rem;
  color: var(--graphite);
  line-height: 1.9;
  font-weight: 300;
}
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--graphite);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
  width: fit-content;
}
.contact-social-link:hover { color: var(--ink); }
.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--smoke);
  transition: color 0.2s ease;
}
.contact-social-link:hover .social-icon { color: var(--red); }

/* ─── LEGAL PAGES ─────────────────────────────────────── */
.legal-doc { border-top: 2px solid var(--ink); padding-top: 48px; }
.legal-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--ash);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 18px;
}
.legal-section h3 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 600;
  margin: 24px 0 10px;
}
.legal-section p {
  font-size: 0.91rem;
  color: var(--graphite);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.legal-section ul li {
  font-size: 0.91rem;
  color: var(--graphite);
  line-height: 1.8;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ash);
}
.legal-section a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(185,28,28,0.3); }
.legal-section a:hover { border-color: var(--red); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 600px) {
  .static-hero { padding-bottom: 52px; }
  .static-body { padding: 52px 0 80px; }
  .contact-primary-link { font-size: 1.5rem; }
}
