/* ============================================================
   TSB GLOBAL SOLUTIONS — style.css
   Brand: Navy #080e1e + Gold #c9a84c
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand colors */
  --navy:         #080e1e;
  --navy-mid:     #0d1628;
  --navy-light:   #131d35;
  --navy-lighter: #1a2545;
  --gold:         #c9a84c;
  --gold-light:   #dfc278;
  --gold-dark:    #a8882e;
  --gold-subtle:  rgba(201,168,76,0.12);
  --gold-border:  rgba(201,168,76,0.25);
  --white:        #ffffff;
  --off-white:    #f5f3ee;
  --cream:        #faf8f3;
  --text-body:    #e8e4dc;
  --text-muted:   #9aa0b0;
  --text-faint:   #5a6178;

  /* Semantic roles */
  --color-bg:         var(--navy);
  --color-surface:    var(--navy-mid);
  --color-surface-2:  var(--navy-light);
  --color-border:     rgba(201,168,76,0.2);
  --color-text:       var(--text-body);
  --color-text-muted: var(--text-muted);
  --color-accent:     var(--gold);
  --color-accent-hover: var(--gold-light);

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,   1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem + 4vw,      5rem);
  --text-hero: clamp(3rem,     1rem + 5.5vw,    6.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Transitions */
  --trans: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(201,168,76,0.15);

  /* Layout */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
  --nav-h: 72px;
}

/* ── Base Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.15;
}

p, li, figcaption { text-wrap: pretty; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover { color: var(--gold-light); }

::selection {
  background: rgba(201,168,76,0.25);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

/* ── Section Variants ── */
section, .section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }

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

/* ── Divider Line ── */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-block-end: var(--space-6);
}
.gold-rule--center { margin-inline: auto; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-block-end: var(--space-4);
}

/* ── Headings ── */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  margin-block-end: var(--space-5);
}
.section-title--center { text-align: center; }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 60ch;
  margin-block-end: var(--space-12);
}
.section-subtitle--center {
  text-align: center;
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  color: var(--gold-light);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ── Page Hero ── */
.page-hero {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-block-end: var(--space-5);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--white);
  margin-block-end: var(--space-6);
}
.page-hero__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Cards ── */
.card {
  background: var(--navy-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: var(--space-5);
  color: var(--gold);
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-block-end: var(--space-3);
}

.card-body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.card-list {
  margin-block-start: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.card-list li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-inline-start: var(--space-5);
  position: relative;
}
.card-list li::before {
  content: '›';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ── Fade-up Animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
  background: rgba(8,14,30,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow var(--trans);
}
.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--gold-border);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav-logo-text span:first-child { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  margin-inline-start: var(--space-2);
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset-block-start: var(--nav-h);
  inset-inline: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--space-6) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--white); background: var(--gold-subtle); }
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  text-align: center;
  margin-block-start: var(--space-3);
  border-radius: var(--radius-sm);
}
.nav-mobile .nav-cta:hover { background: var(--gold-light); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding-block-start: clamp(var(--space-16), 7vw, var(--space-24));
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-block-end: var(--space-12);
  border-bottom: 1px solid var(--gold-border);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block-end: var(--space-5);
}
.footer-brand-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--gold-border);
}
.footer-brand-logo span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 34ch;
  line-height: 1.7;
  margin-block-end: var(--space-6);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-block-end: var(--space-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul li a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.footer-legal {
  display: flex;
  gap: var(--space-6);
}
.footer-legal a {
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── HERO (Home) ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(165deg, rgba(13,22,40,0.0) 0%, rgba(8,14,30,0.5) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-block-end: var(--space-6);
  border: 1px solid var(--gold-border);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-block-end: var(--space-6);
  max-width: 14ch;
}
.hero__title .gold { color: var(--gold); }
.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--gold);
  margin-block-end: var(--space-6);
  opacity: 0.9;
}
.hero__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.75;
  margin-block-end: var(--space-10);
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding-block: var(--space-8);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding-block: var(--space-4);
}
.stat-item + .stat-item {
  border-inline-start: 1px solid var(--gold-border);
}
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd) { border-inline-start: none; }
  .stat-item:nth-child(even) { border-inline-start: 1px solid var(--gold-border); }
}

/* ── Core Capabilities ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 768px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), var(--gold), var(--gold-border));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-lighter);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-block-end: var(--space-2);
}
.step-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; }
}

/* ── Ascension Tiers ── */
.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.tier {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  position: relative;
  overflow: hidden;
}
.tier:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.tier--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--navy-lighter) 0%, var(--navy-mid) 100%);
}
.tier--featured::before {
  content: 'FEATURED';
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-full);
}
.tier-level {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.tier-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
}
.tier-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.tier-item {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.tier-item-name {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-body);
}
.tier-item-price {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
}
@media (max-width: 900px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .tiers { grid-template-columns: 1fr; }
}

/* ── Proof Cards ── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.proof-card {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.proof-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.proof-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.proof-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
}
.proof-body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  margin-block-end: var(--space-4);
}
.cta-section__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 48ch;
  margin-inline: auto;
  margin-block-end: var(--space-10);
  line-height: 1.7;
}

/* ── Metals Teaser ── */
.metals-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.metals-visual {
  background: var(--navy-lighter);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.metals-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.metals-visual__symbol {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  user-select: none;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .metals-teaser { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.founder-placeholder {
  background: var(--navy-lighter);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}
.founder-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.founder-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.founder-placeholder p {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.about-story-text p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-block-end: var(--space-5);
  max-width: 62ch;
}

@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
  .founder-placeholder { aspect-ratio: 16/9; }
}

/* Leader Card */
.leader-card {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: start;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.leader-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  background: var(--navy-lighter);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
}
.leader-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-block-end: var(--space-2);
}
.leader-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-block-end: var(--space-5);
}
.leader-bio {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 65ch;
  margin-block-end: var(--space-6);
}
.leader-stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.leader-stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.leader-stat-val {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold);
}
.leader-stat-lab {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .leader-card { grid-template-columns: 1fr; }
  .leader-photo { width: 100px; height: 100px; }
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ── EVENTS PAGE ── */
.event-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.event-card {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.event-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.event-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--navy-lighter) 0%, var(--navy-mid) 100%);
  grid-column: span 1;
}
.event-card--full {
  grid-column: 1 / -1;
}
.event-type-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.event-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
}
.event-type--community {
  background: var(--navy-lighter);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.event-type--vip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy);
}
.event-type--cohort {
  background: var(--navy-lighter);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.event-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
}
.event-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold);
}
.event-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--text-faint);
  font-weight: 500;
}
.event-meta-item svg { color: var(--gold); }
.event-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-block-start: var(--space-2);
  border-top: 1px solid var(--gold-border);
  margin-block-start: auto;
}

/* Jewelry tiers (A Customized Occasion) */
.jewelry-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--navy);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
}
.jewelry-tier-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-align: center;
  padding: var(--space-3);
}
.jewelry-tier-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.jewelry-tier-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 768px) {
  .event-cards { grid-template-columns: 1fr; }
  .event-card--full { grid-column: span 1; }
}
