/* ═══════════════════════════════════════════════════════════════
   LAVISH ENTERPRISES — GOD TIER DESIGN SYSTEM
   Neo-Classical Financial Modernism · Institutional Grade
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ivory:       #FFFBF2;
  --ivory-warm:  #FAF6EC;
  --ivory-deep:  #F4EFE2;
  --ivory-panel: #FFFDF7;
  --gold:        #B59244;
  --gold-light:  #D4BE82;
  --gold-pale:   #E8D9B0;
  --gold-faint:  #B5944418;
  --green:       #35684F;
  --green-dark:  #214537;
  --green-deep:  #1C3A2E;
  --green-muted: #305244;
  --charcoal:    #363C32;
  --charcoal-lt: #4C524A;
  --text-body:   #50594F;
  --text-muted:  #5C655B;
  --text-kicker: #305244d1;
  --dark-bg:     #1a1a19;
  --dark-card:   #222221;
  --border-gold: #B7A88047;
  --border-soft: #B3A37A42;

  --section-py: clamp(5rem, 10vw, 8rem);
  --container-max: 1280px;
  --container-px: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--ivory);
  background-image:
    radial-gradient(ellipse at 10% 0%, #d6ba6d20, transparent 40%),
    radial-gradient(ellipse at 90% 0%, #215e4a10, transparent 35%),
    radial-gradient(ellipse at 50% 100%, #d6ba6d0a, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { color: #2c3932; background: #b7913f38; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: all 0.35s var(--ease-out-expo); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ── Marble Grid Texture ───────────────────────────────────────── */
.marble-grid {
  background-image:
    linear-gradient(#bfae8a14 1px, transparent 1px),
    linear-gradient(90deg, #bfae8a14 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
.font-serif { font-family: var(--font-serif); }

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-kicker);
}

.editorial-kicker::before {
  content: '';
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  text-wrap: balance;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #383F34;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-copy {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.88;
}

.fine-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #4B6256B8;
}

/* ═══════════════════════════════════════════════════════════════
   GOLD DIVIDERS & ACCENTS
   ═══════════════════════════════════════════════════════════════ */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b09146aa 30%, #b09146aa 70%, transparent);
}

.section-divider {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.gold-accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   PANELS & CARDS
   ═══════════════════════════════════════════════════════════════ */
.luxury-panel {
  background: linear-gradient(135deg, #fffdf7e8, #f7f1e5c8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 0 #ffffffb0 inset,
    0 30px 70px -20px #4e4a3a15,
    0 10px 20px -10px #4e4a3a08;
}

.paper-panel {
  background: linear-gradient(135deg, #fffcf4fb, #f9f4e8e5);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -15px #47453a12;
}

.premium-card {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, #fffdf7ee, #f7f1e5d0);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 0 #ffffffa0 inset,
    0 30px 70px -20px #4e4a3a15;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.premium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, #b5924408);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 0 #ffffffa0 inset,
    0 40px 80px -20px #4e4a3a22,
    0 0 0 1px #b5924430;
}

.premium-card:hover::before { opacity: 1; }
.premium-card:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2a342d;
  background: linear-gradient(135deg, #b59244, #d4be82);
  border: 1px solid #a58a4666;
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 0 #e8d9b060 inset,
    0 20px 40px -10px #a88a4540;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, #ffffff50, transparent 80%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out-expo);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 0 #e8d9b060 inset,
    0 28px 50px -10px #a88a4560;
  filter: brightness(1.04);
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button svg {
  transition: transform 0.4s var(--ease-out-expo);
}
.cta-button:hover svg {
  transform: translateX(3px);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2c483c;
  background: #fffcf5c0;
  border: 1px solid #2e51432e;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.outline-button:hover {
  background: #f4efe2f0;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -10px #47453a18;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid #35684f40;
  transition: all 0.35s ease;
}

.ghost-button:hover {
  color: var(--green-dark);
  border-color: var(--green-dark);
  gap: 0.8rem;
}

.ghost-button svg {
  transition: transform 0.35s var(--ease-out-expo);
}
.ghost-button:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: #fffbf2a0;
  border-bottom: 1px solid #af9e7820;
  transition: all 0.5s var(--ease-out-expo);
}

.nav-glass.scrolled {
  background: #fffbf2ee;
  box-shadow: 0 8px 32px #4e4a3a0d;
  border-bottom-color: #af9e7835;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  flex-shrink: 0;
}

.nav-logo .logo-text span {
  color: var(--gold);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #516559;
  position: relative;
  padding: 0.3rem 0;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-center a:hover {
  color: var(--charcoal);
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-center a.active {
  color: var(--charcoal);
}

.nav-center a.active::after {
  width: 100%;
}

.nav-right {
  flex-shrink: 0;
}

.nav-cta {
  padding: 0.55rem 1.5rem !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.16em !important;
}

.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  width: 0%;
  transition: width 0.08s linear;
}

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.4s var(--ease-out-expo);
  display: block;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbf2f5;
  backdrop-filter: blur(30px);
  padding: 2rem 0;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 99;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #516559;
  border-bottom: 1px solid #b7a88015;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--charcoal);
  background: #b5924408;
  padding-left: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 11rem;
  padding-bottom: 5rem;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Hero with background image */
.hero.has-hero-image {
  min-height: 100vh;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 14, 0.55) 0%,
    rgba(15, 15, 14, 0.65) 35%,
    rgba(15, 15, 14, 0.75) 55%,
    rgba(15, 15, 14, 0.80) 70%,
    rgba(253, 249, 237, 0.95) 90%,
    var(--ivory) 100%
  );
}

.hero.has-hero-image .hero-content {
  position: relative;
  z-index: 2;
}

.hero.has-hero-image .editorial-title {
  color: #FEFEFE;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero.has-hero-image .hero-body {
  color: rgba(254, 254, 254, 0.88);
}

.hero.has-hero-image .editorial-kicker {
  color: var(--gold);
}

.hero.has-hero-image .editorial-kicker::before {
  background: var(--gold);
}

.hero.has-hero-image .hero-badge {
  background: rgba(181, 146, 68, 0.2);
  border-color: rgba(181, 146, 68, 0.4);
  color: var(--gold);
}

.hero.has-hero-image .hero-badge .dot {
  background: var(--gold);
}

.hero.has-hero-image .stats-bar {
  border-top-color: rgba(181, 146, 68, 0.4);
}

.hero.has-hero-image .stat-item {
  border-left-color: var(--gold);
}

.hero.has-hero-image .stat-number {
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero.has-hero-image .stat-label {
  color: rgba(254, 254, 254, 0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #294F40e0;
  background: linear-gradient(135deg, #fffbf2dd, #f4efe2cc);
  border: 1px solid #a8925845;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px #35684f60;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #35684f60; }
  50% { opacity: 0.5; box-shadow: 0 0 16px #35684f40; }
}

.hero .editorial-title {
  margin-top: 1rem;
}

.hero-body {
  margin-top: 2rem;
  font-size: 1.08rem;
  line-height: 1.88;
  color: var(--text-body);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

/* Hero decorative elements */
.hero-ornament {
  position: absolute;
  right: -5%;
  top: 20%;
  width: 400px;
  height: 400px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-ornament svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid #b7a88025;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  position: relative;
  padding-left: 1.2rem;
}

.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(var(--gold), transparent);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: #355343;
  font-weight: 500;
}

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION LAYOUTS
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-shell {
  position: relative;
}

.section-shell::before {
  content: '';
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, #b1924860, transparent);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header .editorial-kicker {
  margin-bottom: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-text p {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--text-body);
}

.about-text p:first-of-type { margin-top: 1.8rem; }

.about-cta {
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   STRATEGY PILLARS
   ═══════════════════════════════════════════════════════════════ */
.strategy-pillars {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #fffcf4fb, #f9f4e8e5);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -15px #47453a12;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px #47453a1e;
  border-color: #b5924480;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: #b5924425;
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.pillar-content p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM CARDS
   ═══════════════════════════════════════════════════════════════ */
.platform-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.platform-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b5924418, #b5924408);
  border: 1px solid #b5924430;
  border-radius: var(--radius);
  margin-bottom: 1.8rem;
  transition: all 0.4s ease;
}

.premium-card:hover .platform-card-icon {
  background: linear-gradient(135deg, #b5924428, #b5924414);
  border-color: #b5924460;
}

.platform-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.premium-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.premium-card p {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.82;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   OPERATING MODEL TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.model-grid {
  margin-top: 3rem;
}

.model-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.8rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid #b7a88018;
}

.model-step:last-child { border-bottom: none; }

.model-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 0.2rem;
}

.model-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--ivory);
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
}

.model-step:hover .model-step-dot {
  background: var(--gold);
  box-shadow: 0 0 12px #b5924440;
}

.model-step-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(var(--gold-pale), transparent);
  margin-top: 4px;
}

.model-step:last-child .model-step-line { display: none; }

.model-step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.model-step:hover h3 { color: var(--green-dark); }

.model-step p {
  margin-top: 0.6rem;
  font-size: 0.96rem;
  line-height: 1.82;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO SECTION
   ═══════════════════════════════════════════════════════════════ */
.portfolio-content p {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--text-body);
}

.portfolio-content { max-width: 720px; }

/* ═══════════════════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════════════════ */
.quote-section {
  padding: var(--section-py) 0;
  text-align: center;
}

.quote-block {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: #b5924430;
  user-select: none;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.48;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  margin-top: 1rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   INVESTOR RELATIONS
   ═══════════════════════════════════════════════════════════════ */
.investor-content p {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--text-body);
}

.investor-contact {
  margin-top: 2.5rem;
  padding: 2.5rem;
}

.investor-contact h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.investor-contact p {
  font-size: 0.94rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.investor-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 500;
}

.investor-contact a:hover { color: var(--green-dark); }

.investor-contact svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-bg);
  color: #a8a8a4;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b5924440, transparent);
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8e4dc;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.75;
  color: #7a7a76;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: #7a7a76;
  padding: 0.35rem 0;
}

.footer-links a:hover { color: #d4d0c8; }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ffffff0a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  color: #4a4a48;
}

.footer-bottom a { color: #5a5a58; }
.footer-bottom a:hover { color: #8a8a86; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (For subpages)
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, #d6ba6d12, transparent 50%),
    radial-gradient(ellipse at 80% 30%, #215e4a0a, transparent 40%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero .editorial-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.page-hero-body {
  margin-top: 1.5rem;
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE BODY CONTENT
   ═══════════════════════════════════════════════════════════════ */
.page-body {
  padding: var(--section-py) 0;
}

.page-body p {
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--text-body);
  margin-top: 1.3rem;
}

.page-body p:first-child { margin-top: 0; }

.content-block {
  max-width: 780px;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   INVESTOR RELATIONS PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════ */
.ir-disclosure-box {
  padding: 2.5rem;
  margin-top: 2rem;
  border-left: 3px solid var(--gold);
}

.ir-disclosure-box h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.ir-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid #35684f30;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.ir-link:hover {
  color: var(--green-dark);
  border-color: var(--green-dark);
  gap: 0.7rem;
}

.ir-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.ir-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ir-resource-card {
  padding: 2rem;
  text-align: center;
}

.ir-resource-card .ir-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border: 1px solid #b5924425;
  border-radius: var(--radius);
  margin: 0 auto 1.2rem;
}

.ir-resource-card .ir-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.ir-resource-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.ir-resource-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 0 !important;
}

/* Forward-looking disclaimer */
.forward-looking-statement {
  margin-top: 4rem;
  padding: 2.5rem;
  background: #f8f5ee;
  border: 1px solid #d8ccb040;
  border-radius: var(--radius);
}

.forward-looking-statement h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.forward-looking-statement p {
  font-size: 0.82rem !important;
  line-height: 1.75 !important;
  color: #6a6e68 !important;
  margin-top: 0.6rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATED DECORATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes dash-flow {
  to { stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-center {
    gap: 1.4rem;
  }

  .nav-center a {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  .strategy-pillars {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .ir-resources {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .content-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav: hide desktop links, show hamburger */
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .nav-inner {
    height: 64px;
  }

  .nav-logo {
    font-size: 1.15rem;
  }

  .mobile-menu {
    top: 64px;
  }

  /* Hero */
  .hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }

  .editorial-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1;
  }

  .hero-body {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .cta-button, .outline-button {
    justify-content: center;
    padding: 1rem 1.8rem;
    font-size: 0.75rem;
  }

  /* Stats */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  /* Section spacing */
  :root {
    --section-py: clamp(3rem, 8vw, 5rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    line-height: 1.1;
  }

  .section-subtitle {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .editorial-kicker {
    font-size: 0.62rem;
    gap: 0.6rem;
  }

  .editorial-kicker::before {
    width: 2rem;
  }

  /* Cards */
  .premium-card {
    padding: 1.8rem;
  }

  .premium-card h3 {
    font-size: 1.3rem;
  }

  .premium-card p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }

  .pillar-number {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
  }

  .pillar-content h3 {
    font-size: 1.2rem;
  }

  .pillar-content p {
    font-size: 0.9rem;
  }

  .platform-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.2rem;
  }

  /* Model timeline */
  .model-step {
    grid-template-columns: 36px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .model-step h3 {
    font-size: 1.15rem;
  }

  /* Quote */
  .quote-text {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    line-height: 1.55;
  }

  .quote-mark {
    font-size: 4rem;
  }

  /* IR resources */
  .ir-resources {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ir-resource-card {
    padding: 1.5rem;
  }

  .ir-disclosure-box {
    padding: 1.8rem;
  }

  .investor-contact {
    padding: 1.8rem;
  }

  .forward-looking-statement {
    padding: 1.8rem;
  }

  /* Section copy */
  .section-copy, .about-text p, .investor-content p,
  .portfolio-content p, .page-body p {
    font-size: 0.95rem;
    line-height: 1.78;
  }

  /* Page hero */
  .page-hero {
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }

  .page-hero .editorial-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .page-hero-body {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand h3 {
    font-size: 1.1rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
    max-width: 100%;
  }

  .footer-links h4 {
    font-size: 0.62rem;
    margin-bottom: 0.8rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  /* Gold divider */
  .gold-accent-line {
    margin-top: 1rem;
  }

  /* Ghost button */
  .ghost-button {
    font-size: 0.76rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .stat-item {
    padding-left: 0.9rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .editorial-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .premium-card {
    padding: 1.4rem;
  }

  .pillar-card {
    padding: 1.5rem 1.2rem;
  }

  .ir-disclosure-box {
    padding: 1.4rem;
    border-left-width: 2px;
  }

  .forward-looking-statement {
    padding: 1.4rem;
  }

  .forward-looking-statement p {
    font-size: 0.76rem !important;
  }
}

