/* ===================== RESET & ROOT ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }

:root {
  --gold: #C9973A;
  --gold-light: #E8C96A;
  --gold-dark: #8B6010;
  --gold-muted: #A07820;
  --black: #060809;
  --surface: #0d1018;
  --surface2: #111520;
  --text: #E8DCC8;
  --text-muted: #8a7d68;
  --white: #F5EFE0;
  --max-w: 1300px;
  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(60px, 8vw, 120px);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ===================== UTILITY ===================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section-pad { padding: var(--pad-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.full-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,151,58,0.22), transparent); }
.gold-grad { background: linear-gradient(to right, transparent, rgba(201,151,58,0.25), transparent); }

.lbl {
  font-family: 'Cinzel', serif;
  font-size: clamp(8px, 1.2vw, 10px);
  letter-spacing: clamp(4px, 1vw, 7px);
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
}
.ttl {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: clamp(1px, 0.5vw, 4px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.rule {
  width: 52px; height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
  opacity: 0.55;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6,8,9,0.96), transparent);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(6,8,9,0.98);
  border-bottom: 1px solid rgba(201,151,58,0.14);
  padding: 10px clamp(20px, 4vw, 60px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 14px);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  width: clamp(36px, 5vw, 46px);
  height: clamp(36px, 5vw, 46px);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,151,58,0.35);
  filter: drop-shadow(0 0 6px rgba(201,151,58,0.2));
}
.nav-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(12px, 2vw, 17px);
  font-weight: 700;
  letter-spacing: clamp(3px, 1vw, 6px);
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 44px);
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: clamp(7px, 1vw, 10px);
  letter-spacing: clamp(2px, 0.5vw, 4px);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,8,9,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-bottom: 1px solid rgba(201,151,58,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 4vw, 22px);
  letter-spacing: 6px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 15vw, 160px) clamp(20px, 5vw, 60px) clamp(80px, 10vw, 120px);
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  width: min(900px, 120vw); height: min(900px, 120vw);
  background: radial-gradient(circle, rgba(201,151,58,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: -10%; width: 1px; height: 140%;
  pointer-events: none;
}
.hero-line-l { left: 8%; background: linear-gradient(to bottom, transparent, rgba(201,151,58,0.1), transparent); transform: rotate(12deg); }
.hero-line-r { right: 18%; background: linear-gradient(to bottom, transparent, rgba(201,151,58,0.07), transparent); transform: rotate(12deg); }

.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero-logo-img {
  width: clamp(140px, 28vw, 220px);
  height: clamp(140px, 28vw, 220px);
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: clamp(28px, 5vw, 48px);
  animation: logoReveal 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
  filter: drop-shadow(0 0 clamp(16px,3vw,40px) rgba(201,151,58,0.3));
}
@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.75) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(7px, 1.5vw, 10px);
  letter-spacing: clamp(4px, 1.5vw, 9px);
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: clamp(14px, 3vw, 22px);
  animation: fadeUp 1s 0.5s ease both;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 12vw, 110px);
  font-weight: 700;
  letter-spacing: clamp(6px, 2vw, 16px);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(10px, 2.5vw, 20px);
  letter-spacing: clamp(8px, 3vw, 20px);
  color: var(--gold-muted);
  margin-bottom: clamp(18px, 4vw, 28px);
  animation: fadeUp 1s 0.7s ease both;
}
.hero-rule {
  width: clamp(60px, 10vw, 90px); height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto clamp(14px, 3vw, 22px);
  animation: fadeUp 1s 0.8s ease both;
}
.hero-motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: clamp(2px, 0.8vw, 5px);
  animation: fadeUp 1s 0.9s ease both;
}
.hero-tagline {
  margin-top: clamp(28px, 5vw, 48px);
  font-family: 'Cinzel', serif;
  font-size: clamp(7px, 1.2vw, 9px);
  letter-spacing: clamp(3px, 1vw, 6px);
  color: var(--gold-dark);
  opacity: 0.6;
  animation: fadeUp 1s 1.1s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s 1.3s ease both;
}
.hero-scroll span { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 5px; color: var(--gold-dark); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold-dark), transparent); animation: pulse 2s ease-in-out infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.25; } 50% { opacity: 0.85; } }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.about-text p {
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.95;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.about-text strong { color: var(--gold); font-weight: 400; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-box {
  background: var(--surface);
  padding: clamp(20px, 3vw, 34px) clamp(16px, 2.5vw, 26px);
  border: 1px solid rgba(201,151,58,0.08);
  transition: all 0.3s;
}
.stat-box:hover { border-color: rgba(201,151,58,0.28); background: var(--surface2); }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: clamp(8px, 1vw, 10px); letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; font-family: 'Cinzel', serif; }

/* ===================== DIVISIONS ===================== */
.div-bg { background: var(--surface); width: 100%; }
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(36px, 5vw, 58px);
}
.v-card {
  background: var(--black);
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3vw, 36px);
  border: 1px solid rgba(201,151,58,0.08);
  position: relative; overflow: hidden;
  transition: all 0.4s;
}
.v-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.v-card:hover { border-color: rgba(201,151,58,0.22); background: var(--surface2); transform: translateY(-5px); }
.v-card:hover::after { transform: scaleX(1); }
.v-icon { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 16px; display: block; }
.v-num { font-family: 'Cinzel', serif; font-size: clamp(8px, 1vw, 10px); letter-spacing: 4px; color: var(--gold-dark); margin-bottom: 12px; }
.v-title { font-family: 'Cinzel', serif; font-size: clamp(14px, 1.5vw, 18px); font-weight: 600; letter-spacing: 2px; color: var(--white); margin-bottom: 14px; }
.v-text { font-size: clamp(13px, 1.3vw, 15px); line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; }
.v-services { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.v-svc { display: flex; align-items: center; gap: 10px; font-size: clamp(11px, 1.2vw, 13px); color: var(--text-muted); font-family: 'Cinzel', serif; letter-spacing: 1px; }
.v-svc::before { content: ''; width: 14px; height: 1px; background: var(--gold); opacity: 0.45; flex-shrink: 0; }
.v-tag { display: inline-block; font-family: 'Cinzel', serif; font-size: clamp(7px, 0.9vw, 9px); letter-spacing: 3px; color: var(--gold); border: 1px solid rgba(201,151,58,0.28); padding: 5px 12px; }

/* ===================== CRYPTO ===================== */
.crypto-bg {
  background: linear-gradient(135deg, #060809 0%, #090e17 50%, #060809 100%);
  border-top: 1px solid rgba(201,151,58,0.13);
  border-bottom: 1px solid rgba(201,151,58,0.13);
  width: 100%;
  padding: var(--pad-y) var(--pad-x);
}
.crypto-inner { max-width: var(--max-w); margin: 0 auto; }
.crypto-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.crypto-text p { font-size: clamp(14px, 1.4vw, 19px); line-height: 1.95; color: var(--text-muted); font-weight: 300; margin-bottom: 18px; }
.crypto-text strong { color: var(--gold); font-weight: 400; }
.cred-box { background: var(--surface); border: 1px solid rgba(201,151,58,0.15); padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 36px); }
.cred-title { font-family: 'Cinzel', serif; font-size: clamp(8px, 1vw, 10px); letter-spacing: 4px; color: var(--gold); margin-bottom: 20px; opacity: 0.75; }
.cred-list { display: flex; flex-direction: column; gap: 13px; }
.cred-row { display: flex; align-items: flex-start; gap: 12px; }
.cred-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; box-shadow: 0 0 8px rgba(201,151,58,0.4); }
.cred-text { font-size: clamp(13px, 1.3vw, 15px); line-height: 1.7; color: var(--text-muted); font-weight: 300; }
.cred-text strong { color: var(--white); font-weight: 400; }

.cc-card {
  background: var(--surface);
  padding: clamp(26px, 3.5vw, 44px) clamp(20px, 2.5vw, 32px);
  border: 1px solid rgba(201,151,58,0.08);
  position: relative; overflow: hidden;
  transition: all 0.35s;
}
.cc-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.4s; }
.cc-card:hover { border-color: rgba(201,151,58,0.22); background: var(--surface2); transform: translateY(-4px); }
.cc-card:hover::before { transform: scaleX(1); }
.cc-icon { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px; display: block; }
.cc-title { font-family: 'Cinzel', serif; font-size: clamp(11px, 1.3vw, 14px); font-weight: 600; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; }
.cc-text { font-size: clamp(12px, 1.2vw, 15px); line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-bottom: 16px; }
.cc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.asset-tag { font-family: 'Cinzel', serif; font-size: clamp(6px, 0.8vw, 8px); letter-spacing: 2px; color: var(--gold-muted); border: 1px solid rgba(201,151,58,0.18); padding: 4px 8px; }

/* ===================== PHILOSOPHY ===================== */
.phil-bg { background: var(--surface); width: 100%; padding: var(--pad-y) var(--pad-x); }
.phil-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.phil-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--gold-light);
  border-left: 1px solid var(--gold);
  padding-left: clamp(16px, 3vw, 36px);
  margin-top: clamp(40px, 6vw, 60px);
}
.principles { display: flex; flex-direction: column; }
.principle { display: grid; grid-template-columns: clamp(28px, 4vw, 44px) 1fr; gap: clamp(12px, 2vw, 20px); align-items: start; padding: clamp(20px, 3vw, 32px) 0; border-bottom: 1px solid rgba(201,151,58,0.07); }
.principle:last-child { border-bottom: none; }
.p-num { font-family: 'Cinzel', serif; font-size: clamp(8px, 1vw, 10px); letter-spacing: 2px; color: var(--gold-dark); padding-top: 3px; }
.principle h4 { font-family: 'Cinzel', serif; font-size: clamp(10px, 1.2vw, 13px); letter-spacing: 3px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.principle p { font-size: clamp(13px, 1.3vw, 15px); line-height: 1.85; color: var(--text-muted); font-weight: 300; }

/* ===================== MARKETS ===================== */
.market-card { background: var(--surface); padding: clamp(24px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px); border: 1px solid rgba(201,151,58,0.08); transition: all 0.3s; }
.market-card:hover { border-color: rgba(201,151,58,0.2); background: var(--surface2); }
.market-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; margin-bottom: 14px; box-shadow: 0 0 10px rgba(201,151,58,0.45); }
.market-city { font-family: 'Cinzel', serif; font-size: clamp(13px, 1.8vw, 17px); font-weight: 600; letter-spacing: 3px; color: var(--white); margin-bottom: 5px; }
.market-region { font-family: 'Cinzel', serif; font-size: clamp(7px, 1vw, 9px); letter-spacing: 3px; color: var(--gold-muted); margin-bottom: 12px; }
.market-desc { font-size: clamp(12px, 1.3vw, 14px); line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* ===================== CONTACT ===================== */
.contact-section { text-align: center; }
.contact-intro { font-size: clamp(14px, 1.5vw, 19px); line-height: 1.9; color: var(--text-muted); max-width: 560px; margin: 0 auto clamp(28px, 4vw, 44px); font-weight: 300; }
.cta-btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: clamp(8px, 1.2vw, 10px);
  letter-spacing: clamp(3px, 1vw, 6px);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: clamp(14px, 2vw, 18px) clamp(28px, 5vw, 52px);
  text-decoration: none;
  position: relative; overflow: hidden; z-index: 1;
  transition: color 0.3s;
}
.cta-btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); transition: transform 0.3s ease; z-index: -1; }
.cta-btn:hover { color: var(--black); }
.cta-btn:hover::before { transform: translateX(0); }
.contact-meta { margin-top: clamp(32px, 5vw, 56px); display: flex; justify-content: center; gap: clamp(28px, 5vw, 72px); flex-wrap: wrap; }
.meta-item { text-align: center; }
.meta-label { font-family: 'Cinzel', serif; font-size: clamp(7px, 0.9vw, 9px); letter-spacing: 4px; color: var(--gold-dark); margin-bottom: 6px; }
.meta-value { font-size: clamp(13px, 1.4vw, 15px); color: var(--text-muted); }

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid rgba(201,151,58,0.12);
  padding: clamp(24px, 4vw, 44px) clamp(20px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: rgba(6,8,9,0.94);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: clamp(28px, 4vw, 36px); height: clamp(28px, 4vw, 36px); border-radius: 50%; object-fit: cover; border: 1px solid rgba(201,151,58,0.25); }
.footer-name { font-family: 'Cinzel', serif; font-size: clamp(10px, 1.4vw, 13px); letter-spacing: clamp(3px, 1vw, 5px); color: var(--gold); font-weight: 700; }
.footer-motto { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(13px, 1.5vw, 16px); color: var(--text-muted); letter-spacing: 3px; }
.footer-copy { font-family: 'Cinzel', serif; font-size: clamp(7px, 0.9vw, 9px); letter-spacing: 3px; color: var(--gold-dark); opacity: 0.5; }

/* ===================== FADE IN ===================== */
.fi { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* Tablet: 768–1024px */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px); }
  .crypto-header { grid-template-columns: 1fr; }
  .phil-inner { grid-template-columns: 1fr; gap: 40px; }
  .phil-quote { margin-top: 0; }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .contact-meta { flex-direction: column; align-items: center; gap: 24px; }
  footer { justify-content: center; text-align: center; }
  .hero-tagline { display: none; }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .footer-motto { display: none; }
}

/* Large screens: 1400px+ */
@media (min-width: 1400px) {
  :root { --pad-x: 100px; }
}