/* ============================================================
   MIRAVALLES GOLD CORP — mainsheet_prepro.css
   ============================================================ */

/* #region RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}
body {
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 600; text-wrap: balance; font-family: var(--font-head); }
p, li, blockquote { text-wrap: pretty; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; max-width: 100%; }
img, video { height: auto; }
svg { overflow: hidden; }
a { color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-dark); }
strong, b { font-weight: 700; }
em, i { font-style: italic; }
small { font-size: var(--text-sm); }
ul, ol { padding-left: 1.5rem; }
li + li { margin-top: 0.25rem; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 0.5rem 1rem; text-align: left; }
input, button, textarea, select { font: inherit; color: inherit; background: transparent; border: none; outline: none; }
button { cursor: pointer; display: inline-flex; align-items: center; }
textarea { resize: none; }
fieldset { border: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
[role="button"], label[for] { cursor: pointer; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* #endregion */

/* #region VARIABLES */
:root {
  /* Brand colours — sourced from companyColors.css */
  --navy:          #0F1F2E;
  --navy-mid:      #1A2F42;
  --navy-light:    #3D5A7A;
  --gold:          #D4AF37;
  --gold-dark:     #B8941F;
  --gold-light:    #E8C84A;
  --copper:        #CF6F2D;

  /* Surfaces */
  --bg:            #F5F1ED;
  --surface:       #FFFFFF;
  --surface-alt:   #EDE8E3;

  /* Text */
  --text:          #1A2F42;
  --text-muted:    #8B8680;
  --text-on-dark:  #F5F1ED;

  /* Borders */
  --border:        #D4CFC8;
  --border-dark:   #3D5A7A;

  /* Typography */
  --sans:  'Open Sans', system-ui, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --font-head: 'Stack Sans Headline', 'Open Sans', system-ui, sans-serif;

  /* Scale */
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.5rem;

  /* Layout */
  --max-w:  1400px;
  --gut:    clamp(1rem, 5vw, 3rem);

  /* Radius */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.875rem;
  --radius-full: 62.5rem;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  200ms;

  /* Shadows */
  --shadow-sm:  0 0.0625rem 0.25rem rgba(15,31,46,0.08);
  --shadow-md:  0 0.25rem 1rem rgba(15,31,46,0.12);
  --shadow-lg:  0 0.75rem 2rem rgba(15,31,46,0.18);
  --shadow-xl:  0 1.25rem 3rem rgba(15,31,46,0.25);

  /* Header heights */
  --topbar-h:  2.5rem;
  --header-h:  7rem;
  --shell-h:   calc(var(--topbar-h) + var(--header-h));
}
/* #endregion */

/* #region TYPOGRAPHY */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 0.05em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); letter-spacing: 0.04em; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); letter-spacing: 0.03em; }
h4 { font-size: 1.125rem; }

p { line-height: 1.75; color: var(--text-muted); }
p strong { color: var(--text); }

.lead { font-size: 1.125rem; line-height: 1.8; }

.boxbox {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
}
/* #endregion */

/* #region BUTTONS */
.btn-primary,
.btn-outline,
.btn-outline--light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .btn-primary,
  .btn-outline,
  .btn-outline--light {
    white-space: normal;
    text-align: center;
    justify-content: center;
    max-width: 100%;
  }
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 0.125rem solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-primary:disabled,
.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 0.125rem solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline--light {
  background: transparent;
  color: #fff;
  border: 0.125rem solid rgba(255,255,255,0.55);
}
.btn-outline--light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}

.site-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* #endregion */

/* #region PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--ease);
}
#preloader.hidden { opacity: 0; pointer-events: none; }

.preloader-spinner {
  width: 2.75rem;
  height: 2.75rem;
  border: 0.1875rem solid rgba(212,175,55,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .preloader-spinner { animation: none; border-top-color: var(--gold); }
}
/* #endregion */

/* #region PAGE TRANSITION */
#page-wipe {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: radial-gradient(ellipse at center,
    var(--navy-mid) 0%,
    var(--navy)     65%
  );
  clip-path: circle(0% at 50% 50%);
  opacity: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  #page-wipe { transition: none !important; }
}
/* #endregion */

/* #region HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(15,31,46,0.75);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  box-shadow: 0 0.125rem 1.25rem rgba(0,0,0,0.35);
}
.site-header.nav-solid {
  background: var(--navy);
}
body { padding-top: var(--shell-h); }
/* #endregion */

/* #region TOPBAR */
.header-topbar {
  height: var(--topbar-h);
  overflow: hidden;
  max-height: var(--topbar-h);
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), opacity 0.35s var(--ease);
  background: rgba(15,31,46,0.75);
  backdrop-filter: blur(0.25rem);
  border-bottom: 0.0625rem solid rgba(212,175,55,0.15);
}
.header-topbar.topbar-scrolled {
  max-height: 0;
  opacity: 0;
}
.header-topbar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.topbar-symbols {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,237,0.7);
  padding-right: 1.25rem;
  margin-right: 1.25rem;
  border-right: 0.0625rem solid rgba(212,175,55,0.2);
}
.topbar-symbols span { display: flex; align-items: center; gap: 0.375rem; }
.topbar-metals {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(245,241,237,0.55);
}
.topbar-metals .metal-val { color: var(--gold); }
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar-connect-label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,237,0.4);
  padding-right: 0.5rem;
  margin-right: 0.25rem;
  border-right: 0.0625rem solid rgba(212,175,55,0.2);
}
.topbar-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: rgba(245,241,237,0.5);
  transition: color 0.2s var(--ease);
}
.topbar-social-link:hover { color: var(--gold); }
/* #endregion */

/* #region NAV */
.header-main {
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: 5rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,237,1);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11rem;
  background: var(--navy);
  border: 0.0625rem solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease), transform 0.2s var(--ease);
  transform: translateX(-50%) translateY(-0.25rem);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown--closing .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(245,241,237,0.75);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-dropdown-link:hover { color: var(--gold); background: rgba(212,175,55,0.08); }

/* Subscribe CTA in nav */
.header-sub-btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-sub-btn:hover { background: var(--gold-dark); }

/* Hamburger */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  width: 1.75rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.header-hamburger span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background: var(--text-on-dark);
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.header-hamburger.is-open span:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.header-hamburger.is-open span:nth-child(2) { opacity: 0; }
.header-hamburger.is-open span:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 800;
  background: var(--navy);
  flex-direction: column;
  align-items: stretch;
  padding: calc(var(--shell-h) + 2rem) var(--gut) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.nav-drawer .nav-link {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid rgba(255,255,255,0.08);
  font-size: 0.9375rem;
  color: var(--text-on-dark);
  border-radius: 0;
}
.nav-drawer .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  background: transparent;
  border: none;
  padding: 0.25rem 0 0.25rem 1rem;
}
.nav-drawer .nav-dropdown-link {
  padding: 0.5rem 0;
  border-bottom: none;
  border-radius: 0;
}
.nav-drawer .header-sub-btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.875rem;
}

/* Dynamic overflow — JS adds .nav-overflow when items overflow */
.site-header.nav-overflow .site-nav { display: none; }
.site-header.nav-overflow .header-hamburger { display: flex; }
.site-header.nav-overflow .header-sub-btn { margin-left: auto; }
.site-header.nav-overflow .nav-drawer { display: flex; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-hamburger { display: flex; }
  .header-sub-btn { margin-left: auto; }
  .nav-drawer { display: flex; }
  .topbar-metals { display: none; }
  .topbar-connect-label { display: none; }
}
/* #endregion */

/* #region FOOTER */
.site-footer {
  background: var(--navy);
  border-top: 0.1875rem solid var(--gold);
  color: var(--text-on-dark);
}
.footer-main {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gut);
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 3rem 4rem;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo img { height: 3.5rem; width: auto; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(245,241,237,0.55);
  max-width: 24rem;
}
.footer-symbols { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-symbol-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.0625rem solid rgba(212,175,55,0.4);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.625rem;
}

/* Sitemap columns */
.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 2rem;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-heading {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid rgba(212,175,55,0.25);
}
.footer-nav-link {
  font-size: 0.875rem;
  color: rgba(245,241,237,0.6);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-nav-link:hover { color: var(--gold); }

/* Subfooter */
.subfooter {
  background: rgba(0,0,0,0.25);
  border-top: 0.0625rem solid rgba(255,255,255,0.06);
}
.subfooter-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.25rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(245,241,237,0.4);
}
.subfooter-links { display: flex; gap: 1.25rem; }
.subfooter-links a { color: rgba(245,241,237,0.4); text-decoration: none; transition: color var(--dur) var(--ease); }
.subfooter-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .subfooter-inner { flex-direction: column; text-align: center; }
}
/* #endregion */

/* #region SUBPOP */
.subpop-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(15,31,46,0.85);
  backdrop-filter: blur(0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  padding: var(--gut);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.subpop-overlay.active { opacity: 1; visibility: visible; }
.subpop-overlay.closing { opacity: 0; }

.subpop-box {
  position: relative;
  background: var(--navy-mid);
  border: 0.0625rem solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem 2.5rem;
  max-width: 28rem;
  width: 100%;
  text-align: left;
  overflow: visible;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(1rem);
  transition: transform 0.25s var(--ease);
}
.subpop-overlay.active .subpop-box { transform: scale(1) translateY(0); }

.subpop-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(245,241,237,0.5);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--dur) var(--ease);
}
.subpop-close:hover { color: var(--text-on-dark); }

.subpop-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.subpop-box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.subpop-box p {
  font-size: 0.875rem;
  color: rgba(245,241,237,0.6);
  margin-bottom: 1.75rem;
  max-width: none;
}

.subpop-form { display: flex; flex-direction: column; gap: 0.75rem; }
.subpop-form input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 0.0625rem solid rgba(212,175,55,0.3);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  transition: border-color var(--dur) var(--ease);
}
.subpop-form input[type="email"]::placeholder { color: rgba(245,241,237,0.35); }
.subpop-form input[type="email"]:focus { border-color: var(--gold); }
.subpop-form button {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
  gap: 0.5rem;
}
.subpop-form button:hover { background: var(--gold-dark); }

.firstnameform { position: absolute; left: -9999px; visibility: hidden; }
/* #endregion */

/* #region SUBRESPONSE */
.subresponse-overlay {
  position: fixed;
  inset: 0;
  z-index: 9991;
  background: rgba(15,31,46,0.85);
  backdrop-filter: blur(0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gut);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.subresponse-overlay.active { opacity: 1; visibility: visible; }
.subresponse-overlay.closing { opacity: 0; }

.subresponse-box {
  position: relative;
  background: var(--navy-mid);
  border: 0.0625rem solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  max-width: 26rem;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(1rem);
  transition: transform 0.25s var(--ease);
}
.subresponse-overlay.active .subresponse-box { transform: scale(1) translateY(0); }

.subresponse-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(245,241,237,0.5);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--dur) var(--ease);
}
.subresponse-close:hover { color: var(--text-on-dark); }

.subresponse-icon { display: block; margin: 0 auto 1.25rem; color: var(--gold); }
.subresponse-icon .site-icon { width: 3rem; height: 3rem; }
.subresponse-title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.375rem;
  color: var(--text-on-dark);
  margin-bottom: 0.875rem;
  letter-spacing: 0.05em;
}
.subresponse-body { font-size: 0.875rem; color: rgba(245,241,237,0.6); max-width: none; }
.subresponse-body a { color: var(--gold); }
/* #endregion */

/* #region PAGE HERO */
.pagetop {
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--shell-h));
  padding: calc(5rem + var(--shell-h)) 0 5rem;
  background-color: var(--navy);
  background-image: url('images/bg_hero.jpg');
  background-size: cover;
  background-position: center;
}
.pagetop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,46,0.82) 0%, rgba(15,31,46,0.55) 100%);
}
.pagetop .boxbox { position: relative; z-index: 1; }
.pagetop h2 {
  color: var(--text-on-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
}
.pagetop h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 0.1875rem;
  background: var(--gold);
  margin-top: 1.25rem;
}
/* #endregion */

/* #region SECTION LABELS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 1.75rem;
  height: 0.0625rem;
  background: var(--gold);
  flex-shrink: 0;
}
/* #endregion */

/* #region SECTION — SUBSCRIBE STRIP */
.footsub {
  background: var(--navy);
  border-top: 0.0625rem solid rgba(212,175,55,0.2);
  padding: clamp(3rem, 6vw, 5rem) var(--gut);
  position: relative;
  overflow: hidden;
}
.footsub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg_sub.jpg') center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.footsub-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footsub-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footsub-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footsub-ig-feed {
  background: rgba(255,255,255,0.04);
  border: 0.0625rem solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  height: 18rem;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footsub-ig-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(245,241,237,0.5);
  transition: color var(--dur) var(--ease);
}
.footsub-ig-placeholder:hover { color: var(--gold); }
.footsub-ig-placeholder i { font-size: 2.5rem; }
.footsub-ig-placeholder span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.footsub-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.footsub h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-on-dark);
  letter-spacing: 0.05em;
}
.footsub > .footsub-inner > p {
  font-size: 0.9375rem;
  color: rgba(245,241,237,0.6);
  max-width: none;
}
.footsub-form { width: 100%; }
.footsub-input-wrap {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 0.0625rem solid rgba(212,175,55,0.3);
  border-radius: var(--radius-full);
  padding: 0.375rem;
  gap: 0;
}
.footsub-input-wrap input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-on-dark);
}
.footsub-input-wrap input[type="email"]::placeholder { color: rgba(245,241,237,0.35); }
.footsub-input-wrap button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
  gap: 0.5rem;
  white-space: nowrap;
}
.footsub-input-wrap button:hover { background: var(--gold-dark); }
.footsub-note { font-size: 0.75rem; color: rgba(245,241,237,0.35); }
@media (max-width: 768px) {
  .footsub-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footsub-ig-feed { height: 14rem; }
}
@media (max-width: 600px) {
  .footsub-input-wrap { flex-direction: column; border-radius: var(--radius-md); }
  .footsub-input-wrap button { width: 100%; justify-content: center; border-radius: var(--radius-sm); padding: 0.875rem; }
}
/* #endregion */

/* #region CARDS — TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  --stagger-y: 0rem;
  transform: translateY(var(--stagger-y));
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(var(--stagger-y) - 0.25rem));
}
.team-card:nth-child(even):not(.team-card--hz) { --stagger-y: 1.75rem; }
.team-card-portrait {
  aspect-ratio: 3/4;
  background: var(--surface-alt);
  overflow: hidden;
}
.team-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-card--text-only {
  display: flex;
  flex-direction: column;
}
.team-card--hz {
  display: grid;
  grid-template-columns: 10rem 1fr;
  --stagger-y: 0rem;
}
.team-card--hz .team-card-portrait {
  aspect-ratio: auto;
  height: 100%;
  position: relative;
}
.team-card--hz .team-card-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-card--hz .team-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.team-card--hz .team-card-header { padding: 1.5rem 1.5rem 0.5rem; }
.team-card--hz .team-card-bio { padding: 0 1.5rem 1.5rem; }
.team-card-header { padding: 1.5rem 1.5rem 0.75rem; }
.team-card-name {
  font-family: var(--font-head);
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}
.team-card-position {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.125rem;
  letter-spacing: 0.02em;
}
.team-card-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}
.team-card-bio {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem 0.5rem;
  overflow: hidden;
  max-height: 6.125rem;
}
.team-card-bio.is-expanded {
  max-height: none;
  overflow: visible;
}
.team-card-readmore {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0.25rem 1.5rem 1.25rem;
  transition: color 0.2s ease;
}
.team-card-readmore:hover { color: var(--navy); }
@media (max-width: 768px) { .team-card { --stagger-y: 0rem !important; } }
/* #endregion */

/* #region MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9980;
  background: rgba(15,31,46,0.85);
  backdrop-filter: blur(0.25rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gut);
}
.modal-overlay.modal-open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 42rem;
  width: 100%;
  max-height: 85dvh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(1rem);
  transition: transform 0.25s var(--ease);
}
.modal-overlay.modal-open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur) var(--ease);
}
.modal-close:hover { color: var(--text); }

/* System message modal */
.sysmsg-overlay {
  position: fixed;
  inset: 0;
  z-index: 9985;
  background: rgba(15,31,46,0.85);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gut);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.sysmsg-overlay.active { opacity: 1; visibility: visible; }
.sysmsg-overlay.active .sysmsg-box {
  transform: translateY(0);
  opacity: 1;
}
.sysmsg-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  max-width: 26rem;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.35);
  border-top: 0.1875rem solid var(--gold);
  transform: translateY(1rem);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.3s var(--ease);
}
.sysmsg-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  line-height: 1;
}
.sysmsg-icon--success {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}
.sysmsg-icon--error {
  background: rgba(220,80,60,0.15);
  color: #dc503c;
}
.sysmsg-box h3 {
  font-family: var(--font-head);
  color: var(--text-on-dark);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.sysmsg-box p {
  font-size: 0.9375rem;
  color: rgba(245,241,237,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.sysmsg-dismiss {
  display: inline-block;
  padding: 0.625rem 2rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.sysmsg-dismiss:hover {
  background: var(--gold-dark);
  box-shadow: 0 0.25rem 1rem rgba(212,175,55,0.3);
}
.sysmsg-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: rgba(245,241,237,0.35);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.sysmsg-close:hover {
  color: var(--text-on-dark);
  background: rgba(245,241,237,0.08);
}
/* #endregion */

/* #region CARDS — NEWS */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.75rem;
}
.news-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-0.25rem); }
.news-card-accent { height: 0.25rem; background: var(--gold); flex-shrink: 0; }
.news-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.news-card-date { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.news-card-title { font-family: var(--font-head); font-size: 1rem; color: var(--text); line-height: 1.4; letter-spacing: 0.02em; flex: 1; }
.news-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.news-card-link, .news-pdf-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.news-card-link { background: var(--gold); color: var(--navy); }
.news-card-link:hover { background: var(--gold-dark); color: var(--navy); }
.news-pdf-btn { border: 0.0625rem solid var(--border); color: var(--text-muted); background: transparent; }
.news-pdf-btn:hover { border-color: var(--gold); color: var(--gold); }
.news-pdf-btn.disabled { opacity: 0.45; pointer-events: none; }

/* News list (news page) */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid var(--border);
}
.news-list-date {
  min-width: 6.5rem;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.125rem;
}
.news-list-title { flex: 1; font-family: var(--font-head); font-size: 0.9375rem; color: var(--text); letter-spacing: 0.02em; }
.news-list-actions { display: flex; gap: 0.5rem; flex-shrink: 0; flex-wrap: wrap; }
/* #endregion */

/* #region RELEASE BODY */
.release-header { margin-bottom: 2rem; }
.release-date { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.release-title { font-family: var(--font-head); color: var(--text); margin-bottom: 1.25rem; }
.release-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.release-body { margin-top: 2.5rem; }
.release-body p { max-width: 72ch; margin-bottom: 1rem; color: var(--text); }
.release-body h3, .release-body h4 { color: var(--text); margin: 1.5rem 0 0.5rem; }
.release-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: 2.5rem;
  transition: gap var(--dur) var(--ease);
}
.release-back:hover { gap: 0.625rem; color: var(--gold-dark); }
/* #endregion */

/* #region CARDS — PRESENTATIONS */
.pres-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); gap: 2rem; }
.pres-card { background: var(--surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.pres-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-alt);
}
.pres-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.pres-card:hover .pres-card-thumb img { transform: scale(1.04); }
.pres-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,31,46,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.pres-card:hover .pres-thumb-overlay { opacity: 1; }
.pres-card-body { padding: 1.25rem; }
.pres-title { font-family: var(--font-head); font-size: 0.9375rem; color: var(--text); margin-bottom: 0.25rem; }
.pres-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }
.pres-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
/* #endregion */

/* #region TABLE — GLOBAL */
.nv-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.nv-table { min-width: 36rem; width: 100%; border-collapse: collapse; }
.nv-table thead tr { background: var(--navy); }
.nv-table thead th {
  padding: 0.875rem 1rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,237,0.85);
  text-align: left;
}
.nv-table tbody tr { border-bottom: 0.0625rem solid var(--border); }
.nv-table tbody tr:hover { background: var(--surface-alt); }
.nv-table tbody td { padding: 0.875rem 1rem; font-size: 0.9375rem; color: var(--text); }
/* #endregion */

/* #region TABLE — CAPITAL STRUCTURE */
.stock-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.stock-stat-card {
  background: var(--surface);
  border-top: 0.1875rem solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stock-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.stock-stat-value { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; color: var(--navy); font-family: var(--serif); }
.stock-stat-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
/* #endregion */

/* #region TABLE — O&W SCHEDULE */
.ow-section-heading {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--text);
  margin: 2rem 0 1rem;
  letter-spacing: 0.03em;
}
/* #endregion */

/* #region CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 3rem;
}
.contact-info-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-info-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info-value { font-size: 0.9375rem; color: var(--text); }
.contact-info-value a { color: var(--text); text-decoration: none; transition: color var(--dur) var(--ease); }
.contact-info-value a:hover { color: var(--gold); }

.contact-form-panel { display: flex; flex-direction: column; }
.contact-form-panel form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.8125rem; font-weight: 600; color: var(--text); letter-spacing: 0.04em; }
.form-input, .form-textarea {
  background: var(--surface);
  border: 0.0625rem solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--dur) var(--ease);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); outline: none; }
.form-textarea { min-height: 9rem; resize: none; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-checkbox input[type="checkbox"] { width: 1rem; height: 1rem; margin-top: 0.125rem; accent-color: var(--gold); flex-shrink: 0; }
.form-checkbox label { font-size: 0.875rem; color: var(--text-muted); cursor: pointer; }
.form-submit { align-self: flex-start; }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
/* #endregion */

/* #region SUBSCRIBE PAGE */
.subscribe-state {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4rem) var(--gut);
}

.sub-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sub-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sub-hero--left {
  text-align: left;
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}
.sub-hero--left .sub-hero-icon { margin: 0 0 1.5rem; }
.sub-hero--left > p { margin-inline: 0; }
.sub-hero h2 {
  font-family: var(--font-head);
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.sub-hero > p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-inline: auto;
}
.sub-hero-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.sub-hero-icon--success { background: rgba(212,175,55,0.12); color: var(--gold); }
.sub-hero-icon--info    { background: rgba(61,90,122,0.12);  color: var(--navy-light); }
.sub-hero-icon--pending { background: rgba(212,175,55,0.12); color: var(--gold); }
.sub-hero-icon--muted   { background: rgba(139,134,128,0.12); color: var(--text-muted); }
.sub-hero-icon--error   { background: rgba(220,80,60,0.12);  color: #dc503c; }
.sub-hero-cta { margin-top: 2rem; }

.sub-prefs-card {
  background: var(--surface);
  border: 0.0625rem solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
}
.sub-prefs-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid var(--border);
}
.sub-prefs-header h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.sub-prefs-header p {
  font-size: 0.875rem;
  margin: 0;
}
.sub-prefs-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sub-prefs-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.sub-prefs-actions .btn-primary,
.sub-prefs-actions .btn-outline {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.sub-unsub-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid var(--border);
}

.radio-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-pill input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill label {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 0.0625rem solid var(--border);
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  color: var(--text-muted);
}
.radio-pill input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  color: var(--gold-dark);
  font-weight: 600;
}
.unsub-trigger-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8125rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--dur) var(--ease);
}
.unsub-trigger-btn:hover { color: var(--text); }
/* #endregion */

/* #region SCROLL ANIMATIONS */
.scroll-reveal-active [data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.scroll-reveal-active [data-reveal="fade-up"]    { transform: translateY(1.75rem); }
.scroll-reveal-active [data-reveal="fade-left"]  { transform: translateX(-1.75rem); }
.scroll-reveal-active [data-reveal="fade-right"] { transform: translateX(1.75rem); }
.scroll-reveal-active [data-reveal="fade"]       { transform: none; }

.scroll-reveal-active [data-reveal].is-revealed  { opacity: 1; transform: none; }

[data-reveal] { transition-delay: calc(var(--reveal-delay, 0) * 1ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* #endregion */

/* #region UTILITIES */
.rel { position: relative; }
.abs { position: absolute; }
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }
.list-reset { list-style: none; padding-left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-heading { font-family: var(--font-head); color: var(--text); margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.section-subheading { font-size: 1rem; color: var(--text-muted); max-width: 48ch; }
/* #endregion */

/* #region PAGE: HOME */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--shell-h));
  background: var(--navy);
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  top: -20%;
  height: 140%;
  background-image: url('images/bg_hero.jpg');
  background-size: cover;
  background-position: center center;
  will-change: transform;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,29,44,0.7) 0%, transparent 18%),
    linear-gradient(to right, rgba(14,29,44,0.85) 0%, rgba(14,29,44,0.5) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--shell-h) + 5rem) var(--gut) 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.home-hero .hero-line1 {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.home-hero .hero-line1--gold { color: var(--gold); }
.home-hero .hero-line2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.75vw, 3rem);
  font-weight: 400;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.home-hero-tagline {
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  color: rgba(245,241,237,0.82);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 72ch;
}
.hero-divider { display: none; }
.home-hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245,241,237,0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home-hero-ctas .btn-primary,
.home-hero-ctas .btn-outline--light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.home-hero-ctas .btn-primary svg {
  animation: hero-bounce 2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.25rem); }
}

/* Overview section */
.home-overview {
  background: var(--surface);
  padding: clamp(4rem, 8vw, 7rem) var(--gut);
}
.home-overview-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.home-overview-text { display: flex; flex-direction: column; gap: 1.25rem; }
.home-overview-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text);
  letter-spacing: 0.04em;
}
.home-overview-text h2 em { color: var(--gold); font-style: normal; }
.home-overview-text p { font-size: 0.9375rem; max-width: 52ch; }
.home-overview-text .btn-outline { align-self: flex-start; margin-top: 0.75rem; }

.home-overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.highlight-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 0.1875rem solid var(--gold);
}
.highlight-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.highlight-card-icon .site-icon { width: 1.25rem; height: 1.25rem; }
.highlight-card h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.highlight-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* Map + Project Highlights */
.home-project {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) var(--gut);
}
.home-project-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-project-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.home-project-map img { width: 100%; height: 100%; object-fit: cover; }
.home-project-map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15,31,46,0.85);
  color: var(--text-on-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 0.1875rem solid var(--gold);
}

.home-project-content { display: flex; flex-direction: column; gap: 1.5rem; }
.home-project-content h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--text); letter-spacing: 0.04em; }
.home-project-highlights { display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; }
.home-project-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 0.1875rem solid var(--gold);
}
.home-project-highlights li strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.125rem;
}
.home-project-highlights li span { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.home-project-highlights li .hl-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.home-project-highlights li .hl-icon .site-icon { width: 1.125rem; height: 1.125rem; }

/* Latest News section */
.home-news {
  background: var(--surface);
  padding: clamp(4rem, 8vw, 7rem) var(--gut);
}
.home-news-inner { max-width: var(--max-w); margin-inline: auto; }
.home-news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.home-news-header h2 { color: var(--text); letter-spacing: 0.04em; }
.view-all-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--dur) var(--ease);
  white-space: nowrap;
}
.view-all-link:hover { gap: 0.625rem; color: var(--gold-dark); }

@media (max-width: 1024px) {
  .home-overview-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-project-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .home-overview-highlights { grid-template-columns: 1fr; }
  .home-hero-ctas { flex-direction: column; }
}
/* #endregion */

/* #region PAGE: TEAM */
.about-section {
  padding: clamp(3rem, 6vw, 5rem) var(--gut);
  max-width: var(--max-w);
  margin-inline: auto;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: center;
}
.about-col--text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-col--image {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 26rem;
  margin-left: auto;
}
.about-col--image img {
  width: 100%;
  height: auto;
  display: block;
}
.mgmt-section { padding: clamp(3rem, 6vw, 5rem) var(--gut); max-width: var(--max-w); margin-inline: auto; }
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) {
  .mgmt-grid, .advisors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-cols { grid-template-columns: 1fr; gap: 2rem; }
  .team-card--hz { grid-template-columns: 8rem 1fr; }
}
@media (max-width: 480px) {
  .team-card--hz { grid-template-columns: 1fr; }
  .team-card--hz .team-card-portrait { aspect-ratio: 4/3; max-height: 14rem; }
}
/* #endregion */

/* #region PAGE: STOCK */
.stock-section { padding: clamp(2.5rem, 5vw, 4.5rem) var(--gut); max-width: var(--max-w); margin-inline: auto; }
.stock-chart-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 3rem; }
.stock-live-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-left: 0.1875rem solid var(--gold);
}
.stock-live-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.stock-price-big { font-size: 2rem; font-weight: 700; color: var(--navy); font-family: var(--serif); }
.stock-volume { font-size: 0.8125rem; color: var(--text-muted); }
.stock-change { font-size: 0.875rem; font-weight: 700; padding: 0.25rem 0.625rem; border-radius: var(--radius-sm); }
.stock-change.pos { background: rgba(34,197,94,0.12); color: #16a34a; }
.stock-change.neg { background: rgba(239,68,68,0.12); color: #dc2626; }
.stock-volume { font-size: 0.8125rem; color: var(--text-muted); margin-left: auto; }
/* #endregion */

/* #region PAGE: NEWS */
.news-section { padding: clamp(2.5rem, 5vw, 4.5rem) var(--gut); max-width: var(--max-w); margin-inline: auto; }
.archive-years { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.archive-yearlink {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  border: 0.0625rem solid var(--border);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.archive-yearlink:hover { border-color: var(--gold); color: var(--gold); }
.archive-yearlink.active { background: var(--navy); border-color: var(--navy); color: #fff; pointer-events: none; }
/* #endregion */

/* #region PAGE: PRESENTATIONS */
.pres-section { padding: clamp(2.5rem, 5vw, 4.5rem) var(--gut); max-width: var(--max-w); margin-inline: auto; }
/* #endregion */

/* #region PAGE: CONTACT */
.contact-section { padding: clamp(2.5rem, 5vw, 4.5rem) var(--gut); max-width: var(--max-w); margin-inline: auto; }
/* #endregion */

/* #region PAGE: SUBSCRIBE */
@media (max-width: 48rem) {
  .subscribe-state { max-width: 34rem; }
  .sub-success-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sub-hero--left {
    text-align: center;
    position: static;
  }
  .sub-hero--left .sub-hero-icon { margin: 0 auto 1.5rem; }
  .sub-hero--left > p { margin-inline: auto; }
  .sub-unsub-footer { margin-top: 0; padding-top: 0; border-top: none; }
}
@media (max-width: 30rem) {
  .sub-prefs-actions { flex-direction: column; }
}
/* #endregion */

/* #region PAGE: DISCLAIMERS */
.disclaimers-section { padding: clamp(2.5rem, 5vw, 4.5rem) var(--gut); max-width: 52rem; margin-inline: auto; }
.disclaimer-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 0.0625rem solid var(--border); }
.disclaimer-block:last-child { border-bottom: none; }
.disclaimer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.disclaimer-block p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; max-width: none; }
/* #endregion */

/* #region PAGE: 404 */
.page-404 {
  min-height: 60dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--gut);
  gap: 1.5rem;
}
.page-404-num { font-family: var(--serif); font-size: clamp(4rem, 12vw, 8rem); color: var(--gold); opacity: 0.35; line-height: 1; }
.page-404 h2 { font-family: var(--font-head); color: var(--text); }
.page-404 p { color: var(--text-muted); }
/* #endregion */

/* ================================================================
   HOME PAGE — promotional section styles
   ================================================================ */

/* #region HM: PROJECT OVERVIEW SUBTITLE */
.hm-overview-subtitle {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.03em;
    line-height: 1.35;
    margin: 0;
}
/* #endregion */

/* #region HM: WHY MEXICO */
.hm-mexico {
    background: #F7F1E5;
    padding: clamp(6.5rem, 8vw, 7rem) var(--gut);
    position: relative;
    overflow: hidden;
}
.hm-mexico::before,
.hm-mexico::after {
    content: '';
    position: absolute;
    left: 0;
    width: 200%;
    height: 5rem;
    background: url('images/bg_mexico.png') repeat-x 0 0;
    background-size: auto 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
.hm-mexico::before {
    top: 0;
    transform: translateX(calc(var(--mx-scroll, 0) * -1px));
}
.hm-mexico::after {
    bottom: 0;
    transform: translateX(calc(var(--mx-scroll, 0) * 1px - 50%));
}
.hm-mexico-inner { max-width: var(--max-w); margin-inline: auto; position: relative; z-index: 1; }
.hm-mexico-header {
    max-width: 48rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.hm-mexico-header h2 { color: var(--text); letter-spacing: 0.04em; }
.hm-mexico-header > p { font-size: clamp(1.5rem, 3vw, 2rem); font-family: var(--font-head); font-weight: 600; color: var(--text-muted); line-height: 1.4; }
.hm-mexico-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.hm-mexico-card {
    background: rgba(255,255,255,0.55);
    border-radius: 0.75rem;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.hm-mexico-icon {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-mexico-icon svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hm-mexico-icon img { width: 4rem; height: 4rem; object-fit: contain; }
.hm-mexico-card p { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text); line-height: 1.65; margin: 0; }
/* #endregion */

/* #region HM: GRADE PROOF */
.hm-grades {
    background: var(--navy);
    padding: clamp(4rem, 8vw, 7rem) var(--gut) clamp(2rem, 4vw, 3rem);
}
.hm-grades-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.hm-grades-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
}
.hm-grades-header-left { display: flex; flex-direction: column; gap: 0.875rem; }
.hm-grades-header-left h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.hm-grades-header-right { font-size: 0.9375rem; color: rgba(245,241,237,0.6); line-height: 1.7; margin: 0; padding-bottom: 0.25rem; }
.hm-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hm-proof-card {
    background: rgba(255,255,255,0.04);
    border: 0.0625rem solid rgba(212,175,55,0.15);
    border-top: 0.25rem solid var(--gold);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.hm-proof-source {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.55);
}
.hm-proof-num {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}
.hm-proof-headline {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-on-dark);
    line-height: 1.35;
    letter-spacing: 0.01em;
}
.hm-proof-body {
    font-size: 0.875rem;
    color: rgba(245,241,237,0.55);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}
.hm-proof-chips {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.hm-proof-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.625rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border: 0.0625rem solid rgba(212,175,55,0.12);
    border-left: 0.1875rem solid rgba(212,175,55,0.4);
}
.hm-proof-chip-loc { font-size: 0.75rem; font-weight: 700; color: rgba(245,241,237,0.55); }
.hm-proof-chip-val { font-family: var(--serif); font-size: 0.9375rem; color: var(--gold); white-space: nowrap; }
.hm-grades-note {
    font-size: 0.75rem;
    color: rgba(245,241,237,0.28);
    line-height: 1.7;
    border-top: 0.0625rem solid rgba(212,175,55,0.1);
    padding-top: 1.25rem;
    max-width: none;
}
/* #endregion */

/* #region HM: PROJECT SNAPSHOT */
.hm-snapshot {
    position: relative;
    background-color: #f2eee5;
    background-image: url('/images/home/bg_snapshot.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: clamp(4rem, 8vw, 7rem) var(--gut);
}
.hm-snapshot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f2eee5 0%, #f2eee5 25%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hm-snapshot-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hm-snapshot-content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hm-snapshot-map {
    order: 2;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hm-snapshot-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hm-snapshot-map-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15,31,46,0.85);
    color: var(--text-on-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 0.1875rem solid var(--gold);
    z-index: 2;
}
.hm-snapshot-content h2 { color: var(--navy); letter-spacing: 0.04em; }
.hm-snapshot-content > p { font-size: clamp(1rem, 2vw, 1.25rem); max-width: 52ch; }
.hm-snapshot-header { display: flex; flex-direction: column; gap: 0.875rem; }
.hm-snap-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.hm-snap-card {
    border-left: 0.25rem solid var(--gold);
    padding: 0.875rem 1.25rem;
    background: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.hm-snap-key { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); }
.hm-snap-val { font-family: var(--serif); font-size: 1.0625rem; font-weight: 500; color: var(--navy); line-height: 1.3; }
/* #endregion */

/* #region HM: TWO WAYS TO WIN */
.hm-thesis {
    background: var(--navy);
    padding: clamp(2rem, 4vw, 3rem) var(--gut) clamp(4rem, 8vw, 7rem);
}
.hm-thesis-inner { max-width: var(--max-w); margin-inline: auto; display: flex; flex-direction: column; gap: 3rem; }
.hm-thesis-header { max-width: 56ch; display: flex; flex-direction: column; gap: 0.875rem; }
.hm-thesis-header h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.hm-thesis-header p { font-size: 0.9375rem; color: rgba(245,241,237,0.78); }
.hm-thesis-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.hm-thesis-panel {
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hm-thesis-panel--veins {
    background: rgba(212,175,55,0.07);
    border: 0.0625rem solid rgba(212,175,55,0.2);
}
.hm-thesis-panel--porphyry {
    background: rgba(61,90,122,0.2);
    border: 0.0625rem solid rgba(61,90,122,0.35);
}
.hm-thesis-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-thesis-panel--veins .hm-thesis-icon { background: rgba(212,175,55,0.12); color: var(--gold); }
.hm-thesis-panel--porphyry .hm-thesis-icon { background: rgba(61,90,122,0.4); color: var(--navy-light); }
.hm-thesis-icon svg { width: 1.75rem; height: 1.75rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hm-thesis-title { font-family: var(--font-head); font-size: clamp(1.25rem, 2.5vw, 1.625rem); letter-spacing: 0.04em; line-height: 1.25; }
.hm-thesis-panel--veins .hm-thesis-title { color: var(--gold); }
.hm-thesis-panel--porphyry .hm-thesis-title { color: rgba(245,241,237,0.9); }
.hm-thesis-copy { font-size: 0.9375rem; line-height: 1.7; margin: 0; }
.hm-thesis-panel--veins .hm-thesis-copy { color: rgba(245,241,237,0.82); }
.hm-thesis-panel--porphyry .hm-thesis-copy { color: rgba(245,241,237,0.78); }
.hm-thesis-panel strong { color: rgba(245,241,237,0.95); }
.hm-thesis-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.hm-thesis-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
}
.hm-thesis-panel--veins .hm-thesis-list li { color: rgba(245,241,237,0.82); }
.hm-thesis-panel--porphyry .hm-thesis-list li { color: rgba(245,241,237,0.78); }
.hm-thesis-panel--veins .hm-thesis-list li::before { content: ''; width: 0.375rem; height: 0.375rem; background: var(--gold); border-radius: 50%; flex-shrink: 0; position: relative; top: -0.125rem; }
.hm-thesis-panel--porphyry .hm-thesis-list li::before { content: ''; width: 0.375rem; height: 0.375rem; background: var(--navy-light); border-radius: 50%; flex-shrink: 0; position: relative; top: -0.125rem; }
.hm-thesis-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    transition: gap var(--dur) var(--ease);
}
.hm-thesis-panel--veins .hm-thesis-cta { color: var(--gold); }
.hm-thesis-panel--veins .hm-thesis-cta:hover { gap: 0.625rem; color: var(--gold-dark); }
.hm-thesis-panel--porphyry .hm-thesis-cta { color: var(--navy-light); }
.hm-thesis-panel--porphyry .hm-thesis-cta:hover { gap: 0.625rem; color: rgba(245,241,237,0.7); }
.hm-thesis-cta-wrap {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}
/* #endregion */

/* #region HM: EXPLORATION ROADMAP */
.hm-roadmap {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 7rem) var(--gut);
}
.hm-roadmap-inner { max-width: var(--max-w); margin-inline: auto; display: flex; flex-direction: column; gap: 3rem; }
.hm-roadmap-header { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.hm-roadmap-header-left { display: flex; flex-direction: column; gap: 0.875rem; }
.hm-roadmap-header-left h2 { color: var(--navy); letter-spacing: 0.04em; }
.hm-roadmap-header-right { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin: 0; padding-top: 0.25rem; }
.hm-roadmap-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.hm-roadmap-steps::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 2rem;
    right: 2rem;
    height: 0.0625rem;
    background: linear-gradient(to right, var(--gold), rgba(212,175,55,0.15));
    z-index: 0;
}
.hm-roadmap-step { display: flex; flex-direction: column; gap: 1.25rem; padding: 0 1.5rem; position: relative; z-index: 1; }
.hm-roadmap-step:first-child { padding-left: 0; }
.hm-roadmap-step:last-child { padding-right: 0; }
.hm-roadmap-dot {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--navy);
    border: 0.1875rem solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.hm-roadmap-step-title { font-family: var(--font-head); font-size: 1rem; color: var(--navy); letter-spacing: 0.03em; line-height: 1.35; }
.hm-roadmap-step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.hm-roadmap-data {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1.25rem;
    background: rgba(0,0,0,0.03);
    border: 0.0625rem solid rgba(212,175,55,0.25);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
}
.hm-roadmap-datum { display: flex; flex-direction: column; gap: 0.25rem; }
.hm-roadmap-datum-val { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-dark); line-height: 1; }
.hm-roadmap-datum-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.35); }
.hm-roadmap-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hm-roadmap-note { font-size: 0.75rem; color: rgba(0,0,0,0.3); line-height: 1.65; max-width: none; }
/* #endregion */

/* #region HM: RESPONSIVE (NEW SECTIONS) */
@media (max-width: 1024px) {
    .hm-snapshot-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hm-snapshot-content { order: 1; }
    .hm-snapshot-map { order: 2; }
}
@media (max-width: 768px) {
    .hm-mexico-grid { grid-template-columns: 1fr; }
    .hm-thesis-panels { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hm-thesis-panel { padding: 1.75rem 1.25rem; }
    .hm-thesis-list li { font-size: 0.875rem; line-height: 1.7; }
    .hm-mexico-card { padding: 1.25rem 1.5rem; }
}
/* #endregion */

/* ================================================================
   FAIRFIELD GOLD PROJECT — page styles
   ================================================================ */

/* #region FP: SHARED */
.fp-img-placeholder {
    position: relative;
    background: linear-gradient(145deg, var(--navy-mid) 0%, #0b1926 100%);
    border: 0.0625rem dashed rgba(212,175,55,0.3);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
}
.fp-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 1.25rem,
        rgba(212,175,55,0.03) 1.25rem,
        rgba(212,175,55,0.03) 2.5rem
    );
}
.fp-img-placeholder svg {
    width: 2.75rem;
    height: 2.75rem;
    stroke: rgba(212,175,55,0.45);
    fill: none;
    stroke-width: 1.25;
    position: relative;
    z-index: 1;
}
.fp-img-placeholder-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.5);
    text-align: center;
    padding: 0 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.fp-img-placeholder-sub {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,241,237,0.25);
    position: relative;
    z-index: 1;
}
.fp-caution {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    line-height: 1.75;
}
.fp-caution strong {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}
.fp-caution--dark {
    background: rgba(201,163,72,0.12);
    border: 0.0625rem solid rgba(212,175,55,0.35);
    border-left: 0.25rem solid var(--gold);
    color: rgba(245,241,237,0.82);
}
.fp-caution--dark strong { color: var(--gold); }
.fp-caution--light {
    background: rgba(180,140,40,0.07);
    border: 0.0625rem solid rgba(180,140,40,0.3);
    border-left: 0.25rem solid var(--gold-dark);
    color: #7a621a;
}
.fp-caution--light strong { color: #7a621a; }
/* #endregion */

/* #region FP: SUBNAV */
.fp-subnav {
    position: sticky;
    top: var(--shell-h);
    z-index: 850;
    background: var(--navy-mid);
    border-bottom: 0.0625rem solid rgba(212,175,55,0.15);
    box-shadow: 0 0.125rem 1rem rgba(0,0,0,0.35);
    transition: top 0.35s var(--ease);
}
:root.topbar-hidden .fp-subnav {
    top: var(--header-h);
}
.fp-subnav-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gut);
    overflow: visible;
    position: relative;
}
.fp-subnav-links {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fp-subnav-links::-webkit-scrollbar { display: none; }
.fp-subnav-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.125rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,241,237,0.48);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 0.1875rem solid transparent;
    transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
    flex-shrink: 0;
}
.fp-subnav-link:hover { color: rgba(245,241,237,0.85); }
.fp-subnav-link.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.fp-subnav-toggle { display: none; }
.fp-subnav-toggle-label {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.fp-subnav-toggle-label.is-exiting {
    opacity: 0;
    transform: translateY(-0.375rem);
}
.fp-subnav-toggle-label.is-entering {
    opacity: 0;
    transform: translateY(0.375rem);
}

@media (max-width: 75rem) {
    .fp-subnav-toggle {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        width: 100%;
        padding: 0.875rem 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--sans);
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
    }
    .fp-subnav-toggle:hover { color: rgba(245,241,237,0.85); }
    .fp-subnav-toggle-arrow {
        transition: transform 0.3s ease;
        opacity: 0.6;
    }
    .fp-subnav.is-open .fp-subnav-toggle-arrow {
        transform: rotate(180deg);
        opacity: 1;
    }
    .fp-subnav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-mid);
        border-top: 0.0625rem solid rgba(212,175,55,0.12);
        box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.4);
        overflow: visible;
        z-index: 900;
    }
    .fp-subnav.is-open .fp-subnav-links { display: flex; }
    .fp-subnav-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.6875rem;
        border-bottom: none;
        border-left: 0.1875rem solid transparent;
    }
    .fp-subnav-link:not(:last-child) {
        border-bottom: 0.0625rem solid rgba(245,241,237,0.06);
    }
    .fp-subnav-link::after { display: none; }
    .fp-subnav-link.is-active {
        background: rgba(212,175,55,0.08);
        border-bottom-color: transparent;
        border-left-color: var(--gold);
    }
}
/* #endregion */

/* #region FP: SNAPSHOT */
.fp-snapshot {
    background: var(--surface);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-snapshot-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.fp-snapshot-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}
.fp-snapshot-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.fp-snapshot-text p { font-size: clamp(1rem, 2vw, 1.25rem); max-width: 56ch; line-height: 1.8; }
.fp-snapshot-text p strong { color: var(--gold); font-weight: 700; }
.fp-snapshot-text .btn-primary { align-self: flex-start; margin-top: 0.5rem; }
.fp-facts { display: flex; flex-direction: column; gap: 0; }
.fp-fact-item {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 0.875rem 0;
    border-bottom: 0.0625rem solid var(--border);
}
.fp-fact-item:first-child { border-top: 0.0625rem solid var(--border); }
.fp-fact-key {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.fp-fact-val {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}
/* #endregion */

/* #region FP: LOCATION */
.fp-location {
    background: var(--navy);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-location-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}
.fp-location-map-wrap { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; margin-top: 0.5rem; }
.fp-location-map-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-location-content { display: flex; flex-direction: column; gap: 1.75rem; }
.fp-location-content h2 {
    color: var(--text-on-dark);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: 0.04em;
}
.fp-location-content > p {
    font-size: 0.9375rem;
    color: rgba(245,241,237,0.65);
    max-width: 52ch;
}
.fp-loc-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.fp-loc-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: rgba(245,241,237,0.68);
    line-height: 1.55;
}
.fp-loc-points li svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.2rem;
}
.fp-access-note {
    font-size: 0.875rem;
    color: rgba(245,241,237,0.5);
    background: rgba(255,255,255,0.04);
    border-left: 0.1875rem solid rgba(212,175,55,0.4);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.25rem;
    line-height: 1.7;
    margin: 0;
}
/* #endregion */

/* #region FP: GEOLOGY */
.fp-geology {
    background: var(--bg);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-geology-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: start;
}
.fp-geology-content { display: flex; flex-direction: column; gap: 1.75rem; }
.fp-geology-content h2 { color: var(--text); letter-spacing: 0.04em; }
.fp-geology-content > p { font-size: 0.9375rem; max-width: 54ch; }
.fp-geology-map-wrap {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--shell-h) + 4rem);
}
.fp-accordion {
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.fp-accordion-item { border-bottom: 0.0625rem solid var(--border); }
.fp-accordion-item:last-child { border-bottom: none; }
.fp-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-align: left;
    transition: background var(--dur) var(--ease);
    border: none;
}
.fp-accordion-trigger:hover { background: var(--surface-alt); }
.fp-accordion-trigger svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fp-accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.fp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    background: var(--bg);
}
.fp-accordion-body.open { max-height: 30rem; }
.fp-accordion-body-inner {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.fp-accordion-body-inner ul {
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin: 0;
    list-style: disc;
}
/* #endregion */

/* #region FP: TARGETS (VEIN SYSTEM) */
.fp-targets {
    background: var(--navy);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-targets-inner { max-width: var(--max-w); margin-inline: auto; }
.fp-targets-intro {
    max-width: 68ch;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.fp-targets-intro h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.fp-targets-intro p { font-size: 0.9375rem; color: rgba(245,241,237,0.65); }
.fp-targets-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}
.fp-targets-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}
.fp-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fp-target-card {
    background: rgba(255,255,255,0.04);
    border: 0.0625rem solid rgba(212,175,55,0.15);
    border-top: 0.25rem solid var(--gold);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.fp-target-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-0.25rem);
}
.fp-target-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}
.fp-target-name {
    font-family: var(--font-head);
    font-size: 1.125rem;
    color: var(--text-on-dark);
    letter-spacing: 0.04em;
    line-height: 1.25;
}
.fp-target-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.1);
    border: 0.0625rem solid rgba(212,175,55,0.3);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.625rem;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.4;
}
.fp-target-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.fp-target-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(245,241,237,0.6);
    line-height: 1.55;
}
.fp-target-bullets li::before {
    content: '';
    width: 0.3125rem;
    height: 0.3125rem;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5625rem;
}
.fp-target-result {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgba(212,175,55,0.2);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1.5;
}
/* #endregion */

/* #region FP: HISTORICAL WORK */
.fp-history {
    background: var(--surface);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
    background-size: cover;
    background-position: center;
    position: relative;
}
.fp-history::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,29,44,0.92);
    z-index: 0;
}
.fp-history-inner { position: relative; z-index: 1; }
.fp-history-header h2,
.fp-history-header p,
.fp-history-body,
.fp-history-body p,
.fp-history-body li { color: var(--text-on-dark); }
.fp-history-header p { color: rgba(245,241,237,0.72); }
.fp-history-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.fp-history-header { max-width: 60ch; display: flex; flex-direction: column; gap: 0.875rem; }
.fp-history-header h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.fp-history-header p { font-size: 0.9375rem; }
.fp-history-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.fp-timeline {
    position: relative;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fp-timeline::before {
    content: '';
    position: absolute;
    left: 0.375rem;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 0.125rem;
    background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.15));
}
.fp-tl-item {
    position: relative;
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
}
.fp-tl-item::before {
    content: '';
    position: absolute;
    left: -1.625rem;
    top: 1.375rem;
    width: 0.625rem;
    height: 0.625rem;
    background: var(--gold);
    border-radius: 50%;
    border: 0.125rem solid var(--surface);
    box-shadow: 0 0 0 0.1875rem rgba(212,175,55,0.25);
}
.fp-tl-period {
    font-family: var(--serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 4.5rem;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    padding-top: 0.125rem;
}
.fp-tl-event {
    font-size: 0.9375rem;
    color: rgba(245,241,237,0.85);
    line-height: 1.6;
}
.fp-estimate-callout {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fp-estimate-eyebrow {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.fp-estimate-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--text-on-dark);
    letter-spacing: 0.04em;
    margin-bottom: 0.375rem;
}
.fp-estimate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    gap: 1.25rem;
}
.fp-estimate-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.fp-estimate-val {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}
.fp-estimate-unit {
    font-size: 0.75rem;
    color: rgba(245,241,237,0.65);
    line-height: 1.4;
}
/* #endregion */

/* #region FP: DRILL RESULTS */
.fp-drill {
    background: var(--navy);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-drill-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.fp-drill-header { max-width: 60ch; display: flex; flex-direction: column; gap: 0.875rem; }
.fp-drill-header h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.fp-drill-header p { font-size: 0.9375rem; color: rgba(245,241,237,0.6); }
.fp-drill-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fp-drill-stat {
    background: rgba(255,255,255,0.04);
    border: 0.0625rem solid rgba(212,175,55,0.15);
    border-top: 0.25rem solid var(--gold);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.fp-drill-stat-val {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}
.fp-drill-stat-unit {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,241,237,0.55);
}
.fp-drill-stat-desc {
    font-size: 0.875rem;
    color: rgba(245,241,237,0.52);
    line-height: 1.55;
    margin-top: 0.25rem;
    border-top: 0.0625rem solid rgba(212,175,55,0.15);
    padding-top: 0.75rem;
}
.fp-drill-table-section { display: flex; flex-direction: column; gap: 1rem; }
.fp-drill-table-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,241,237,0.6);
}
.fp-drill-note {
    font-size: 0.8125rem;
    color: rgba(245,241,237,0.42);
    border-left: 0.1875rem solid rgba(212,175,55,0.3);
    padding-left: 1rem;
    line-height: 1.7;
    margin: 0;
}
.fp-drill .nv-table-scroll { border-radius: var(--radius-md); overflow: hidden; }
.fp-drill .nv-table thead tr { background: rgba(255,255,255,0.08); }
.fp-drill .nv-table thead th { color: rgba(245,241,237,0.7); }
.fp-drill .nv-table tbody tr { border-bottom: 0.0625rem solid rgba(255,255,255,0.07); }
.fp-drill .nv-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.05); }
.fp-drill .nv-table tbody tr:hover { background: rgba(255,255,255,0.08); }
.fp-drill .nv-table tbody td { color: rgba(245,241,237,0.78); }
.fp-drill .nv-table tbody td:nth-child(1),
.fp-drill .nv-table tbody td:nth-child(2) { color: rgba(245,241,237,0.55); font-size: 0.875rem; }
.fp-drill-highlight-row td { color: var(--gold) !important; font-weight: 700; }
/* #endregion */

/* #region FP: SAMPLING */
.fp-sampling {
    background: var(--navy);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
    overflow: hidden;
}
.fp-sampling-inner {
    max-width: var(--max-w);
    margin-inline: auto;
}
.fp-sampling-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.fp-sampling-row + .fp-sampling-row { margin-top: 3rem; }
.fp-sampling-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.fp-sampling-text h2 {
    color: var(--text-on-dark);
    letter-spacing: 0.04em;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.fp-sampling-text > p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(245,241,237,0.72);
}
.fp-sampling-text > p strong { color: var(--gold); }
.fp-sampling-data {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
    max-width: 100%;
}
.fp-sampling-data .nv-table-scroll { border-radius: var(--radius-md); overflow: hidden; }
.fp-sampling-data .nv-table thead tr { background: var(--navy); }
.fp-sampling-data .nv-table thead th { color: rgba(245,241,237,0.7); }
.fp-sampling-data .nv-table tbody tr { border-bottom: 0.0625rem solid rgba(255,255,255,0.07); }
.fp-sampling-data .nv-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.05); }
.fp-sampling-data .nv-table tbody tr:hover { background: rgba(255,255,255,0.08); }
.fp-sampling-data .nv-table tbody td { color: rgba(245,241,237,0.72); }
.fp-sampling-highlight-row td { font-weight: 700; }
.fp-sampling-highlight-row td strong { color: var(--text-on-dark); }
.fp-sampling-disclaimer {
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(245,241,237,0.4);
    line-height: 1.6;
    margin: 0;
}
.fp-sampling-photo {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-width: 0;
    max-width: 100%;
}
.fp-sampling-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
}
.fp-sampling-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fp-sampling-photo figcaption {
    background: rgba(245,241,237,0.92);
    color: var(--navy);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    align-self: flex-start;
    margin-top: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.12);
}
.fp-sampling-photo figcaption strong { color: var(--navy); font-weight: 700; }
@media (max-width: 900px) {
    .fp-sampling-row { grid-template-columns: 1fr; gap: 2rem; }
    .fp-sampling-row + .fp-sampling-row { margin-top: 2rem; }
    .fp-sampling-data .nv-table { min-width: 0; }
}
/* #endregion */

/* #region FP: PORPHYRY */
.fp-porphyry {
    background: linear-gradient(150deg, var(--navy) 0%, #0b1e30 100%);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-porphyry-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.fp-porphyry-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.fp-porphyry-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.fp-porphyry-intro h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.fp-porphyry-intro > p { font-size: 0.9375rem; color: rgba(245,241,237,0.65); max-width: 52ch; }
.fp-porphyry-visual {
    display: flex;
    flex-direction: column;
}
.fp-porphyry-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}
.fp-target-grid--half {
    grid-template-columns: repeat(2, 1fr);
}
/* #endregion */

/* #region FP: SHARED IMAGE CAPTIONS */
.fp-img-caption {
    display: block;
    padding: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(245,241,237,0.5);
    letter-spacing: 0.02em;
    text-align: center;
}
/* #endregion */

/* #region FP: EXPLORATION PLAN */
.fp-exploration {
    background: var(--surface);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-exploration-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.fp-exploration-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.fp-exploration-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.fp-exploration-left h2 {
    color: var(--navy);
    letter-spacing: 0.04em;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.fp-exploration-left > p {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    line-height: 1.7;
    color: var(--text-muted);
}
.fp-work-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}
.fp-work-step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 0.0625rem 0.25rem rgba(0,0,0,0.06);
}
.fp-work-step-num {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.fp-work-step-body h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.fp-work-step-body p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}
.fp-exploration-right {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    align-self: stretch;
    min-height: 20rem;
}
.fp-exploration-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fp-exploration-right .fp-img-caption {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(245,241,237,0.9);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    z-index: 1;
}
.fp-exploration-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgba(212,175,55,0.15);
}
.fp-priority-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.03em;
}
.fp-priority-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.nv-table tfoot tr { background: var(--navy); }
.nv-table tfoot td {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 0.04em;
}
/* #endregion */

/* #region FP: INVESTMENT CASE */
.fp-investment {
    background: var(--navy);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.fp-investment-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.fp-investment-header { max-width: 58ch; display: flex; flex-direction: column; gap: 0.875rem; }
.fp-investment-header h2 { color: var(--text-on-dark); letter-spacing: 0.04em; }
.fp-investment-header p { font-size: 0.9375rem; color: rgba(245,241,237,0.6); }
.fp-invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fp-invest-card {
    background: rgba(255,255,255,0.04);
    border: 0.0625rem solid rgba(212,175,55,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.fp-invest-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,175,55,0.28);
    transform: translateY(-0.25rem);
}
.fp-invest-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: rgba(212,175,55,0.18);
    line-height: 1;
    letter-spacing: 0.02em;
}
.fp-invest-title {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--text-on-dark);
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.fp-invest-desc {
    font-size: 0.875rem;
    color: rgba(245,241,237,0.5);
    line-height: 1.7;
    margin: 0;
}
/* #endregion */

/* #region FP: RESPONSIVE */
@media (max-width: 1024px) {
    .fp-snapshot-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
    .fp-geology-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
    .fp-targets-header  { grid-template-columns: 1fr; gap: 2rem; }
    .fp-porphyry-header { grid-template-columns: 1fr; gap: 2rem; }
    .fp-target-grid     { grid-template-columns: repeat(2, 1fr); }
    .fp-history-body    { grid-template-columns: 1fr; }
    .fp-geology-map-wrap { position: static; aspect-ratio: 4/3; }
    .fp-invest-grid { grid-template-columns: 1fr 1fr; }
    .fp-drill-highlights { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fp-invest-grid { grid-template-columns: 1fr 1fr; }
    .fp-target-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-drill-highlights { grid-template-columns: 1fr 1fr; }
    .fp-estimate-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-sampling-row { grid-template-columns: 1fr; }
    .fp-estimate-callout { padding: 1.75rem; }
    .fp-exploration-cols { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .fp-invest-grid { grid-template-columns: 1fr; }
    .fp-drill-highlights { grid-template-columns: 1fr; }
    .fp-target-grid { grid-template-columns: 1fr; }
    .fp-exploration-cols { grid-template-columns: 1fr; }
    .fp-estimate-grid { grid-template-columns: 1fr 1fr; }
    .fp-fact-item { grid-template-columns: 7rem 1fr; }
}
/* #endregion */

/* #region FP: WIDTH ALIGNMENT — match boxbox pattern */
/*
    Sections carry vertical padding only; inner containers carry
    padding-inline: gut — identical to .boxbox used elsewhere on the site.
    This ensures content never runs wider than the rest of the site.
*/
.fp-snapshot,
.fp-geology,
.fp-targets,
.fp-history,
.fp-drill,
.fp-sampling,
.fp-porphyry,
.fp-exploration {
    padding-left: 0;
    padding-right: 0;
}
.fp-snapshot-inner,
.fp-geology-inner,
.fp-targets-inner,
.fp-history-inner,
.fp-drill-inner,
.fp-sampling-inner,
.fp-porphyry-inner,
.fp-exploration-inner {
    padding-inline: var(--gut);
}
/* #endregion */

/* #region NEWS LIST */
.news-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.125rem 0;
    border-bottom: 0.0625rem solid var(--border);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.news-list-item.np-hide {
    display: none;
}
.news-list.np-animating .news-list-item:not(.np-hide) {
    animation: npFadeUp 0.28s ease both;
}
@keyframes npFadeUp {
    from { opacity: 0; transform: translateY(0.5rem); }
    to   { opacity: 1; transform: translateY(0); }
}
.news-list.np-out .news-list-item:not(.np-hide) {
    animation: npFadeOut 0.18s ease both;
}
@keyframes npFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-0.375rem); }
}
.news-pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.np-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    font-family: var(--sans);
}
.np-btn:hover { background: var(--surface-alt); color: var(--text); border-color: var(--gold); }
.np-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.np-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.np-btn.np-prev, .np-btn.np-next { gap: 0.375rem; }
.np-count { font-size: 0.8125rem; color: var(--text-muted); margin-left: auto; }
/* #endregion */
