/* ===========================================================
   Apexglobal Resources Pte Ltd — design system
   Brand: deep navy (trust) + gold (from the AG flame logo)
   Secondary: teal/green for energy-transition contexts
   =========================================================== */

:root {
  --navy:      #0b1f33;
  --navy-900:  #071322;
  --navy-800:  #0c2038;
  --navy-700:  #102945;
  --navy-600:  #163a5e;
  --gold:      #e8b53b;
  --gold-2:    #f7d15e;
  --gold-deep: #c98f1f;
  --teal:      #14b8a6;
  --green:     #2fd08a;
  --ink:       #16212e;
  --body:      #3a4a5c;
  --muted:     #6b7c8d;
  --line:      #e5eaf1;
  --bg:        #f5f7fa;
  --bg-2:      #eef2f7;
  --white:     #ffffff;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(11,31,51,.08);
  --shadow-lg: 0 24px 60px rgba(11,31,51,.16);
  --maxw:      1180px;
  --sans: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Sora", "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
a { color: var(--gold-deep); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.18rem; color: var(--muted); }
.maxw-720 { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 2.5px;
  font-size: .74rem; font-weight: 700; color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.section--dark .eyebrow, .hero .eyebrow, .page-banner .eyebrow { color: var(--gold-2); }
.grad-text {
  background: linear-gradient(100deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(8,20,35,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; min-width: 0; flex: 1 1 0%; overflow: hidden; }
.brand:hover { color: #fff; }
.brand__logo { width: 42px; height: 42px; flex: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.06rem; line-height: 1.1; letter-spacing: -.01em; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand__name span { display: block; font-family: var(--sans); font-weight: 500; font-size: .68rem; color: #9fb4c8; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; }
.nav__toggle { flex: none; }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: #cdd9e6; padding: 9px 15px; border-radius: 9px; font-size: .93rem;
  font-weight: 500; transition: color .15s, background .15s; position: relative;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav__links a.active { color: var(--navy); background: linear-gradient(135deg, var(--gold-2), var(--gold)); font-weight: 600; }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none; align-items: center; justify-content: center;
  background: none; border: 0; color: #fff; cursor: pointer; padding: 8px;
  border-radius: 8px;
}
.nav__toggle:hover { background: rgba(255,255,255,.08); }
@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,20,35,.98); backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__links.open { max-height: 560px; }
  .nav__links a { padding: 15px 24px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav__cta { margin: 12px 24px; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s, box-shadow .2s, background .2s, color .2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #2a1e05; box-shadow: 0 8px 24px rgba(232,181,59,.35);
}
.btn--primary:hover { color: #2a1e05; box-shadow: 0 12px 30px rgba(232,181,59,.5); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-700); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { color: var(--navy); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #eaf1f7; overflow: hidden; }
.hero__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background-image: url("../img/boardroom.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 82% -5%, rgba(232,181,59,.22), transparent 55%),
    linear-gradient(100deg, rgba(7,18,32,.96) 0%, rgba(8,22,38,.86) 42%, rgba(8,22,38,.55) 100%);
}
.hero__grid {
  position: absolute; top: -22%; bottom: -22%; left: 0; right: 0; z-index: 1; opacity: .5; will-change: transform;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1000px 600px at 20% 30%, #000, transparent 80%);
  mask-image: radial-gradient(1000px 600px at 20% 30%, #000, transparent 80%);
}
.hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 40px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero p { color: #c3d3e2; font-size: 1.2rem; max-width: 620px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  font-size: .8rem; color: #d6e2ee; background: rgba(255,255,255,.04); backdrop-filter: blur(6px);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

/* ---------- Ticker ---------- */
.ticker { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.ticker__track { display: inline-flex; gap: 44px; white-space: nowrap; padding: 15px 0; animation: ticker 34s linear infinite; }
.ticker__track span { color: #9fb4c8; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 44px; }
.ticker__track span::after { content: "◆"; color: var(--gold); font-size: .6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections & surfaces ---------- */
.section--muted { background: var(--bg-2); }
.section--dark { background: var(--navy); color: #c3d3e2; position: relative; overflow: hidden; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--mesh { background: radial-gradient(900px 500px at 85% 0%, rgba(232,181,59,.14), transparent 60%), linear-gradient(160deg, var(--navy-800), var(--navy) 60%, var(--navy-900)); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(232,181,59,.4); }
.card h3 { margin-top: 4px; }
.section--dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); backdrop-filter: blur(6px); box-shadow: none; color: #c3d3e2; }
.section--dark .card p { color: #a9bccf; }

.icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(232,181,59,.16), rgba(232,181,59,.06));
  color: var(--gold-deep); font-size: 1.5rem; margin-bottom: 18px; border: 1px solid rgba(232,181,59,.25);
}
.section--dark .icon { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: var(--gold-2); }

/* ---------- Mandate cards (image tiles) ---------- */
.mandate {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 400px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.mandate:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mandate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mandate:hover img { transform: scale(1.06); }
.mandate::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,35,.1) 0%, rgba(8,20,35,.55) 55%, rgba(7,18,32,.95) 100%); }
.mandate__body { position: relative; z-index: 2; padding: 30px; }
.mandate__body h3 { color: #fff; margin-bottom: 8px; }
.mandate__body p { color: #cdd9e6; margin: 0; font-size: .95rem; }
.tag {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  padding: 6px 13px; border-radius: 999px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
}
.tag--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #2a1e05; border: none; }
.tag--green { background: rgba(47,208,138,.2); border-color: rgba(47,208,138,.5); color: #d3ffe9; }

/* ---------- Feature list w/ image ---------- */
.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame__badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: rgba(8,20,35,.72); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; padding: 14px 18px; color: #fff; max-width: 260px;
}
.media-frame__badge strong { display: block; font-size: 1.5rem; color: var(--gold-2); font-family: var(--display); }
.media-frame__badge span { font-size: .82rem; color: #c3d3e2; }

/* ---------- Zoom on hover (diagrams) ---------- */
.zoom-frame { position: relative; cursor: zoom-in; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.zoom-frame:hover { transform: scale(1.6); z-index: 30; box-shadow: 0 30px 80px rgba(11,31,51,.4); }
@media (hover: none) {
  .zoom-frame:hover { transform: none; box-shadow: var(--shadow-lg); }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 26px 14px; border-radius: var(--radius); }
.stat__num { font-family: var(--display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: .92rem; margin-top: 10px; }
.section--dark .stat { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.section--dark .stat__label { color: #9fb4c8; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 38px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  -webkit-mask: no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  box-shadow: 0 4px 10px rgba(232,181,59,.35);
}

/* ---------- Steps (procedure) ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px 26px 84px; position: relative; box-shadow: var(--shadow); transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateX(4px); border-color: rgba(232,181,59,.4); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 24px; top: 26px; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-600), var(--navy)); color: var(--gold-2);
  font-family: var(--display); font-weight: 700; font-size: .95rem; display: grid; place-items: center;
  border: 1px solid rgba(232,181,59,.3);
}
.step h3 { margin-bottom: .3em; }
.step p:last-child { margin-bottom: 0; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
th { background: var(--navy); color: #eaf1f7; font-weight: 600; font-family: var(--display); letter-spacing: .3px; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #f6f9fc; }
td:first-child { font-weight: 600; color: var(--navy); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }
.member {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 180px 1fr; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (max-width: 520px) { .member { grid-template-columns: 1fr; } }
.member__photo { position: relative; background: #dfe6ee; min-height: 230px; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.member__body { padding: 24px; }
.member__body h3 { margin-bottom: 2px; }
.member__role { color: var(--gold-deep); font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.member__body p { font-size: .92rem; color: var(--body); margin: 0; }

/* ---------- Badges / notes / placeholders ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; background: rgba(232,181,59,.14); color: var(--gold-deep); border-radius: 999px; font-size: .82rem; font-weight: 600; }
.badge--green { background: rgba(47,208,138,.15); color: #1a8f5e; }
.note { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 18px 22px; color: var(--body); font-size: .94rem; margin: 22px 0; box-shadow: var(--shadow); }
.section--dark .note { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); border-left-color: var(--gold); color: #c3d3e2; }

/* ---------- News feed ---------- */
.news { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 900px) { .news { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .news { grid-template-columns: 1fr; } }
.news__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: border-color .15s, transform .15s; }
.news__item:hover { border-color: var(--gold); transform: translateY(-3px); }
.news__item a { color: var(--navy); font-weight: 600; font-size: 1.02rem; display: block; }
.news__item a:hover { color: var(--gold-deep); }
.news__meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: .8rem; margin-top: 12px; align-items: center; }
.news__src { color: var(--gold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: .72rem; }
.news__status { color: var(--muted); font-size: .9rem; }
.news__updated { font-size: .82rem; color: var(--muted); }
.skeleton { height: 120px; border-radius: var(--radius); background: linear-gradient(90deg,#eef2f6 25%,#e2e8ef 37%,#eef2f6 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0% { background-position: 100% 0 } 100% { background-position: 0 0 } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 22px; padding: 60px 48px; text-align: center; color: #fff;
  background: radial-gradient(700px 300px at 85% 0%, rgba(232,181,59,.28), transparent 60%), linear-gradient(120deg, var(--navy-800), var(--navy-600));
  border: 1px solid rgba(232,181,59,.2);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3d3e2; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Page banner ---------- */
.page-banner { position: relative; overflow: hidden; padding: 150px 0 66px; color: #eaf1f7;
  background: radial-gradient(800px 400px at 80% -20%, rgba(232,181,59,.18), transparent 55%), linear-gradient(160deg, var(--navy-800), var(--navy) 70%); }
.page-banner::before {
  content: ""; position: absolute; inset: 0; opacity: .4;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(700px 400px at 15% 20%, #000, transparent 75%);
  mask-image: radial-gradient(700px 400px at 15% 20%, #000, transparent 75%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: .35em; }
.page-banner p { color: #c3d3e2; max-width: 680px; margin: 0; font-size: 1.12rem; }
.breadcrumb { font-size: .84rem; color: #8fa6bd; margin-bottom: 16px; }
.breadcrumb a { color: #b9cad9; } .breadcrumb a:hover { color: var(--gold-2); }

/* ---------- Forms ---------- */
.field { display: grid; gap: 7px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-weight: 400; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,181,59,.18); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #94a9bd; padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.site-footer a { color: #b0c1d2; display: block; padding: 5px 0; font-size: .92rem; }
.site-footer a:hover { color: var(--gold-2); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand .brand__name { color: #fff; }
.footer-contact span { display: block; color: #94a9bd; font-size: .9rem; padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 22px; font-size: .84rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #7c92a7; }

/* ---------- Reveal on scroll ----------
   Hidden state only applies once JS confirms it can reveal elements again
   (html.js-anim, set by an early inline script). If JS never runs, or errors,
   content stays visible by default — no risk of permanently blank sections. */
html.js-anim [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
html.js-anim [data-reveal].in { opacity: 1; transform: none; }
html.js-anim [data-reveal][data-delay="1"] { transition-delay: .09s; }
html.js-anim [data-reveal][data-delay="2"] { transition-delay: .18s; }
html.js-anim [data-reveal][data-delay="3"] { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Parallax imagery ----------
   Images are oversized well beyond their frame inside an overflow-hidden
   parent so JS can translate them a large amount without ever exposing an
   edge. Driven by assets/js/main.js; no-ops (image sits static) if JS or
   prefers-reduced-motion disables it. */
.parallax-frame img {
  position: absolute; top: -22%; left: 0; width: 100%; height: 144%;
  object-fit: cover; will-change: transform;
}
