/* ===== TOKENS ===== */
:root {
  /* Brand */
  --navy: #0B1F3A;
  --navy-2: #15294A;
  --navy-3: #1E3A5F;
  --navy-ink: #061429;
  --garnet: #7A1E2C;
  --garnet-2: #5C1521;
  --gold: #B89548;
  --gold-soft: #D8B968;

  /* Surfaces */
  --bg: #F7F5F0;
  --bg-2: #EFEBE2;
  --surface: #FFFFFF;
  --surface-2: #FBFAF6;
  --line: #E4DFD3;
  --line-2: #D8D2C2;
  --line-strong: #B8B09C;

  /* Text */
  --ink: #1F2933;
  --ink-2: #5B6673;
  --ink-3: #8A93A0;
  --on-navy: #F7F5F0;
  --on-navy-soft: #B7C2D6;

  /* States */
  --success: #2E6F4E;
  --warn: #B7791F;
  --error: #9B2C2C;
  --info: #2C5282;

  /* Type */
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Sizing */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-1: 0 1px 2px rgba(11,31,58,0.04), 0 1px 3px rgba(11,31,58,0.06);
  --shadow-2: 0 4px 12px rgba(11,31,58,0.08), 0 1px 3px rgba(11,31,58,0.04);
  --shadow-3: 0 12px 32px rgba(11,31,58,0.12), 0 4px 8px rgba(11,31,58,0.06);

  /* Spacing scale */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
h1 { font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: 36px; line-height: 1.15; }
h3 { font-size: 24px; line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 600; }
p  { margin: 0; }

/* ===== PUBLIC SITE COMPONENTS ===== */
.site-header {
  background: var(--navy-ink);
  color: var(--on-navy);
  border-bottom: 1px solid rgba(200,162,74,0.18);
}
.site-header__top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-navy-soft);
}
.site-header__top-inner {
  max-width: 1200px; margin: 0 auto; padding: 8px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.site-header__top a { color: var(--on-navy-soft); }
.site-header__top a:hover { color: var(--gold); }
.site-header__main {
  max-width: 1200px; margin: 0 auto; padding: 18px 32px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
}
.brand-block {
  display: flex; gap: 14px; align-items: center;
}
.brand-block .crest { width: 56px; height: 56px; }
.brand-block .name {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
}
.brand-block .name small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}
.nav-primary {
  display: flex; gap: 28px; justify-content: center;
  font-size: 13px; letter-spacing: 0.04em;
}
.nav-primary a {
  color: var(--on-navy-soft);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-primary a:hover { color: #fff; }
.nav-primary a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}
.header-cta {
  display: flex; gap: 10px; align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
  text-transform: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover { background: var(--navy); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--line-strong); }
.btn--garnet {
  background: var(--garnet); color: #fff; border-color: var(--garnet);
}
.btn--garnet:hover { background: var(--garnet-2); border-color: var(--garnet-2); }
.btn--small { padding: 7px 12px; font-size: 12px; }
.btn--large { padding: 14px 28px; font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }
.btn--inverse {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.btn--inverse:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold); color: var(--navy-ink); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: stretch;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(11,31,58,0.92), rgba(11,31,58,0.75) 60%, rgba(11,31,58,0.85)),
    linear-gradient(180deg, #1a3454 0%, #0B1F3A 100%);
  z-index: -2;
}
/* Subtle "maritime" placeholder pattern (waves) */
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(200,162,74,0.04) 22px 23px),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.06), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,162,74,0.08), transparent 50%);
  opacity: 0.9;
}
.hero__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px 80px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content:""; display:inline-block; width: 28px; height: 1px; background: var(--gold);
}
.hero h1 {
  color: #fff;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-style: normal;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic; color: var(--gold-soft); font-weight: 300;
}
.hero__lede {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-navy-soft);
  max-width: 52ch;
}
.hero__cta {
  margin-top: 36px;
  display: flex; gap: 14px;
}
.hero__meta {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 36px;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--on-navy-soft);
}
.hero__meta b { display: block; color: #fff; font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 4px; letter-spacing: 0; }
.hero__crest {
  display: flex; justify-content: center; align-items: center;
}
.hero__crest svg { width: 280px; height: 280px; opacity: 0.95; }

/* ===== SECTIONS ===== */
.section {
  padding: 96px 32px;
}
.section--tight { padding: 64px 32px; }
.section--surface { background: var(--surface); }
.section--bg2 { background: var(--bg-2); }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head__eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--garnet);
  margin-bottom: 8px;
}
.section-head h2 {
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.02em;
}
.section-head__sub {
  color: var(--ink-2);
  font-size: 14px; line-height: 1.6;
  max-width: 52ch;
  align-self: end;
  font-family: var(--sans);
}
.section-head__link {
  align-self: end;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid;
}
.badge--open { color: var(--success); border-color: var(--success); background: rgba(46,111,78,0.06); }
.badge--closed { color: var(--ink-2); border-color: var(--line-strong); background: var(--bg-2); }
.badge--full { color: var(--warn); border-color: var(--warn); background: rgba(183,121,31,0.07); }
.badge--past { color: var(--ink-3); border-color: var(--line-2); background: transparent; }
.badge--featured { color: var(--garnet); border-color: var(--garnet); background: rgba(122,30,44,0.05); }
.badge--gold { color: var(--gold); border-color: var(--gold); background: rgba(200,162,74,0.06); }
.badge--solid-navy { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== EVENT AGENDA (vertical) ===== */
.agenda { border-top: 1px solid var(--line); }
.agenda-row {
  display: grid;
  grid-template-columns: 130px 1fr 240px 160px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
  transition: background .12s;
}
.agenda-row:hover { background: rgba(200,162,74,0.03); }
.agenda-row__date {
  font-family: var(--serif);
  font-feature-settings: "lnum";
  text-align: left;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.agenda-row__date .day {
  font-size: 36px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: block;
}
.agenda-row__date .month {
  display: block; margin-top: 4px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
}
.agenda-row__date .year {
  display: block; margin-top: 2px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.agenda-row__title {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.agenda-row__meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--ink-2);
  margin-top: 12px;
}
.agenda-row__meta span {
  display: inline-flex; align-items: center; gap: 6px;
}
.agenda-row__speaker {
  font-size: 13px; color: var(--ink-2);
}
.agenda-row__speaker b { color: var(--ink); font-weight: 500; }
.agenda-row__cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

/* ===== FORMS ===== */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink); font-weight: 500;
  display: flex; gap: 4px;
}
.field label .opt { color: var(--ink-3); font-weight: 400; }
.field label .req { color: var(--garnet); }
.field input[type="text"], .field input[type="email"], .field input[type="password"],
.field input[type="tel"], .field input[type="date"], .field input[type="number"],
.field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
}
.field--error input { border-color: var(--error); }
.field--error .field__msg { color: var(--error); }
.field__msg { font-size: 12px; color: var(--ink-2); }
.field__hint { font-size: 12px; color: var(--ink-3); }
.field textarea { resize: vertical; min-height: 110px; }

/* radio + checkbox grids */
.choice-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.choice {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 14px;
  cursor: pointer;
  transition: all .15s;
}
.choice:hover { border-color: var(--line-strong); }
.choice input { accent-color: var(--navy); }
.choice.is-selected {
  border-color: var(--navy);
  background: rgba(11,31,58,0.03);
  box-shadow: inset 3px 0 0 var(--navy);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-ink);
  color: var(--on-navy-soft);
  padding: 64px 32px 0;
  margin-top: 0;
}
.site-footer__inner {
  max-width: 1200px; margin: 0 auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h6 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 13px; }
.site-footer ul li a { color: var(--on-navy-soft); }
.site-footer ul li a:hover { color: #fff; }
.site-footer__brand .name {
  font-family: var(--serif); font-size: 18px;
  color: #fff; line-height: 1.2;
}
.site-footer__brand p {
  font-size: 13px; line-height: 1.6;
  margin-top: 14px; max-width: 36ch;
}
.site-footer__bar {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* ===== Utility ===== */
.hr-gold {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}
.kicker {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--garnet);
}
.mono { font-family: var(--mono); }
.text-center { text-align: center; }
.muted { color: var(--ink-2); }
.spacer-s { height: var(--s4); }
.spacer-m { height: var(--s6); }
.spacer-l { height: var(--s8); }
.divider { border: 0; height: 1px; background: var(--line); margin: var(--s7) 0; }

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 32px;
}
.timeline::before {
  content:""; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 1px; background: var(--line-2);
}
.timeline__item {
  position: relative;
  padding: 12px 0 28px 28px;
}
.timeline__item::before {
  content:""; position: absolute; left: -3px; top: 18px;
  width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline__item.is-current::before {
  background: var(--gold);
}
.timeline__year {
  font-family: var(--mono); font-size: 12px;
  color: var(--gold); letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline__name {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--ink);
}
.timeline__desc {
  font-size: 13px; color: var(--ink-2); margin-top: 4px;
}

/* ===== Mobile fragment ===== */
.m-hero {
  background: var(--navy-ink);
  color: #fff;
  padding: 24px 20px 32px;
  position: relative;
}
.m-hero h1 {
  font-size: 28px; line-height: 1.1; color: #fff;
  font-weight: 400;
}
.m-hero p { color: var(--on-navy-soft); font-size: 13px; margin-top: 12px; }
.m-section { padding: 28px 20px; }
.m-section h2 { font-size: 22px; }

/* QR */
.qr-frame {
  background: var(--navy-ink);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.qr-frame::before, .qr-frame::after {
  content:""; position: absolute; width: 28px; height: 28px;
  border: 2px solid var(--gold);
}
.qr-frame .corner-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.qr-frame .corner-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.qr-frame .corner-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.qr-frame .corner-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.qr-frame i {
  position: absolute; width: 28px; height: 28px;
  border: 2px solid var(--gold);
}
.qr-frame i.tl { top:10px; left:10px; border-right:0; border-bottom:0; }
.qr-frame i.tr { top:10px; right:10px; border-left:0; border-bottom:0; }
.qr-frame i.bl { bottom:10px; left:10px; border-right:0; border-top:0; }
.qr-frame i.br { bottom:10px; right:10px; border-left:0; border-top:0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 6px; }

/* Print-ish doc card */
.doc-row {
  display: grid;
  grid-template-columns: 56px 1fr 140px 110px 140px;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.doc-row + .doc-row { /* nada */ }
.doc-row:hover { background: var(--surface-2); }
.doc-row__icon {
  width: 56px; height: 70px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-top-right-radius: 8px;
  position: relative;
  display: flex; align-items: end; justify-content: center;
  padding-bottom: 8px;
  font-family: var(--mono); font-size: 9px; color: var(--garnet);
  letter-spacing: 0.08em;
}
.doc-row__icon::before {
  content:""; position: absolute; top:0; right:0;
  border: 8px solid var(--bg-2); border-bottom-color: var(--line-2); border-left-color: var(--line-2);
}
.doc-row__title { font-family: var(--serif); font-size: 16px; font-weight: 500; }
.doc-row__sub { font-size: 12px; color: var(--ink-2); margin-top: 4px; line-height: 1.5; }
.doc-row__meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-2); letter-spacing: 0.04em;
}

/* Sponsor grid */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sponsor-cell {
  background: var(--surface);
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-3);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.sponsor-cell:hover { background: var(--surface-2); }

/* Junta grid */
.junta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.junta-card {
  text-align: center;
}
.junta-card .photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, var(--bg-2) 0 6px, var(--line) 6px 7px),
    var(--surface-2);
  border: 1px solid var(--line-2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.junta-card .photo::after {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 38px;
  color: var(--ink-3); font-weight: 300;
  background: rgba(255,255,255,0.7);
}
.junta-card h4 { margin-top: 18px; font-size: 16px; }
.junta-card .role {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--garnet); margin-top: 4px;
}
.junta-card .bio {
  font-size: 12px; color: var(--ink-2); margin-top: 10px;
  line-height: 1.55;
}

/* Newsroom */
.news-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0;
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.news-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.news-card__cover {
  height: 200px;
  background:
    linear-gradient(135deg, rgba(11,31,58,0.6), rgba(11,31,58,0.2)),
    repeating-linear-gradient(45deg, #d8d2c2 0 8px, #ccc4b0 8px 9px);
  position: relative;
}
.news-card__cover::after {
  content: "IMG"; position: absolute; bottom: 12px; right: 12px;
  font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.16em;
}
.news-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card .meta {
  font-family: var(--mono); font-size: 11px; color: var(--ink-2);
  letter-spacing: 0.06em;
  display: flex; gap: 14px; margin-bottom: 12px;
}
.news-card .meta .cat { color: var(--garnet); text-transform: uppercase; }
.news-card h3 {
  font-size: 20px; line-height: 1.25;
  margin-bottom: 10px;
}
.news-card p { font-size: 13px; color: var(--ink-2); line-height: 1.6; flex: 1; }
.news-card .read {
  margin-top: 16px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid var(--gold); align-self: flex-start;
  padding-bottom: 2px;
}

