/* ============================================================
   Marula Mining PLC — marula.aiasterion.com
   Brand: charcoal #232323 / gold #EFC81D / Jost + Cinzel
   ============================================================ */

:root {
  --ink: #141414;
  --charcoal: #1d1d1d;
  --charcoal-2: #232323;
  --panel: #2a2a28;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold: #efc81d;
  --gold-deep: #bd9f1d;
  --gold-soft: rgba(239, 200, 29, 0.14);
  --paper: #f6f4ee;
  --paper-2: #edeae1;
  --body-on-dark: #c9c7c0;
  --body-on-light: #4a4944;
  --white: #ffffff;
  --up: #4fc26b;
  --down: #e05d54;
  --radius: 4px;
  --wrap: 1240px;
  --font-body: "Jost", sans-serif;
  --font-display: "Cinzel", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.on-dark .kicker { color: var(--gold); }
.kicker::before { content: ""; width: 44px; height: 1px; background: currentColor; }

.display {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.2; margin-bottom: 20px; }
.h3 { font-size: 20px; letter-spacing: 0.03em; }

.lead { font-size: clamp(18px, 1.6vw, 21px); font-weight: 300; line-height: 1.6; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.22s ease;
}
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--white); border-color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(0,0,0,0.35); }
.btn-ghost-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

/* ============================================================
   Utility strip (share price)
   ============================================================ */
.strip {
  background: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--body-on-dark);
  position: relative; z-index: 60;
}
.strip .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.strip-listings { display: flex; gap: 22px; align-items: center; }
.strip-listings .exch { color: rgba(255,255,255,0.45); margin-right: 6px; }
.strip-listings .px { color: var(--white); font-weight: 500; }
.strip-listings .chg { font-weight: 500; }
.chg.up { color: var(--up); }
.chg.down { color: var(--down); }
.strip-right { display: flex; gap: 20px; align-items: center; }
.strip-right a:hover { color: var(--gold); }
.strip .note { color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }
@media (max-width: 760px) { .strip-right .hide-m { display: none; } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(29, 29, 29, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 52px; width: auto; }
.brand-name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: 17px; letter-spacing: 0.14em; line-height: 1.25;
}
.brand-name small { display: block; font-size: 10.5px; letter-spacing: 0.42em; color: var(--gold); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 13.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.22s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--white); }
.nav .btn { padding: 11px 20px; margin-left: 6px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0; transition: 0.25s; }

@media (max-width: 1080px) {
  .nav {
    position: fixed; inset: 116px 0 auto 0;
    background: var(--charcoal); flex-direction: column; align-items: flex-start;
    padding: 24px 28px 34px; gap: 18px;
    transform: translateY(-130%); transition: transform 0.3s ease;
    border-bottom: 2px solid var(--gold);
  }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================================
   Commodities ticker
   ============================================================ */
.ticker {
  background: var(--charcoal-2);
  border-bottom: 2px solid var(--gold);
  overflow: hidden; position: relative;
  height: 44px; display: flex; align-items: stretch;
}
.ticker-label {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 18px; z-index: 2; white-space: nowrap;
}
.ticker-viewport { flex: 1; overflow: hidden; position: relative; }
.ticker-track {
  display: flex; align-items: center; height: 44px;
  width: max-content;
  animation: ticker-scroll 55s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tick {
  display: inline-flex; align-items: baseline; gap: 9px;
  padding: 0 26px; white-space: nowrap;
  font-size: 13.5px; letter-spacing: 0.04em;
  border-right: 1px solid var(--line-soft);
}
.tick .c { color: rgba(255,255,255,0.85); font-weight: 500; }
.tick .spec { color: rgba(255,255,255,0.4); font-size: 11.5px; }
.tick .p { color: var(--gold); font-weight: 500; }
.tick .d { font-size: 12px; font-weight: 500; }
.tick .d.up { color: var(--up); }
.tick .d.down { color: var(--down); }
.ticker-cta {
  flex: 0 0 auto; display: flex; align-items: center;
  background: var(--ink); color: var(--gold);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0 18px; white-space: nowrap; border-left: 1px solid var(--line);
}
.ticker-cta:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 760px) { .ticker-label span { display: none; } .ticker-cta { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end;
  background: var(--charcoal);
  isolation: isolate;
}
.hero.short { min-height: 46vh; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(18,18,18,0.94) 0%, rgba(18,18,18,0.55) 42%, rgba(18,18,18,0.25) 100%);
}
.hero-content { padding: 120px 0 72px; max-width: 900px; }
.hero-content .display { color: var(--white); margin-bottom: 22px; }
.hero-content .lead { color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* gold corner accent, echoes the logo rule lines */
.hero-rule {
  position: absolute; right: 28px; bottom: 72px;
  width: 130px; border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-top: 4px; opacity: 0.9;
}
@media (max-width: 900px) { .hero-rule { display: none; } }

/* ============================================================
   Stats band
   ============================================================ */
.stats { background: var(--ink); border-top: 1px solid var(--line-soft); }
.stats .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 46px; padding-bottom: 46px; gap: 30px;
}
.stat { border-left: 1px solid var(--line); padding-left: 26px; }
.stat .num {
  font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 600; color: var(--gold); line-height: 1;
}
.stat .lbl {
  margin-top: 10px; font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
@media (max-width: 860px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.dark { background: var(--charcoal); color: var(--body-on-dark); }
.section.darker { background: var(--ink); color: var(--body-on-dark); }
.section.alt { background: var(--paper-2); }

.two-col { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; }
.two-col.flip { grid-template-columns: 6fr 5fr; }
@media (max-width: 900px) { .two-col, .two-col.flip { grid-template-columns: 1fr; gap: 36px; } }

.img-frame { position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.img-frame::after {
  content: ""; position: absolute; left: -14px; bottom: -14px;
  width: 120px; height: 120px;
  border-left: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  pointer-events: none;
}

.section p + p { margin-top: 16px; }

/* card grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,20,20,0.13); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.045); }
.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body .h3 { margin-bottom: 10px; }
.card-body p { font-size: 15px; flex: 1; }
.card-tag {
  align-self: flex-start; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 4px 10px; border-radius: 2px; margin-bottom: 14px;
}
.card-link {
  margin-top: 18px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep);
}
.card-link:hover { color: var(--ink); }

.section.dark .card, .section.darker .card { background: var(--panel); border-color: var(--line-soft); }
.section.dark .card .h3, .section.darker .card .h3 { color: var(--white); }
.section.dark .card p, .section.darker .card p { color: var(--body-on-dark); }
.section.dark .card-link, .section.darker .card-link { color: var(--gold); }
.section.dark .card-link:hover, .section.darker .card-link:hover { color: var(--white); }

/* value tiles (objectives / criteria) */
.tile {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07); border-top: 3px solid var(--gold);
  padding: 30px 28px;
}
.tile .h3 { margin-bottom: 12px; }
.tile p { font-size: 15px; }
.section.dark .tile, .section.darker .tile { background: var(--panel); border-color: var(--line-soft); border-top-color: var(--gold); }
.section.dark .tile .h3, .section.darker .tile .h3 { color: var(--white); }

/* section header block */
.sec-head { max-width: 780px; margin-bottom: 54px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .kicker { justify-content: center; }
.sec-head.center .kicker::before { display: none; }

/* ============================================================
   Commodities desk band (home)
   ============================================================ */
.desk-band { position: relative; background: var(--charcoal); overflow: hidden; }
.desk-band::before {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/img/hero-mine.jpg") center/cover fixed;
  opacity: 0.14;
}
.desk-band .wrap { position: relative; }
.commodity-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 40px; }
.chip {
  font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border: 1px solid var(--line);
  padding: 9px 18px; border-radius: 999px;
  display: inline-flex; gap: 9px; align-items: baseline;
}
.chip b { color: var(--gold); font-weight: 500; }

/* ============================================================
   Project detail blocks
   ============================================================ */
.proj { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; padding: 72px 0; border-top: 1px solid rgba(0,0,0,0.1); }
.proj:first-of-type { border-top: none; }
.proj.flip { grid-template-columns: 7fr 5fr; }
.proj.flip .proj-media { order: 2; }
.proj-media img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 460px; }
.proj-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 20px; }
.meta-pill {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.2); color: var(--body-on-light);
  padding: 5px 12px; border-radius: 999px;
}
.meta-pill.gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.proj ul { list-style: none; margin-top: 8px; }
.proj ul li { position: relative; padding: 7px 0 7px 26px; font-size: 15.5px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.proj ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 500; }
@media (max-width: 900px) {
  .proj, .proj.flip { grid-template-columns: 1fr; gap: 28px; }
  .proj.flip .proj-media { order: 0; }
}

/* ============================================================
   Team
   ============================================================ */
.person { text-align: left; }
.person-photo {
  aspect-ratio: 1/1.08; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--panel), var(--ink));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid var(--gold);
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.person-photo .initials {
  font-family: var(--font-display); font-size: 64px; color: var(--gold); font-weight: 600;
}
.person .h3 { margin: 18px 0 2px; }
.person .role { font-size: 12.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.person p { font-size: 14.5px; }
.section.dark .person .role { color: var(--gold); }

/* ============================================================
   Media cards
   ============================================================ */
.vid-card { position: relative; }
.vid-card .card-img { position: relative; }
.vid-card .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.vid-card .play span {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(20,20,20,0.65); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s ease;
}
.vid-card .play span::after {
  content: ""; border-left: 16px solid var(--gold); border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; margin-left: 4px;
}
.vid-card:hover .play span { background: var(--gold); }
.vid-card:hover .play span::after { border-left-color: var(--ink); }

/* ============================================================
   Investors
   ============================================================ */
.doc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 22px 28px; margin-bottom: 14px;
  transition: box-shadow 0.2s ease;
}
.doc-row:hover { box-shadow: 0 10px 26px rgba(20,20,20,0.1); }
.doc-row .h3 { margin-bottom: 4px; }
.doc-row p { font-size: 14.5px; }
.doc-row .btn { flex-shrink: 0; padding: 11px 20px; font-size: 12.5px; }
@media (max-width: 700px) { .doc-row { flex-direction: column; align-items: flex-start; } }

.quote-panel {
  background: var(--ink); color: var(--white); border-radius: var(--radius);
  padding: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  border-top: 3px solid var(--gold);
}
.quote-panel .q-lbl { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.quote-panel .q-val { font-family: var(--font-display); font-size: 34px; color: var(--gold); font-weight: 600; }
.quote-panel .q-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }
@media (max-width: 760px) { .quote-panel { grid-template-columns: 1fr; } }

/* ============================================================
   Forms (contact / trade / inquiry)
   ============================================================ */
.form-panel {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold); border-radius: var(--radius);
  padding: 40px;
}
.section.dark .form-panel, .section.darker .form-panel {
  background: var(--panel); border-color: var(--line-soft); border-top-color: var(--gold);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--body-on-light);
}
.section.dark .field label, .section.darker .field label { color: var(--body-on-dark); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; font-weight: 300;
  padding: 13px 15px; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.18); background: var(--paper);
  color: var(--ink); outline: none; transition: border-color 0.18s ease;
}
.section.dark .field input, .section.dark .field select, .section.dark .field textarea,
.section.darker .field input, .section.darker .field select, .section.darker .field textarea {
  background: rgba(0,0,0,0.28); border-color: var(--line); color: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field .hint { font-size: 12.5px; color: rgba(120,118,110,0.9); margin-top: 6px; }
.section.dark .field .hint, .section.darker .field .hint { color: rgba(255,255,255,0.4); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.notice {
  border-radius: var(--radius); padding: 14px 18px; font-size: 14.5px; margin-bottom: 22px;
}
.notice.gold { background: var(--gold-soft); border: 1px solid rgba(189,159,29,0.5); color: var(--ink); }
.section.dark .notice.gold, .section.darker .notice.gold { color: var(--gold); }
.notice.err { background: rgba(224,93,84,0.12); border: 1px solid rgba(224,93,84,0.5); color: #b03830; display: none; }
.section.dark .notice.err, .section.darker .notice.err { color: #ff9a92; }
.notice.ok { background: rgba(79,194,107,0.12); border: 1px solid rgba(79,194,107,0.5); color: #2c7a42; display: none; }
.section.dark .notice.ok, .section.darker .notice.ok { color: #7fdd97; }

/* trade fork cards */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }
@media (max-width: 860px) { .fork { grid-template-columns: 1fr; } }
.fork-card {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 42px; display: flex; flex-direction: column;
  border-top: 3px solid var(--gold);
}
.fork-card .h3 { color: var(--white); font-size: 24px; margin-bottom: 6px; }
.fork-card .sub { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 500; }
.fork-card p { font-size: 15px; }
.badge-soon {
  display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink); background: var(--gold);
  padding: 3px 10px; border-radius: 2px; margin-left: 10px; vertical-align: middle;
}
.steps { list-style: none; margin: 20px 0 26px; }
.steps li { display: flex; gap: 16px; padding: 10px 0; font-size: 15px; color: var(--body-on-dark); }
.steps .n {
  flex: 0 0 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--gold); }
.cta-band .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding-top: 56px; padding-bottom: 56px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--ink); font-size: clamp(24px, 2.6vw, 34px); max-width: 640px; }
.cta-band .btn { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.cta-band .btn:hover { background: transparent; color: var(--ink); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--body-on-dark); padding: 72px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 54px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 84px; margin-bottom: 18px; }
.footer-links li { list-style: none; margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: inline-flex; }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); transition: fill 0.2s ease; }
.footer-social a:hover svg { fill: var(--gold); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
}
