@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600&display=swap');
@import "tailwindcss";
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Signature motif: a "statement line" — an eyebrow label + hairline rule,
   echoing the ruled lines of a financial statement or ledger sheet. */
.statement-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.statement-line .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5B6472;
  white-space: nowrap;
}
.statement-line .rule {
  flex: 1 1 auto;
  height: 1px;
  background: #D8DCE1;
}
.statement-line::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #B9922B;
  flex: none;
}

/* A closing "total" row — heavier gold rule, echoing the total line on a statement */
.ledger-row--total {
  border-bottom: none;
  border-top: 2px solid #B9922B;
  padding-top: 1.1rem;
  margin-top: 0.15rem;
}

/* Ledger row — used for stat lists / fact sheets, mimicking a ruled account line */
.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #E2E5E9;
  padding: 1rem 0;
}
.ledger-row:last-child { border-bottom: none; }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid #0B2340;
  outline-offset: 3px;
}

/* Mobile nav */
#mobile-menu { transition: max-height 0.25s ease; overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
