@charset "utf-8";
/* CSS Document */


/* ==========================================================================
   Legal / Content Pages (Terms, Privacy, etc.)
   ========================================================================== */

/* The header now uses the same scroll-triggered .is-scrolled state as
   every other page (see js/main.js) instead of being force-locked solid
   here - .page-hero below is charcoal too, so the transition is seamless
   and the whole site now shares one header behaviour. */

.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: calc(var(--header-h-mobile) + 48px) var(--edge) 56px;
  text-align: center;
}

@media (min-width: 760px) {
  .page-hero {
    padding: calc(var(--header-h) + 64px) var(--edge) 72px;
  }
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .section-eyebrow {
  color: var(--steel-light);
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.page-hero-meta {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}


.legal-content {
  background: var(--stone);
  padding: 72px var(--edge) 100px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(24,32,25,0.12);
}

.legal-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(24,32,25,0.85);
  margin: 0 0 1.1em;
}

.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: 40px;
  scroll-margin-top: calc(var(--header-h-mobile) + 24px);
}

@media (min-width: 760px) {
  .legal-section {
    scroll-margin-top: calc(var(--header-h) + 32px);
  }
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(24,32,25,0.82);
  margin: 0 0 1em;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
  list-style: disc;
}

.legal-section ul li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(24,32,25,0.82);
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}

.legal-section ul li:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}

.legal-section a:hover {
  color: var(--green);
}

.legal-contact-card {
  background: var(--white);
  border: 1px solid rgba(24,32,25,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0 20px;
}

.legal-contact-card p {
  margin: 0 0 6px;
}

.legal-contact-card p:last-child {
  margin-bottom: 0;
}

.legal-contact-name {
  font-size: 1.05rem !important;
  margin-bottom: 10px !important;
}

.legal-closing {
  margin-top: 56px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(24,32,25,0.1);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}

.legal-closing p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--charcoal);
}

/* Slightly tighter on small screens */
@media (max-width: 600px) {
  .legal-content {
    padding: 56px var(--edge) 72px;
  }
  .legal-section h2 {
    font-size: 1.2rem;
  }
}
EOF