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

:root {
  --black:        #060606;
  --gold:         #C4A24E;
  --gold-light:   #E2C97E;
  --slate:        #565B66;
  --slate-mid:    #7A8091;
  --text-primary: #EAE6DD;
  --text-sec:     #8A8F9C;
}

html, body { width: 100%; }

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

/* Home page locks to a single viewport; interior pages scroll normally. */
html.locked, html.locked body { height: 100%; overflow: hidden; }

#grain {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.045;
  z-index: 60;
  mix-blend-mode: screen;
}

.top-accent {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right,
    transparent,
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    transparent
  );
  z-index: 200;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
  opacity: 0.75;
}
.top-accent.go { width: 100%; }

.grid-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(196,162,78,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,162,78,0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.grid-bg.go { opacity: 1; }

.vignette {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2;
  background: radial-gradient(
    ellipse 70% 80% at 32% 50%,
    transparent 25%,
    rgba(6,6,6,0.55) 65%,
    rgba(6,6,6,0.92) 100%
  );
}

.glow {
  position: fixed;
  left: 40px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 600px;
  pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse, rgba(196,162,78,0.055) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 2s ease 1s;
}
.glow.go { opacity: 1; }

#eye {
  position: fixed;
  right: -110px; top: 50%;
  transform: translateY(-48%);
  width: 700px; height: 700px;
  pointer-events: none; z-index: 3;
  opacity: 0;
  transition: opacity 3s ease 0.6s;
}
#eye.go { opacity: 1; }

.left-rule {
  position: fixed;
  left: 62px; top: 0; bottom: 0;
  width: 1px; z-index: 4;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 12%,
    rgba(196,162,78,0.18) 70%,
    transparent 100%
  );
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s;
  opacity: 0.4;
}
.left-rule.go { transform: scaleY(1); }

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid rgba(196,162,78,0.08);
  background: rgba(6,6,6,0.78);
  backdrop-filter: blur(22px);
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.9s ease 0.1s, transform 0.9s ease 0.1s;
}
nav.go { opacity: 1; transform: translateY(0); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-primary); text-decoration: none;
}
.nav-logo .mid { color: var(--gold); }

.nav-links { display: flex; gap: 38px; list-style: none; }

.nav-links a {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate-mid); text-decoration: none;
  transition: color 0.25s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(196,162,78,0.3);
  padding: 9px 22px;
  transition: background 0.25s, border-color 0.25s;
}
.nav-cta:hover {
  background: rgba(196,162,78,0.1);
  border-color: rgba(196,162,78,0.55);
}

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 24px; height: 16px;
  background: none; border: none; padding: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 1px; background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.mobile-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
nav.mobile-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.mobile-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.watermark {
  position: fixed;
  right: -100px; bottom: -140px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 360px; font-weight: 300;
  color: rgba(196,162,78,0.022);
  letter-spacing: 0.05em;
  white-space: nowrap; pointer-events: none;
  user-select: none; line-height: 1; z-index: 2;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  z-index: 10;
}

.hero-content {
  position: relative; z-index: 5;
  padding: 0 112px; padding-top: 72px;
  max-width: 860px;
}

.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
              transform 1s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.go { opacity: 1; transform: translateY(0); }

.word-up {
  display: inline-block;
  opacity: 0; transform: translateY(110%);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
  overflow: visible;
}
.word-up.go { opacity: 1; transform: translateY(0); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 38px;
}
.eyebrow-line {
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.9s cubic-bezier(0.16,1,0.3,1);
}
.eyebrow-line.go { width: 38px; }
.eyebrow-text {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transition: opacity 0.8s ease;
}
.eyebrow-text.go { opacity: 1; }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7.6vw, 104px);
  font-weight: 300;
  line-height: 1.04; letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 36px;
  overflow: hidden;
}
.hero-headline em {
  font-style: italic; color: var(--gold-light);
}
.line-wrap { display: block; overflow: hidden; }

.hero-rule {
  width: 0; height: 1px;
  background: var(--gold); opacity: 0.6;
  margin-bottom: 34px;
  transition: width 1.1s cubic-bezier(0.16,1,0.3,1);
}
.hero-rule.go { width: 68px; }

.hero-sub {
  font-size: 14.5px; font-weight: 300;
  line-height: 1.9; letter-spacing: 0.01em;
  color: var(--text-sec);
  max-width: 490px; margin-bottom: 52px;
}

.hero-cta { display: flex; align-items: center; gap: 30px; }

.btn-gold {
  padding: 14px 34px;
  background: var(--gold);
  color: #050505;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
  transition: transform 0.25s;
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.25s;
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:hover::after { background: rgba(255,255,255,0.08); }
.btn-gold:disabled { opacity: 0.55; cursor: default; transform: none; }
.btn-gold:disabled:hover { transform: none; }
.btn-gold:disabled::after { background: rgba(255,255,255,0); }

.btn-ghost {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate-mid); text-decoration: none;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--text-primary); }

.sector-col {
  position: fixed;
  right: 56px; top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex; flex-direction: column;
  gap: 5px; align-items: flex-end;
}

.s-tag {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--slate);
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1),
              color 0.25s;
  cursor: pointer;
}
.s-tag.go { opacity: 1; transform: translateX(0); }
.s-tag::after {
  content: ''; display: block;
  width: 16px; height: 1px;
  background: currentColor; opacity: 0.4;
  transition: width 0.25s, opacity 0.25s;
}
.s-tag:hover { color: var(--gold); }
.s-tag:hover::after { width: 22px; opacity: 0.8; }
.s-tag.active { color: var(--gold); }
.s-tag.active::after { width: 26px; opacity: 1; }

.stats-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(196,162,78,0.1);
  display: flex; padding: 0 64px;
  z-index: 20;
  background: rgba(6,6,6,0.72);
  backdrop-filter: blur(14px);
  transform: translateY(100%);
  transition: transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.stats-bar.go { transform: translateY(0); }

.stat-item {
  flex: 1; padding: 22px 24px;
  border-right: 1px solid rgba(196,162,78,0.07);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400;
  color: var(--text-primary); letter-spacing: 0.01em;
}
.stat-sup { font-size: 18px; color: var(--gold); }
.stat-lbl {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate);
}

.scroll-hint {
  position: fixed;
  bottom: 96px; left: 64px;
  z-index: 20;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transition: opacity 1s ease;
}
.scroll-hint.go { opacity: 1; }
.scroll-line {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.25; } 50% { opacity: 0.85; }
}
.scroll-text {
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--slate);
  writing-mode: vertical-lr; transform: rotate(180deg);
}

/* Homepage sector showcase — full-height sections synced to the fixed sector-col nav */
.sector-showcase {
  position: relative; z-index: 10;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 112px;
  max-width: 1240px;
  margin: 0 auto;
}
.sector-showcase + .sector-showcase { border-top: 1px solid rgba(196,162,78,0.08); }

.sector-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 300; line-height: 1;
  color: rgba(196,162,78,0.14);
  margin-bottom: 8px;
}

/* ---------- Interior page sections (shared across about/approach/insights/contact) ---------- */

.section {
  position: relative; z-index: 10;
  padding: 130px 112px;
  max-width: 1240px;
  margin: 0 auto;
}
.section + .section { border-top: 1px solid rgba(196,162,78,0.08); }
.section-narrow { max-width: 760px; }

.section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
}
.section-label-line { width: 38px; height: 1px; background: var(--gold); }
.section-label-text {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 780px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-text {
  font-size: 14.5px; font-weight: 300;
  line-height: 1.9; letter-spacing: 0.01em;
  color: var(--text-sec);
  max-width: 660px;
}
.section-text + .section-text { margin-top: 20px; }

/* Feature / pillar grid (Our Principles, What We Look For) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(196,162,78,0.08);
  margin-top: 56px;
}
.feature-card {
  background: var(--black);
  padding: 44px 30px;
}
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--text-primary); margin-bottom: 14px;
}
.feature-text {
  font-size: 13px; line-height: 1.8;
  color: var(--text-sec); font-weight: 300;
}

/* Process steps (Our Process) */
.process-list { margin-top: 56px; }
.process-step {
  display: flex; align-items: baseline; gap: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(196,162,78,0.08);
}
.process-step:last-child { border-bottom: 1px solid rgba(196,162,78,0.08); }
.process-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--gold);
  min-width: 34px;
}
.process-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--text-primary);
  min-width: 190px;
}
.process-desc {
  font-size: 13.5px; line-height: 1.8;
  color: var(--text-sec); font-weight: 300;
}

/* Article grid (Insights) */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(196,162,78,0.08);
  margin-top: 56px;
}
.article-card {
  background: var(--black);
  padding: 48px 42px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s;
}
.article-card:hover { background: rgba(196,162,78,0.03); }
.article-tag {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--slate);
}
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; line-height: 1.3;
  color: var(--text-primary);
}
.article-excerpt {
  font-size: 13px; line-height: 1.8;
  color: var(--text-sec); font-weight: 300;
}
.article-more {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  margin-top: auto; padding-top: 8px;
  transition: color 0.25s;
}
.article-more:hover { color: var(--gold-light); }

/* Article detail pages */
.article-back {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate-mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.25s;
}
.article-back:hover { color: var(--gold); }

.article-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 36px;
  overflow: hidden;
}
.article-hero-headline em { font-style: italic; color: var(--gold-light); }

.article-nav-row {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 660px; margin-top: 64px;
  padding-top: 32px; border-top: 1px solid rgba(196,162,78,0.08);
}

/* Tag row (Global Reach) */
.tag-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.tag-chip {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-mid);
  border: 1px solid rgba(196,162,78,0.2);
  padding: 10px 18px;
}

/* Contact form */
.contact-form {
  margin-top: 56px; max-width: 640px;
  display: flex; flex-direction: column; gap: 30px;
}
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-label {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--slate-mid);
}
.form-input, .form-textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(196,162,78,0.2);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 10px 2px;
  transition: border-color 0.25s;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: var(--text-sec);
  margin-top: 10px; max-width: 540px;
}
.form-submit-row { margin-top: 6px; }
.form-status {
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--gold-light); margin-top: 4px;
  opacity: 0; transition: opacity 0.4s ease;
}
.form-status.go { opacity: 1; }

/* Footer */
.site-footer {
  position: relative; z-index: 10;
  padding: 52px 112px;
  border-top: 1px solid rgba(196,162,78,0.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-sec);
}
.footer-logo .mid { color: var(--gold); }
.footer-meta {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate);
}

/* Keep the footer clear of the fixed stats-bar on the homepage. */
.stats-bar ~ .site-footer { padding-bottom: 140px; }

@media (max-width: 980px) {
  .hero-content { padding: 0 48px; padding-top: 96px; }
  nav { padding: 18px 24px; }
  .section { padding: 96px 48px; }
  .feature-grid, .article-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 8px; }
  .site-footer { padding: 48px; }
  #eye { opacity: 0 !important; }
  .sector-col { display: none; }
  .sector-showcase { min-height: auto; padding: 96px 48px; }

  /* Collapse the nav into a hamburger-triggered dropdown. */
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta { display: none; }
  nav.mobile-open { flex-wrap: wrap; align-items: flex-start; }
  nav.mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 22px;
    width: 100%; order: 3;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid rgba(196,162,78,0.15);
  }
  nav.mobile-open .nav-cta { display: inline-flex; order: 4; margin-top: 22px; }

  /* Stats bar: 4 columns don't fit a phone width — switch to a 2x2 grid. */
  .stats-bar { flex-wrap: wrap; padding: 0 24px; }
  .stat-item {
    flex: 1 1 50%;
    padding: 16px 12px;
    border-right: 1px solid rgba(196,162,78,0.07);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(196,162,78,0.07); }
  .stat-val { font-size: 24px; }
}

body.nav-open { overflow: hidden; }
