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

:root {
  --bg: #04040c;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201,168,76,0.12);
  --ivory: #f2ede3;
  --ivory-muted: rgba(242,237,227,0.82);
  --ivory-dim: rgba(242,237,227,0.55);
  --red-china: #7a1010;
  --serif: 'Cinzel', serif;
  --body: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  mix-blend-mode: difference;
}
.cursor.hover { width: 50px; height: 50px; }
.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* CANVAS */
#canvas-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* PAGE OVERLAY */
.page-veil {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 998;
  transform-origin: top;
  animation: veilOut 0.7s cubic-bezier(0.76,0,0.24,1) 0.1s forwards;
}
@keyframes veilOut {
  from { transform: scaleY(1); }
  to { transform: scaleY(0); }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2.2rem 5rem;
  transition: all 0.45s ease;
}
nav.scrolled {
  background: rgba(4,4,12,0.95);
  backdrop-filter: blur(20px);
  padding: 1.2rem 5rem;
  border-bottom: 0.5px solid rgba(201,168,76,0.12);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo small {
  display: block;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ivory-muted);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 0.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 5rem;
  z-index: 1; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(122,16,16,0.07) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 950px; }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 2.5rem; height: 0.5px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 400; line-height: 1.05;
  color: var(--ivory); letter-spacing: 0.02em;
  margin-bottom: 0;
}
.hero h1 .line { overflow: hidden; display: block; }
.hero h1 .line-inner {
  display: block;
  transform: translateY(105%);
  animation: lineReveal 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero h1 .line:nth-child(1) .line-inner { animation-delay: 0.6s; }
.hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.8s; }
.hero h1 .line:nth-child(3) .line-inner { animation-delay: 1s; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sep {
  width: 4rem; height: 0.5px; background: var(--gold);
  margin: 2.5rem 0;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 300; font-style: italic;
  color: var(--ivory-muted); margin-bottom: 0.75rem;
  opacity: 0; animation: fadeUp 1s ease 1.7s forwards;
}
.hero-tagline {
  font-family: var(--sans);
  font-size: 0.98rem; font-weight: 300; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 1s ease 1.9s forwards;
}
.hero-btns {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 2.1s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 3rem; left: 5rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--sans); font-size: 1.12rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  opacity: 0; animation: fadeIn 1.2s ease 2.8s forwards;
  writing-mode: vertical-rl;
}

/* BUTTONS */
.btn-gold {
  font-family: var(--sans); font-size: 0.97rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 1rem 2.4rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: all 0.3s; white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateX(5px); }
.btn-outline {
  font-family: var(--sans); font-size: 0.97rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 0.5px solid rgba(201,168,76,0.45);
  padding: 1rem 2.4rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); transform: translateX(5px); }

/* SECTION COMMON */
.section-inner { padding: 8rem 5rem; position: relative; z-index: 1; }
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: ''; display: block;
  width: 2.2rem; height: 0.5px; background: var(--gold);
}
.section-label span {
  font-family: var(--sans); font-size: 1.12rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.12;
  color: var(--ivory); letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.gold-sep { width: 3rem; height: 0.5px; background: var(--gold); margin: 2rem 0; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* MISSION BLOCK */
.mission-block {
  position: relative; z-index: 1;
  padding: 6rem 5rem;
  text-align: center;
  border-top: 0.5px solid rgba(201,168,76,0.08);
  border-bottom: 0.5px solid rgba(201,168,76,0.08);
  background: rgba(201,168,76,0.015);
}
.mission-block .section-label { justify-content: center; }
.mission-block .section-label::before { display: none; }
.mission-text {
  font-family: var(--body);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 300; font-style: italic;
  color: var(--ivory); line-height: 1.65; max-width: 75ch; margin: 0 auto;
}
.mission-text strong { font-weight: 400; color: var(--gold); font-style: normal; }

/* WHO WE ARE */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.who-body {
  font-size: 1rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.95; margin-bottom: 1.5rem;
}
.who-quote {
  font-family: var(--body);
  font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--gold); line-height: 1.7;
  padding: 1.5rem 2rem;
  border-left: 1px solid rgba(201,168,76,0.5);
  margin-top: 2rem;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,0.08);
}
.stat-box {
  background: var(--bg); padding: 2.5rem;
  text-align: center;
  transition: background 0.3s;
}
.stat-box:hover { background: rgba(201,168,76,0.03); }
.stat-num {
  font-family: var(--serif);
  font-size: 3rem; font-weight: 400;
  color: var(--ivory); line-height: 1; margin-bottom: 0.6rem;
}
.stat-num sup { font-size: 1.2rem; color: var(--gold); }
.stat-label {
  font-family: var(--sans); font-size: 1.12rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,237,227,0.75);
}

/* FOUNDERS */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 4rem; }
.founder-card {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 2.5rem; padding: 2.5rem;
  border: 0.5px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.018);
  transition: border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.5s ease;
}
.founder-card:hover { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.03); }
.founder-card:hover::before { width: 100%; }
.founder-emblem { width: 160px; height: 160px; flex-shrink: 0; }
.founder-name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--ivory); margin-bottom: 0.3rem; letter-spacing: 0.04em;
}
.founder-title {
  font-family: var(--sans); font-size: 1.12rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.founder-bio {
  font-size: 1rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.9;
}

/* SERVICES PAGE */
.page-header {
  min-height: 55vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 5rem 5rem;
  position: relative; z-index: 1;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400; line-height: 1.08;
  color: var(--ivory); letter-spacing: 0.02em;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,0.07);
}
.service-item {
  background: var(--bg); padding: 4rem 3.5rem;
  position: relative; overflow: hidden;
  transition: background 0.35s; cursor: default;
}
.service-item::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.55s ease;
}
.service-item:hover { background: rgba(201,168,76,0.025); }
.service-item:hover::after { width: 100%; }
.service-num {
  font-family: var(--serif); font-size: 0.98rem;
  color: rgba(201,168,76,0.7); letter-spacing: 0.1em; margin-bottom: 2.5rem;
}
.service-name {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 1.5rem; line-height: 1.25;
}
.service-desc {
  font-size: 1.12rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.9;
}

/* NETWORK PAGE */
.network-intro {
  font-size: 1rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.95; max-width: 65ch;
}
.network-quote {
  font-family: var(--body);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400; font-style: italic;
  color: var(--ivory); line-height: 1.55;
  border-left: 1px solid var(--gold);
  padding-left: 2.5rem; margin: 4rem 0; max-width: 70ch;
}
.network-quote strong { font-weight: 600; color: var(--gold); font-style: normal; }
.value-list { display: flex; flex-direction: column; margin: 3rem 0; }
.value-item {
  display: flex; align-items: flex-start; gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.08);
  transition: padding-left 0.3s;
}
.value-item:first-child { border-top: 0.5px solid rgba(201,168,76,0.08); }
.value-item:hover { padding-left: 0.5rem; }
.value-diamond {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--gold); margin-top: 0.45rem;
  transform: rotate(45deg);
}
.value-content { flex: 1; }
.value-title {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600;
  color: var(--ivory); margin-bottom: 0.4rem;
}
.value-text {
  font-size: 1.1rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.8;
}
.network-note {
  font-family: var(--sans); font-size: 1rem;
  color: var(--ivory-dim); font-style: italic;
  margin-top: 4rem; padding: 1.25rem 1.75rem;
  border-left: 1px solid rgba(201,168,76,0.2);
  line-height: 1.7;
}
.added-value-block {
  margin-top: 5rem; padding: 4rem;
  border: 0.5px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.02);
}
.added-value-block h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 1.25rem;
}
.added-value-text {
  font-size: 1rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.9; margin-bottom: 1rem;
}
.added-value-final {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  font-style: italic; color: var(--gold); line-height: 1.6;
}

/* CONTACT PAGE */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: start; margin-top: 4rem;
}
.contact-info-block { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  padding: 2rem 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.08);
}
.contact-info-item:first-child { border-top: 0.5px solid rgba(201,168,76,0.08); }
.contact-label {
  font-family: var(--sans); font-size: 1.12rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.contact-value {
  font-size: 1rem; font-weight: 300; color: var(--ivory);
}
.contact-value a {
  color: var(--ivory); text-decoration: none; transition: color 0.2s;
}
.contact-value a:hover { color: var(--gold); }
.contact-right-text {
  font-size: 1rem; font-weight: 300;
  color: var(--ivory-muted); line-height: 1.95; margin-bottom: 2rem;
}
.contact-discreet {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 400; font-style: italic;
  color: var(--gold); line-height: 1.65;
  padding: 1.5rem 2rem; border-left: 1px solid rgba(201,168,76,0.4);
  margin-top: 2.5rem;
}
.contact-region-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.07); margin-top: 6rem;
}
.region-item {
  background: var(--bg); padding: 2.5rem;
  transition: background 0.3s;
}
.region-item:hover { background: rgba(201,168,76,0.02); }
.region-icon { font-size: 1.5rem; margin-bottom: 0.75rem; opacity: 0.7; }
.region-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--ivory); margin-bottom: 0.4rem;
}
.region-desc {
  font-family: var(--sans); font-size: 0.97rem; font-weight: 300;
  letter-spacing: 0.05em; color: var(--ivory-dim);
}

/* FOOTER */
footer {
  position: relative; z-index: 1;
  border-top: 0.5px solid rgba(201,168,76,0.1);
  background: rgba(0,0,0,0.4);
  padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase;
}
.footer-logo small {
  display: block; font-size: 0.92rem; font-weight: 400;
  letter-spacing: 0.12em; color: var(--ivory-dim); margin-top: 3px;
}
.footer-links { display: flex; gap: 2.5rem; list-style: none; }
.footer-links a {
  font-family: var(--sans); font-size: 1rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ivory-dim); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--sans); font-size: 1.12rem;
  color: var(--ivory-dim); letter-spacing: 0.05em;
}

/* KEYFRAMES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lineReveal {
  from { transform: translateY(105%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .hero { padding: 0 2rem; }
  .section-inner { padding: 5rem 2rem; }
  .who-grid, .founders-grid, .services-grid,
  .contact-layout, .contact-region-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .page-header { padding: 0 2rem 4rem; }
  footer { padding: 2.5rem 2rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .mission-block { padding: 5rem 2rem; }
}
