:root {
  --ink: #0D0D0D;
  --parchment: #F7F4EF;
  --warm-white: #FDFBF8;
  --gold: #B8955A;
  --gold-light: #D4B483;
  --mid: #6B6560;
  --rule: rgba(13,13,13,0.12);
  --rule-gold: rgba(184,149,90,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(253,251,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 60px;
  background: rgba(253,251,248,0.97);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  color: var(--warm-white) !important;
  background: var(--ink);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--warm-white) !important;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 100px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--warm-white);
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-right {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184,149,90,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184,149,90,0.08) 0%, transparent 50%);
}

.hero-right-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  z-index: 3;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-stat {
  padding: 28px 24px;
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(8px);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-num span { color: var(--gold); }

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,251,248,0.45);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .hero-bg-video { object-position: center; }
}

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  background: var(--ink);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(184,149,90,0.16) 0%, transparent 60%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1.12;
  color: var(--warm-white);
  max-width: 760px;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-sub {
  font-size: 1rem;
  color: rgba(253,251,248,0.6);
  max-width: 540px;
  line-height: 1.8;
  margin-top: 24px;
}

/* ─── TICKER ─── */
.ticker-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-item::after {
  content: '◆';
  font-size: 0.4rem;
  opacity: 0.6;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-intro {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── SECTORS ─── */
#sectors {
  padding: 120px 0;
  background: var(--warm-white);
}

.sectors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.sector-card {
  background: var(--warm-white);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.sector-card:hover { background: var(--parchment); }
.sector-card:hover::before { transform: scaleX(1); }

.sector-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-weight: 400;
}

.sector-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--gold);
}

.sector-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sector-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ─── ABOUT / BLAKE ─── */
#about {
  padding: 140px 0;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184,149,90,0.12) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.12;
  color: var(--warm-white);
  margin-bottom: 32px;
}

.about-title em { font-style: italic; color: var(--gold); }

.about-body {
  font-size: 1rem;
  color: rgba(253,251,248,0.65);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-body strong {
  color: var(--warm-white);
  font-weight: 400;
}

.about-cta-row {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--warm-white);
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(253,251,248,0.7);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(253,251,248,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

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

.about-right {
  position: relative;
}

.about-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 40px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

.about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-style: italic;
}

.credential {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential:last-child { border-bottom: none; }

.credential-title {
  font-size: 0.88rem;
  color: var(--warm-white);
  font-weight: 400;
}

.credential-detail {
  font-size: 0.78rem;
  color: rgba(253,251,248,0.45);
  letter-spacing: 0.05em;
}

/* ─── PROCESS ─── */
#process {
  padding: 140px 0;
  background: var(--parchment);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--rule-gold);
}

.step {
  padding: 0 24px;
  position: relative;
}

.step-dot {
  width: 56px;
  height: 56px;
  border: 1px solid var(--rule-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.step:hover .step-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.step:hover .step-dot svg { color: var(--warm-white); }

.step-dot svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: color 0.3s;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 400;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── VALUES ─── */
#values {
  padding: 140px 0;
  background: var(--warm-white);
  overflow: hidden;
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.values-sticky {
  position: sticky;
  top: 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
}

.value-item {
  background: var(--warm-white);
  padding: 44px 40px;
  transition: background 0.3s;
}

.value-item:hover { background: var(--parchment); }

.value-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ─── ADVISORY ─── */
#advisory {
  padding: 120px 0;
  background: var(--parchment);
}

.advisory-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.advisory-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.advisory-card {
  background: var(--parchment);
  padding: 44px 40px;
  transition: background 0.3s;
}

.advisory-card:hover { background: var(--warm-white); }

.advisory-type {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.advisory-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}

.advisory-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ─── JOURNAL / BLOG ─── */
#journal-listing {
  padding: 120px 0 140px;
  background: var(--warm-white);
}

.journal-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.journal-filter {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 10px 20px;
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: all 0.25s;
}

.journal-filter:hover, .journal-filter.active {
  color: var(--warm-white);
  background: var(--ink);
  border-color: var(--ink);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.journal-card {
  background: var(--warm-white);
  padding: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.journal-card:hover { background: var(--parchment); }

.journal-card-media {
  height: 200px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px 32px;
}

.journal-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 20%, rgba(184,149,90,0.22) 0%, transparent 60%);
}

.journal-card-tag {
  position: relative;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--rule-gold);
  padding: 6px 14px;
  background: rgba(13,13,13,0.4);
}

.journal-card-body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journal-card-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.journal-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 14px;
}

.journal-card-excerpt {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.journal-card-read {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.journal-card:hover .journal-card-read { color: var(--gold); gap: 12px; }

.journal-card-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.journal-card-featured .journal-card-media {
  height: 100%;
  min-height: 360px;
  align-items: flex-start;
  padding: 40px;
}

.journal-card-featured .journal-card-body {
  padding: 56px 56px 56px 48px;
  justify-content: center;
}

.journal-card-featured .journal-card-title {
  font-size: 2.1rem;
}

#journal-featured-slot:not(:empty) {
  margin-bottom: 24px;
}

.journal-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.journal-page-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--mid);
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.journal-page-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--ink);
}

.journal-page-btn.active {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

.journal-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ─── POST PAGE ─── */
.post-hero {
  background: var(--ink);
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 30%, rgba(184,149,90,0.18) 0%, transparent 60%);
}

.post-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.post-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--rule-gold);
  padding: 6px 14px;
}

.post-date {
  font-size: 0.78rem;
  color: rgba(253,251,248,0.45);
  letter-spacing: 0.05em;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--warm-white);
}

.post-title em { font-style: italic; color: var(--gold); }

.post-body-section {
  background: var(--warm-white);
  padding: 80px 0 140px;
}

.post-body-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
}

.post-body-inner p {
  font-size: 1.02rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 28px;
}

.post-body-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 20px;
}

.post-body-inner blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.6;
}

.post-divider {
  height: 1px;
  background: var(--rule);
  margin: 56px 0;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.post-back:hover { color: var(--gold); }

/* ─── CONTACT / CTA ─── */
#contact {
  padding: 0;
  background: var(--warm-white);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.contact-left {
  background: var(--ink);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 60%, rgba(184,149,90,0.15) 0%, transparent 55%);
}

.contact-left-inner { position: relative; z-index: 2; }

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-title em { font-style: italic; color: var(--gold); }

.contact-body {
  font-size: 0.95rem;
  color: rgba(253,251,248,0.6);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 400px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(253,251,248,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail:last-child { border-bottom: none; }
.contact-detail:hover { color: var(--gold); }

.contact-detail svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-right {
  background: var(--parchment);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.3;
}

.cta-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--warm-white);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.25s, transform 0.2s;
  cursor: pointer;
}

.cta-option:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.cta-option-icon {
  width: 44px;
  height: 44px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.cta-option:hover .cta-option-icon { background: var(--gold); }

.cta-option-icon svg {
  width: 18px;
  height: 18px;
  color: var(--warm-white);
}

.cta-option-text { flex: 1; }

.cta-option-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.cta-option-sub {
  font-size: 0.78rem;
  color: var(--mid);
}

.cta-option-arrow {
  color: var(--mid);
  transition: color 0.2s, transform 0.2s;
}

.cta-option:hover .cta-option-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-note {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.6;
}

.contact-note strong {
  color: var(--ink);
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

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

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(253,251,248,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(253,251,248,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--warm-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(253,251,248,0.3);
}

.footer-legal a {
  color: rgba(253,251,248,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(253,251,248,0.6); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  .section-inner { padding: 0 30px; }
  .page-hero-inner { padding: 0 30px; }
  .post-hero-inner, .post-body-inner { padding: 0 30px; }

  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 30px; }
  .hero-right { min-height: 340px; }

  .sectors-header { grid-template-columns: 1fr; gap: 20px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .process-steps::before { display: none; }

  .values-layout { grid-template-columns: 1fr; gap: 40px; }
  .values-sticky { position: relative; top: auto; }

  .advisory-header { grid-template-columns: 1fr; }
  .advisory-cards { grid-template-columns: 1fr; }

  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card-featured { grid-column: span 2; grid-template-columns: 1fr; }
  .journal-card-featured .journal-card-body { padding: 40px 32px; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 30px; }
  .contact-right { padding: 80px 30px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-inner { padding: 0 30px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card-featured { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}
