:root {
    --holdings-primary: #0a0a0a;   /* Pure Black */
    --holdings-secondary: #141414; /* Deep Charcoal */
    --holdings-accent: #d4af37;    /* Metallic Gold */
    --holdings-accent-hover: #f1c40f; /* Bright Gold */
    --holdings-accent-soft: rgba(212, 175, 55, 0.1);
    --holdings-text-bright: #ffffff;
    --holdings-text-muted: #888888;
    --holdings-border: rgba(212, 175, 55, 0.15);
    --holdings-glass: rgba(10, 10, 10, 0.9);
}

body {
    margin: 0;
    background: var(--holdings-primary);
    color: black;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
}

/* HERO BASE */
.holdings-hero {
    padding: 14rem 2rem 10rem;
    text-align: center;
    background: radial-gradient(circle at top right, #1a1608 0%, #0a0a0a 70%);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.holdings-hero {
min-height: 100vh;
  position: relative;
  padding: 120px 0;
  background: url("/static/images/round.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.holdings-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.204); /* adjust opacity here */
  z-index: 0;
}

/* Dark overlay for premium feel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.979),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
}

.hero-subtitle {
    color: var(--holdings-accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
     -webkit-text-stroke: 1px #C6A15B; /* gold stroke */
}

/* SECTIONS */
.section-padding {
    padding: 8rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FLEXBOX FIXES & UTILS */
.flex-row {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    text-align: center;
}

.text-center { text-align: center; }
.flex-1 { flex: 1; }
.flex-1-2 { flex: 1.2; }
.align-start { align-items: flex-start; }
.gap-8 { gap: 8rem; }
.gap-2 { gap: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-2-5 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-3-5 { margin-bottom: 3.5rem; }
.mb-4 { margin-bottom: 4rem; }
.m-0-75-0 { margin: 0.75rem 0; }
.max-w-800 { max-width: 800px; margin: 0 auto; }

.stat-value-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--holdings-accent);
    margin-bottom: 0.5rem;
}

.stat-label-caps {
    color: var(--holdings-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.list-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border-bottom-soft {
    border-bottom: 1px solid rgba(218, 165, 32, 0.367);
}

.holdings-desc-box {
    color: var(--holdings-text-bright);
    font-size: 1.2rem;
    line-height: 1.8;
}

.font-playfair {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 12px;
}

/* FOOTER */

/* ── Local convenience tokens (no new globals) ── */
.site-footer {
  --f-accent-dim:   rgba(212, 175, 55, 0.08);
  --f-accent-mid:   rgba(212, 175, 55, 0.22);
  --f-accent-line:  rgba(212, 175, 55, 0.18);
  --f-text-dim:     #555555;
  --f-text-faint:   #333333;
  --f-rule:         rgba(255, 255, 255, 0.05);
  --f-transition:   0.35s ease;
  --f-font-display: 'Cormorant Garamond', 'Didot', Georgia, serif;
  --f-font-ui:      'Montserrat', 'Helvetica Neue', sans-serif;
}

/* ════════════════════════════════════════════════════════
   BASE FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--holdings-primary);
  color: var(--holdings-text-bright);
  font-family: var(--f-font-ui);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  isolation: isolate;
}

/* ── Top gold beam ── */
.footer-beam {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--holdings-accent) 20%,
    var(--holdings-accent-hover) 50%,
    var(--holdings-accent) 80%,
    transparent 100%
  );
  z-index: 2;
}

.footer-beam::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px);
  opacity: 0.5;
}

/* ── Background grid ── */
.footer-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--f-rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--f-rule) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ── Background radial glow ── */
.footer-bg-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 15% 30%, rgba(212,175,55,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 70%, rgba(212,175,55,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ════════════════════════════════════════════════════════
   UPPER FOOTER — 4-COL GRID
   ════════════════════════════════════════════════════════ */
.footer-upper {
  padding: 30px 0 30px;
  border-bottom: 1px solid var(--f-rule);
}

.footer-upper .footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* ════════════════════════════════════════════════════════
   BRAND COLUMN
   ════════════════════════════════════════════════════════ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.logo-mark {
  font-size: 12px;
  color: var(--holdings-accent);
  line-height: 1;
}

.logo-text {
  font-family: var(--f-font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--holdings-text-bright);
  text-transform: uppercase;
}

.logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--holdings-accent);
}

.footer-tagline {
  font-family: var(--f-font-ui);
  font-size: 12px;
  font-weight: 300;
  color: var(--holdings-text-muted);
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

/* ── Social links ── */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--f-accent-line);
  border-radius: 2px;
  color: var(--holdings-text-muted);
  background: transparent;
  text-decoration: none;
  transition:
    color var(--f-transition),
    border-color var(--f-transition),
    background var(--f-transition),
    transform 0.25s ease,
    box-shadow var(--f-transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--holdings-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}

.social-link svg { position: relative; z-index: 1; }

.social-link:hover::before { transform: scaleY(1); }
.social-link:hover {
  color: var(--holdings-primary);
  border-color: var(--holdings-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.2);
}

/* ════════════════════════════════════════════════════════
   COLUMN SHARED STYLES
   ════════════════════════════════════════════════════════ */
.footer-col-title {
  font-family: var(--f-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--holdings-accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--holdings-border);
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 1px;
  background: var(--holdings-accent);
}

/* ════════════════════════════════════════════════════════
   NAV COLUMN
   ════════════════════════════════════════════════════════ */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-font-ui);
  font-size: 12px;
  font-weight: 400;
  color: var(--holdings-text-muted);
  text-decoration: none;
  padding: 6px 0;
  letter-spacing: 0.3px;
  transition: color var(--f-transition), padding-left var(--f-transition);
  position: relative;
}

.nav-arrow {
  font-size: 11px;
  color: var(--holdings-accent);
  display: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--f-transition), transform var(--f-transition);
  flex-shrink: 0;
}

.footer-nav-link:hover {
  color: var(--holdings-text-bright);
  padding-left: 4px;
}

.footer-nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

/* ════════════════════════════════════════════════════════
   ENTITIES COLUMN
   ════════════════════════════════════════════════════════ */
.footer-entity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.entity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--f-transition);
  cursor: default;
}

.entity-item:last-child { border-bottom: none; }

.entity-dot {
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--holdings-accent);
  margin-top: 5px;
  box-shadow: 0 0 6px rgba(212,175,55,0.4);
  transition: box-shadow var(--f-transition), transform var(--f-transition);
}

.entity-item:hover .entity-dot {
  box-shadow: 0 0 12px rgba(212,175,55,0.7);
  transform: scale(1.3);
}

.entity-name {
  display: block;
  font-family: var(--f-font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--holdings-text-bright);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
  transition: color var(--f-transition);
}

.entity-sector {
  display: block;
  font-family: var(--f-font-ui);
  font-size: 10px;
  font-weight: 300;
  color: var(--holdings-text-muted);
  letter-spacing: 0.3px;
}

.entity-item:hover .entity-name {
  color: var(--holdings-accent);
}

/* ════════════════════════════════════════════════════════
   CONTACT COLUMN
   ════════════════════════════════════════════════════════ */
.footer-address {
  font-style: normal;
  font-family: var(--f-font-ui);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--holdings-text-muted);
  margin-bottom: 20px;
}

.footer-address p { letter-spacing: 0.2px; }

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-font-ui);
  font-size: 11px;
  font-weight: 400;
  color: var(--holdings-text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color var(--f-transition);
  position: relative;
}

/* .footer-contact-item::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 22px; right: 0;
  height: 1px;
  background: var(--holdings-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
} */

.footer-contact-item:hover { color: var(--holdings-accent); }
.footer-contact-item:hover::after { transform: scaleX(1); }

.footer-contact-item svg { flex-shrink: 0; }

/* ── Cert badges ── */
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cert-badge {
  font-family: var(--f-font-ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--holdings-accent);
  border: 1px solid var(--holdings-border);
  background: var(--holdings-accent-soft);
  padding: 4px 9px;
  border-radius: 1px;
}

/* ════════════════════════════════════════════════════════
   MID RULE WITH DIAMOND
   ════════════════════════════════════════════════════════ */
.footer-mid-rule { padding: 0; }

.mid-rule-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--f-accent-line) 30%, var(--f-accent-line) 70%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-diamond {
  position: absolute;
  font-size: 8px;
  color: var(--holdings-accent);
  background: var(--holdings-primary);
  padding: 0 12px;
  line-height: 1;
}

/* ════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════ */
.footer-stats-bar {
  padding: 36px 0;
  border-bottom: 1px solid var(--f-rule);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}

.stat-num {
  font-family: var(--f-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--holdings-text-bright);
  letter-spacing: 0.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--holdings-text-bright) 30%, var(--holdings-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-family: var(--f-font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--holdings-text-muted);
  white-space: nowrap;
  text-align: center;
}

.stat-sep {
  font-size: 6px;
  color: var(--holdings-border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   LOWER FOOTER — LEGAL BAR
   ════════════════════════════════════════════════════════ */
.footer-lower {
  position: relative;
  padding: 12px 0 0;
  overflow: hidden;
}

.footer-lower-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--f-font-ui);
  font-size: 10px;
  font-weight: 400;
  color: var(--f-text-dim);
  letter-spacing: 0.3px;
}

.legal-sep {
  color: var(--f-accent-line);
  font-size: 8px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.legal-link {
  font-family: var(--f-font-ui);
  font-size: 10px;
  font-weight: 400;
  color: var(--f-text-dim);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color var(--f-transition);
  position: relative;
}

.legal-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--holdings-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.legal-link:hover { color: var(--holdings-accent); }
.legal-link:hover::after { transform: scaleX(1); }

/* ── Giant watermark wordmark ── */
.footer-watermark {
  font-family: var(--f-font-display);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.055);
  text-align: center;
  line-height: 0.9;
  user-select: none;
  pointer-events: none;
  padding-bottom: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-container { padding: 0 32px; }

  .footer-upper .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }
  .footer-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-lower-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .footer-address{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .flex-row{
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .footer-container { padding: 0 20px; }
  .footer-upper { padding: 52px 0 40px; }

  .footer-upper .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    justify-items: center;
  }

  .stat-sep { display: none; }

  .footer-lower-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .footer-watermark {
    font-size: clamp(48px, 18vw, 80px);
  }

  .flex-row {
    display: block;
  }

  .form-card{
    margin-top: 20px;
  }

  .footer-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-legal{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-nav-list{
    justify-content: center;
    align-items: center;
  }
  .holdings-desc-box {
    font-size: 0.7rem;
  
}
.font-playfair{
  font-size: 2.3rem;
}
}

@media (max-width: 400px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { align-items: flex-start; }
}

/* FORMS */
.form-card {
    background: #f6f1e8;
    padding: 4rem;
    border: 1px solid goldenrod;
    border-radius: 4px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
}

.form-control {
    background: #000;
    border: 1px solid var(--holdings-border);
    padding: 1rem 1.25rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.form-control:focus {
    border-color: var(--holdings-accent);
    box-shadow: 0 0 15px var(--holdings-accent-soft);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.btn-premium {
    background: var(--holdings-accent);
    color: var(--holdings-primary);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.btn-premium:hover {
    background: var(--holdings-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-premium:active {
    transform: translateY(-1px);
}
