/* ======================================================================
   WALL STREET HILL HOLDING COMPANY
   Old-money private holding company — leather, antique gold, real photography
   Palette: Vanta Black #0B0B0D · Charcoal #1A1A1D · Antique Gold #B08D4C · Deep Bronze #5A4527
   ====================================================================== */

:root {
  --vanta:        #0B0B0D;
  --charcoal:     #1A1A1D;
  --leather:      #110d0a;
  --leather-2:    #15110b;

  --gold:         #B08D4C;
  --gold-bright:  #d7b76f;
  --gold-soft:    #c9a85e;
  --gold-deep:    #8a6a30;
  --bronze:       #5A4527;
  --bronze-dark:  #3a2812;
  --oxblood:      #331514;
  --steel:        #9b9a92;

  --ink:          #efe2c1;
  --ink-2:        #d8c7a0;
  --ink-dim:      #b59f70;
  --ink-mute:     #6a5837;

  --serif-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --serif-body:    'Cormorant Garamond', Georgia, serif;
  --sans:          'Montserrat', system-ui, sans-serif;

  --maxw:  1480px;
  --pad-x: clamp(20px, 4vw, 56px);

  --hairline:        1px solid rgba(176, 141, 76, 0.28);
  --hairline-strong: 1px solid rgba(176, 141, 76, 0.55);

  --shadow-deep:      0 30px 60px rgba(0,0,0,0.65), 0 8px 18px rgba(0,0,0,0.55);
  --shadow-emboss-up: inset 0 1px 0 rgba(255,243,207,0.10), inset 0 -1px 0 rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  min-height: 100%;
  background-color: #050403;
  scroll-behavior: smooth;
}
body,
#__next,
#root {
  min-height: 100%;
  background-color: #050403;
  color: #f5efe3;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(176, 141, 76, 0.10), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(70, 76, 70, 0.14), transparent 34%),
    linear-gradient(180deg, #070605 0%, #11100d 42%, #090807 100%);
  background-color: #050403;
  background-attachment: fixed;
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.28;
}

body::after {
  z-index: 3;
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0,0,0,0.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), transparent 24%, rgba(0,0,0,0.34));
  mix-blend-mode: multiply;
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: #fff3cf; }
img { display: block; max-width: 100%; }

/* Leather grain noise overlay */
.leather-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  background-image: url("assets/images/textures/dark-leather-texture-live.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
}
.leather-grain svg { display: none; }

.site-header, main, .site-footer { position: relative; z-index: 4; }

/* ============================================================
   SHARED — section kicker (small caps label) + title
   ============================================================ */
.section-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.section-kicker.center { text-align: center; }

.section-title {
  text-align: center;
  font-family: var(--serif-display);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0;
  background: linear-gradient(180deg, #f6e3a8, #b08d4c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   OFFICIAL LOGO (header, hero, footer)
   ============================================================ */
.wsh-logo {
  height: auto;
  object-fit: contain;
  display: block;
}
.wsh-header-logo {
  width: 90px;
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 12px rgba(176,141,76,0.16));
  transition: transform 400ms ease, filter 400ms ease;
}
.brand:hover .wsh-header-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 14px rgba(176,141,76,0.20));
}
.wsh-footer-logo {
  width: clamp(98px, 8vw, 128px);
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 12px rgba(176,141,76,0.16));
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 92px;
  background:
    linear-gradient(180deg, rgba(16,12,8,0.94), rgba(5,5,4,0.92));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(176, 141, 76, 0.22);
  box-shadow:
    0 18px 30px rgba(0,0,0,0.45),
    inset 0 -1px 0 rgba(255,243,207,0.035);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.header-brand-copy {
  display: grid;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(176,141,76,0.28);
  white-space: nowrap;
}
.header-brand-copy strong {
  color: rgba(236,217,174,0.90);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
}
.header-brand-copy span {
  color: rgba(220,205,167,0.56);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
}
.primary-nav a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(220, 205, 167, 0.76);
  padding: 10px 2px;
  border-bottom: 1px solid transparent;
  transition: all 280ms ease;
}
.primary-nav a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 20px var(--pad-x) 24px;
}
.hero-panel {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  padding: 40px 46px;
  border: 1px solid rgba(176, 141, 76, 0.34);
  background:
    radial-gradient(circle at 72% 18%, rgba(154, 127, 73, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(28, 21, 13, 0.92), rgba(7, 7, 6, 0.96) 64%),
    linear-gradient(90deg, rgba(51,21,20,0.18), transparent 44%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 170, 0.028),
    inset 0 0 90px rgba(0,0,0,0.42),
    0 42px 120px rgba(0, 0, 0, 0.68);
}
.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: rgba(176, 141, 76, 0.68);
  border-style: solid;
  pointer-events: none;
}
.hero-panel::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.hero-panel::after  { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }

.filigree {
  position: absolute;
  width: 58px;
  height: 58px;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.fg-tl { top: 22px;  left: 22px; }
.fg-tr { top: 22px;  right: 22px; transform: scaleX(-1); }
.fg-bl { bottom: 22px; left: 22px; transform: scaleY(-1); }
.fg-br { bottom: 22px; right: 22px; transform: scale(-1,-1); }

.hero-topline {
  display: none;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 28px;
  padding: 0 38px 16px;
  border-bottom: 1px solid rgba(176,141,76,0.18);
  color: rgba(216,199,160,0.48);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.hero-title {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin: 18px 0 22px;
  text-shadow:
    0 2px 0 rgba(255, 236, 178, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.65);
}
.hero-title span {
  display: block;
  background: linear-gradient(180deg, #f6e3a8 0%, #d7b76f 38%, #b08d4c 70%, #6b521f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subkicker {
  margin: -6px 0 16px;
  color: rgba(216,199,160,0.68);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-lede {
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.58;
  color: var(--ink-dim);
  margin: 0 0 16px;
  max-width: 56ch;
}

.hero-maxim {
  max-width: 60ch;
  margin: 0 0 24px;
  color: rgba(216,199,160,0.76);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 0 0 20px;
  border-top: 1px solid rgba(176,141,76,0.24);
  border-bottom: 1px solid rgba(176,141,76,0.20);
  background:
    linear-gradient(180deg, rgba(176,141,76,0.035), rgba(0,0,0,0.12));
}
.hero-ledger div {
  padding: 10px 14px 9px;
  border-right: 1px solid rgba(176,141,76,0.18);
}
.hero-ledger div:last-child { border-right: none; }
.hero-ledger span {
  display: block;
  margin-bottom: 5px;
  color: rgba(155,154,146,0.74);
  font-family: var(--serif-body);
  font-size: 15px;
  font-style: italic;
}
.hero-ledger strong {
  display: block;
  color: rgba(239,226,193,0.88);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  padding: 16px 30px;
  border: 1px solid var(--gold);
  transition: all 280ms ease;
  cursor: pointer;
}
.btn-gold {
  color: #1a1208;
  background: linear-gradient(180deg, #f4d894 0%, #d8b86c 25%, #b08d4c 55%, #7a5e30 100%);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,243,207,0.7),
    inset 0 -1px 0 rgba(58,40,18,0.6);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #fde6a8 0%, #ecc77a 25%, #c8a35c 55%, #8a6c38 100%);
  color: #0a0805;
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(32, 24, 13, 0.72), rgba(10, 9, 7, 0.86));
  box-shadow: var(--shadow-emboss-up);
}
.btn-ghost:hover {
  background: linear-gradient(180deg, rgba(176,141,76,0.16), rgba(32, 24, 13, 0.72));
  color: #fff5d0;
}

/* ============================================================
   IMAGE FRAMES — used by hero photo + holding cards
   ============================================================ */
.image-frame {
  position: relative;
  overflow: hidden;
  background: #0a0907;
  border: 1px solid rgba(176, 141, 76, 0.32);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) sepia(18%) brightness(0.72) contrast(1.08);
  transform: scale(1.02);
  transition: transform 1200ms ease, filter 1200ms ease;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.34)),
    radial-gradient(circle at center, transparent 32%, rgba(0,0,0,0.42));
  pointer-events: none;
}
.image-frame:hover img {
  transform: scale(1.06);
  filter: grayscale(15%) sepia(12%) brightness(0.80) contrast(1.10);
}

.hero-vault {
  position: relative;
  min-height: 470px;
  padding: 22px 22px 76px;
  border: 1px solid rgba(176,141,76,0.24);
  background:
    linear-gradient(135deg, rgba(255,232,170,0.08), transparent 16%),
    linear-gradient(180deg, rgba(9,8,6,0.78), rgba(14,10,7,0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.025),
    0 34px 70px rgba(0,0,0,0.56);
}
.hero-vault::before,
.hero-vault::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero-vault::before {
  inset: 10px;
  border: 1px solid rgba(176,141,76,0.13);
}
.hero-vault::after {
  inset: 0;
  background: linear-gradient(125deg, rgba(255,232,170,0.10), transparent 28%, rgba(155,154,146,0.07) 56%, transparent 70%);
  mix-blend-mode: screen;
}

.hero-photo {
  height: 340px;
  box-shadow: var(--shadow-deep);
}

.seal-plaque {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  width: min(330px, calc(100% - 44px));
  transform: translateX(-50%);
  padding: 14px 16px 8px;
  border: 0;
  background:
    radial-gradient(ellipse at center, rgba(176,141,76,0.18), transparent 60%);
  box-shadow: none;
}
.wsh-hero-logo {
  width: 172px;
  margin: 0 auto 2px;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,0.72))
    drop-shadow(0 0 18px rgba(176,141,76,0.24));
}
.seal-plaque p {
  margin: 0;
  color: rgba(216,199,160,0.58);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}
.hero-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(216,199,160,0.38);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  background:
    linear-gradient(180deg, rgba(176,141,76,0.032), rgba(176,141,76,0)),
    linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0));
  margin: 44px auto 0;
  max-width: var(--maxw);
  box-shadow: var(--shadow-emboss-up);
}

/* ============================================================
   SIGNATURE BAND
   ============================================================ */
.signature-band {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--pad-x);
}
.signature-inner {
  position: relative;
  padding: 50px 58px;
  border-top: 1px solid rgba(176,141,76,0.24);
  border-bottom: 1px solid rgba(176,141,76,0.24);
  background:
    linear-gradient(90deg, rgba(51,21,20,0.30), transparent 22%, transparent 78%, rgba(70,76,70,0.16)),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.18));
  box-shadow:
    inset 0 1px 0 rgba(255,243,207,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.42);
}
.signature-inner::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(176,141,76,0.12);
  pointer-events: none;
}
.signature-inner blockquote {
  max-width: 980px;
  margin: 0;
  color: rgba(239,226,193,0.88);
  font-family: var(--serif-body);
  font-size: 32px;
  font-style: italic;
  line-height: 1.35;
}
.signature-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
}
.signature-marks span {
  color: rgba(155,154,146,0.72);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 40px clamp(20px, 4vw, 50px);
}
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(176,141,76,0.22);
}
.pillar:last-child { border-right: none; }
.pillar-icon {
  width: 58px; height: 58px;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55));
}
.pillar h3 {
  font-family: var(--serif-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 8px;
  background: linear-gradient(180deg, #f6e3a8, #b08d4c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar p {
  font-family: var(--serif-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0;
  font-style: italic;
}

/* ============================================================
   MANDATE
   ============================================================ */
.mandate {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 0 var(--pad-x);
  text-align: center;
}
.mandate-head { margin-bottom: 36px; }
.mandate-lede {
  font-family: var(--serif-body);
  font-size: 20px;
  line-height: 1.75;
  font-style: italic;
  color: var(--ink-dim);
  max-width: 72ch;
  margin: 8px auto 0;
}
.mandate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.mandate-card {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid rgba(176,141,76,0.22);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(176,141,76,0.10), transparent 60%),
    linear-gradient(180deg, #14110c, #0a0807);
  box-shadow: var(--shadow-emboss-up), 0 12px 28px rgba(0,0,0,0.55);
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}
.mandate-card.middle {
  border-color: rgba(176,141,76,0.38);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(215,183,111,0.18), transparent 60%),
    linear-gradient(180deg, #1a160e, #0d0a07);
  box-shadow:
    var(--shadow-emboss-up),
    0 16px 36px rgba(0,0,0,0.6),
    0 0 28px rgba(176,141,76,0.18);
}
.mandate-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(176,141,76,0.16);
  pointer-events: none;
}
.mandate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,183,111,0.55);
}
.mandate-icon {
  width: 48px; height: 48px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 8px rgba(176,141,76,0.20));
}
.mandate-card h3 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 14px;
  background: linear-gradient(180deg, #f6e3a8, #b08d4c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mandate-card p {
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin: 0;
}

/* ============================================================
   HOLDINGS
   ============================================================ */
.holdings {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 0 var(--pad-x);
}
.rule { width: 220px; height: 14px; margin: 14px 0 22px; opacity: 0.95; }
.rule.center { display: block; margin: 12px auto 28px; width: clamp(200px, 28vw, 320px); height: 22px; }

.holdings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.holding-card {
  position: relative;
  background: #0d0c0a;
  border: 1px solid rgba(176,141,76,0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    var(--shadow-emboss-up),
    0 24px 50px rgba(0,0,0,0.45);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}
.holding-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,183,111,0.55);
}
.holding-card header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 128px;
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(176,141,76,0.15);
}
.holding-icon {
  width: 46px; height: 30px;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 6px rgba(176,141,76,0.22));
}
.holding-card-title {
  font-family: var(--serif-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d2b06a;
  margin: 0;
  line-height: 1.3;
}
.holding-card header p {
  margin: 8px 0 0;
  color: rgba(181,159,112,0.74);
  font-family: var(--serif-body);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}
.holding-photo {
  aspect-ratio: 16 / 11;
}

/* ============================================================
   IMAGE BAND
   ============================================================ */
.image-band {
  margin: 56px 0 0;
  border-top: 1px solid rgba(176, 141, 76, 0.24);
  border-bottom: 1px solid rgba(176, 141, 76, 0.24);
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 240px;
  background: #0a0907;
}
.band-cell {
  position: relative;
  overflow: hidden;
}
.band-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) sepia(12%) brightness(0.68) contrast(1.1);
  transition: filter 800ms ease, transform 800ms ease;
}
.band-cell:hover img {
  filter: grayscale(12%) sepia(8%) brightness(0.78) contrast(1.10);
  transform: scale(1.04);
}
.band-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0) 60%, rgba(11,11,13,0.45) 100%);
  pointer-events: none;
}

/* ============================================================
   GOVERNANCE
   ============================================================ */
.governance {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--pad-x) 24px;
  text-align: center;
}
.gov-title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 4px;
  background: linear-gradient(180deg, #f6e3a8, #b08d4c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gov-body {
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 78ch;
  margin: 0 auto;
  font-style: italic;
}
.governance-ledger {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 920px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(176,141,76,0.22);
  border-bottom: 1px solid rgba(176,141,76,0.18);
}
.governance-ledger span {
  padding: 16px 28px;
  border-right: 1px solid rgba(176,141,76,0.16);
  color: rgba(216,199,160,0.70);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.governance-ledger span:last-child { border-right: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 30px 0 28px;
  border-top: var(--hairline);
  box-shadow: var(--shadow-emboss-up);
}
.footer-left {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 18px;
}
.footer-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0;
}
.footer-right { text-align: right; }
.footer-right h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.footer-email {
  font-family: var(--serif-body);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}
.footer-email svg { width: 26px; height: 26px; }
.footer-note {
  font-family: var(--serif-body);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  margin: 8px 0 0;
  letter-spacing: 0.04em;
}
.contact-copy {
  max-width: 620px;
  margin: 0 0 12px auto;
  color: rgba(220,205,167,0.66);
  font-family: var(--serif-body);
  font-size: 15px;
  line-height: 1.55;
}
.footer-access {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(215,183,111,0.78);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,141,76,0.55), transparent);
  margin: 6px 0 18px;
}
.copyright {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.copyright-divider { color: var(--gold-deep); }

/* ============================================================
   PRIVATE ACCESS PAGE
   ============================================================ */
.access-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px var(--pad-x);
}
.access-panel {
  width: min(720px, 100%);
  position: relative;
  text-align: center;
  padding: clamp(38px, 7vw, 72px) clamp(24px, 6vw, 58px);
  border: 1px solid rgba(176,141,76,0.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(176,141,76,0.12), transparent 42%),
    linear-gradient(135deg, rgba(28,21,13,0.92), rgba(7,7,6,0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255,232,170,0.028),
    0 42px 120px rgba(0,0,0,0.68);
}
.access-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(176,141,76,0.16);
  pointer-events: none;
}
.access-logo {
  width: clamp(112px, 18vw, 180px);
  margin: 0 auto 24px;
  filter:
    drop-shadow(0 20px 32px rgba(0,0,0,0.72))
    drop-shadow(0 0 16px rgba(176,141,76,0.18));
}
.access-title {
  margin: 8px 0 12px;
  color: var(--gold-bright);
  font-family: var(--serif-display);
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.access-copy {
  max-width: 480px;
  margin: 0 auto 24px;
  color: rgba(220,205,167,0.72);
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .header-inner { gap: 18px; }
  .primary-nav { gap: 18px; font-size: 10px; }
  .header-brand-copy strong { font-size: 12px; letter-spacing: 0.20em; }
  .header-brand-copy span { letter-spacing: 0.22em; }
  .hero-panel { padding: 42px; }
  .hero-topline { padding: 0 32px 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-title { font-size: 52px; }
  .hero-vault { min-height: 480px; }
  .hero-photo { height: 340px; }
  .holdings-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mandate-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); row-gap: 0; }
  .pillar:nth-child(2n) { border-right: 1px solid rgba(176,141,76,0.22); }
  .pillar:last-child { border-right: none; }
  .pillar:nth-child(-n+2) { border-bottom: none; padding-bottom: 12px; }
  .band-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .band-cell { aspect-ratio: 16/9; }
}
@media (max-width: 980px) {
  .site-header { height: 76px; }
  .header-inner {
    padding: 0 clamp(18px, 4vw, 32px);
    grid-template-columns: auto;
    justify-content: start;
    gap: 16px;
  }
  .primary-nav { display: none; }
  .wsh-header-logo { width: 82px; }
}
@media (max-width: 768px) {
  .site-header {
    height: calc(78px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    background:
      linear-gradient(180deg, rgba(10,9,7,0.98), rgba(4,4,3,0.96));
    border-bottom: 1px solid rgba(176,141,76,0.16);
    box-shadow:
      0 10px 22px rgba(0,0,0,0.42),
      inset 0 -1px 0 rgba(255,243,207,0.025);
  }
  .header-inner {
    height: 78px;
    padding: 0 18px;
    grid-template-columns: auto;
    justify-content: start;
    gap: 12px;
  }
  .wsh-header-logo {
    width: 52px;
    max-height: 52px;
    filter:
      drop-shadow(0 10px 18px rgba(0,0,0,0.68))
      drop-shadow(0 0 8px rgba(176,141,76,0.12));
  }
  .primary-nav { display: none; }
  .brand {
    gap: 13px;
    min-height: 52px;
  }
  .header-brand-copy {
    gap: 0;
    padding-left: 13px;
    border-left-color: rgba(176,141,76,0.16);
  }
  .header-brand-copy strong {
    font-size: 12px;
    letter-spacing: 0.22em;
    line-height: 1;
  }
  .header-brand-copy span {
    display: block;
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: 0.20em;
    color: rgba(220,205,167,0.48);
  }

  .hero { padding: 12px 12px 20px; }
  .hero-panel { padding: 18px 18px 22px; }
  .filigree { width: 42px; height: 42px; opacity: 0.55; }
  .fg-tl { top: 14px; left: 14px; }
  .fg-tr { top: 14px; right: 14px; }
  .fg-bl,
  .fg-br { display: none; }
  .hero-topline { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-art { order: -1; }
  .section-kicker { font-size: 9px; letter-spacing: 0.22em; line-height: 1.55; margin-bottom: 10px; }
  .hero-subkicker { font-size: 8.5px; letter-spacing: 0.18em; line-height: 1.55; margin: -4px 0 12px; }
  .hero-title { font-size: 32px; line-height: 1.02; margin: 8px 0 14px; }
  .hero-lede { font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
  .hero-maxim { font-size: 8.5px; letter-spacing: 0.14em; line-height: 1.6; margin-bottom: 16px; }
  .hero-ledger {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
  }
  .hero-ledger div {
    min-height: 66px;
    padding: 9px 7px 8px;
    border-right: 1px solid rgba(176,141,76,0.16);
    border-bottom: none;
  }
  .hero-ledger div:last-child { border-right: none; }
  .hero-ledger span { font-size: 12px; margin-bottom: 4px; }
  .hero-ledger strong { font-size: 7.6px; letter-spacing: 0.10em; line-height: 1.3; }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
  .hero-vault {
    min-height: 264px;
    padding: 10px 10px 48px;
  }
  .hero-photo { height: 172px; }
  .wsh-hero-logo { width: 106px; }
  .seal-plaque {
    bottom: 14px;
    width: min(228px, calc(100% - 30px));
    padding: 7px 10px 4px;
  }
  .seal-plaque p { font-size: 7.5px; letter-spacing: 0.20em; }
  .hero-caption {
    left: 18px;
    right: 18px;
    bottom: 8px;
    justify-content: center;
    font-size: 7.5px;
    letter-spacing: 0.14em;
    text-align: center;
  }
  .hero-caption span:last-child { display: inline; }
  .section-title,
  .gov-title { font-size: 22px; letter-spacing: 0.18em; }
  .pillars {
    margin: 30px 12px 0;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .pillar {
    gap: 16px;
    padding: 18px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(176,141,76,0.22);
  }
  .pillar:last-child { border-bottom: none; }
  .pillar-icon { width: 46px; height: 46px; }
  .pillar h3 { font-size: 15px; letter-spacing: 0.22em; margin-bottom: 5px; }
  .pillar p { font-size: 15px; line-height: 1.38; }

  .signature-band {
    margin: 38px auto 0;
    padding: 0 12px;
  }
  .signature-inner { padding: 32px 24px; }
  .signature-inner blockquote { font-size: 24px; line-height: 1.32; }
  .signature-marks { gap: 10px 16px; margin-top: 20px; }
  .signature-marks span { font-size: 8.5px; letter-spacing: 0.22em; }

  .mandate {
    margin: 42px auto 0;
    padding: 0 12px;
  }
  .mandate-head { margin-bottom: 24px; }
  .mandate-lede { font-size: 17px; line-height: 1.55; margin-top: 10px; }
  .mandate-grid { gap: 12px; }
  .mandate-card { padding: 24px 22px 22px; }
  .mandate-icon { width: 32px; height: 32px; margin-bottom: 10px; }
  .mandate-card h3 { font-size: 18px; letter-spacing: 0.18em; line-height: 1.20; }
  .mandate-card p { font-size: 15px; line-height: 1.4; }

  .holdings {
    margin: 44px auto 0;
    padding: 0 12px;
  }
  .rule.center { margin-bottom: 22px; width: min(238px, 72vw); }
  .holdings-grid { grid-template-columns: 1fr; gap: 14px; }
  .holding-card header { min-height: auto; padding: 16px 16px 14px; gap: 12px; }
  .holding-icon { width: 40px; height: 26px; }
  .holding-card-title { font-size: 12px; letter-spacing: 0.18em; }
  .holding-card header p { font-size: 14.5px; line-height: 1.34; }
  .holding-photo { aspect-ratio: 2.04 / 1; }
  .image-band { margin: 42px 0 0; }
  .band-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .band-cell { aspect-ratio: 16/9; }

  .governance { padding: 44px 18px 20px; }
  .gov-body { font-size: 16.5px; line-height: 1.65; }
  .governance-ledger { margin: 24px auto 0; }
  .governance-ledger span { padding: 13px 0; font-size: 9px; letter-spacing: 0.22em; }

  .site-footer { padding: 0 18px 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-left  { grid-template-columns: 1fr; justify-items: center; gap: 8px; }
  .footer-right { text-align: center; }
  .wsh-footer-logo { width: 92px; }
  .footer-tag { font-size: 9px; letter-spacing: 0.24em; line-height: 1.6; }
  .footer-right h4 { font-size: 10px; letter-spacing: 0.26em; }
  .contact-copy { margin-inline: auto; font-size: 14.5px; }
  .footer-email { justify-content: center; font-size: 14px; }
  .footer-access { font-size: 9px; letter-spacing: 0.24em; }
  .copyright { font-size: 9px; letter-spacing: 0.22em; gap: 8px; line-height: 1.7; }
}
@media (max-width: 520px) {
  .site-header { height: calc(74px + env(safe-area-inset-top)); }
  .header-inner { height: 74px; padding: 0 16px; }
  .wsh-header-logo {
    width: 48px;
    max-height: 48px;
  }
  .brand { gap: 12px; min-height: 48px; }
  .header-brand-copy {
    padding-left: 12px;
    border-left-color: rgba(176,141,76,0.12);
  }
  .header-brand-copy strong { font-size: 10.5px; letter-spacing: 0.18em; }
  .header-brand-copy span {
    display: block;
    margin-top: 5px;
    font-size: 6.5px;
    letter-spacing: 0.15em;
  }
  .hero-title { font-size: 30px; }
  .hero-panel { padding: 16px 14px 20px; }
  .hero-vault { min-height: 250px; padding: 9px 9px 44px; }
  .hero-photo { height: 162px; }
  .wsh-hero-logo { width: 98px; }
  .holding-photo { aspect-ratio: 2.12 / 1; }
  .hero-ledger strong { font-size: 7.3px; letter-spacing: 0.08em; }
  .signature-inner blockquote { font-size: 23px; }
  .governance-ledger { display: block; }
  .governance-ledger span { display: block; border-right: none; border-bottom: 1px solid rgba(176,141,76,0.14); }
  .governance-ledger span:last-child { border-bottom: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(176,141,76,0.22); padding-bottom: 22px; }
  .pillar:last-child { border-bottom: none; }
  .band-grid { grid-template-columns: 1fr; }
}
