/* ============================================
   SMF Labs · Internal Brief
   Navy and gold institutional aesthetic
   ============================================ */

:root {
  /* Color palette */
  --navy: #162B47;
  --navy-deep: #0F1F33;
  --navy-mid: #2E5984;
  --gold: #C9A961;
  --gold-soft: #E0CB95;
  --gold-pale: #F5EFD9;
  --cream: #FAF7EE;
  --paper: #FBFAF6;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-quiet: #7A7A7A;
  --rule: #E5DFCF;
  --rule-soft: #F0EBDD;
  --green-done: #4A7C59;
  --green-soft: #DCEAD8;
  --blue-now: #2E5984;
  --blue-soft: #DCE6F0;

  /* Typography */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --container: 1180px;
  --narrow: 760px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'calt';
}

a {
  color: var(--navy-mid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
a:hover { color: var(--gold); }

p { margin-bottom: 1.1em; }
strong { font-weight: 600; }

/* ============================================
   TOP BAR
   ============================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.brand-mark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.brand-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.3);
}
.brand-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.topnav {
  display: flex;
  gap: 28px;
}
.topnav a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.topnav a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .topnav { display: none; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--navy);
  color: white;
  padding: 100px 32px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201,169,97,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: white;
}

.hero-tagline {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--gold);
  margin-bottom: 40px;
  max-width: 720px;
  letter-spacing: -0.005em;
}

.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin-bottom: 56px;
}

.hero-meta {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
  margin-bottom: 32px;
  display: grid;
  gap: 8px;
}

.meta-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  font-size: 14px;
}

.meta-label {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding-top: 4px;
}

.meta-value { color: rgba(255,255,255,0.88); }

.hero-links {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
  line-height: 1.9;
}

.hero-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-decoration-color: rgba(201,169,97,0.5);
}
.hero-links a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.link-sep {
  color: rgba(255,255,255,0.3);
  margin: 0 6px;
}

.hero-flourish {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   IDENTITY CARD
   ============================================ */

.identity-section {
  background: var(--paper);
  padding: 0 32px;
  margin-top: -64px;
  position: relative;
  z-index: 5;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.container.narrow,
.narrow-inner {
  max-width: var(--narrow);
  margin-left: auto;
  margin-right: auto;
}

.identity-card {
  background: white;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--gold);
  padding: 48px 56px;
  box-shadow: 0 24px 60px -20px rgba(22, 43, 71, 0.18);
}

.identity-header {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 28px;
  margin-bottom: 32px;
}

.identity-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-done);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.identity-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 8px;
}

.identity-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
}

.identity-wide { grid-column: 1 / -1; }

.identity-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 6px;
}

.identity-value {
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
}

.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .identity-card { padding: 32px 28px; }
  .identity-grid { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .identity-wide { grid-column: 1 / -1; }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 120px 32px;
  background: var(--paper);
}

.section-alt {
  background: var(--cream);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.section-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 32px;
}

.lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 48px;
  font-weight: 400;
}

.sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy);
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
}

/* ============================================
   CALLOUT BOXES
   ============================================ */

.callout {
  background: var(--paper);
  border-left: 4px solid var(--navy);
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: 0 2px 12px -2px rgba(22, 43, 71, 0.08);
}

.callout-gold {
  background: var(--gold-pale);
  border-left-color: var(--gold);
}

.callout-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.callout p { margin-bottom: 0.8em; font-size: 16px; }
.callout p:last-child { margin-bottom: 0; }

.callout-quiet {
  font-style: italic;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.prose-list {
  list-style: none;
  margin: 24px 0 28px;
  padding-left: 0;
}

.prose-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.prose-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

.prose-list li strong {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================
   THREE CAMPS DIAGRAM
   ============================================ */

.camps-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 40px;
  position: relative;
}

.camp {
  background: white;
  border: 1px solid var(--rule);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.camp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(22, 43, 71, 0.18);
}

.camp-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.camp h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.camp-leader {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.camp-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0;
}

.camp-center {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 24px;
  background: var(--navy);
  color: white;
  margin-top: 8px;
  border-top: 3px solid var(--gold);
}

.camp-center-mark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.camp-center-desc {
  font-style: italic;
  font-family: var(--display);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 720px) {
  .camps-diagram { grid-template-columns: 1fr; }
}

/* ============================================
   COMPARE TABLE
   ============================================ */

.compare-table {
  margin: 40px 0;
  background: white;
  border: 1px solid var(--rule);
  font-size: 14px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.compare-row:last-child { border-bottom: none; }

.compare-row > div {
  padding: 14px 16px;
  border-right: 1px solid var(--rule);
}
.compare-row > div:last-child { border-right: none; }

.compare-head {
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.compare-head .compare-us {
  background: var(--gold);
  color: var(--navy);
}

.compare-label {
  background: var(--cream);
  font-weight: 600;
  color: var(--navy);
}

.compare-us {
  background: var(--gold-pale);
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 720px) {
  .compare-table { font-size: 12px; }
  .compare-row > div { padding: 10px 8px; }
}

/* ============================================
   PAPERS GRID
   ============================================ */

.papers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 56px auto;
  max-width: 1100px;
}

.paper-card {
  background: white;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--navy);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.paper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(22, 43, 71, 0.2);
}

.paper-card-highlight {
  border-top-color: var(--gold);
  background: var(--gold-pale);
}

.status-submitted { border-top-color: var(--green-done); }
.status-ready { border-top-color: var(--blue-now); }
.status-editing { border-top-color: var(--gold); }

.paper-status {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 2px 2px;
}
.status-submitted .paper-status { background: var(--green-done); }
.status-ready .paper-status { background: var(--blue-now); }
.status-editing .paper-status { background: var(--gold); color: var(--navy); }

.paper-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  margin-top: 8px;
}

.paper-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.28;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.paper-authors {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}

.paper-venue {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.paper-meta {
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
  margin-bottom: 14px;
}

.paper-meta div span {
  font-weight: 600;
  color: var(--navy);
  margin-right: 6px;
}

.paper-meta .urgent span { color: var(--gold); }
.paper-meta .urgent { color: var(--navy); font-weight: 500; }

.paper-why {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  flex-grow: 1;
}

.paper-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.paper-link:hover { color: var(--gold); }

@media (max-width: 720px) {
  .papers-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PHASE TIMELINE (FUNDING)
   ============================================ */

.phase-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0;
  position: relative;
}

.phase {
  background: white;
  border: 1px solid var(--rule);
  padding: 24px 20px;
  position: relative;
}

.phase-done { border-top: 4px solid var(--green-done); background: var(--green-soft); }
.phase-now { border-top: 4px solid var(--gold); background: var(--gold-pale); }
.phase-next { border-top: 4px solid var(--blue-now); background: var(--blue-soft); }
.phase-future { border-top: 4px solid var(--rule); background: white; }

.phase-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.phase-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.phase-done .phase-status { color: var(--green-done); }
.phase-now .phase-status { color: var(--gold); }

.phase h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.phase ul {
  list-style: none;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.phase ul li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.phase ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 920px) {
  .phase-timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .phase-timeline { grid-template-columns: 1fr; }
}

/* ============================================
   PATHS TABLE
   ============================================ */

.paths-table {
  margin: 32px 0;
  background: white;
  border: 1px solid var(--rule);
  font-size: 15px;
}

.paths-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.paths-row:last-child { border-bottom: none; }

.paths-row > div {
  padding: 14px 18px;
  border-right: 1px solid var(--rule);
}
.paths-row > div:last-child { border-right: none; }

.paths-head {
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.paths-row > div:first-child { font-weight: 500; color: var(--navy); }

.paths-aside {
  background: var(--gold-pale);
}
.paths-aside > div:first-child { font-weight: 500; }

.aside-note {
  font-size: 12px;
  color: var(--ink-quiet);
  font-weight: 400;
  font-style: italic;
}

.paths-total {
  background: var(--navy);
  color: white;
  font-weight: 600;
}
.paths-total > div:first-child { color: var(--gold); }
.paths-total > div { font-size: 18px; }

@media (max-width: 720px) {
  .paths-table { font-size: 13px; }
  .paths-row > div { padding: 10px 12px; }
}

/* ============================================
   LEO SECTION
   ============================================ */

.section-leo {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.leo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 40px;
}

.leo-card {
  background: white;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 24px 24px 24px 28px;
}

.leo-card-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.leo-card h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}

.leo-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0;
}

.leo-resources {
  margin: 32px 0 24px;
  display: grid;
  gap: 24px;
}

.leo-resource {
  background: white;
  border: 1px solid var(--rule);
  padding: 28px 32px;
  position: relative;
}

.leo-resource::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--navy);
}

.leo-resource h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.resource-purpose {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
}

.leo-resource ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}

.leo-resource ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.leo-resource ul li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-weight: 600;
  color: var(--gold);
  font-size: 16px;
}

@media (max-width: 720px) {
  .leo-cards { grid-template-columns: 1fr; }
  .leo-resource { padding: 22px 22px; }
}

/* ============================================
   OWNS GRID
   ============================================ */

.owns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.owns-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 32px 32px 28px;
  border-top: 4px solid var(--gold);
}

.owns-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.owns-card ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}

.owns-card ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
}

.owns-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.owns-lavonne { border-top-color: var(--navy); }
.owns-bernard { border-top-color: var(--gold); }
.owns-leo { border-top-color: var(--green-done); }
.owns-andrew { border-top-color: var(--blue-now); }
.owns-micah { border-top-color: var(--gold-soft); }
.owns-antonio { border-top-color: var(--navy-mid); }

.closing {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  text-align: center;
  margin-top: 40px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .owns-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy);
  color: white;
  padding: 80px 32px 40px;
  margin-top: 0;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-mark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

.footer-info {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
}

.footer-row > span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}

.footer-row > span:last-child {
  color: rgba(255,255,255,0.85);
}

.footer-row a {
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-decoration-color: rgba(201,169,97,0.5);
}
.footer-row a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
