/* #region RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Courier New', monospace;
  --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;
  --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem;
  --space-xl: 2rem; --space-2xl: 3rem; --space-3xl: 5rem;
  --max-width: 87.5rem; --gutter: clamp(1rem, 5vw, 3rem);
  --radius-sm: 0.25rem; --radius-md: 0.5rem; --radius-lg: 0.875rem; --radius-full: 624.9375rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1); --duration: 200ms;
}
html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; tab-size: 4; scrollbar-gutter: stable; overflow-x: hidden; }
body { font-family: var(--font-sans); font-size: var(--text-base); line-height: 1.6; -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; }
p, li, blockquote { text-wrap: pretty; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
strong, b { font-weight: 700; } em, i { font-style: italic; }
small { font-size: var(--text-sm); }
code, kbd, samp, pre { font-family: var(--font-mono); font-size: 0.9em; }
ul, ol { list-style: none; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; max-width: 100%; }
img, video { height: auto; }
svg { overflow: hidden; }
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: vertical; } fieldset { border: none; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: var(--space-sm) var(--space-md); text-align: left; }
:focus-visible { outline: 0.125rem solid var(--gold); outline-offset: 0.1875rem; }
: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; }
}
.sr-only { position: absolute; width: 0.0625rem; height: 0.0625rem; padding: 0; margin: -0.0625rem; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.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; }
/* #endregion */

/* #region VARIABLES */
:root{
  --container:87.5rem;
  --editorial:47.5rem;
  --display:'Plus Jakarta Sans',sans-serif;
  --body:'Plus Jakarta Sans',sans-serif;
}
/* #endregion */

/* #region BASE */
body{
  font-family:var(--body);
  font-size:1.125rem;
  line-height:1.6;
  color:var(--txt-on-light);
  background:var(--paper);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 3rem}
.editorial{max-width:var(--editorial)}
h1,h2,h3{font-family:var(--display);line-height:1.08;letter-spacing:-.02em}
h2{font-size:clamp(2.125rem,3.4vw,3.25rem);font-weight:700}
.lede{font-size:1.25rem;color:var(--txt-dim-light);max-width:35rem}
.on-dark .lede{color:var(--txt-dim-light)}
/* #endregion */

/* #region SECTION LABELS */
.eyebrow{
  font-family:var(--body);
  font-size:.8125rem;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);
  display:flex;align-items:center;gap:.875rem;
  margin-bottom:1.375rem;
}
.eyebrow::before{content:"";width:2.125rem;height:.125rem;background:var(--gold);flex:none}
/* #endregion */

/* #region BUTTONS */
.btn{
  display:inline-flex;align-items:center;gap:.625rem;
  font-family:var(--body);font-size:.9375rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  padding:1rem 1.75rem;border-radius:.375rem;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor:pointer;border:0;
}
.btn-gold{background:var(--gold);color:#1A1305}
.btn-gold:hover{background:var(--gold-bright);transform:translateY(-0.0625rem);box-shadow:0 .5rem 1.5rem rgba(201,154,63,.35)}
.btn-ghost{background:transparent;color:var(--txt-on-light);border:.09375rem solid rgba(20,22,26,.22)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold-deep)}
.btn .arrow{transition:transform .15s ease}
.btn:hover .arrow{transform:translateX(.25rem)}
.btn:hover .arrow-down{transform:translateY(.25rem)}
.textlink{
  font-weight:700;font-size:.9375rem;letter-spacing:.05em;text-transform:uppercase;
  color:var(--gold-deep);display:inline-flex;align-items:center;gap:.5rem;
}
.textlink:hover{color:var(--gold)}
.textlink .arrow{transition:transform .15s ease}
.textlink:hover .arrow{transform:translateX(.25rem)}
/* #endregion */

/* #region PLACEHOLDERS */
.ph{
  position:relative;overflow:hidden;
  background:
    linear-gradient(135deg, rgba(138,79,224,.18), rgba(31,183,166,.12) 40%, rgba(201,154,63,.16) 75%, rgba(46,143,230,.12)),
    var(--surface-alt);
}
.ph::after{
  content:attr(data-label);
  position:absolute;inset:auto 1rem .875rem auto;
  font-size:.6875rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(233,235,238,.55);
  background:rgba(16,18,21,.55);padding:.375rem .75rem;border-radius:.25rem;
  backdrop-filter:blur(.25rem);
}
/* #endregion */

/* #region PRELOADER */
#preloader{
  position:fixed;inset:0;z-index:9999;
  background:var(--paper);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .5s ease, visibility .5s ease;
}
#preloader.hidden{opacity:0;visibility:hidden;pointer-events:none}
.preloader-spinner{
  width:2.75rem;height:2.75rem;border-radius:50%;
  border:.1875rem solid rgba(201,154,63,.25);
  border-top-color:var(--gold);
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
@media (prefers-reduced-motion: reduce){.preloader-spinner{animation:none}}
/* #endregion */

/* #region PAGE TRANSITION */
#page-content{transition:opacity .25s ease}
#page-wipe{
  position:fixed;inset:0;z-index:9998;pointer-events:none;
  background:var(--paper);
  transform:scaleY(0);transform-origin:bottom;
  transition:transform .35s var(--ease);
}
#page-wipe.active{transform:scaleY(1);transform-origin:top}
/* #endregion */

/* #region UTILITY BAR */
.utility{
  background:var(--white);
  border-bottom:.0625rem solid var(--border);
  font-size:.8125rem;color:var(--txt-dim-light);
}
.utility .container{
  display:flex;justify-content:space-between;align-items:center;
  height:2.375rem;
}
.tickers{display:flex;align-items:center;font-weight:600;letter-spacing:.04em}
.ticker-ico{width:1.125rem;height:1.125rem;color:var(--gold-deep);margin-right:.4375rem;flex:none}
.tickers span{display:inline-flex;gap:.375rem;padding:0 1.25rem}
.tickers span:first-child{padding-left:0}
.tickers span:not(:last-child){border-right:.0625rem solid var(--border)}
.tickers b{color:var(--txt-on-light);font-weight:700}
.util-right{display:flex;align-items:center;gap:1.375rem}
.util-right a:hover{color:var(--gold-deep)}
.util-contact{display:inline-flex;align-items:center;gap:.4375rem}
.util-contact [data-lucide],.util-contact svg{width:1rem;height:1rem;color:var(--gold-deep);flex:none}
svg.ticker-ico{width:1.125rem;height:1.125rem}
.socials{display:flex;align-items:center;gap:.875rem}
.connect-label{font-size:.6875rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--txt-dim-light);margin-right:.375rem}
.socials a{
  width:1.5rem;height:1.5rem;border-radius:.25rem;
  display:flex;align-items:center;justify-content:center;
  border:.0625rem solid var(--border);
  font-size:.75rem;color:var(--txt-dim-light);
}
.socials a:hover{border-color:var(--gold);color:var(--gold-deep)}
/* #endregion */

/* #region HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--white);
  border-bottom:.0625rem solid var(--border);
  transition:background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(.75rem);
  border-bottom-color:var(--border);
  box-shadow:0 .25rem 1.25rem rgba(20,22,26,.06);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:5.25rem;gap:1.5rem;
}
.logo{display:flex;align-items:center;gap:.875rem;color:var(--txt-on-light);flex-shrink:0}
.logo-img{height:2.75rem;width:auto;flex:none}
.logo-mark{
  width:2.875rem;height:2.875rem;border-radius:.5rem;flex:none;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-weight:900;font-size:.8125rem;color:#fff;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
}
.logo-name{font-family:var(--display);font-weight:800;font-size:1.25rem;letter-spacing:.14em;line-height:1.1}
.logo-name small{display:block;font-family:var(--body);font-weight:600;font-size:.6875rem;letter-spacing:.34em;color:var(--txt-dim-light)}
.logo-img + .logo-name{align-self:center;padding-left:.875rem;border-left:.0625rem solid var(--border)}
.logo-img + .logo-name small{font-size:.8125rem;letter-spacing:.36em;color:var(--txt-on-light)}
.header-cta{flex:none;padding:.625rem 1.25rem;font-size:.8125rem;position:relative}
.header-cta [data-lucide],.header-cta svg{width:1rem;height:1rem;flex:none}
.header-cta::after{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  box-shadow:0 0 0 0 rgba(201,154,63,.5);
  animation:ctaPulse 2.6s ease-out infinite;
}
@keyframes ctaPulse{
  0%{box-shadow:0 0 0 0 rgba(201,154,63,.5)}
  70%{box-shadow:0 0 0 .625rem rgba(201,154,63,0)}
  100%{box-shadow:0 0 0 0 rgba(201,154,63,0)}
}
@media(prefers-reduced-motion:reduce){.header-cta::after{animation:none}}
.nav-toggle{display:none;background:none;border:0;color:var(--txt-on-light);padding:.5rem;flex:none}
.nav-toggle [data-lucide]{width:1.75rem;height:1.75rem;flex:none}
/* Compact CTA on small screens: envelope only */
@media(max-width:34rem){
  .header-cta{padding:.625rem .875rem;gap:0;min-height:2.75rem}
  .header-cta-text{display:none}
}
/* #endregion */

/* #region NAV */
.site-nav{display:flex;gap:2.25rem;align-items:center;font-size:.9375rem;font-weight:600;color:var(--txt-dim-light)}
.site-nav .nav-link{padding:.5rem 0;position:relative;display:inline-flex;align-items:center;gap:.375rem;cursor:pointer}
.site-nav .nav-link:hover{color:var(--txt-on-light)}
.site-nav .nav-link.active{color:var(--gold-deep)}
.site-nav .nav-link.active::after{content:"";position:absolute;left:0;right:0;bottom:0;height:.125rem;background:var(--gold)}
.site-nav .nav-link [data-lucide]{width:1rem;height:1rem;transition:transform .2s ease}
.nav-dropdown{position:relative}
.nav-dropdown:hover .nav-link [data-lucide]{transform:rotate(180deg)}
.nav-dropdown::after{content:"";position:absolute;bottom:-0.625rem;left:0;right:0;height:.625rem}
.nav-dropdown-menu{
  position:absolute;top:calc(100% + .625rem);left:0;min-width:13rem;
  background:rgba(255,255,255,.97);backdrop-filter:blur(.75rem);
  border:.0625rem solid var(--border);border-radius:.625rem;box-shadow:0 .75rem 2rem rgba(20,22,26,.10);
  padding:.5rem;display:flex;flex-direction:column;gap:.125rem;
  opacity:0;visibility:hidden;transform:translateY(.375rem);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;z-index:60;
}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:none}
.nav-dropdown-link{padding:.625rem .875rem;border-radius:.375rem;color:var(--txt-dim-light);font-size:.9375rem}
.nav-dropdown-link:hover{background:rgba(201,154,63,.12);color:var(--gold-deep)}

/* Mobile drawer */
.nav-backdrop{position:fixed;inset:0;background:rgba(16,18,21,.6);opacity:0;visibility:hidden;transition:opacity .3s ease, visibility .3s ease;z-index:70}
.nav-backdrop.open{opacity:1;visibility:visible}
@media(max-width:60rem){
  .nav-toggle{display:inline-flex}
  .header-cta{margin-left:auto}
  .site-nav{
    position:fixed;top:0;right:0;bottom:0;width:min(20rem,82vw);z-index:80;
    flex-direction:column;align-items:stretch;gap:.25rem;
    background:var(--white);padding:5.5rem 1.5rem 2rem;box-shadow:-1rem 0 3rem rgba(20,22,26,.10);
    transform:translateX(100%);transition:transform .35s var(--ease),visibility .35s var(--ease);overflow-y:auto;
    visibility:hidden;
  }
  .site-header.nav-open .site-nav{transform:none;visibility:visible}
  .site-nav .nav-link{padding:.875rem .25rem;font-size:1.0625rem}
  .site-nav .nav-link.active::after{display:none}
  .nav-dropdown{width:100%}
  .nav-dropdown::after{display:none}
  .nav-dropdown-menu{
    position:static;opacity:1;visibility:visible;transform:none;
    background:transparent;border:0;padding:.25rem 0 .5rem .75rem;min-width:0;
  }
  .nav-dropdown:hover .nav-link [data-lucide]{transform:none}
}
/* #endregion */

/* #region PAGETOP */
.pagetop{
  background:var(--white);color:var(--txt-on-light);position:relative;
  padding:4.5rem 0 3.5rem;
  border-bottom:.0625rem solid var(--border);
}
.pagetop .eyebrow{margin-bottom:1rem}
.pagetop h1{font-size:clamp(2.25rem,4vw,3.25rem);font-weight:700;color:var(--txt-on-light)}
.pagetop .lede{margin-top:1rem;color:var(--txt-dim-light)}
/* project pages carry their own .proj-page hero, so the generic pagetop is redundant */
#page-content[data-cat="projects"] .pagetop{display:none}
/* property overviews + Lepreau District carry their own .proj-page hero too */
#page-content[data-page="lepreau-district"] .pagetop,
#page-content[data-page="saint-john-property"] .pagetop,
#page-content[data-page="pocologan-property"] .pagetop,
#page-content[data-page="frenchmans-creek-property"] .pagetop,
#page-content[data-page="grand-bay-property"] .pagetop{display:none}
/* contact page carries its own branded section-head, so the generic pagetop is redundant */
#page-content[data-page="contact"] .pagetop{display:none}
/* #endregion */

/* #region SPINE */
.spine{
  position:fixed;left:2.375rem;top:0;bottom:0;width:.125rem;z-index:40;
  background:rgba(20,22,26,.08);pointer-events:none;
}
.spine .fill{position:absolute;top:0;left:0;width:100%;height:0%;background:linear-gradient(var(--gold),var(--gold-deep))}
@media(max-width:97.5rem){.spine{display:none}}
/* #endregion */

/* #region PAGE: HOME — HERO */
.hero{position:relative;background:var(--paper);color:var(--txt-on-light);overflow:hidden;isolation:isolate;display:flex;flex-direction:column}
.hero > .container{position:relative;z-index:2;flex:1 1 auto;display:flex;align-items:center;width:100%}
.hero-media{
  position:absolute;inset:0;z-index:0;
  background-image:url('images/gallery/hero_bg.jpg');
  background-size:cover;background-position:center right;background-repeat:no-repeat;
}
.hero-media::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg, var(--paper) 0%, var(--paper) 14%, rgba(246,247,249,.78) 26%, rgba(246,247,249,.30) 38%, rgba(246,247,249,0) 50%);
}
.hero-map{position:absolute;inset:0;z-index:1;pointer-events:none}
.hero-map span{
  position:absolute;font-family:var(--display);font-weight:600;text-transform:uppercase;
  color:rgba(20,22,26,.07);letter-spacing:.32em;white-space:nowrap;
}
.hero-map .m1{top:22%;left:46%;font-size:1.25rem;letter-spacing:.42em}
.hero-map .m2{top:46%;left:40%;font-size:1rem;color:rgba(20,22,26,.05)}
.hero-map .m3{top:64%;left:43%;font-size:.8125rem;text-transform:none;font-style:italic;letter-spacing:.12em;color:rgba(20,22,26,.08)}
.hero-inner{position:relative;z-index:2;padding:7.5rem 0 4rem;max-width:50rem;width:100%}
.hero h1{font-size:clamp(2.25rem,4.2vw,3.75rem);line-height:1.1;font-weight:700;color:var(--txt-on-light);margin-bottom:1.75rem}
.hero h1 .accent{color:var(--gold-deep)}
.hero .sub{font-size:1.3125rem;color:var(--txt-dim-light);max-width:38rem;margin-bottom:2.625rem}
.hero-ctas{display:flex;gap:1.125rem;flex-wrap:wrap}
@media(min-width:64rem){
  .hero{min-height:calc(100dvh - 7.625rem)}
  .hero-inner{padding:3rem 0}
}
/* #endregion */

/* #region PAGE: HOME — PROOF STRIP */
.hero-proof{position:relative;z-index:2;padding:2rem 0 3.5rem}
.proof-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;
  padding-top:2.5rem;border-top:.0625rem solid var(--border);
}
.stat{display:flex;align-items:flex-start;gap:1.125rem}
.stat-ico{
  flex:none;width:3rem;height:3rem;border-radius:.625rem;margin-top:.375rem;
  display:flex;align-items:center;justify-content:center;
  border:.0625rem solid rgba(201,154,63,.45);background:rgba(201,154,63,.12);color:var(--gold-deep);
}
.stat-ico [data-lucide]{width:1.375rem;height:1.375rem}
.stat .num{font-family:var(--display);font-weight:800;font-size:clamp(2.5rem,3.6vw,3.5rem);line-height:1;color:var(--txt-on-light);letter-spacing:-.02em}
.stat .num em{font-style:normal;color:var(--gold-deep)}
.stat .unit{font-family:var(--display);font-weight:700;font-size:.42em;color:var(--txt-dim-light);margin-left:.375rem;letter-spacing:0}
.stat .label{margin-top:.5rem;font-size:.875rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--txt-dim-light)}
.stat .metals-list{margin-top:.5rem;font-family:var(--display);font-weight:700;font-size:1.0625rem;letter-spacing:.06em;color:var(--gold-deep)}
.chip{font-family:var(--display);font-weight:800;font-size:.8125rem;width:2.125rem;height:2.125rem;border-radius:.375rem;display:flex;align-items:center;justify-content:center;color:#fff}
.chip.sb{background:var(--violet)}
.chip.re{background:var(--teal)}
.chip.cu{background:var(--copper)}
.chip.au{background:var(--gold-deep)}
.chip.ag{background:#7C828B}
/* #endregion */

/* #region PAGE: HOME — METALS */
.metals{background:var(--paper);padding:7.5rem 0 6.875rem;border-radius:2.25rem 2.25rem 0 0;position:relative;z-index:2;margin-top:-2.25rem;box-shadow:0 -1rem 2.5rem rgba(20,22,26,.05)}
.metals-head{margin-bottom:3.5rem}
.metals-head-title{margin-bottom:2.5rem}
.metals-head-cols{display:grid;grid-template-columns:1fr 1fr;gap:3.75rem;align-items:center}
.metals-head-media{margin:0;border-radius:1rem;overflow:hidden;box-shadow:0 .75rem 2rem rgba(20,22,26,.1)}
.metals-head-media img{display:block;width:100%;height:auto}
.metals-intro p{color:var(--txt-dim-light);font-size:1.0625rem}
.metals-intro p + p{margin-top:1.125rem}

/* What countries are saying — callout strip */
.metals-voices{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:1.75rem}
.voice{background:var(--white);border:.0625rem solid var(--border);border-radius:1rem;padding:1.875rem 1.75rem;display:flex;flex-direction:column;box-shadow:0 .125rem .375rem rgba(20,22,26,.04)}
.voice-flag{font-size:1.75rem;line-height:1;margin-bottom:.875rem}
.voice h3{font-family:var(--display);font-size:1.0625rem;font-weight:800;letter-spacing:.04em;margin-bottom:.75rem;color:var(--txt-on-light)}
.voice p{font-size:.9375rem;line-height:1.55;color:var(--txt-dim-light)}
.voice p b{color:var(--gold-deep);font-weight:800}
.voice.is-pattern{background:var(--ink);border-color:transparent}
.voice.is-pattern h3{color:var(--gold-bright)}
.voice.is-pattern p{color:var(--txt-dim-dark)}
.voice.is-pattern p b{color:#fff}
.metals-voices-note{font-size:2rem;line-height:1.4;font-weight:600;color:var(--txt-on-light);border-left:.1875rem solid var(--gold);padding-left:1.5rem;margin:3.5rem 0;max-width:72rem}

/* #region METALS SOURCES / FOOTNOTES */
.metals sup.fn{font-size:.625rem;font-weight:800;line-height:0;margin-left:.0625rem}
.metals sup.fn a{color:var(--gold-deep);text-decoration:none}
.metals sup.fn a:hover{text-decoration:underline}
.voice.is-pattern sup.fn a{color:var(--gold-bright)}
.metals-sources{list-style:decimal;margin:0;padding-left:1.25rem;max-width:62rem;display:grid;gap:.5rem}
.metals-sources li{font-size:.6875rem;line-height:1.45;font-style:italic;color:var(--txt-dim-light)}
.metals-sources li::marker{color:var(--gold-deep);font-weight:800}
.metals-sources a{color:var(--gold-deep);text-decoration:underline;text-underline-offset:.125rem;word-break:break-word}
.metals-sources a:hover{color:var(--ink)}
/* #endregion */

/* The metals — antimony lead spans left column, other four in a 2x2 grid */
.metals-row{display:grid;grid-template-columns:1.15fr 1fr 1fr;gap:1.5rem;align-items:stretch}
.metals-row .m{background:var(--white);border:.0625rem solid var(--border);border-radius:1rem;padding:1.875rem 1.625rem;display:flex;flex-direction:column;box-shadow:0 .125rem .375rem rgba(20,22,26,.04)}
.metals-row .m .tile{width:3.25rem;height:3.25rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:900;font-size:1.25rem;color:#fff;margin-bottom:1.125rem}
.metals-row .m h4{font-family:var(--display);font-size:1rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:.625rem}
.metals-row .m p{font-size:.9375rem;line-height:1.55;color:var(--txt-dim-light)}
.m-lead{grid-column:1;grid-row:1 / span 2;border-color:rgba(201,154,63,.4);box-shadow:0 .125rem .375rem rgba(20,22,26,.05), 0 1rem 2.5rem rgba(184,121,31,.10)}
.m-lead .m-lead-top{display:flex;align-items:center;gap:1.25rem;margin-bottom:1.25rem}
.m-lead .tile{width:5rem;height:5rem;border-radius:.875rem;background:var(--violet);flex-direction:column;flex:none;margin-bottom:0}
.m-lead .tile b{font-size:1.875rem;font-weight:900;line-height:1}
.m-lead .tile span{font-size:.625rem;font-weight:600;letter-spacing:.16em;margin-top:.25rem}
.m-lead .m-tag{display:inline-block;font-family:var(--body);font-size:.6875rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--violet);margin-bottom:.5rem}
.m-lead h3{font-family:var(--display);font-size:1.75rem;font-weight:800;color:var(--txt-on-light);line-height:1.05}
.m-lead p{font-size:1rem}
/* #endregion */

/* #region PAGE: HOME — IOCG */
.iocg{background:var(--white);color:var(--txt-on-light);padding:8.125rem 0 7.5rem;border-radius:2.25rem 2.25rem 0 0;margin-top:-2.25rem;position:relative;z-index:3;box-shadow:0 -1rem 2.5rem rgba(20,22,26,.05)}
.iocg .editorial p{color:var(--txt-dim-light);margin-bottom:1.375rem;font-size:1.1875rem;max-width:none}
.iocg .editorial p:last-of-type{margin-bottom:0}
.iocg h2{color:var(--txt-on-light);margin-bottom:1.75rem}
.iocg-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:4rem;align-items:center}
.iocg-grid .editorial{max-width:none;grid-column:2;grid-row:1}
.iocg-figure{margin:0;grid-column:1;grid-row:1;background:var(--paper);border:.0625rem solid rgba(201,154,63,.30);border-radius:1rem;padding:1.25rem}
.iocg-figure img{width:100%;height:auto;border-radius:.625rem;display:block}
.iocg-figure .note{margin-top:1rem;text-align:center;font-size:.875rem;color:var(--txt-dim-light)}
/* #endregion */

/* #region PAGE: HOME — DISTRICT */
.district{background:var(--paper);color:var(--txt-on-light);padding:7.5rem 0 8.125rem}
.district-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:3.75rem;align-items:end;margin-bottom:4rem}
.bignum{font-family:var(--display);font-weight:800;font-size:clamp(4.5rem,8vw,8.25rem);line-height:.95;color:var(--txt-on-light);letter-spacing:-.03em}
.bignum .ha{font-size:.32em;color:var(--gold-deep);font-weight:800;margin-left:.5rem}
.district-head .copy h2{color:var(--txt-on-light);font-size:clamp(1.75rem,2.4vw,2.375rem);margin-bottom:1.125rem}
.district-head .copy p{color:var(--txt-dim-light);font-size:1.125rem;margin-bottom:.875rem;max-width:none}
.district-points{margin-top:1.625rem;display:flex;flex-direction:column;gap:.75rem;font-size:1.0625rem;color:var(--txt-dim-light)}
.district-points li{padding-left:1.625rem;position:relative;max-width:none}
.district-points li::before{content:"";position:absolute;left:0;top:.55em;width:.75rem;height:.125rem;background:var(--gold)}
.map-bleed{max-width:107.5rem;margin:0 auto;padding:0 1.5rem}
.map{border-radius:1.25rem;height:35rem;position:relative;overflow:hidden;background:#E6EAE2;border:.0625rem solid var(--border);box-shadow:0 1.25rem 3rem rgba(20,22,26,.14)}
.map.leaflet-container{font-family:var(--body)}
/* Leaflet legend control */
.dm-legend{background:rgba(255,255,255,.92);backdrop-filter:blur(.5rem);border:.0625rem solid var(--border);border-radius:.75rem;padding:1rem 1.25rem;margin:1.25rem;display:flex;flex-direction:column;gap:.625rem;font-size:.8125rem;font-weight:600;letter-spacing:.04em;color:var(--txt-on-light);box-shadow:0 .5rem 1.5rem rgba(20,22,26,.14)}
.dm-legend span{display:flex;align-items:center;gap:.625rem}
.dm-legend i{width:.875rem;height:.875rem;border-radius:.1875rem;flex:none}
/* Permanent property name labels (toggled with .ais-map-toggle) */
.ais-map-label{background:none;border:0;box-shadow:none;white-space:nowrap}
.ais-map-label span{display:inline-block;transform:translate(-50%,-50%);padding:.1875rem .5rem;background:rgba(255,255,255,.92);backdrop-filter:blur(.25rem);border:.0625rem solid var(--border);border-left:.1875rem solid var(--lbl-color,var(--gold));border-radius:.375rem;font-family:var(--display);font-size:.75rem;font-weight:800;letter-spacing:.04em;color:var(--txt-on-light);box-shadow:0 .25rem .75rem rgba(20,22,26,.22)}
/* Leaflet disclaimer control */
.dm-note{max-width:18rem;margin:1.25rem;font-size:.6875rem;font-weight:600;line-height:1.4;letter-spacing:.04em;text-transform:uppercase;color:var(--txt-dim-light);background:rgba(255,255,255,.88);backdrop-filter:blur(.25rem);border:.0625rem solid var(--border);border-radius:.5rem;padding:.5rem .75rem;text-align:right}
/* Leaflet popups */
.map .leaflet-popup-content-wrapper{border-radius:.625rem;box-shadow:0 .75rem 2rem rgba(20,22,26,.22)}
.map .leaflet-popup-content{margin:.875rem 1rem;font-family:var(--body)}
.dm-popup .dm-popup-tag{display:block;font-size:.625rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin-bottom:.25rem}
.dm-popup h4{font-family:var(--display);font-size:1.0625rem;font-weight:800;color:var(--txt-on-light);margin:0 0 .375rem}
.dm-popup p{font-size:.8125rem;color:var(--txt-dim-light);margin:0 0 .25rem}
.dm-popup .dm-popup-metals{font-weight:700;letter-spacing:.04em;color:var(--gold-deep)}
.dm-popup .dm-popup-link{display:inline-block;margin-top:.375rem;font-size:.8125rem;font-weight:700;color:var(--gold-deep)}
.map .leaflet-control-zoom a{color:var(--txt-on-light);font-weight:700}
.map .leaflet-bar a{border-radius:.375rem}
.map .leaflet-control-attribution{font-size:.625rem;background:rgba(255,255,255,.8)}
/* #endregion */

/* #region MAP — FULLSCREEN VIEWER */
/* "Full screen" button — injected as a Leaflet top-right control on every map */
.ais-map-expand{
  display:inline-flex;align-items:center;gap:.5rem;margin:.75rem;
  padding:.5rem .75rem;
  background:var(--white);color:var(--txt-on-light);
  border:.0625rem solid var(--border);border-radius:.5rem;
  font-family:var(--display);font-size:.75rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  box-shadow:0 .375rem 1rem rgba(20,22,26,.18);
  transition:background .2s var(--ease),color .2s var(--ease),transform .15s var(--ease)
}
.ais-map-expand:hover{background:var(--gold);color:#1A1305;transform:translateY(-.0625rem)}
.ais-map-expand [data-lucide],.ais-map-expand svg{width:1rem;height:1rem;flex:none}

/* Bedrock geology toggle — same visual family as the expand button */
.ais-map-toggle{
  display:inline-flex;align-items:center;gap:.5rem;margin:.75rem;
  padding:.5rem .75rem;
  background:var(--white);color:var(--txt-on-light);
  border:.0625rem solid var(--border);border-radius:.5rem;
  font-family:var(--display);font-size:.75rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  box-shadow:0 .375rem 1rem rgba(20,22,26,.18);
  transition:background .2s var(--ease),color .2s var(--ease),border-color .2s var(--ease)
}
.ais-map-toggle:hover{border-color:var(--gold);color:var(--gold-deep)}
.ais-map-toggle.is-active{background:var(--gold);color:#1A1305;border-color:var(--gold)}
.ais-map-toggle.is-active:hover{background:var(--gold-bright)}
.ais-map-toggle.is-loading{opacity:.6;pointer-events:none}
.ais-map-toggle [data-lucide],.ais-map-toggle svg{width:1rem;height:1rem;flex:none}

/* Bedrock "units in view" legend — swatches + rock names, scrollable */
.ais-geo-legend{width:15rem;max-width:60vw;margin:.75rem;background:rgba(255,255,255,.95);backdrop-filter:blur(.5rem);border:.0625rem solid var(--border);border-radius:.75rem;overflow:hidden;box-shadow:0 .5rem 1.5rem rgba(20,22,26,.18)}
.ais-geo-legend-head{font-family:var(--display);font-size:.625rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--txt-on-light);padding:.625rem .75rem;border-bottom:.0625rem solid var(--border)}
.ais-geo-legend-list{max-height:13rem;overflow-y:auto;padding:.5rem .75rem;display:flex;flex-direction:column;gap:.5rem}
.ais-geo-row{display:flex;align-items:flex-start;gap:.5rem}
.ais-geo-row img,.ais-geo-sw{width:1.125rem;height:1.125rem;flex:none;border-radius:.1875rem;border:.0625rem solid rgba(20,22,26,.18)}
.ais-geo-txt{display:flex;flex-direction:column;line-height:1.25;font-size:.75rem;color:var(--txt-on-light);min-width:0}
.ais-geo-txt b{font-weight:700}
.ais-geo-txt small{color:var(--txt-dim-light);font-size:.6875rem}
.ais-geo-legend-empty{padding:.75rem;font-size:.75rem;color:var(--txt-dim-light)}

/* North arrow + scale bar */
.ais-map-compass{
  width:2.75rem;height:2.75rem;margin:.75rem;
  background:rgba(255,255,255,.92);backdrop-filter:blur(.5rem);
  border:.0625rem solid var(--border);border-radius:50%;
  box-shadow:0 .375rem 1rem rgba(20,22,26,.18);
  display:flex;align-items:center;justify-content:center
}
.ais-map-compass svg{display:block}
.ais-compass-n{font-family:var(--display);font-size:.625rem;font-weight:800;letter-spacing:.02em;fill:var(--txt-on-light)}
.ais-compass-north{fill:var(--gold)}
.ais-compass-south{fill:#9AA1A9}
.map .leaflet-control-scale{margin:.75rem}
.map .leaflet-control-scale-line{
  background:rgba(255,255,255,.85);backdrop-filter:blur(.5rem);
  border:.0625rem solid var(--border);border-top:none;
  color:var(--txt-on-light);font-family:var(--display);
  font-size:.625rem;font-weight:700;letter-spacing:.04em;
  padding:.0625rem .375rem;line-height:1.1
}

/* Branded fullscreen lightbox */
.ais-maplb{position:fixed;inset:0;z-index:500;opacity:0;visibility:hidden;transition:opacity .3s var(--ease),visibility .3s var(--ease)}
.ais-maplb.open{opacity:1;visibility:visible}
.ais-maplb-backdrop{position:absolute;inset:0;background:rgba(16,18,21,.82);backdrop-filter:blur(.25rem)}
.ais-maplb-panel{
  position:absolute;inset:1.5rem;z-index:2;display:flex;flex-direction:column;
  background:var(--white);border-radius:1rem;overflow:hidden;
  box-shadow:0 1.5rem 4rem rgba(0,0,0,.5);
  transform:scale(.98);transition:transform .3s var(--ease)
}
.ais-maplb.open .ais-maplb-panel{transform:none}
.ais-maplb-bar{display:flex;align-items:center;gap:1rem;padding:.875rem 1.25rem;background:var(--ink);color:var(--txt-on-dark);flex:none}
.ais-maplb-brand{display:flex;align-items:center;flex:none}
.ais-maplb-brand img{height:2rem;width:auto}
.ais-maplb-word{font-family:var(--display);font-weight:800;letter-spacing:.02em;color:var(--txt-on-dark)}
.ais-maplb-word small{font-size:.6em;letter-spacing:.3em;margin-left:.25rem;color:var(--gold-bright)}
.ais-maplb-title{flex:1;text-align:center;font-family:var(--display);font-weight:700;font-size:1rem;letter-spacing:.04em;color:var(--txt-on-dark)}
.ais-maplb-close{width:2.5rem;height:2.5rem;flex:none;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.1);color:var(--txt-on-dark);transition:background .2s var(--ease),color .2s var(--ease)}
.ais-maplb-close:hover{background:var(--gold);color:#1A1305}
.ais-maplb-close [data-lucide],.ais-maplb-close svg{width:1.25rem;height:1.25rem}
.ais-maplb-map{flex:1;min-height:0;width:100%;background:#E6EAE2}
.ais-maplb-map.leaflet-container{font-family:var(--body)}
.ais-maplb-map .leaflet-popup-content-wrapper{border-radius:.625rem;box-shadow:0 .75rem 2rem rgba(20,22,26,.22)}
.ais-maplb-map .leaflet-popup-content{margin:.875rem 1rem;font-family:var(--body)}
.ais-maplb-map .leaflet-control-zoom a{color:var(--txt-on-light);font-weight:700}
.ais-maplb-map .leaflet-bar a{border-radius:.375rem}
.ais-maplb-map .leaflet-control-attribution{font-size:.625rem;background:rgba(255,255,255,.8)}
body.ais-maplb-lock{overflow:hidden}
@media(max-width:45rem){
  .ais-maplb-panel{inset:0;border-radius:0}
  .ais-maplb-title{font-size:.875rem}
  .ais-map-expand,.ais-map-toggle{padding:.5rem;margin:.625rem}
  .ais-map-expand span,.ais-map-toggle span{display:none}
}
/* #endregion */

/* #region PAGE: HOME — WHY NB */
.why-nb{position:relative;color:var(--txt-on-light);min-height:38.75rem;display:flex;align-items:center}
.why-nb .bg{position:absolute;inset:0;background:radial-gradient(50rem 31.25rem at 75% 60%, rgba(201,154,63,.14), transparent 60%),var(--white)}
.why-nb .bg::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg, rgba(255,255,255,.92) 30%, rgba(255,255,255,.55) 62%, rgba(255,255,255,.25))}
.why-nb .container{position:relative;z-index:2;padding-top:6.875rem;padding-bottom:6.875rem}
.why-nb h2{color:var(--txt-on-light);max-width:35rem;margin-bottom:1.5rem}
.why-nb .lede{margin-bottom:2.5rem}
.adv-list{max-width:35rem;display:flex;flex-direction:column;gap:0;border-top:.0625rem solid var(--border)}
.adv-list li{display:flex;justify-content:space-between;align-items:baseline;gap:1.5rem;padding:1.125rem 0;border-bottom:.0625rem solid var(--border);font-size:1.125rem;max-width:none}
.adv-list b{font-family:var(--display);font-weight:700;color:var(--txt-on-light)}
.adv-list span{font-size:.9375rem;color:var(--txt-dim-light);text-align:right}
/* #endregion */

/* #region PAGE: HOME — PROJECTS */
.projects{background:var(--paper);padding:8.125rem 0 8.75rem;border-radius:2.25rem 2.25rem 0 0;margin-top:-2.25rem;position:relative;z-index:2;box-shadow:0 -1rem 2.5rem rgba(20,22,26,.05)}
.projects-head{max-width:45rem;margin-bottom:4.375rem}
.projects-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(15rem,1fr));gap:2rem;align-items:stretch}
.pcard{background:var(--white);border-radius:1rem;overflow:hidden;box-shadow:0 .125rem .375rem rgba(20,22,26,.05), 0 1rem 2.75rem rgba(20,22,26,.08);display:flex;flex-direction:column;transition:transform .18s ease, box-shadow .18s ease}
.pcard:hover{transform:translateY(-0.3125rem);box-shadow:0 .375rem .875rem rgba(20,22,26,.07), 0 1.625rem 3.75rem rgba(20,22,26,.13)}
.pcard .media{height:13.75rem;position:relative;overflow:hidden}
.pcard .media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.pcard:hover .media img{transform:scale(1.04)}
.flag{position:absolute;top:1.125rem;left:1.125rem;z-index:2;background:var(--gold);color:#1A1305;font-size:.6875rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;padding:.4375rem .875rem;border-radius:.3125rem}
.pcard .body{padding:2.125rem 2.125rem 2.375rem;display:flex;flex-direction:column;flex:1}
.pcard h3{font-size:1.5625rem;font-weight:800;margin-bottom:.875rem}
.pcard-blurb{color:var(--txt-dim-light);font-size:1rem;line-height:1.55;margin-bottom:1.5rem}
.pcard dl{display:flex;flex-direction:column;gap:0;margin-bottom:1.75rem;border-top:.0625rem solid rgba(20,22,26,.1)}
.pcard dl > div{display:flex;justify-content:space-between;gap:1.125rem;padding:.75rem 0;border-bottom:.0625rem solid rgba(20,22,26,.1);font-size:1rem}
.pcard dt{color:var(--txt-dim-light)}
.pcard dd{font-weight:700;text-align:right}
.pcard dd.pcard-metals{font-family:var(--display);letter-spacing:.04em;color:var(--gold-deep)}
.pcard .body .textlink{margin-top:auto}
/* #endregion */

/* #region PAGE: HOME — DISTRICT CARD */
.district-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);background:var(--white);border-radius:1.25rem;overflow:hidden;box-shadow:0 .125rem .375rem rgba(20,22,26,.05), 0 1rem 2.75rem rgba(20,22,26,.08)}
.district-card .map{height:100%;min-height:27rem;border:0;border-radius:0;box-shadow:none}
.district-card-body{padding:3.75rem;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}
.district-card-body .eyebrow{margin-bottom:1.25rem}
.district-card-body h2{font-size:clamp(1.75rem,3vw,2.25rem);font-weight:800;margin-bottom:1.25rem}
.district-card-blurb{color:var(--txt-dim-light);font-size:1.0625rem;line-height:1.6;margin-bottom:2.25rem}
.district-card-stats{display:flex;flex-wrap:wrap;gap:1.75rem 2.5rem;margin-bottom:2.5rem}
.district-card-stats > div{display:flex;flex-direction:column;gap:.375rem}
.district-card-stats .num{font-family:var(--display);font-size:1.5rem;font-weight:800;line-height:1;color:var(--txt-on-light)}
.district-card-stats .num small{font-size:.875rem;font-weight:700;margin-left:.25rem;color:var(--txt-dim-light)}
.district-card-stats .num.is-metals{font-size:1.1875rem;letter-spacing:.04em;color:var(--gold-deep)}
.district-card-stats .lbl{font-size:.75rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--txt-dim-light)}
/* #endregion */

/* #region FOOTER */
.site-footer{background:var(--surface-alt);color:var(--txt-dim-light);padding:5.625rem 0 0;border-top:.1875rem solid var(--gold)}
.foot-grid{display:grid;grid-template-columns:1.4fr 2fr;gap:3.5rem;padding-bottom:4.375rem;border-bottom:.0625rem solid var(--border)}
.foot-sitemap{display:grid;grid-template-columns:repeat(auto-fit,minmax(8rem,1fr));gap:2.5rem;align-content:start}
.foot-grid h5{font-family:var(--body);font-size:.8125rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--txt-on-light);margin-bottom:1.375rem}
.foot-grid ul{display:flex;flex-direction:column;gap:.75rem;font-size:1rem}
.foot-grid a:hover{color:var(--gold-deep)}
.foot-brand .logo{margin-bottom:1.375rem}
.foot-brand p{font-size:.9375rem;max-width:26rem;line-height:1.7}
.foot-socials{display:flex;gap:.75rem;margin-top:1.25rem}
.foot-socials a{width:2.75rem;height:2.75rem;border-radius:.375rem;display:flex;align-items:center;justify-content:center;border:.0625rem solid var(--border);color:var(--txt-dim-light)}
.foot-socials a:hover{border-color:var(--gold);color:var(--gold-deep)}
.newsletter{display:flex;margin-top:1.125rem;border-radius:.5rem;overflow:hidden;border:.0625rem solid var(--border)}
.newsletter input{flex:1;background:transparent;border:0;padding:.875rem 1rem;color:var(--txt-on-light);font-family:var(--body);font-size:.9375rem;outline:none}
.newsletter input::placeholder{color:var(--txt-dim-light)}
.newsletter button{background:var(--gold);border:0;color:#1A1305;font-weight:800;font-size:.8125rem;letter-spacing:.1em;text-transform:uppercase;padding:0 1.375rem;cursor:pointer}
.newsletter button:hover{background:var(--gold-bright)}
.foot-legal{padding:1.75rem 0 2.125rem;font-size:.8125rem;display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap}
.foot-legal-left{display:flex;align-items:center;gap:1.625rem;flex-wrap:wrap}
.foot-legal a:hover{color:var(--gold-deep)}
.jrxdark{color:rgba(255,255,255,0.75);font-weight:400}
.jrxlight{color:rgba(27,30,34,0.7);font-weight:400}
/* #endregion */

/* #region SECTION — SUBSCRIBE STRIP */
.subscribe-strip{position:relative;overflow:hidden;background:#0b1723;color:rgba(233,235,238,.85);padding:clamp(3.5rem,7vw,5.5rem) 0;text-align:center}
.subscribe-bg-img{position:absolute;left:0;right:0;top:-25%;height:150%;background:url('images/gallery/subscribe_footer.jpg') center/cover no-repeat;z-index:0;will-change:transform;pointer-events:none}
.subscribe-strip .container{position:relative;z-index:1}
.subscribe-strip-inner{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:2.5rem 3.5rem;text-align:left;
  background:rgba(11,23,35,.42);
  -webkit-backdrop-filter:blur(1.25rem) saturate(1.3);
  backdrop-filter:blur(1.25rem) saturate(1.3);
  border:.0625rem solid rgba(255,255,255,.14);
  border-radius:1.25rem;
  padding:clamp(1.75rem,3.5vw,2.75rem) clamp(1.75rem,4vw,3rem);
  box-shadow:0 1.5rem 3.5rem rgba(0,0,0,.4)}
.subscribe-strip-text{display:flex;flex-direction:column;gap:.875rem}
.subscribe-strip-label{font-size:.8125rem;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:var(--gold)}
.subscribe-strip h2{color:#fff;font-size:clamp(2rem,3.4vw,2.75rem)}
.subscribe-strip p{color:rgba(233,235,238,.82);max-width:34rem;margin:0}
.subscribe-inline{display:flex;align-items:stretch;gap:.625rem;width:100%}
.subscribe-inline-field{flex:1;display:flex;align-items:center;gap:.625rem;background:var(--white);border:.0625rem solid rgba(255,255,255,.14);border-radius:.625rem;padding:0 1rem;transition:box-shadow var(--duration) var(--ease)}
.subscribe-inline-field:focus-within{box-shadow:0 0 0 .1875rem rgba(201,154,63,.45)}
.subscribe-inline-field [data-lucide]{width:1.125rem;height:1.125rem;color:#8a6a1d;flex:none}
.subscribe-inline-field input{flex:1;border:0;background:transparent;padding:1rem 0;font-size:1rem;color:var(--txt-on-light);min-width:0}
.subscribe-inline-field input::placeholder{color:rgba(0,0,0,.45)}
.subscribe-inline-btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:#1A1305;font-size:.9375rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:1rem 1.75rem;border-radius:.625rem;border:0;cursor:pointer;white-space:nowrap;transition:background var(--duration) var(--ease)}
.subscribe-inline-btn:hover{background:var(--gold-bright)}
.subscribe-inline-btn [data-lucide]{width:1.125rem;height:1.125rem}
.subscribe-inline-btn:disabled,.subscribe-inline-field input:disabled{opacity:.6;cursor:default}
.subscribe-strip p.subscribe-strip-note{font-size:.8125rem;font-style:italic;color:rgba(233,235,238,.75);max-width:none;margin:1.75rem auto 0;text-align:center;text-shadow:0 .0625rem .375rem rgba(0,0,0,.6)}
@media(max-width:48rem){
  .subscribe-strip-inner{grid-template-columns:1fr;text-align:center;gap:1.5rem}
  .subscribe-strip-text{align-items:center}
  .subscribe-strip p{margin-left:auto;margin-right:auto}
  .subscribe-inline{max-width:34rem;margin:0 auto}
}
@media(max-width:34rem){
  .subscribe-inline{flex-direction:column}
  .subscribe-inline-btn{justify-content:center}
}
/* #endregion */

/* #region SUBPOP */
.subpop{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;padding:1.5rem;opacity:0;visibility:hidden;transition:opacity .35s ease, visibility .35s ease}
.subpop.show{opacity:1;visibility:visible}
.subpop .under{position:absolute;inset:0;background:rgba(16,18,21,.7);backdrop-filter:blur(.25rem)}
.subpop .item{position:relative;z-index:2;display:flex;width:min(54rem,100%);background:var(--white);border-radius:1rem;overflow:hidden;box-shadow:0 1.5rem 4rem rgba(0,0,0,.4);transform:scale(.95) translateY(1rem);opacity:0;transition:transform .35s var(--ease), opacity .35s ease}
.subpop .item.show{transform:none;opacity:1}
.subpop .item .text{flex:1;padding:3rem 2.75rem;text-align:center}
.subpop .item .text img{height:2.75rem;width:auto;margin:0 auto 1.25rem}
.subpop .item .text h3{font-family:var(--display);font-size:1.625rem;font-weight:800;color:var(--txt-on-light);margin-bottom:.75rem}
.subpop .item .text p{color:var(--txt-dim-light);font-size:.9375rem;margin-bottom:1.25rem}
.subpop .subform{display:flex;flex-direction:column;gap:.625rem}
.subpop .subform input[type=email]{border:.0625rem solid var(--border);border-radius:.5rem;padding:.875rem 1rem;font-size:.9375rem;color:var(--txt-on-light);background:var(--paper)}
.subpop .subform button{justify-content:center;background:var(--gold);color:#1A1305;font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-size:.875rem;padding:.875rem 1rem;border-radius:.5rem}
.subpop .subform button:hover{background:var(--gold-bright)}
.subpop .closetext{display:inline-block;margin-top:.875rem;font-size:.8125rem;color:var(--txt-dim-light);text-decoration:underline}
.subpop .image{flex:0 0 38%;background-size:cover;background-position:center;background-color:var(--surface-alt)}
.subpop .close{position:absolute;top:1rem;right:1rem;z-index:3;width:2.25rem;height:2.25rem;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(16,18,21,.55);color:#fff;font-size:1.25rem;cursor:pointer}
.firstnameform{position:absolute;left:-9999px;visibility:hidden}
@media(max-width:40rem){.subpop .image{display:none}.subpop .item .text{padding:2.5rem 1.75rem}}
/* #endregion */

/* #region SUBRESPONSE */
.subresponse{position:fixed;inset:0;z-index:210;display:flex;align-items:center;justify-content:center;padding:1.5rem;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .3s ease, visibility .3s ease}
.subresponse.show{opacity:1;visibility:visible;pointer-events:auto}
.subresponse .under{position:absolute;inset:0;background:rgba(16,18,21,.7)}
.subresponse .item{position:relative;z-index:2;width:min(28rem,100%);background:var(--gold);border-radius:1rem;padding:2.5rem 2rem;text-align:center;transform:scale(.95);opacity:0;transition:transform .3s var(--ease), opacity .3s ease}
.subresponse.show .item{transform:none;opacity:1}
.subresponse.suberror .item{background:var(--copper)}
.subresponse .item .text{display:flex;flex-direction:column;align-items:center;gap:.75rem;transform:scale(.95);opacity:0;transition:transform .3s var(--ease), opacity .3s ease}
.subresponse .item .text.show{transform:none;opacity:1}
.subresponse .item .text .fa-solid{font-size:2.5rem;color:#fff}
.subresponse .item .text h3{color:#fff;font-family:var(--display)}
.subresponse .item .text p{color:#fff}
.subresponse .item .text .close{margin-top:.5rem;color:#fff;text-decoration:underline;font-weight:600}
/* #endregion */

/* #region REVEALS */
.reveal{opacity:0;transform:translateY(1.375rem);transition:opacity .65s var(--ease), transform .65s var(--ease);transition-delay:var(--rd,0s);will-change:opacity,transform}
/* directional / style variants — vary the entry animation per element */
.reveal.rv-up{transform:translateY(1.375rem)}
.reveal.rv-down{transform:translateY(-1.375rem)}
.reveal.rv-left{transform:translateX(-2.25rem)}
.reveal.rv-right{transform:translateX(2.25rem)}
.reveal.rv-scale{transform:scale(.93)}
.reveal.rv-zoom{transform:scale(1.06)}
.reveal.rv-fade{transform:none}
/* wipe — element stays opaque and reveals left-to-right via clip-path */
.reveal.rv-wipe{opacity:1;transform:none;clip-path:inset(0 100% 0 0);transition:clip-path .9s var(--ease)}
.reveal.rv-wipe.in{clip-path:inset(0 0 0 0)}
.reveal.in{opacity:1;transform:none}
/* group staggers — duplicate/sibling elements cascade in */
.metals-voices .voice:nth-child(2){transition-delay:.12s}
.metals-voices .voice:nth-child(3){transition-delay:.24s}
.metals-voices .voice:nth-child(4){transition-delay:.36s}
.projects-grid .pcard:nth-child(2){transition-delay:.14s}
.projects-grid .pcard:nth-child(3){transition-delay:.28s}
.projects-grid .pcard:nth-child(4){transition-delay:.42s}
.metals-intro p:nth-child(2){transition-delay:.12s}
.district-points li{opacity:0;transform:translateX(-.75rem);transition:opacity .5s var(--ease), transform .5s var(--ease)}
.district-points li:nth-child(1){transition-delay:.15s}
.district-points li:nth-child(2){transition-delay:.28s}
.district-points li:nth-child(3){transition-delay:.41s}
.copy.in .district-points li{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.rv-up,.reveal.rv-down,.reveal.rv-left,.reveal.rv-right,.reveal.rv-scale,.reveal.rv-zoom,.reveal.rv-fade,
  .reveal.rv-wipe,
  .district-points li{opacity:1;transform:none;clip-path:none;transition:none}
  html{scroll-behavior:auto}
  .btn,.pcard{transition:none}
}
/* #endregion */

/* #region INTRO STAGGER */
/* anim-intro elements stay hidden until the preloader is gone, then cascade in.
   Uses animation (not transition) so it never clobbers the header's scroll transition. */
@keyframes introUp{from{opacity:0;transform:translateY(1.25rem)}to{opacity:1;transform:none}}
.intro-armed .anim-intro{opacity:0}
.intro-go .anim-intro{animation:introUp .7s var(--ease) both;animation-delay:var(--d,0s)}
@media (prefers-reduced-motion: reduce){
  .intro-armed .anim-intro{opacity:1}
  .intro-go .anim-intro{animation:none}
}
/* #endregion */

/* #region SECTION — GENERIC */
.section-light{background:var(--paper);color:var(--txt-on-light);padding:clamp(4rem,8vw,7rem) 0}
.section-white{background:var(--white);color:var(--txt-on-light);padding:clamp(4rem,8vw,7rem) 0}
.section-dark{background:var(--surface-alt);color:var(--txt-on-light);padding:clamp(4rem,8vw,7rem) 0}
.section-head{max-width:45rem;margin-bottom:3rem}
.section-head h2{margin-top:.5rem}
.prose{max-width:47.5rem}
.prose p{margin-bottom:1.25rem;color:var(--txt-dim-light)}
.lead-statement{max-width:62.5rem;font-weight:600;font-size:clamp(1.5rem,2.5vw,2rem);line-height:1.55;color:var(--txt-on-light)}
.lead-statement p{margin-bottom:0;color:inherit;font-weight:inherit;font-size:inherit;line-height:inherit}
.section-dark .prose p,.section-dark p{color:var(--txt-dim-light)}
.prose h3{font-family:var(--display);font-size:1.5rem;margin:2rem 0 .75rem}
.prose ul{margin:1rem 0 1.5rem;display:flex;flex-direction:column;gap:.625rem}
.prose ul li{padding-left:1.625rem;position:relative;color:var(--txt-dim-light)}
.prose ul li::before{content:"";position:absolute;left:0;top:.6em;width:.75rem;height:.125rem;background:var(--gold)}
.placeholder-note{background:rgba(201,154,63,.12);border:.0625rem dashed var(--gold);border-radius:.625rem;padding:1rem 1.25rem;color:var(--gold-deep);font-size:.9375rem;margin:1.5rem 0}
.grecaptcha-badge{visibility:hidden}
/* #endregion */

/* #region CARDS — TEAM */
.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(16rem,1fr));gap:2rem}
.team-card{background:var(--white);border-radius:1rem;overflow:hidden;border-top:.25rem solid var(--gold);box-shadow:0 .125rem .375rem rgba(20,22,26,.05), 0 1rem 2.75rem rgba(20,22,26,.08);display:flex;flex-direction:column}
.team-card .body{padding:1.75rem 1.5rem;display:flex;flex-direction:column;flex:1}
.team-card h3{font-family:var(--display);font-size:1.25rem;font-weight:800;margin-bottom:.25rem}
.team-card .titles{font-size:.8125rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:.75rem}
.team-card-bio{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;color:var(--txt-dim-light);font-size:.9375rem;margin-bottom:1rem}
.team-card .textlink{margin-top:auto}
/* #endregion */

/* #region LEADERSHIP ENTRIES */
/* Portrait-free editorial layout: name + position/titles in a left column,
   full bio in a wider right column, with a rule separating each entry. */
.leader-list{display:flex;flex-direction:column}
.leader-entry{display:grid;grid-template-columns:16rem 1fr;gap:clamp(2rem,4vw,3.75rem);align-items:start;padding:clamp(2rem,4vw,3rem) 0;border-top:.0625rem solid rgba(20,22,26,.1)}
.leader-entry:first-child{border-top:0;padding-top:0}
.leader-entry-head{position:relative;padding-left:1rem;border-left:.1875rem solid var(--gold)}
.leader-entry-head h3{font-family:var(--display);font-size:clamp(1.5rem,2.4vw,1.875rem);font-weight:800;margin-bottom:.5rem}
.leader-position{font-size:.875rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-deep)}
.leader-entry-head .titles{font-size:.9375rem;font-weight:600;color:var(--txt-dim-light);margin-top:.5rem}
.leader-bio{color:var(--txt-dim-light);font-size:1rem;line-height:1.8}
.leader-bio p{margin-bottom:1.125rem}
.leader-bio p:last-child{margin-bottom:0}
.leader-bio ul{margin:0 0 1.125rem 1.25rem;display:flex;flex-direction:column;gap:.5rem}
@media(max-width:48rem){
  .leader-entry{grid-template-columns:1fr;gap:1.25rem;padding:2rem 0}
}
/* #endregion */

/* #region MODALS */
.team-modal,.sysmsg{position:fixed;inset:0;z-index:220;display:flex;align-items:center;justify-content:center;padding:1.5rem;opacity:0;visibility:hidden;transition:opacity .3s ease, visibility .3s ease}
.team-modal.show,.sysmsg.show{opacity:1;visibility:visible}
.team-modal .under,.sysmsg .under{position:absolute;inset:0;background:rgba(16,18,21,.7)}
.team-modal .box,.sysmsg .box{position:relative;z-index:2;width:min(40rem,100%);max-height:85vh;overflow-y:auto;background:var(--white);border-radius:1rem;padding:2.5rem;transform:scale(.95) translateY(1rem);transition:transform .3s var(--ease)}
.team-modal.show .box,.sysmsg.show .box{transform:none}
.team-modal h3{font-family:var(--display);font-size:1.75rem;margin-bottom:.25rem}
.team-modal .titles{font-size:.8125rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:1.25rem}
.team-modal .bio p{margin-bottom:1rem;color:var(--txt-dim-light)}
.modal-close{position:absolute;top:1rem;right:1rem;width:2.25rem;height:2.25rem;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--paper);color:var(--txt-on-light)}
.sysmsg .box{text-align:center}
.sysmsg .box h3{font-family:var(--display);margin-bottom:.5rem}
.sysmsg .box p{color:var(--txt-dim-light)}
/* #endregion */

/* #region CARDS — NEWS */
.news-list{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.news-row{display:flex;flex-direction:column;align-items:flex-start;gap:.875rem;height:100%;background:var(--white);border:.0625rem solid transparent;border-top:.25rem solid var(--gold);border-radius:.625rem;padding:1.75rem;box-shadow:0 .125rem .375rem rgba(20,22,26,.05);transition:transform .2s var(--ease),box-shadow .2s var(--ease),border-color .2s var(--ease)}
.news-row:hover{border-color:var(--gold);transform:translateY(-.25rem);box-shadow:0 .875rem 2rem rgba(20,22,26,.12)}
.news-date{font-weight:700;font-size:.8125rem;letter-spacing:.08em;text-transform:uppercase;color:var(--gold-deep)}
.news-title{font-family:var(--display);font-weight:700;font-size:1.1875rem;line-height:1.3;color:var(--txt-on-light)}
.news-title a:hover{color:var(--gold-deep)}
.news-actions{display:flex;gap:.625rem;align-items:center;flex-wrap:wrap;margin-top:auto;padding-top:.5rem}
.news-btn{display:inline-flex;align-items:center;gap:.5rem;font-size:.78125rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:.6875rem 1.125rem;border-radius:.375rem;cursor:pointer;transition:transform .15s ease,background .15s ease,border-color .15s ease,color .15s ease}
.news-btn [data-lucide]{width:1rem;height:1rem}
.news-btn .arrow{transition:transform .15s ease}
.news-btn:hover .arrow{transform:translateX(.25rem)}
.news-btn.primary{background:var(--gold);color:#1A1305}
.news-btn.primary:hover{background:var(--gold-bright);transform:translateY(-0.0625rem)}
.news-btn.ghost{border:.09375rem solid rgba(20,22,26,.22);color:var(--txt-on-light)}
.news-btn.ghost:hover{border-color:var(--gold);color:var(--gold-deep)}
.news-btn.disabled{opacity:.35;pointer-events:none}
.year-pills{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2rem}
.year-pill{padding:.5rem 1rem;border-radius:624.9375rem;border:.0625rem solid var(--border);font-size:.875rem;font-weight:700;cursor:pointer;color:var(--txt-dim-light)}
.year-pill.active{background:var(--ink);color:#fff;pointer-events:none;border-color:var(--ink)}
@media(max-width:52rem){.news-list{grid-template-columns:1fr}}
@media(max-width:40rem){.news-actions{width:100%}.news-btn{flex:1;justify-content:center}}
/* #endregion */

/* #region RELEASE BODY */
.release-body{max-width:47.5rem}
.release-body p{max-width:72ch;margin-bottom:1.25rem;color:var(--txt-dim-light)}
.release-meta{font-weight:700;font-size:.875rem;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:1rem}
.release-back{display:inline-flex;align-items:center;gap:.5rem;color:var(--gold-deep);font-weight:700;margin-top:1.5rem}
/* #endregion */

/* #region CARDS — PRESENTATIONS */
.pres-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(18rem,1fr));gap:2rem}
.pres-card{background:var(--white);border-radius:1rem;overflow:hidden;box-shadow:0 .125rem .375rem rgba(20,22,26,.05), 0 1rem 2.75rem rgba(20,22,26,.08)}
.pres-thumb{position:relative;display:block;aspect-ratio:16/9;background:var(--surface-alt);background-size:cover;background-position:center}
.pres-thumb .overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:.5rem;background:rgba(16,18,21,.55);color:#fff;font-weight:700;opacity:0;transition:opacity .25s ease}
.pres-thumb:hover .overlay{opacity:1}
.pres-hidden-slide{display:none}
.pres-card .body{padding:1.25rem 1.5rem 1.5rem}
.pres-card h3{font-family:var(--display);font-size:1.125rem;margin-bottom:.25rem}
.pres-card .date{font-size:.8125rem;color:var(--txt-dim-light);margin-bottom:.875rem}
.pres-actions{display:flex;flex-wrap:wrap;gap:1rem}
/* #endregion */

/* #region TABLE — GLOBAL */
.nv-table-scroll{overflow-x:auto}
.nv-table{width:100%;border-collapse:collapse;background:var(--white);border-radius:.625rem;overflow:hidden}
.nv-table th{background:var(--ink);color:#fff;font-size:.8125rem;letter-spacing:.08em;text-transform:uppercase;padding:.875rem 1rem}
.nv-table td{padding:.875rem 1rem;border-bottom:.0625rem solid var(--border);font-size:1rem}
.nv-table tr:last-child td{border-bottom:0}
/* #endregion */

/* #region PAGE: STOCK */
.stock-stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(12rem,1fr));gap:1rem;margin-top:2rem}
.stock-stat-card{background:var(--white);border-top:.1875rem solid var(--gold);padding:1.5rem;text-align:center;border-radius:.625rem}
.stock-stat-card .num{font-family:var(--display);font-weight:800;font-size:1.75rem;color:var(--txt-on-light)}
.stock-stat-card .lbl{font-size:.8125rem;letter-spacing:.1em;text-transform:uppercase;color:var(--txt-dim-light);margin-top:.5rem}
.stock-symbols-row{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:1.5rem}
.stock-symbol-btn{display:flex;flex-direction:column;align-items:flex-start;border:.0625rem solid var(--border);border-radius:.5rem;padding:.625rem 1rem;cursor:pointer}
.stock-symbol-btn.active{border-color:var(--gold);background:rgba(201,154,63,.1)}
.stock-symbol-btn-exchange{font-size:.6875rem;letter-spacing:.1em;text-transform:uppercase;color:var(--txt-dim-light)}
.stock-symbol-btn-ticker{font-family:var(--display);font-weight:800}
.tradingview-widget-container{margin-bottom:2rem}
/* #endregion */

/* #region PAGE: CONTACT */
.contact-wrap{display:grid;grid-template-columns:0.9fr 1.1fr;gap:3rem;align-items:start}
.contact-info-panel{background:var(--surface-alt);color:var(--txt-on-light);border-radius:1rem;padding:2.5rem;border:.0625rem solid var(--border)}
.contact-info-panel h3{font-family:var(--display);color:var(--txt-on-light);margin-bottom:1.5rem}
.contact-info-item{display:flex;flex-direction:column;gap:.25rem;margin-bottom:1.5rem}
.contact-info-item .lbl{font-size:.75rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold)}
.contact-info-item a,.contact-info-item span{color:var(--txt-dim-light)}
.contact-form-panel{background:var(--white);border-radius:1rem;padding:2.5rem;box-shadow:0 .125rem .375rem rgba(20,22,26,.05)}
.contact-form-panel input,.contact-form-panel textarea{width:100%;border:.0625rem solid var(--border);border-radius:.5rem;padding:.875rem 1rem;margin-bottom:1rem;font-size:1rem;color:var(--txt-on-light);background:var(--paper)}
.contact-form-panel textarea{min-height:8rem}
.contact-opt{display:flex;align-items:center;gap:.5rem;margin-bottom:1.25rem;color:var(--txt-dim-light);font-size:.9375rem}
.contact-form-panel button[type=submit]{justify-content:center;background:var(--gold);color:#1A1305;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:.9375rem 1.5rem;border-radius:.5rem}
.contact-form-panel button[type=submit]:hover{background:var(--gold-bright)}
.recaptcha-note{font-size:.75rem;color:var(--txt-dim-light);margin-top:1rem}
.recaptcha-note a{text-decoration:underline}
@media(max-width:48rem){.contact-wrap{grid-template-columns:1fr}}
/* #endregion */

/* #region PAGE: SUBSCRIBE */
.subscribe.subpage{max-width:42rem;margin:0 auto;padding:1rem 0}
.subscribe .iconflex{display:flex;flex-direction:column;align-items:center;text-align:center;gap:1rem}
.subscribe .icon{font-size:3rem;color:var(--gold)}
.subscribe .maintext h3{font-family:var(--display);font-size:1.75rem;margin-bottom:.5rem}
.subscribe .maintext p{color:var(--txt-dim-light)}
.subscribe form{margin-top:2rem;display:flex;flex-direction:column;gap:1rem}
.subscribe .form-group{display:flex;flex-direction:column;gap:.375rem}
.subscribe input[type=text],.subscribe input[type=tel]{border:.0625rem solid var(--border);border-radius:.5rem;padding:.875rem 1rem;background:var(--paper)}
.subscribe .mainlink{display:inline-flex;justify-content:center;background:var(--gold);color:#1A1305;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:.875rem 1.5rem;border-radius:.5rem}
.btn-unsubscribe{background:transparent;border:.0625rem solid var(--border);color:var(--txt-dim-light)}
.popup-overlay{position:fixed;inset:0;z-index:230;display:flex;align-items:center;justify-content:center;padding:1.5rem;background:rgba(16,18,21,.7);opacity:0;visibility:hidden;transition:opacity .3s ease, visibility .3s ease}
.popup-overlay.show{opacity:1;visibility:visible}
.popup-content{background:var(--white);border-radius:1rem;padding:2rem;max-width:26rem;text-align:center}
.popup-buttons{display:flex;gap:.75rem;justify-content:center;margin-top:1.25rem}
.btn-cancel,.btn-confirm{padding:.625rem 1.25rem;border-radius:.5rem;font-weight:700}
.btn-cancel{border:.0625rem solid var(--border)}
.btn-confirm{background:var(--copper);color:#fff}
.popup-notification{position:fixed;bottom:1.5rem;right:1.5rem;z-index:240;background:var(--ink);color:#fff;padding:1rem 1.25rem;border-radius:.625rem;opacity:0;transform:translateY(1rem);transition:opacity .3s ease, transform .3s ease}
.popup-notification.show{opacity:1;transform:none}
.popup-notification.error{background:var(--copper)}
/* #endregion */

/* #region PAGE: DISCLAIMERS */
.disclaimers{max-width:52rem}
.disclaimers h2{font-size:1.25rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-deep);margin:2rem 0 .75rem}
.disclaimers p,.disclaimers li{font-size:.875rem;line-height:1.7;color:var(--txt-dim-light);margin-bottom:.75rem}
.disclaimers > div{border-bottom:.0625rem solid var(--border);padding-bottom:1.5rem;margin-bottom:1.5rem}
.disclaimers > div:last-child{border-bottom:0}
/* #endregion */

/* #region PAGE: 404 */
.fourohfour{min-height:50vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:1rem;padding:4rem 0}
.fourohfour .big{font-family:var(--display);font-weight:900;font-size:5rem;color:var(--gold)}
/* #endregion */

/* #region PROJECT PAGES */
.proj-page{color:var(--txt-on-light)}
.proj-section{background:var(--paper);padding:clamp(4rem,8vw,7rem) 0}
.proj-section.proj-dark{background:var(--surface-alt);color:var(--txt-on-light)}
.proj-section.proj-white{background:var(--white)}
.proj-page-header{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.proj-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1.5rem}
.proj-page-header>.proj-stats{margin-top:0;align-self:center}
.proj-page-header>.proj-stats .proj-stat{box-shadow:0 .5rem 1.5rem rgba(20,22,26,.12)}
.proj-stat{background:var(--white);border-radius:.625rem;padding:1.25rem;border-top:.1875rem solid var(--gold)}
.proj-stat .num{font-family:var(--display);font-weight:800;font-size:1.5rem}
.proj-stat .lbl{font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;color:var(--txt-dim-light);margin-top:.375rem}
.proj-map{aspect-ratio:4/3;border-radius:1rem}
.map.proj-map{height:auto;aspect-ratio:4/3;min-height:20rem}
.proj-two-col{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.proj-two-col.align-top{align-items:start}
.proj-two-col.cols-1-2{grid-template-columns:1fr 2fr}
.proj-two-col>*{min-width:0}
.proj-two-col .proj-map{width:100%;min-width:0}
.proj-section-label{font-size:.8125rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-deep);display:flex;align-items:center;gap:.875rem;margin-bottom:1rem}
.proj-section-label::before{content:"";width:1.75rem;height:.0625rem;background:var(--gold);flex:none}
.proj-dark .proj-section-label{color:var(--gold)}
.proj-section .prose h3{font-size:1.75rem}
.proj-section-label + h3{margin-top:0}
.proj-section-label:has(+ h3){margin-bottom:.125rem}
.proj-section > .container > h2{margin-bottom:1.25rem}
.proj-section .prose > h2:first-child{margin-bottom:1.25rem}
.proj-section h2 + .prose,.proj-section h3 + .prose{margin-top:1.25rem}
.proj-section > .container > h2 + .prose,
.proj-section > .container > h2 + .lead-statement,
.proj-section > .container > h2 + .proj-two-col{margin-top:0}
@media(min-width:64rem){.proj-section .prose h3{font-size:2.5rem}}
.proj-ceo-quote{background:rgba(201,154,63,.12);border-left:.25rem solid var(--gold);border-radius:.625rem;padding:1.75rem 2rem;margin:2rem 0;font-size:1.125rem;font-style:italic}
.proj-placeholder-img{aspect-ratio:4/3;border-radius:1rem}
/* Content figures (maps / diagrams) — constrained on desktop so tall maps
   don't dominate the viewport; click-to-zoom via Fancybox (see ajax-nav). */
.proj-figure{margin:2.5rem auto 0;max-width:52rem;width:100%;text-align:center}
.proj-figure img{width:auto;max-width:100%;max-height:min(70vh,36rem);height:auto;display:block;margin:0 auto;border-radius:1rem;border:.0625rem solid var(--border);box-shadow:0 1rem 2.75rem rgba(20,22,26,.08);transition:box-shadow .2s ease,opacity .2s ease}
.proj-figure a[data-fancybox]{display:inline-block;max-width:100%;cursor:zoom-in;border-radius:1rem}
.proj-figure a[data-fancybox]:hover img,.proj-figure a[data-fancybox]:focus-visible img{opacity:.92;box-shadow:0 1.25rem 3rem rgba(20,22,26,.14)}
.proj-figure a[data-fancybox]:focus-visible{outline:.125rem solid var(--gold);outline-offset:.25rem}
.proj-figure figcaption{margin-top:.75rem;font-size:.8125rem;line-height:1.5;letter-spacing:.02em;color:var(--txt-dim-light);text-align:left}
@media(max-width:48rem){
  .proj-page-header,.proj-two-col,.proj-two-col.cols-1-2{grid-template-columns:1fr}
  .proj-figure{max-width:none}
  .proj-figure img{max-height:none;width:100%}
}
/* #endregion */

/* #region ZOOMABLE FIGURES (Fancybox) */
.iocg-figure a[data-fancybox],
.metals-head-media a[data-fancybox]{display:block;cursor:zoom-in;border-radius:inherit}
.iocg-figure a[data-fancybox]:focus-visible,
.metals-head-media a[data-fancybox]:focus-visible{outline:.125rem solid var(--gold);outline-offset:.25rem}
.iocg-figure a[data-fancybox]:hover img,
.metals-head-media a[data-fancybox]:hover img{opacity:.92}
/* #endregion */

/* #region PROJECT DETAIL CONTENT */
.proj-lede{font-family:var(--display);font-size:clamp(1.375rem,2.1vw,1.625rem);line-height:1.4;font-weight:600;letter-spacing:-.01em;color:var(--txt-on-light);max-width:48rem;margin-bottom:1.5rem}

/* interactive map sized to sit in the project hero column */
.proj-hero-map{height:auto;aspect-ratio:4/3;min-height:22rem}
@media(max-width:48rem){.proj-hero-map{min-height:18rem}}

/* frosted-glass panel behind hero text content (not the map) */
.proj-hero-glass{
  background:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(.75rem) saturate(125%);
  backdrop-filter:blur(.75rem) saturate(125%);
  border:.0625rem solid rgba(255,255,255,.7);
  border-radius:1.25rem;
  padding:clamp(1.5rem,2.5vw,2.25rem);
  box-shadow:0 1rem 3rem rgba(20,22,26,.08);
}

/* hero image as a slow-scroll parallax background behind the project hero (JRX D9 pattern) */
.proj-section.proj-page{position:relative;overflow:hidden}
.proj-section.proj-page>.container{position:relative;z-index:2}
.proj-hero-bg-img{
  position:absolute;inset:0;width:100%;height:130%;
  background-size:cover;background-position:center;
  z-index:0;will-change:transform;
}
/* fade the bottom of the hero into the (white) section below */
.proj-section.proj-page::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:42%;
  z-index:1;pointer-events:none;
  background:linear-gradient(to bottom, rgba(255,255,255,0), var(--white));
}
.proj-section .prose+.proj-feature-grid,.proj-section .prose+.proj-specs,.proj-section .prose+.proj-data-grid,.proj-section .prose+.proj-steps{margin-top:2.5rem}

/* infrastructure / access feature cards */
.proj-feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(13.5rem,1fr));gap:1.25rem;margin-top:2.5rem}
.proj-feature-grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.proj-feature{background:var(--white);border:.0625rem solid var(--border);border-top:.1875rem solid var(--gold);border-radius:.75rem;padding:1.75rem}
.proj-feature .ico{width:2.75rem;height:2.75rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;background:rgba(201,154,63,.12);color:var(--gold-deep);margin-bottom:1.125rem}
.proj-feature .ico [data-lucide]{width:1.375rem;height:1.375rem}
.proj-feature h4{font-family:var(--display);font-size:1.0625rem;font-weight:700;margin-bottom:.5rem;color:var(--txt-on-light)}
.proj-feature p{font-size:.9375rem;line-height:1.55;color:var(--txt-dim-light)}
@media(max-width:48rem){
  .proj-feature-grid.cols-2{grid-template-columns:1fr}
}

/* survey spec strip */
.proj-specs{display:grid;grid-template-columns:repeat(auto-fit,minmax(11.5rem,1fr));gap:1rem;margin:2.25rem 0}
.proj-two-col>.proj-specs{grid-template-columns:repeat(2,1fr);margin:0}
.proj-spec{background:var(--white);border-radius:.625rem;border-left:.1875rem solid var(--teal);padding:1.375rem 1.5rem}
.proj-spec .v{font-family:var(--display);font-weight:800;font-size:1.625rem;line-height:1;color:var(--txt-on-light)}
.proj-spec .v small{font-size:.5em;font-weight:700;color:var(--txt-dim-light);margin-left:.25rem}
.proj-spec .k{font-size:.8125rem;line-height:1.4;letter-spacing:.04em;color:var(--txt-dim-light);margin-top:.5rem}
.proj-spec .up{font-family:var(--display);font-size:.625rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:.375rem}

/* survey dataset deliverables */
.proj-data-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(15rem,1fr));gap:1rem;margin-top:1.75rem}
.proj-data{display:flex;gap:.875rem;align-items:flex-start;background:var(--white);border:.0625rem solid var(--border);border-radius:.625rem;padding:1.25rem 1.375rem}
.proj-data .dot{flex:none;width:1.625rem;height:1.625rem;border-radius:.375rem;background:rgba(46,143,230,.14);color:var(--blue);display:flex;align-items:center;justify-content:center;margin-top:.0625rem}
.proj-data .dot [data-lucide]{width:.9375rem;height:.9375rem}
.proj-data h4{font-family:var(--display);font-size:1rem;font-weight:700;margin-bottom:.25rem;color:var(--txt-on-light)}
.proj-data p{font-size:.875rem;line-height:1.45;color:var(--txt-dim-light)}

/* #region IOCG EXPLAINER (district page) */
.iocg-explain{margin-top:2rem;gap:2.5rem}
.iocg-explain .iocg-figure{height:100%}
.iocg-points{display:flex;flex-direction:column;gap:1rem;min-width:0}
.iocg-point{
  display:flex;gap:1rem;align-items:flex-start;
  background:var(--white);border:.0625rem solid var(--border);border-radius:.75rem;
  padding:1.25rem 1.375rem;box-shadow:0 .375rem 1.25rem rgba(20,22,26,.04);
}
.iocg-point .ico{
  flex:none;width:2.5rem;height:2.5rem;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(201,154,63,.14);color:var(--gold-deep);margin-top:.125rem;
}
.iocg-point .ico [data-lucide]{width:1.25rem;height:1.25rem}
.iocg-point h4{font-family:var(--display);font-size:1.0625rem;font-weight:700;margin-bottom:.375rem;color:var(--txt-on-light)}
.iocg-point p{font-size:.9375rem;line-height:1.55;color:var(--txt-dim-light)}
.iocg-aside{
  display:flex;gap:1rem;align-items:flex-start;
  background:var(--ink);color:var(--txt-on-dark);
  border-radius:.75rem;padding:1.25rem 1.375rem;margin-top:.25rem;
}
.iocg-aside .ico{
  flex:none;width:2.25rem;height:2.25rem;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(201,154,63,.18);color:var(--gold);margin-top:.0625rem;
}
.iocg-aside .ico [data-lucide]{width:1.125rem;height:1.125rem}
.iocg-aside p{font-size:.9375rem;line-height:1.55;color:rgba(233,235,238,.88)}
.iocg-aside strong{color:var(--gold);font-weight:700}
@media(max-width:64rem){
  .iocg-explain{gap:2rem}
}
@media(max-width:48rem){
  .iocg-explain{margin-top:1.75rem;gap:1.75rem}
  .iocg-point,.iocg-aside{padding:1.125rem 1.25rem}
}
@media(max-width:26.75rem){
  .iocg-point,.iocg-aside{gap:.875rem}
  .iocg-point .ico,.iocg-aside .ico{width:2.25rem;height:2.25rem}
  .iocg-point .ico [data-lucide]{width:1.125rem;height:1.125rem}
}
/* #endregion */

/* numbered process steps */
.proj-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(12.5rem,1fr));gap:1.25rem;margin-top:2.25rem}
.proj-step{background:var(--white);border-top:.1875rem solid var(--gold);border-radius:.75rem;padding:1.625rem}
.proj-step .n{font-family:var(--display);font-weight:800;font-size:1.0625rem;color:var(--gold-deep);width:2.25rem;height:2.25rem;border-radius:624.9375rem;background:rgba(201,154,63,.14);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.proj-step h4{font-family:var(--display);font-size:1.0625rem;font-weight:700;color:var(--txt-on-light)}

/* areas of interest cards */
.proj-area{background:var(--white);border:.0625rem solid var(--border);border-left:.1875rem solid var(--copper);border-radius:.75rem;padding:1.5rem 1.625rem}
.proj-area+.proj-area{margin-top:1rem}
.proj-area h4{font-family:var(--display);font-size:1.125rem;font-weight:700;margin-bottom:.5rem;color:var(--txt-on-light)}
.proj-area p{font-size:.9375rem;line-height:1.55;color:var(--txt-dim-light)}

/* data-verification / qualifying note */
.proj-note{background:var(--surface-alt);border-left:.1875rem solid var(--txt-dim-light);border-radius:.5rem;padding:1.25rem 1.5rem;margin-top:2rem;font-size:.9375rem;line-height:1.6;color:var(--txt-dim-light)}
.proj-note strong{color:var(--txt-on-light)}

/* sitewide QP strip — last block on project pages, before subscribe/footer */
.proj-section.proj-qp{padding:clamp(2rem,4vw,3rem) 0;background:var(--white)}
.proj-qp-note{
  background:var(--surface-alt);border:.0625rem solid var(--border);border-radius:.5rem;
  padding:1.25rem 1.5rem;font-size:.9375rem;line-height:1.6;color:var(--txt-dim-light);
}
.proj-qp-note strong{color:var(--txt-on-light)}

/* portfolio / district closing band */
.proj-portfolio{display:grid;grid-template-columns:1.5fr 1fr;gap:3rem;align-items:center}
.proj-portfolio .pp-actions{display:flex;flex-wrap:wrap;gap:.875rem;margin-top:.5rem}
@media(max-width:48rem){.proj-portfolio{grid-template-columns:1fr;gap:2rem}}

/* data tables (assay results, budgets) */
.proj-table-wrap{overflow-x:auto;margin-top:1.75rem;border:.0625rem solid var(--border);border-radius:.75rem;background:var(--white)}
.proj-table{width:100%;border-collapse:collapse;font-size:.9375rem;min-width:38rem}
.proj-table caption{caption-side:top;text-align:left;font-size:.8125rem;line-height:1.5;color:var(--txt-dim-light);padding:1rem 1.25rem;border-bottom:.0625rem solid var(--border)}
.proj-table thead th{font-family:var(--display);font-size:.6875rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--txt-dim-light);text-align:left;padding:.875rem 1.25rem;background:var(--surface-alt);border-bottom:.0625rem solid var(--border);white-space:nowrap}
.proj-table tbody td{padding:.8125rem 1.25rem;border-bottom:.0625rem solid var(--border);color:var(--txt-on-light);vertical-align:top}
.proj-table tbody tr:last-child td{border-bottom:0}
.proj-table tbody tr:hover{background:rgba(201,154,63,.05)}
.proj-table .prospect{font-weight:700;white-space:nowrap}
.proj-table .n{font-variant-numeric:tabular-nums;white-space:nowrap;text-align:right}
.proj-table thead .n{text-align:right}
.proj-table .total td{font-weight:800;background:var(--surface-alt);border-top:.125rem solid var(--gold)}

/* #region PROPERTY — FIELD GALLERY */
.proj-gallery-credit{font-size:.9375rem;color:var(--txt-dim-light);margin-bottom:2rem}

/* spotlight viewer: large stage + thumbnail rail */
.spotlight{display:flex;flex-direction:column;gap:1rem}
.spot-stage{position:relative;border-radius:1rem;overflow:hidden;background:var(--surface-alt);height:clamp(20rem,42vw,32rem);width:100%;min-width:0}
.spot-stage img{width:100%;height:100%;object-fit:contain;display:block;cursor:zoom-in;transition:opacity .35s ease}
.spot-expand{position:absolute;top:1rem;right:1rem;z-index:3;width:2.5rem;height:2.5rem;border:0;border-radius:50%;background:rgba(16,18,21,.55);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s ease}
.spot-expand:hover{background:rgba(16,18,21,.8)}
.spot-caption{position:absolute;left:0;right:0;bottom:0;z-index:2;display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;padding:2.5rem 1.25rem 1.25rem;background:linear-gradient(to top,rgba(16,18,21,.85),rgba(16,18,21,0));color:#fff;pointer-events:none}
.spot-cap-text{font-size:1.0625rem;font-weight:600;line-height:1.3}
.spot-cap-count{font-size:.8125rem;letter-spacing:.08em;color:rgba(255,255,255,.7);font-variant-numeric:tabular-nums;white-space:nowrap}
.spot-rail{display:grid;grid-template-columns:repeat(auto-fill,minmax(5.5rem,1fr));gap:.625rem}
.spot-thumb{position:relative;flex:none;border:0;padding:0;margin:0;cursor:pointer;border-radius:.5rem;overflow:hidden;background:none;line-height:0;opacity:.6;transition:opacity .2s ease,box-shadow .2s ease}
.spot-thumb img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.spot-thumb:hover{opacity:.9}
.spot-thumb.is-active{opacity:1;box-shadow:inset 0 0 0 .1875rem var(--gold)}
.spot-thumb:focus-visible{outline:.125rem solid var(--gold);outline-offset:.125rem}

/* lightbox */
.gal-lightbox{position:fixed;inset:0;z-index:240;display:flex;align-items:center;justify-content:center;padding:clamp(1rem,4vw,3rem);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}
.gal-lightbox.show{opacity:1;visibility:visible}
.gal-lightbox .under{position:absolute;inset:0;background:rgba(12,13,15,.92)}
.gal-lightbox .box{position:relative;z-index:2;max-width:min(72rem,100%);max-height:90vh;display:flex;flex-direction:column;align-items:center}
.gal-lightbox img{max-width:100%;max-height:80vh;object-fit:contain;border-radius:.5rem;box-shadow:0 1.5rem 3rem rgba(0,0,0,.5)}
.gal-lightbox .gal-cap{margin-top:1rem;color:#fff;font-size:.9375rem;text-align:center;max-width:48rem}
.gal-lightbox .gal-cap small{display:block;margin-top:.25rem;color:rgba(255,255,255,.6);font-size:.8125rem}
.gal-close{position:absolute;top:-.5rem;right:0;transform:translateY(-100%);width:2.75rem;height:2.75rem;border:0;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:1.5rem;line-height:1;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s ease}
.gal-close:hover{background:rgba(255,255,255,.25)}
.gal-nav{position:absolute;top:50%;transform:translateY(-50%);width:3rem;height:3rem;border:0;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:1.75rem;line-height:1;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s ease}
.gal-nav:hover{background:rgba(255,255,255,.25)}
.gal-prev{left:clamp(.5rem,2vw,1.5rem)}
.gal-next{right:clamp(.5rem,2vw,1.5rem)}
@media(max-width:48rem){
  .spot-rail{grid-template-columns:repeat(auto-fill,minmax(4.5rem,1fr))}
}
/* #endregion */
/* #endregion */

/* #region RESPONSIVE */
@media(max-width:68.75rem){
  .container{padding:0 2rem}
  .metals-head-cols{grid-template-columns:1fr;gap:1.75rem}
  .metals-voices{grid-template-columns:repeat(2,1fr)}
  .metals-row{grid-template-columns:repeat(2,1fr)}
  .m-lead{grid-column:1 / -1;grid-row:auto}
  .iocg-grid{grid-template-columns:1fr;gap:2.5rem}
  .iocg-grid .editorial,.iocg-figure{grid-column:auto;grid-row:auto}
  .district-head{grid-template-columns:1fr;gap:2.25rem}
  .projects-grid{grid-template-columns:1fr;max-width:40rem;margin:0 auto}
  .district-card{grid-template-columns:1fr}
  .district-card .map{min-height:22rem}
  .district-card-body{padding:2.5rem 1.75rem}
  .foot-grid{grid-template-columns:1fr 1fr;gap:2.75rem}
  .proof-grid{gap:1.75rem}
  .stat .num{font-size:clamp(2.5rem,5.5vw,4rem)}
}
@media(max-width:60rem){
  .utility .util-right{display:none}
  .utility .container{justify-content:center}
}
@media(max-width:45rem){
  body{font-size:1.0625rem}
  .container{padding:0 1.375rem}
  .tickers{font-size:.6875rem}
  .tickers span{padding:0 .5rem}
  .hero-inner{padding:5rem 0 2.5rem}
  .hero-media{background-position:center 18%}
  .hero-media::before{background:linear-gradient(0deg, var(--paper) 0%, rgba(246,247,249,0) 22%)}
  .hero-map{display:none}
  .metals-voices{grid-template-columns:1fr}
  .metals-row{grid-template-columns:1fr}
  .m-lead{grid-column:auto;grid-row:auto}
  .m-lead .m-lead-top{gap:1rem}
  .m-lead .tile{width:4.25rem;height:4.25rem}
  .map{height:28rem}
  .dm-note{max-width:13rem;margin:.75rem;font-size:.625rem}
  .dm-legend{margin:.75rem;padding:.75rem 1rem;font-size:.75rem;gap:.5rem}
  .foot-grid{grid-template-columns:1fr}
  .foot-sitemap{grid-template-columns:1fr 1fr}
  .proof-grid{grid-template-columns:1fr;gap:2.25rem}
  .adv-list li{flex-direction:column;gap:.25rem}
  .adv-list span{text-align:left}
  .team-grid,.pres-grid{grid-template-columns:1fr}
}
/* #endregion */




