/* #region RESET */

/* ============================================================
   JRX MEDIA — BASE RESET  v1.0
   ============================================================ */

*, *::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: 1400px;
  --gutter:    clamp(1rem, 5vw, 3rem);
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.875rem;
  --radius-full: 9999px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --duration:  200ms;
  --color-bg:       #f5f6f7;
  --color-text:     #1C1C1C;
  --color-muted:    #5A6878;
  --color-border:   #E2E4E6;
  --color-accent:   #BD954F;
  --color-accent-h: #A5813E;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable; /* reserve scrollbar space always — prevents layout shift when modals set overflow:hidden on body */
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-sm {
  width: 100%;
  max-width: 56.25rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  text-wrap: balance;
}

p, li, blockquote {
  max-width: 72ch;
  text-wrap: pretty;
}

a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  transition: color var(--duration) var(--ease);
}

a:hover { color: var(--color-accent-h); }

strong, b { font-weight: 600; }
em, i     { font-style: italic; }
small     { font-size: var(--text-sm); }

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}
img, video { height: auto; }
img        { font-style: italic; }
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: 2px solid var(--color-accent); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

ul, ol { padding-left: var(--space-xl); }
li + li { margin-top: var(--space-xs); }
.list-reset { list-style: none; padding-left: 0; }

@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: 1px; height: 1px; padding: 0;
  margin: -1px; 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; }
.section { padding-block: var(--space-3xl); }

/* #endregion */

/* #region VARIABLES */

:root {
    /* Brand palette */
    --gold:          #BD954F;
    --gold-dark:     #A5813E;
    --gold-light:    #D4AA72;
    --gold-xlight:   rgba(189, 149, 79, 0.1);
    --copper:        #B87333;
    --copper-dark:   #9E6226;

    /* Dark surfaces — topbar, hero overlays, footer */
    --navy:          #111317;
    --navy-mid:      #1A2530;
    --navy-deep:     #0D1219;
    --navy-darkest:  #080C10;
    --steel:         #4C6676;
    --steel-light:   #6A8A9A;

    /* Light surfaces — body */
    --bg:            #f5f6f7;
    --surface:       #ffffff;
    --surface-alt:   #f0f1f3;

    /* Text */
    --text-dark:     #111317;
    --text-mid:      #2d3748;
    --text-body:     #3A4A5A;
    --text-muted:    #5A6878;
    --text-faint:    #8A9AAA;

    /* Borders */
    --border:        #E2E4E6;
    --border-mid:    #CED2D5;

    /* Fonts */
    --sans:          'DM Sans', system-ui, sans-serif;
    --serif:         'Google Sans', 'DM Sans', system-ui, sans-serif;

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

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

/* Global type */
body * { font-family: var(--sans); }

body {
    background-color: var(--bg);
    color: var(--text-mid);
}

a {
    color: var(--gold);
    text-decoration: none;
}
a:hover { color: var(--gold-dark); }

/* #endregion */

/* #region PRELOADER */

/* Page content fade transition — driven by AJAX nav script */
#page-content {
    transition: opacity 0.25s ease;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--navy);
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

#preloader .preloader-logo {
    width: 9rem;
    height: auto;
    animation: preloader-pulse 1.4s ease-in-out infinite;
}

#preloader .preloader-bar {
    width: 6rem;
    height: 0.125rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

#preloader .preloader-fill {
    height: 100%;
    background: var(--gold);
    border-radius: var(--radius-full);
    animation: preloader-fill 1.2s ease-in-out infinite;
}

#preloader.preloader-done {
    opacity: 0;
    visibility: hidden;
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.97); }
    50%       { opacity: 1;   transform: scale(1); }
}

@keyframes preloader-fill {
    0%   { width: 0%; }
    50%  { width: 70%; }
    100% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    #preloader .preloader-logo { animation: none; opacity: 1; }
    #preloader .preloader-fill { animation: none; width: 100%; }
    #preloader.preloader-done  { transition: none; }
}

/* #endregion */

/* #region HEADER */

/* Topbar */
.topbar {
    background: var(--navy-mid);
    color: #6A8A9A;
    font-size: 0.6875rem;
    padding: 0.4375rem 0;
    font-family: var(--sans);
    position: relative;
    z-index: 300;
    box-shadow: inset 0 -0.1875rem 0.5rem rgba(0, 0, 0, 0.18);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar-left {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.ticker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.ticker span { color: #4A6A7A; }
.ticker span em { color: var(--gold); font-style: normal; font-weight: 600; }
.ticker-last { color: #4A6A7A; }
.ticker-last b { color: #D8DDE3; font-weight: 600; }

.divider-v {
    width: 0.0625rem;
    height: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.metals {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metals span { color: #4A6A7A; font-weight: 500; }
.metals span b { color: #C0CBD4; font-weight: 600; }

.topbar-right { display: flex; gap: 0.75rem; align-items: center; }

.social-top { display: flex; gap: 0.5rem; align-items: center; }
.social-top a {
    color: #3A5A6A;
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    transition: color var(--dur) var(--ease);
    padding: 0.25rem 0.375rem;
}
.social-top a:hover { color: var(--gold); }

/* #endregion */

/* #region NAV */

.nav-wrap {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 300;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav-wrap--scrolled {
    background: #f0f1f3;
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.08);
}

.nav-wrap.nav-open {
    background: var(--surface);
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.75rem;
    gap: 1.5rem;
}

.nav-inner .logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 0;
}

.nav-inner .logo img {
    height: 2.75rem;
    width: auto;
    display: block;
}

/* Main nav links */
#site-nav {
    display: flex;
    gap: 0.125rem;
    align-items: center;
    flex-grow: 1;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    white-space: nowrap;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

.nav-link:hover  { background: var(--surface-alt); color: var(--navy); }
.nav-link.active { color: var(--gold); font-weight: 600; }
.nav-link.active:hover { background: var(--gold-xlight); }

/* Dropdown */
.nav-dropdown { position: relative; }

/* Invisible bridge fills the gap between trigger and menu so hover
   state on .nav-dropdown stays active as the cursor crosses the space. */
.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 13rem;
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0.375rem 0;
    animation: dropdown-in 0.15s var(--ease);
}

@keyframes dropdown-in {
    from { opacity: 0; transform: translateY(-0.375rem); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-link {
    display: block;
    padding: 0.5625rem 1.125rem;
    font-size: 0.8125rem;
    color: var(--text-body);
    text-decoration: none;
    font-weight: 400;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav-dropdown-link:hover { background: var(--surface-alt); color: var(--navy); }

/* CTA button */
.nav-cta {
    flex-shrink: 0;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.625rem 1.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--sans);
    transition: background var(--dur) var(--ease);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-cta:hover { background: var(--gold-dark); color: #fff; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.3125rem;
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    transition: background var(--dur) var(--ease);
}

.nav-hamburger:hover { background: var(--surface-alt); }

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 0.125rem;
    background: var(--navy);
    border-radius: 1px;
    transition: all 0.25s var(--ease);
}

.nav-hamburger--open span:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

@media (max-width: 56.25rem) {
    .nav-hamburger { display: flex; }

    #site-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 2rem 2.5rem;
        z-index: 290;
        overflow-y: auto;
        gap: 0;
    }

    #site-nav.nav-open {
        display: flex;
        animation: mobile-nav-in 0.28s var(--ease) both;
    }

    @keyframes mobile-nav-in {
        from { opacity: 0; transform: translateY(-0.75rem); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .nav-link {
        font-size: 1.125rem;
        font-weight: 500;
        padding: 1rem 1.25rem;
        border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        width: 100%;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-link:hover  { background: rgba(255, 255, 255, 0.06); color: #fff; }
    .nav-link.active { color: var(--gold); font-weight: 600; }
    .nav-link.active:hover { background: rgba(255, 255, 255, 0.06); }

    .nav-dropdown { width: 100%; }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        display: block;
        padding: 0 0 0 1.25rem;
        background: rgba(0, 0, 0, 0.25);
        animation: none;
    }

    .nav-dropdown-link {
        color: rgba(255, 255, 255, 0.65);
        padding: 0.75rem 1.125rem;
        font-size: 0.9375rem;
    }

    .nav-dropdown-link:hover { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.9); }

    .nav-cta { display: none; }
    .topbar  { display: none; }
}

/* Lucide chevron in dropdowns */
[data-lucide] {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25rem;
}

/* #endregion */

/* #region FOOTER */

footer {
    background: #f0f2f4;
    border-top: 0.0625rem solid var(--gold);
    padding-top: 4.5rem;
    color: #4a5568;
    font-family: var(--sans);
}

.footer-inner { padding-bottom: 3.5rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrap { margin-bottom: 1.25rem; }
.footer-logo-img {
    max-width: 12.5rem;
    height: auto;
    display: block;
}

.footer-tagline {
    font-size: 0.8125rem;
    color: #6b7a8d;
    line-height: 1.85;
    max-width: 18.75rem;
    margin-bottom: 1.5rem;
}

/* Stock symbols block in footer */
.footer-ticker {
    margin-top: 1.5rem;
    padding: 1rem 1.125rem;
    background: rgba(0, 0, 0, 0.04);
    border: 0.0625rem solid rgba(0, 0, 0, 0.08);
    border-left: 0.1875rem solid rgba(189, 149, 79, 0.55);
    border-radius: var(--radius-md);
    max-width: 18.75rem;
}

.footer-ticker-label {
    font-size: 0.5625rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 0.625rem;
    opacity: 0.9;
}

.footer-ticker-row {
    margin-bottom: 0.375rem;
}
.footer-ticker-row:last-child { margin-bottom: 0; }

.ticker-sym { font-size: 0.6875rem; font-weight: 600; color: #3d4a5c; }

/* Social icons in footer */
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.footer-social a {
    width: 2.125rem;
    height: 2.125rem;
    background: rgba(0, 0, 0, 0.05);
    border: 0.0625rem solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a8d;
    font-size: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all var(--dur) var(--ease);
}
.footer-social a:hover {
    background: rgba(189, 149, 79, 0.1);
    border-color: rgba(189, 149, 79, 0.4);
    color: var(--gold-dark);
}

/* Subscribe CTA in footer */
.footer-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold-dark);
    border: 0.0625rem solid rgba(189, 149, 79, 0.5);
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    transition: all var(--dur) var(--ease);
    margin-top: 1.25rem;
}
.footer-subscribe-btn:hover {
    background: rgba(189, 149, 79, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}
.footer-subscribe-btn [data-lucide] {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* Footer nav columns */
.footer-col-title {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.125rem;
    padding-bottom: 0.625rem;
    border-bottom: 0.0625rem solid rgba(189, 149, 79, 0.25);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-size: 0.8125rem;
    color: #5a6878;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
    line-height: 1;
}
.footer-links a:hover { color: var(--gold-dark); }

/* Subfooter */
.subfooter {
    background: #e2e6ea;
    padding: 0.5rem 0;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
}

.subfooter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.subfooter-left {
    font-size: 0.6875rem;
    color: #8a95a3;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.subfooter-left a {
    color: #8a95a3;
    text-decoration: none;
    font-weight: 700;
    transition: color var(--dur) var(--ease);
}
.subfooter-left a:hover { color: var(--gold-dark); }

.subfooter-right {
    font-size: 0.6875rem;
    color: #8a95a3;
}

.subfooter-right a {
    color: #8a95a3;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}
.subfooter-right a:hover { color: var(--gold-dark); }

/* Footer responsive */
@media (max-width: 75rem) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
    .footer-ticker { max-width: 22rem; margin-top: 0; }
    .footer-subscribe-btn { margin-top: 0; align-self: flex-start; }
    .footer-social { margin-top: 0; }
}

@media (max-width: 48rem) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { flex-direction: column; gap: 0; }
    .footer-ticker { max-width: 100%; }
}

@media (max-width: 37.5rem) {
    .footer-grid { grid-template-columns: 1fr; }
    .subfooter .container { flex-direction: column; text-align: center; }
}

/* #endregion */

/* #region SUBPOP */

.subpop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(8, 12, 16, 0.8);
    backdrop-filter: blur(0.375rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.subpop.subpopshow {
    opacity: 1;
    visibility: visible;
}

/* Two-column card */
.subpop .subinner {
    display: flex;
    flex-direction: row;
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 54rem;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55), 0 0 0 0.0625rem rgba(255,255,255,0.06);
    transform: translateY(1.5rem) scale(0.97);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    position: relative;
}

.subpop .subinner.subshow {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close button — top-right corner of the whole card */
.subpop-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0.0625rem solid rgba(255,255,255,0.18);
    color: #fff;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.subpop-close:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255,255,255,0.35);
}
.subpop-close [data-lucide] { width: 1rem; height: 1rem; }

/* Left: image panel */
.subpop-image {
    flex: 0 0 42%;
    background: var(--navy-deep);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 28rem;
}

.subpop-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 12, 16, 0.55) 0%,
        rgba(8, 12, 16, 0.25) 40%,
        rgba(8, 12, 16, 0.72) 100%
    );
}

.subpop-image-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
}

/* Large logo — top of image panel */
.subpop-logo {
    display: block;
    max-width: 10rem;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

/* Label + company name — bottom of image panel */
.subpop-image-footer { margin-top: auto; }

.subpop-image-label {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.375rem;
}

.subpop-image-caption {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* Right: form panel */
.subpop-body {
    flex: 1;
    padding: 3rem 2.75rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.subpop-eyebrow {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.subpop-title {
    font-family: var(--serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 0.875rem;
    text-transform: none;
}

.subpop-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.subpop form { display: flex; flex-direction: column; gap: 0; }

.subpop-input-row {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 0.0625rem solid var(--border-mid);
    margin-bottom: 0.75rem;
    transition: border-color var(--dur) var(--ease);
}
.subpop-input-row:focus-within { border-color: var(--gold); }

.subpop-email {
    flex: 1;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    background: var(--surface-alt);
    border: none;
    border-right: 0.0625rem solid var(--border);
    color: var(--text-mid);
    font-family: var(--sans);
    outline: none;
}
.subpop-email:focus { background: #fff; }
.subpop-email::placeholder { color: var(--text-faint); }

.subpop-submit {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    transition: background var(--dur) var(--ease);
    white-space: nowrap;
}
.subpop-submit:hover { background: var(--gold-dark); }

.subpop-privacy {
    font-size: 0.6875rem;
    color: var(--text-faint);
    text-align: center;
}

.firstnameform { display: none !important; visibility: hidden !important; position: absolute !important; }

/* Responsive — stack vertically on mobile */
@media (max-width: 40rem) {
    .subpop .subinner { flex-direction: column; max-width: 26rem; }
    .subpop-image { flex: 0 0 auto; min-height: 14rem; }
    .subpop-image-content { padding: 1.5rem; }
    .subpop-logo { max-width: 7.5rem; }
    .subpop-body { padding: 2rem 1.75rem; }
    .subpop-title { font-size: 1.5rem; }
}

/* #endregion */

/* #region SUBRESPONSE */

.subresponse-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(11, 15, 18, 0.85);
    backdrop-filter: blur(0.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.subresponse-overlay.subresponse-show {
    opacity: 1;
    visibility: visible;
}

.subresponse-box {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 28rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
    transform: scale(0.95) translateY(1rem);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.subresponse-overlay.subresponse-show .subresponse-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.subresponse-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: var(--gold-xlight);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.subresponse-icon [data-lucide] { width: 1.75rem; height: 1.75rem; }

.subresponse-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: none;
}

.subresponse-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 1.75rem;
}

.subresponse-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--sans);
    transition: background var(--dur) var(--ease);
}
.subresponse-close-btn:hover { background: var(--gold-dark); }

/* #endregion */

/* #region PAGE HERO */

.page-hero {
    background: #f0f1f3;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(189,149,79,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-eyebrow {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    text-transform: none;
    line-height: 1.15;
}

.page-hero .page-hero-rule {
    width: 3rem;
    height: 0.125rem;
    background: var(--gold);
    margin-top: 1.25rem;
}

/* #region PAGE HERO — background image variants */

.page-hero--contact,
.page-hero--about,
.page-hero--investors {
    background: #f5f6f7;
    margin-top: -4.75rem;
    padding-top: calc(3.5rem + 4.75rem);
}

/* Gradient overlay — above image, below content */
.page-hero--contact::before,
.page-hero--about::before,
.page-hero--investors::before {
    background: linear-gradient(to bottom, transparent 50%, #f5f6f7 80%);
    z-index: 1;
}

/* Background image — grayscale, 15% opacity */
.page-hero--contact::after,
.page-hero--about::after,
.page-hero--investors::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.page-hero--contact::after    { background-image: url('images/bg-contact.jpg'); }
.page-hero--about::after      { background-image: url('images/bg-about.jpg'); }
.page-hero--investors::after  { background-image: url('images/bg-investors.jpg'); }

/* #endregion */

/* #region SECTION LABELS */

.section-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: none;
}

.section-title--light { color: #E4E8EC; }

.section-rule {
    width: 3rem;
    height: 0.125rem;
    background: var(--gold);
    margin-bottom: 1.75rem;
}

.section-rule--center { margin-inline: auto; }

.section-body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.section-body p { margin-bottom: 1rem; max-width: 66ch; }

/* Button system */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.875rem 1.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    transition: background var(--dur) var(--ease), transform 0.15s var(--ease);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-0.0625rem); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold);
    border: 0.0625rem solid rgba(189, 149, 79, 0.4);
    padding: 0.875rem 1.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    transition: all var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--gold-xlight); color: var(--gold); border-color: var(--gold); }

.btn-outline--light {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline--light:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }

/* #endregion */

/* #region SECTION — SUBSCRIBE STRIP */

.subscribe-strip {
    background: var(--navy-mid);
    border-top: 0.1875rem solid var(--gold);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Radial glow accent behind the action card */
.subscribe-strip-bg-accent {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse at right center, rgba(189, 149, 79, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Two-column layout */
.subscribe-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

/* Left: text content */
.subscribe-strip-content { max-width: 36rem; }

.subscribe-strip-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.subscribe-strip-rule {
    display: block;
    flex: 0 0 2rem;
    height: 0.0625rem;
    background: rgba(189, 149, 79, 0.45);
}

.subscribe-strip h2 {
    font-family: var(--serif);
    font-size: clamp(1.875rem, 3vw, 2.75rem);
    font-weight: 700;
    color: rgba(225, 235, 242, 0.95);
    line-height: 1.15;
    margin-bottom: 1.125rem;
    text-transform: none;
}

.subscribe-strip-body {
    font-size: 0.9375rem;
    color: rgba(180, 205, 220, 0.58);
    line-height: 1.8;
    margin: 0;
}

/* Right: action card */
.subscribe-strip-action {
    flex-shrink: 0;
}

.subscribe-strip-action-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 0.0625rem solid rgba(189, 149, 79, 0.22);
    border-radius: var(--radius-md);
    padding: 2.25rem 2.5rem;
    text-align: center;
    min-width: 18rem;
    position: relative;
}

.subscribe-strip-action-inner::before {
    content: '';
    position: absolute;
    inset: -0.0625rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(189, 149, 79, 0.18), transparent 60%);
    pointer-events: none;
}

.subscribe-strip-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    margin: 0 auto 1rem;
    display: block;
    opacity: 0.8;
}

.subscribe-strip-action-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(220, 232, 240, 0.75);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.subscribe-strip-note {
    font-size: 0.6875rem;
    color: rgba(180, 205, 220, 0.28);
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 56.25rem) {
    .subscribe-strip-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .subscribe-strip-content { max-width: 100%; }
    .subscribe-strip-bg-accent { display: none; }
    .subscribe-strip-action-inner { min-width: 0; }
}

/* #endregion */

/* #region CARDS — TEAM */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.team-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), transform 0.2s var(--ease);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-0.125rem); }

.team-card-portrait {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.team-card-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-body { padding: 1.5rem; }

.team-card-name {
    font-family: var(--serif);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
    text-transform: none;
}

.team-card-position {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.team-card-titles {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.team-card-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.team-bio-btn {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--dur) var(--ease);
    font-family: var(--sans);
}
.team-bio-btn:hover { color: var(--gold-dark); }

/* #endregion */

/* #region MODALS */

/* Team bio modal */
.team-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(11, 15, 18, 0.8);
    backdrop-filter: blur(0.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.team-modal-overlay.modal-open { opacity: 1; visibility: visible; }

.team-modal-box {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 42rem;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
    transform: scale(0.95) translateY(1rem);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.team-modal-overlay.modal-open .team-modal-box { transform: scale(1) translateY(0); opacity: 1; }

.team-modal-header {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 0.0625rem solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.team-modal-close {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: var(--surface-alt);
    border: 0.0625rem solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease);
    color: var(--text-muted);
}
.team-modal-close:hover { background: var(--border); }

.team-modal-name {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
    text-transform: none;
}

.team-modal-position {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.team-modal-titles {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.team-modal-body {
    padding: 1.75rem 2rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.85;
}
.team-modal-body p { margin-bottom: 1rem; max-width: 100%; }
.team-modal-body p:last-child { margin-bottom: 0; }

/* System message modal */
.sysmsg {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(11, 15, 18, 0.8);
    backdrop-filter: blur(0.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.sysmsg.sysmsg--open { opacity: 1; visibility: visible; }

.sysmsg-box {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 28rem;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.35);
}

.sysmsg-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: none;
}

.sysmsg-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 100%;
}

/* #endregion */

/* #region CARDS — NEWS */

.news-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), transform 0.2s var(--ease);
}
.news-card:hover { border-color: var(--gold); transform: translateY(-0.125rem); }

.news-card-accent {
    height: 0.25rem;
    background: var(--gold);
}

.news-card-body { padding: 1.625rem; }

.news-date {
    font-size: 0.625rem;
    color: var(--text-faint);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.news-title {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 0.875rem;
    text-transform: none;
}

.news-title a { color: inherit; text-decoration: none; }
.news-title a:hover { color: var(--gold); }

.news-read-link {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--dur) var(--ease);
}
.news-read-link:hover { color: var(--gold-dark); }

.news-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 0.0625rem solid var(--border-mid);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--dur) var(--ease);
    margin-left: auto;
}
.news-pdf-btn:hover { border-color: var(--gold); color: var(--gold); }
.news-pdf-btn.disabled { opacity: 0.3; pointer-events: none; }

/* News list (news.php page) */
.news-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.375rem 0;
    border-bottom: 0.0625rem solid var(--border);
}
.news-list-item:last-child { border-bottom: none; }

.news-list-date {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-faint);
    min-width: 6.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-list-title {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    line-height: 1.5;
    text-transform: uppercase;
    transition: color var(--dur) var(--ease);
}
.news-list-title:hover { color: var(--gold); }

.news-list-actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }

@media (max-width: 37.5rem) {
    .news-list-item { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
    .news-list-actions { flex-wrap: wrap; }
}

/* #endregion */

/* #region RELEASE BODY */

.release-wrap { padding: 3rem 0 5rem; }

.release-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 0.0625rem solid var(--border);
}

.release-date {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

.release-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-transform: none;
}

.release-body {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.875;
}
.release-body p { margin-bottom: 1rem; max-width: 72ch; }
.release-body h2, .release-body h3 { color: var(--navy); margin: 1.5rem 0 0.75rem; }

.release-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 2rem;
    transition: color var(--dur) var(--ease);
}
.release-back:hover { color: var(--gold); }

/* #endregion */

/* #region CARDS — PRESENTATIONS */

.pres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.pres-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), transform 0.2s var(--ease);
}
.pres-card:hover { border-color: var(--gold); transform: translateY(-0.125rem); }

.pres-thumb {
    aspect-ratio: 16 / 9;
    background: var(--surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pres-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pres-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    color: var(--text-faint);
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pres-body { padding: 1.375rem; }

.pres-date {
    font-size: 0.625rem;
    color: var(--text-faint);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pres-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.125rem;
    line-height: 1.4;
}

.pres-actions { display: flex; gap: 0.75rem; }

/* #endregion */

/* #region TABLE — CAPITAL STRUCTURE */

.cap-table-wrap {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.5rem;
}

.cap-table { width: 100%; }
.cap-table th {
    background: var(--surface-alt);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.875rem 1.25rem;
    border-bottom: 0.0625rem solid var(--border);
}
.cap-table td {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-mid);
    border-bottom: 0.0625rem solid var(--border);
}
.cap-table tr:last-child td { border-bottom: none; }
.cap-table .val-col { font-weight: 600; color: var(--navy); text-align: right; }

/* #endregion */

/* #region CAP BREAKDOWN CHART */

.cap-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.cap-layout--no-chart .cap-table-wrap {
    margin-top: 0;
}

.cap-layout .cap-table-wrap {
    flex: 1 1 auto;
    margin-top: 0;
}

.cap-chart-col {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cap-donut {
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cap-donut-hole {
    width: 8.75rem;
    height: 8.75rem;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
}

.cap-donut-label {
    display: block;
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.cap-donut-value {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-top: 0.25rem;
    word-break: break-all;
}

.cap-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    max-width: 13rem;
}

.cap-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-mid);
}

.cap-legend-swatch {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.cap-legend-swatch--issued   { background: #111317; }
.cap-legend-swatch--warrants { background: #BD954F; }
.cap-legend-swatch--options  { background: #B87333; }

.cap-legend-name { flex: 1; }

.cap-legend-pct {
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

@media (max-width: 48rem) {
    .cap-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 1.75rem;
    }
    .cap-chart-col { align-items: center; }
}

/* #endregion */

/* #region TABLE — O&W SCHEDULE */

.ow-table-wrap {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.5rem;
}

.ow-table { width: 100%; }
.ow-table th {
    background: var(--surface-alt);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.875rem 1.25rem;
    border-bottom: 0.0625rem solid var(--border);
}
.ow-table td {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-mid);
    border-bottom: 0.0625rem solid var(--border);
}
.ow-table tr:last-child td { border-bottom: none; }

/* #endregion */

/* #region TABLE — DRILL RESULTS */

.drill-table-wrap {
    overflow-x: auto;
    margin-top: 1.5rem;
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
}

.drill-table { width: 100%; min-width: 40rem; }
.drill-table th {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.875rem 1.25rem;
    white-space: nowrap;
}
.drill-table td {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    border-bottom: 0.0625rem solid var(--border);
}
.drill-table tr:hover td { background: var(--surface-alt); }
.drill-table tr.drill-table-row--alt td { background: var(--bg); }
.drill-table tr.drill-table-row--alt:hover td { background: var(--surface-alt); }

/* #endregion */

/* #region CONTACT */

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0 5rem;
}

.contact-info-panel { }

.contact-info-group { margin-bottom: 1.75rem; }

.contact-info-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-info-val {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.contact-info-val a { color: var(--text-mid); text-decoration: none; }
.contact-info-val a:hover { color: var(--gold); }

.contact-form-panel {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.25rem;
}

.contact-form-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-transform: none;
}

.contact-form .form-row {
    margin-bottom: 1.125rem;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    background: var(--surface-alt);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-mid);
    font-family: var(--sans);
    transition: border-color var(--dur) var(--ease);
    display: block;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-faint); }

.contact-form textarea { min-height: 9rem; resize: vertical; }

.contact-opt-in {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
}

.contact-opt-in input[type="checkbox"] { display: none; }

.contact-opt-in .custom-check {
    width: 1.25rem;
    height: 1.25rem;
    border: 0.125rem solid var(--border-mid);
    border-radius: 0.1875rem;
    background: var(--surface);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur) var(--ease);
}

.contact-opt-in input[type="checkbox"]:checked + .custom-check {
    background: var(--gold);
    border-color: var(--gold-dark);
}

.contact-opt-in input[type="checkbox"]:checked + .custom-check::after {
    content: '';
    display: block;
    width: 0.3125rem;
    height: 0.5625rem;
    border: solid #fff;
    border-width: 0 0.125rem 0.125rem 0;
    transform: rotate(45deg);
    margin-top: -0.125rem;
}

.contact-opt-in span { font-size: 0.875rem; color: var(--text-muted); }

@media (max-width: 56.25rem) {
    .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* #endregion */

/* #region SUBSCRIBE PAGE */

.subscribe-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.subscribe-page-box {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 36rem;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.subscribe-state-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gold-xlight);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: var(--gold);
}

.subscribe-state-icon [data-lucide] { width: 2rem; height: 2rem; }

.subscribe-state-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.875rem;
    text-transform: none;
}

.subscribe-state-body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 2rem;
}

/* Profile form */
.profile-form { text-align: left; }
.profile-form .form-row { margin-bottom: 1.125rem; }

.profile-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.profile-form input,
.profile-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    background: var(--surface-alt);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-mid);
    font-family: var(--sans);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.375rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    cursor: pointer;
}

/* Unsubscribe confirmation popup */
.unsub-confirm {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(11,15,18,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.unsub-confirm.unsub-show { opacity: 1; visibility: visible; }

.unsub-confirm-box {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 26rem;
    width: 100%;
    text-align: center;
}

/* #endregion */

/* #region PROJECT PAGES */

.proj-page { background: var(--bg); }

.proj-section {
    background: var(--surface);
    padding: 4rem 0;
}

.proj-section.proj-dark {
    background: var(--navy);
}

.proj-section.proj-alt {
    background: var(--surface-alt);
}

.proj-page-header {
    background: var(--navy);
    padding: 4rem 0;
    color: #fff;
}

.proj-page-header h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.proj-section-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.proj-section-label::after {
    content: '';
    flex: 1;
    height: 0.0625rem;
    background: rgba(189,149,79,0.3);
}

.proj-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.proj-two-col.align-top { align-items: start; }
.proj-two-col.img-left  { direction: rtl; }
.proj-two-col.img-left > * { direction: ltr; }

.proj-placeholder-img {
    background: var(--surface-alt);
    border: 0.0625rem dashed var(--border-mid);
    border-radius: var(--radius-md);
    min-height: 22.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.proj-timeline { margin-top: 2rem; }

.proj-timeline-item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
    position: relative;
}

.proj-timeline-item::before {
    content: '';
    position: absolute;
    left: 0.4375rem;
    top: 1.125rem;
    bottom: 0;
    width: 0.0625rem;
    background: var(--border);
}

.proj-timeline-item:last-child::before { display: none; }

.proj-timeline-dot {
    width: 0.9375rem;
    height: 0.9375rem;
    background: var(--gold);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.proj-intercepts { list-style: none; padding: 0; }
.proj-intercepts li {
    padding: 0.75rem 0;
    border-bottom: 0.0625rem solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-mid);
}

.proj-ceo-quote {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    border-left: 0.25rem solid var(--gold);
    padding: 1.5rem 1.75rem;
    background: var(--gold-xlight);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
}

.proj-ceo-quote__img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 0.125rem solid var(--gold);
}

.proj-ceo-quote__body {
    flex: 1;
}

.proj-ceo-quote blockquote {
    font-family: var(--serif);
    font-size: 1.125rem;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
}

.proj-ceo-quote cite {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-style: normal;
}

.proj-next-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.proj-next-step-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.375rem;
}

@media (max-width: 56.25rem) {
    .proj-two-col { grid-template-columns: 1fr; gap: 2rem; }
    .proj-next-steps { grid-template-columns: 1fr; }
}

/* ── Projects page hero modifier ── */
.page-hero--projects {
    background: var(--navy);
    padding: 5rem 0 4rem;
}

.page-hero--projects::before {
    background: radial-gradient(ellipse at 80% 50%, rgba(189,149,79,0.12) 0%, transparent 65%);
}

.page-hero--projects .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18,31,52,0.9) 0%, rgba(18,31,52,0.6) 100%);
    pointer-events: none;
}

.page-hero--projects .page-hero-content { position: relative; z-index: 1; }

.page-hero--projects .section-tag { color: var(--gold); }

.page-hero--projects h1 {
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: none;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.page-hero--projects p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    letter-spacing: 0.04em;
    max-width: 100%;
}

/* ── Projects index (overview list) ── */
.proj-index {
    padding: 4rem 0;
    background: var(--bg);
}

.proj-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 0.0625rem solid var(--border);
}

.proj-card:last-child { border-bottom: none; }

.proj-card--alt { direction: rtl; }
.proj-card--alt > * { direction: ltr; }

.proj-card-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.proj-card-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: none;
}

.proj-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-mid);
}

.proj-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.proj-card-meta [data-lucide] {
    width: 0.875rem;
    height: 0.875rem;
    stroke: var(--gold);
    flex-shrink: 0;
}

.proj-card-body p {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.proj-card-map .proj-placeholder-img { min-height: 18rem; }

/* ── Project detail — overview section ── */
.proj-detail-overview {
    padding: 4rem 0;
    background: var(--surface);
}

/* #region PROJECT HISTORY */
.proj-detail-history {
    padding: 4rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-top: 0.0625rem solid var(--border);
    border-bottom: 0.0625rem solid var(--border);
}

.proj-detail-history::before {
    content: '';
    position: absolute;
    inset: -15%;
    background: url('/images/bg-mine-tunnel.png') center center / cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transform: translateY(var(--parallax-y, 0px));
}

.proj-detail-history .container {
    position: relative;
    z-index: 1;
}

.proj-detail-history-body {
    max-width: 52rem;
}

.proj-detail-history-body p {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.proj-detail-history-body p:last-child { margin-bottom: 0; }
/* #endregion */

.proj-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.proj-detail-grid--center { align-items: center; }

.proj-detail-body p {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 100%;
}

.proj-detail-body p:last-child { margin-bottom: 0; }

.proj-detail-map .proj-placeholder-img { min-height: 22.5rem; }

.proj-detail-map-img,
.proj-prospect-map-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    border: 0.0625rem solid var(--border);
}

.proj-detail-img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 0.0625rem solid var(--border);
    display: block;
}

/* #region PROJECT ADJACENT ACTIVITY */
.proj-detail-adjacent {
    padding: 4rem 0;
    background: var(--surface);
}

.proj-detail-adjacent--alt {
    background: var(--bg);
}

.proj-detail-adjacent .drill-table-wrap {
    margin-top: 2.5rem;
}

.proj-assay-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.proj-assay-list li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
    border-bottom: 0.0625rem solid var(--border);
}

.proj-assay-list li:first-child { border-top: 0.0625rem solid var(--border); }

.proj-adjacent-update {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
    background: var(--bg);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.proj-adjacent-update-body p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-top: 1rem;
}

.proj-adjacent-update .section-tag {
    display: block;
}

.proj-adjacent-update .proj-detail-img {
    border-radius: var(--radius-md);
    max-height: 14rem;
    object-fit: cover;
}
/* #endregion */

/* ── Project detail — highlights section ── */
.proj-detail-highlights {
    padding: 4rem 0;
    background: var(--bg);
}

.proj-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.proj-highlight-card {
    display: flex;
    gap: 1.25rem;
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.proj-highlight-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--gold-xlight);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proj-highlight-icon [data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--gold);
}

.proj-highlight-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.proj-highlight-card p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 100%;
}

/* ── Project detail — stats band ── */
.proj-detail-stats {
    background: var(--navy);
    padding: 3.5rem 0;
}

.proj-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.proj-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 0.0625rem solid rgba(255,255,255,0.1);
}

.proj-stat:last-child { border-right: none; }

.proj-stat-value {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.proj-stat-label {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.proj-stats-disclaimer {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    max-width: 100%;
    text-align: center;
}

.proj-stats-disclaimer--on-light {
    color: var(--text-muted);
    text-align: left;
    margin-top: 1.5rem;
}

/* ── Back link ── */
.proj-back-wrap {
    padding: 2rem 0;
    background: var(--surface);
    border-top: 0.0625rem solid var(--border);
}

.proj-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: gap 0.2s var(--ease);
}

.proj-back-link:hover { gap: 0.75rem; color: var(--gold-dark); }

.proj-back-link [data-lucide] {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    transition: transform 0.2s var(--ease);
}

.proj-back-link:hover [data-lucide] { transform: translateX(-0.25rem); }

/* ── Responsive ── */
@media (max-width: 62rem) {
    .proj-card,
    .proj-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .proj-card--alt { direction: ltr; }
    .proj-highlights-grid { grid-template-columns: 1fr; }
    .proj-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .proj-stat { border-right: none; border-bottom: 0.0625rem solid rgba(255,255,255,0.1); }
    .proj-stat:last-child { border-bottom: none; }
    .proj-adjacent-update { grid-template-columns: 1fr; }
}

@media (max-width: 37.5rem) {
    .proj-stats-grid { grid-template-columns: 1fr 1fr; }
    .proj-highlight-card { flex-direction: column; gap: 1rem; }
}

/* #endregion */

/* #region PAGE: HOME */

/* ── Projects list (About section) ── */
.home-proj-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-proj-list-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0 0 0.75rem;
}

.home-proj-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
    cursor: pointer;
}
.home-proj-item:hover {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.home-proj-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.home-proj-info { flex: 1; min-width: 0; }

.home-proj-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy);
    line-height: 1.3;
}

.home-proj-loc {
    font-size: 0.6875rem;
    color: var(--text-faint);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.1875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-proj-loc [data-lucide] {
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 0;
}

.home-proj-link {
    flex-shrink: 0;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    transition: color var(--dur) var(--ease);
}
.home-proj-link:hover { color: var(--gold-dark); }
.home-proj-link [data-lucide] { width: 0.625rem; height: 0.625rem; margin-left: 0; }

/* ── Rottenstone Spotlight ── */
.home-spotlight { background: var(--surface); }

.spotlight-hd {
    background: var(--navy);
    padding: 4rem 0 3rem;
}

.spotlight-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.spotlight-label::after {
    content: '';
    flex: 1;
    height: 0.0625rem;
    background: rgba(189, 149, 79, 0.25);
}

.spotlight-overview {
    background: var(--surface);
    padding: 4rem 0;
}
.spotlight-overview .section-tag { display: block; margin-bottom: 0.75rem; }
.spotlight-overview .section-rule { margin-bottom: 2.5rem; }
.spotlight-overview > .container > .spotlight-label { margin-top: 0; }

.spotlight-grid {
    display: grid;
    grid-template-columns: 58fr 42fr;
    gap: 4rem;
    align-items: start;
}

.spotlight-body {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.875;
}
.spotlight-body p { margin-bottom: 1.125rem; max-width: 100%; }
.spotlight-body p:last-child { margin-bottom: 0; }

.spotlight-callout {
    font-weight: 600;
    color: var(--navy) !important;
    border-left: 0.25rem solid var(--gold);
    padding-left: 1rem;
    margin-top: 1.5rem !important;
}

.spotlight-map-wrap { }

.spotlight-devs {
    background: var(--surface-alt);
    padding: 4rem 0;
}

.spotlight-devs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
}

.spotlight-dev-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.spotlight-dev-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--gold-xlight);
    border: 0.0625rem solid rgba(189, 149, 79, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.spotlight-dev-icon [data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0;
}

.spotlight-dev-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.spotlight-dev-body {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 100%;
    margin: 0;
}

/* ── Spotlight — history sub-section ── */
.spotlight-history {
    background: var(--surface-alt);
    padding: 3rem 0;
    border-top: 0.0625rem solid var(--border);
}

.spotlight-history p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.875;
    max-width: 52rem;
    margin-bottom: 1.125rem;
}

.spotlight-history p:last-child { margin-bottom: 0; }

/* ── Spotlight — adjacent property sub-section ── */
.spotlight-adjacent {
    background: var(--surface);
    padding: 3.5rem 0;
    border-top: 0.0625rem solid var(--border);
}

.spotlight-adjacent-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.spotlight-adjacent-assays {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
    background: var(--bg);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.spotlight-adjacent-photo {
    border-radius: var(--radius-md);
    max-height: 14rem;
    width: 100%;
    object-fit: cover;
}

.spotlight-adjacent-assays-body .section-tag { display: block; margin-bottom: 0.25rem; }

.spotlight-adjacent-assays-body p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-top: 1rem;
}

.spotlight-adjacent .proj-stats-disclaimer {
    margin-top: 2rem;
}

/* Spotlight responsive */
@media (max-width: 68.75rem) {
    .spotlight-grid { gap: 2.5rem; }
    .spotlight-adjacent-assays { grid-template-columns: 1fr; }
    .spotlight-adjacent-photo { max-height: 18rem; }
}
@media (max-width: 56.25rem) {
    .spotlight-grid { grid-template-columns: 1fr; gap: 2rem; }
    .spotlight-devs-grid { grid-template-columns: 1fr; }
    .spotlight-hd { padding: 3rem 0 2.5rem; }
    .spotlight-overview, .spotlight-devs { padding: 3rem 0; }
    .spotlight-history, .spotlight-adjacent { padding: 2.5rem 0; }
    .spotlight-adjacent-assays { grid-template-columns: 1fr; padding: 1.25rem; }
}

/* Hero */
.home-hero {
    background: #f0f1f3;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding-bottom: 5rem;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/home/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(189,149,79,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.home-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 0.0625rem solid rgba(189,149,79,0.18);
    pointer-events: none;
}
.home-hero-ring-1 { width: 40rem; height: 40rem; right: -6rem; top: -8rem; opacity: 0.4; }
.home-hero-ring-2 { width: 28rem; height: 28rem; right: 3rem; top: 0; border-color: rgba(189,149,79,0.1); opacity: 0.4; }

.home-hero-main {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 6rem 0 5rem;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: stretch;
    min-height: 60vh;
}

.home-hero-content {
    position: relative;
    z-index: 3;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-hero-img-col {
    position: relative;
    z-index: 1;
    margin-left: -8rem;
    padding: 1.25rem;
    display: flex;
    align-self: stretch;
}

.home-hero-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: block;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.18), 0 0.5rem 1.5rem rgba(189,149,79,0.12);
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(189,149,79,0.12);
    border: 0.0625rem solid rgba(189,149,79,0.25);
    color: var(--gold);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
}

.home-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.06;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: none;
}

.home-hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.home-hero-sub {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 34rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.home-hero-sub p {
    margin: 0;
    max-width: 100%;
}
.home-hero-sub p + p { margin-top: 0.75rem; }

.home-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-cta {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--text-faint);
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color var(--dur) var(--ease);
}
.hero-scroll-cta:hover { color: var(--gold); }

/* Two stacked chevrons — individually animated */
.hero-scroll-arrow {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    display: block;
    animation: scroll-chase 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* Pull second arrow up tight against the first */
.hero-scroll-arrow:last-of-type {
    margin-top: -0.5rem;
    margin-bottom: 0.375rem;
    animation-delay: 0s;
}

/* Top arrow fires 0.3s after bottom */
.hero-scroll-arrow:first-child { animation-delay: 0.3s; }

@keyframes scroll-chase {
    0%   { opacity: 0;   transform: translateY(-0.375rem); }
    20%  { opacity: 1;   transform: translateY(0);         }
    55%  { opacity: 1;   transform: translateY(0);         }
    75%  { opacity: 0;   transform: translateY(0.375rem);  }
    100% { opacity: 0;   transform: translateY(-0.375rem); }
}

@keyframes scroll-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(0.375rem); }
}

/* About section */
.home-about {
    background: transparent;
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    z-index: 1;
    margin-top: -3rem;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.home-about-body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.9;
}
.home-about-body p { margin-bottom: 1rem; max-width: 100%; }

.home-about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.home-about-pill {
    background: var(--surface-alt);
    border: 0.0625rem solid var(--border);
    color: var(--text-mid);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.4375rem 1rem;
    border-radius: var(--radius-sm);
}

.home-about-visual {
    background: var(--surface-alt);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-lg);
    min-height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-faint);
    position: relative;
    overflow: hidden;
}

.home-about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about-visual-placeholder {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-faint);
    text-align: center;
    padding: 2rem;
}

/* Interactive project map — height driven by grid row (matches left column) */
.home-about-map {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.0625rem solid var(--border);
    position: relative;
    align-self: stretch;
    min-height: 20rem; /* floor for very short content */
}

/* Map pin — dot + always-visible label */
.proj-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    cursor: pointer;
    transform: translateX(-50%); /* center the pin horizontally on the anchor point */
}

.proj-map-pin-dot {
    width: 0.625rem;
    height: 0.625rem;
    background: var(--gold);
    border-radius: 50%;
    border: 0.125rem solid #fff;
    box-shadow: 0 0.0625rem 0.375rem rgba(0,0,0,0.3);
    display: block;
    flex-shrink: 0;
    transition: transform 0.15s ease, background 0.15s ease;
}

.proj-map-pin-label {
    background: #fff;
    color: var(--navy);
    font-size: 0.625rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.0625rem 0.375rem rgba(0,0,0,0.15);
    display: block;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background 0.15s ease, color 0.15s ease;
}

.proj-map-pin:hover .proj-map-pin-dot {
    background: var(--gold-dark);
    transform: scale(1.25);
}

.proj-map-pin:hover .proj-map-pin-label {
    background: var(--gold);
    color: #fff;
}

.proj-map-marker span {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    background: var(--gold);
    border: 0.1875rem solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 0.125rem var(--gold), 0 0.125rem 0.5rem rgba(0,0,0,0.25);
}

/* Map popup */
.proj-map-popup {
    font-family: var(--sans);
    font-size: 0.8125rem;
    line-height: 1.4;
    min-width: 10rem;
}

.proj-map-popup strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.proj-map-popup a {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.proj-map-popup a:hover { color: var(--gold-dark); }

/* Override Leaflet popup chrome to match site style */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md) !important;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15) !important;
    border: 0.0625rem solid var(--border) !important;
    padding: 0 !important;
}
.leaflet-popup-content {
    margin: 0.875rem 1.125rem !important;
}
.leaflet-popup-tip-container { display: none; }

/* Projects section */
.home-projects {
    background: var(--bg);
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.home-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.project-card {
    background: var(--surface);
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), transform 0.2s var(--ease);
    display: flex;
    flex-direction: column;
}
.project-card:hover { border-color: var(--gold); transform: translateY(-0.125rem); }

.project-card-image {
    height: 14rem;
    background: var(--surface-alt);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    position: relative;
}

.project-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3125rem 0.75rem;
    border-radius: var(--radius-full);
}

.project-card-body { padding: 1.625rem; flex: 1; display: flex; flex-direction: column; }

.project-card-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.project-card-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.375rem;
    text-transform: none;
}

.project-card-loc {
    font-size: 0.6875rem;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid var(--border);
}

.project-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
    max-width: 100%;
}

/* News section */
.home-news {
    background: var(--surface-alt);
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.home-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.news-see-all {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--dur) var(--ease);
}
.news-see-all:hover { color: var(--gold-dark); }

/* No news placeholder */
.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--text-faint);
    font-size: 0.875rem;
}

/* Home responsive */
@media (max-width: 68.75rem) {
    .home-about-grid { gap: 3rem; }
    .home-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 56.25rem) {
    .home-hero { min-height: 80vh; clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); }
    .home-hero-grid { grid-template-columns: 1fr; }
    .home-hero-content { padding-right: 0; }
    .home-hero-img-col { order: -1; margin-left: 0; margin-top: 0; max-width: 100%; margin-inline: 0; padding: 0; }
    .home-hero-img { max-height: 55vw; margin-bottom: 2rem; }
    .home-about { margin-top: -1.5rem; }
    .home-about-grid { grid-template-columns: 1fr; }
    .home-projects-grid { grid-template-columns: 1fr; }
    .home-news-grid { grid-template-columns: 1fr; }
    .home-about { padding: 3.5rem 0; }
    .home-projects, .home-news { padding: 3rem 0; }
}

@media (max-width: 37.5rem) {
    .home-hero h1 { font-size: 2rem; }
    .home-hero-main { padding: 4rem 0 4rem; }
    .hero-scroll-cta { display: none; }
    .home-hero-img { max-height: 65vw; }
}

/* #endregion */

/* #region PAGE: MANAGEMENT */

.management-wrap { padding: 3rem 0 5rem; }
.management-intro { max-width: 48rem; margin-bottom: 3rem; }

/* #endregion */

/* #region PAGE: ADVISORS */

.advisors-wrap { padding: 3rem 0 5rem; }
.advisors-intro { max-width: 48rem; margin-bottom: 3rem; }

/* #endregion */

/* #region PAGE: STOCK */

.stock-wrap { padding: 3rem 0 5rem; }

/* Section spacing */
.stock-market-section,
.stock-cap-section,
.stock-ow-section {
    margin-bottom: 3.5rem;
}

.stock-asof {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-bottom: 1.25rem;
}

.stock-ow-title {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: none;
    margin-bottom: 0.75rem;
}

/* Cards above, chart below */
.stock-ticker-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* TradingView chart */
.stock-chart-wrap { }

.tradingview-widget-container {
    border: 0.0625rem solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Symbol selector cards */
.stock-symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 1.25rem;
}

.stock-symbol-card {
    /* Button reset */
    appearance: none;
    -webkit-appearance: none;
    background: var(--surface);
    font-family: inherit;
    outline: none;
    /* Card styles */
    display: block;
    width: 100%;
    border: 0.0625rem solid var(--border);
    border-top: 0.25rem solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.stock-symbol-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.07);
    transform: translateY(-0.125rem);
}

.stock-symbol-card--active {
    border-top-color: var(--gold);
    box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.1);
}

.stock-symbol-card--active .stock-symbol-ticker {
    color: var(--gold);
}

.stock-symbol-exchange {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.375rem;
}

.stock-symbol-ticker {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin: 0;
    transition: color 0.2s;
}

/* #endregion */

/* #region PAGE: NEWS */

.news-page-wrap { padding: 3rem 0 5rem; }

.news-year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.news-year-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 0.0625rem solid var(--border);
    background: transparent;
    color: var(--text-faint);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
    letter-spacing: 0.03em;
}

.news-year-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.news-year-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* #endregion */

/* #region PAGE: PRESENTATIONS */

.presentations-wrap { padding: 3rem 0 5rem; }

/* #endregion */

/* #region PAGE: CONTACT */

/* Uses .contact-wrap shared styles from CONTACT region */

/* #endregion */

/* #region PAGE: SUBSCRIBE */

/* Uses .subscribe-page shared styles from SUBSCRIBE PAGE region */

/* #endregion */

/* #region PAGE: DISCLAIMERS */

.disclaimers-wrap {
    padding: 3rem 0 5rem;
}

.disclaimers-body {
    max-width: 56rem;
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.875;
}

.disclaimers-body h2 {
    font-family: var(--serif);
    font-size: 1.375rem;
    color: var(--navy);
    font-weight: 700;
    margin: 2.5rem 0 0.875rem;
    text-transform: none;
}

.disclaimers-body p { margin-bottom: 1rem; max-width: 72ch; }

/* #endregion */

/* #region SCROLLYTELLING */

[data-reveal] {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="right"] {
    transform: translateX(2rem);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* #endregion */
