/* ==========================================================================
   BASE — design tokens, reset, typography, shared helpers
   Edit brand colors and fonts here; they cascade to every page.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #16263f;
  --navy-deep: #0f1b2e;
  --navy-mid: #1e3354;
  --beige: #f4eee1;
  --beige-soft: #faf7ef;
  --gold: #c3a457;
  --gold-soft: #d9c48d;
  --red: #9e3b2c;
  --ink: #22293a;
  --grey: #5b6474;

  /* Type families */
  --font-body: 'Libre Franklin', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-deco: 'Josefin Sans', sans-serif;

  /* Layout */
  --content-max: 1060px;
  --gutter: 48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--beige-soft);
  line-height: 1.6;
  overflow-x: hidden; /* safety net against accidental horizontal scroll on mobile */
}

h1, h2, h3 { font-family: var(--font-serif); overflow-wrap: break-word; }

/* Shared section scaffolding ------------------------------------------------ */
section { padding: 110px var(--gutter); }
.inner { max-width: var(--content-max); margin: 0 auto; }

h2 {
  font-size: 34px;
  color: var(--navy);
  font-weight: 700;
  margin: 14px 0 22px;
  line-height: 1.2;
}
.lede { font-size: 18px; color: var(--grey); max-width: 780px; }

/* Deco helpers -------------------------------------------------------------- */
.deco-kicker {
  font-family: var(--font-deco);
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-size: 12.5px;
}
.sec-kicker { color: var(--red); }

.deco-rule { display: flex; align-items: center; gap: 12px; margin: 26px 0 0; }
.deco-rule.center { justify-content: center; }
.deco-rule .line { height: 1px; background: var(--gold); flex: 0 0 70px; position: relative; }
.deco-rule .line::after {
  content: '';
  position: absolute;
  top: 3px; left: 0; right: 0;
  height: 1px;
  background: rgba(195, 164, 87, .45);
}
.deco-rule .diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-deco);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 15px 30px 12px;
  border-radius: 2px;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-line { border: 1px solid rgba(244, 238, 225, .5); color: var(--beige); background: transparent; }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
