/* Redesign: brand.css — type, color application, geometric language */

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

.top-bar {
  background: var(--surface-ink);
  color: var(--text-on-ink);
  text-align: center;
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  padding: 0.55rem var(--page-pad);
  font-weight: 500;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-mark:hover {
  color: var(--brand-primary-deep);
}

.eyebrow,
.crumb-label {
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.headline,
.hero-panel h1,
.section-title,
.legal-hero h1,
.product-panel h3,
.cta-band h2,
.reviews-head {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--tracking-display);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

.headline,
.hero-panel h1,
.legal-hero h1 {
  font-size: var(--text-h1);
  max-width: 16ch;
}

.section-title,
.cta-band h2 {
  font-size: var(--text-h2);
  max-width: 18ch;
}

.deck,
.lede,
.hero-panel .deck {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: var(--lh-snug);
  color: var(--text-muted);
  max-width: 34rem;
  font-weight: 300;
}

.byline,
.updated,
.img-caption,
.citation {
  font-size: var(--text-small);
  color: var(--text-faint);
}

.byline strong {
  color: var(--text-primary);
  font-weight: 600;
}

.citation a {
  color: var(--brand-primary-deep);
}

/* Geometric markers */
.geo-frame {
  position: relative;
}

.geo-frame::before,
.geo-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.geo-frame--rect::before {
  inset: -0.75rem;
  border: 1px solid var(--geo-stroke);
}

.geo-frame--circle::after {
  width: clamp(4rem, 12vw, 8rem);
  height: clamp(4rem, 12vw, 8rem);
  border: 1px solid var(--geo-stroke);
  border-radius: 50%;
  top: -1.5rem;
  right: -1.25rem;
  background: var(--geo-fill);
}

.geo-marker {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--geo-stroke);
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface-panel-soft);
  flex-shrink: 0;
}

.geo-marker--round {
  border-radius: 50%;
}

.geo-marker--square {
  border-radius: 0;
}

.geo-rule {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  color: var(--text-faint);
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.geo-rule::before,
.geo-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.geo-rule .geo-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--geo-stroke);
  background: var(--brand-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.site-footer {
  background: var(--surface-ink);
  color: rgba(244, 241, 236, 0.78);
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--page-pad) var(--space-lg);
}

.site-footer a {
  color: var(--text-on-ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: var(--space-md);
  font-size: var(--text-small);
  letter-spacing: 0.04em;
}

.footer-legal {
  font-size: var(--text-small);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-legal strong {
  color: var(--text-on-ink);
  font-weight: 500;
}

.footer-disclosures {
  border-top: 1px solid rgba(244, 241, 236, 0.14);
  padding-top: var(--space-md);
  display: grid;
  gap: 0.75rem;
  font-size: var(--text-caption);
  color: rgba(244, 241, 236, 0.55);
  max-width: 72rem;
}

.footer-copyright {
  margin-top: var(--space-md);
  font-size: var(--text-caption);
  color: rgba(244, 241, 236, 0.4);
}
