/* ===========================================================
   AM PRO CHARITIES — Design System
   Palette: Corner Navy / Ring Red / Corner White / Canvas Gray / Ink / Belt Gold
   Type: Anton (display) + Barlow Semi Condensed (headings/labels) + Source Sans 3 (body)
   Signature: the stenciled "45" — echoes the brand's founding number
   =========================================================== */

:root {
  --navy: #0a1b3d;
  --navy-soft: #142a54;
  --red: #d31c24;
  --red-dark: #a8151c;
  --white: #ffffff;
  --canvas: #f1f2f4;
  --canvas-dark: #e4e6ea;
  --ink: #14171c;
  --ink-soft: #4a4f58;
  --gold: #c6963c;
  --gold-soft: #e9d3a3;

  --font-display: "Anton", "Barlow Semi Condensed", sans-serif;
  --font-heading: "Barlow Semi Condensed", sans-serif;
  --font-body: "Source Sans 3", sans-serif;

  --container: 1180px;
  --radius: 3px;
  --shadow-card: 0 12px 32px -18px rgba(10, 27, 61, 0.35);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.eyebrow--light::before {
  background: var(--gold-soft);
}

.display-xl {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  color: var(--navy);
}

.display-xl--light {
  color: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--navy);
}

.section-title--light {
  color: var(--white);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.lede--light {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #b3852f;
  border-color: #b3852f;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--canvas-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 54px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
}

.main-nav__links a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.main-nav__links a:hover,
.main-nav__links a[aria-current="page"] {
  border-color: var(--red);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--canvas-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 18px;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav__links {
    flex-direction: column;
    gap: 14px;
  }

  .main-nav .btn {
    width: 100%;
  }
}

/* ---------- Hero (with signature "45" watermark) ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero__watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: min(60vw, 620px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px 0;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__copy {
  padding-bottom: 72px;
}

.hero__copy .display-xl {
  margin: 18px 0 22px;
}

.hero__media {
  align-self: end;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 560px;
}

/* ---------- Video hero (home page) ---------- */
.hero--video {
  min-height: min(86vh, 760px);
  display: flex;
  align-items: flex-end;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 27, 61, 0.35) 0%, rgba(10, 27, 61, 0.55) 45%, rgba(6, 15, 33, 0.93) 100%);
  z-index: 1;
}

.hero--video .hero__watermark {
  z-index: 1;
}

.hero--video .hero__grid {
  grid-template-columns: 1fr;
  width: 100%;
  padding: 72px 24px 64px;
}

.hero--video .hero__copy {
  max-width: 700px;
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .hero--video {
    min-height: min(78vh, 620px);
  }

  .hero--video .hero__grid {
    padding: 40px 24px 40px;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero__copy {
    padding-bottom: 32px;
  }

  .hero__media img {
    max-height: 360px;
  }

  .hero__watermark {
    font-size: 40vw;
    right: -10%;
  }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px;
  overflow: hidden;
}

.page-hero__watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(140px, 30vw, 340px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 14px 0 12px;
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
}

.section--gray {
  background: var(--canvas);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.82);
}

.section__head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section__head .section-title {
  margin-top: 14px;
}

@media (max-width: 700px) {
  .section {
    padding: 56px 0;
  }
}

/* ---------- Mission split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.split--reverse .split__media {
  order: 2;
}

@media (max-width: 860px) {
  .split--reverse .split__media {
    order: 0;
  }
}

/* ---------- Pillar / program cards ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--canvas-dark);
  border: 1px solid var(--canvas-dark);
}

.pillar {
  background: var(--white);
  padding: 30px 22px;
}

.pillar__index {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}

.pillar h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 980px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- Program detail blocks ---------- */
.program {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--canvas-dark);
  margin-bottom: 28px;
}

.program__media {
  position: relative;
}

.program__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.program__tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 6px 16px;
}

.program__body {
  padding: 36px 40px;
}

.program__body h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.program__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
  padding-top: 18px;
  border-top: 1px solid var(--canvas-dark);
}

.program__meta div {
  font-size: 0.85rem;
}

.program__meta strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

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

  .program__media img {
    min-height: 220px;
  }

  .program__body {
    padding: 28px 24px;
  }
}

/* ---------- Stat corner blocks ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  background: var(--navy);
  padding: 26px 22px;
  position: relative;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
}

.stat__label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 860px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Founder / quote block ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.founder__body p {
  margin-bottom: 1.1em;
}

.founder__media img {
  border-radius: var(--radius);
  width: 100%;
}

.founder__quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.4;
  border-left: 4px solid var(--red);
  padding-left: 22px;
  margin: 22px 0;
}

@media (max-width: 860px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- Legends 45 giving tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tier {
  background: var(--white);
  border: 1px solid var(--canvas-dark);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  position: relative;
}

.tier--featured::before {
  content: "Recommended";
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
}

.tier__amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
}

.tier__name {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--red);
}

.tier p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

@media (max-width: 980px) {
  .tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- Simple content lists ---------- */
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: radial-gradient(circle, transparent 4px, black 5px);
  mask: radial-gradient(circle, transparent 4px, black 5px);
}

/* ---------- Cards (get involved / news) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: var(--white);
  border: 1px solid var(--canvas-dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
  flex-grow: 1;
}

.card a.btn,
.card .btn {
  align-self: flex-start;
}

/* ---------- Placeholder / TODO notice ---------- */
.todo-note {
  background: #fff7e6;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.86rem;
  color: #6b4d12;
  margin-bottom: 20px;
}

.todo-note strong {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .field--full {
  grid-column: 1 / -1;
}

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

.field label {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--canvas-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
}

/* ---------- Info bar (contact / social) ---------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 780px) {
  .info-strip {
    grid-template-columns: 1fr;
  }
}

.info-item {
  border-top: 3px solid var(--red);
  padding-top: 14px;
}

.info-item h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-item p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ---------- Map + visit-us block ---------- */
.map-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.map-block__logo {
  height: 56px;
  margin-bottom: 20px;
  mix-blend-mode: screen;
  filter: brightness(1.4);
}

.map-block__tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.map-block__details {
  display: grid;
  gap: 16px;
  margin: 0;
}

.map-block__details dt {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin-bottom: 2px;
}

.map-block__details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.map-embed {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 860px) {
  .map-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .map-embed {
    min-height: 320px;
  }
}

/* ---------- Board / leadership ---------- */
.board-grid {
  display: grid;
  gap: 56px;
}

.board-member {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.board-member__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.board-member__title {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 6px 0 16px;
}

@media (max-width: 700px) {
  .board-member {
    grid-template-columns: 1fr;
  }

  .board-member__photo {
    max-width: 240px;
    aspect-ratio: 1 / 1;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-band .display-xl {
  color: var(--white);
  margin-bottom: 18px;
}

.cta-band .lede {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 28px;
}

.cta-band .btn-row {
  justify-content: center;
}

.cta-band .btn-outline-light:hover {
  color: var(--red);
  background: var(--white);
}

.cta-band .btn-gold:hover {
  color: var(--navy);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

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

.footer-brand img {
  height: 64px;
  margin-bottom: 14px;
  mix-blend-mode: screen;
  filter: brightness(1.4);
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mt-lg {
  margin-top: 48px;
}

.todo-inline {
  font-style: italic;
  opacity: 0.85;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
