/* Shared styling for the terms and privacy pages.
   Kept out of styles.css deliberately: these pages are low traffic, and putting their
   styles in the main sheet would force a ?v= bump on the home page every time a legal
   line changes. Tokens and fonts still come from styles.css, which both pages load. */

.lg-page { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }

.lg-bar {
  border-bottom: 1px solid var(--hair);
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  position: sticky; top: 0; z-index: 20;
}
.lg-bar__inner {
  max-width: 780px; margin-inline: auto;
  padding: 0.9rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lg-bar .brand__mark { width: 34px; height: 34px; }
.lg-phone {
  font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--ink); white-space: nowrap;
}
.lg-phone:hover { color: var(--gold-2); }

.lg-main { flex: 1; max-width: 780px; width: 100%; margin-inline: auto; padding: 3.25rem 1.25rem 4rem; }

.lg-eyebrow {
  font-family: var(--caps); font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-2); margin: 0 0 0.9rem;
}
.lg-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 5.5vw, 3rem); line-height: 1.08;
  color: var(--ink); margin: 0 0 0.6rem; text-wrap: balance;
}
.lg-date {
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.08em;
  color: var(--muted-2); text-transform: uppercase; margin: 0 0 2.6rem;
}

.lg-section { border-top: 1px solid var(--hair); padding-top: 1.6rem; margin-top: 2.2rem; }
.lg-section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.lg-section h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem); line-height: 1.25;
  color: var(--ink); margin: 0 0 0.7rem;
  display: flex; gap: 0.7rem; align-items: baseline;
}
.lg-section h2 i {
  font-family: var(--mono); font-style: normal;
  font-size: 0.72rem; color: var(--gold-2);
  letter-spacing: 0.06em; flex-shrink: 0;
}
.lg-section p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin: 0 0 0.9rem; }
.lg-section p:last-child { margin-bottom: 0; }

.lg-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0 0 0.9rem; padding: 0; }
.lg-list li { display: flex; gap: 0.85rem; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.lg-list li::before { content: "\2726"; color: var(--gold-2); font-size: 0.72rem; line-height: 1.9; flex-shrink: 0; }
.lg-list strong { color: var(--ink); font-weight: 500; }

.lg-main a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 2px; }
.lg-main a:hover { color: var(--gold-2); }

.lg-callout {
  background: var(--bg-2); border-left: 2px solid var(--gold-2);
  padding: 1rem 1.15rem; border-radius: 0 4px 4px 0;
  margin-top: 2.6rem;
}
.lg-callout p { margin: 0; font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

.lg-foot {
  border-top: 1px solid var(--hair);
  padding: 1.5rem 1.25rem 2.4rem;
  text-align: center;
}
.lg-foot__links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.9rem; }
.lg-foot__links a {
  font-size: 0.84rem; letter-spacing: 0.05em; color: var(--muted);
}
.lg-foot__links a:hover { color: var(--gold-3); }
.lg-foot p { max-width: 780px; margin: 0 auto; font-size: 0.76rem; color: var(--muted-2); line-height: 1.6; }
