
:root{
  --bg:#07090d;
  --panel:#0f1319;
  --panel-2:#121821;
  --text:#f2f1ed;
  --muted:#b7b1a5;
  --line:#222833;
  --gold:#b8974f;
  --gold-soft:#d0b06a;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(184,151,79,0.08), transparent 30%),
    linear-gradient(180deg, #06080c 0%, #0a0d12 100%);
  color:var(--text);
  line-height:1.6;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,9,13,.8);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(184,151,79,.14);
}

.nav-wrap{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}


.brand{
  width: 154px;
  flex:0 0 auto;
}

.brand img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  color:var(--muted);
  font-size:14px;
  letter-spacing:.04em;
}

.nav a:hover{color:var(--text)}
.nav-button{
  color:var(--text);
  border:1px solid rgba(184,151,79,.4);
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(184,151,79,.08), rgba(184,151,79,.02));
}

.hero{
  padding:104px 0 84px;
}

.hero-inner{
  max-width:860px;
}

.eyebrow{
  margin:0 0 14px;
  color:var(--gold-soft);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:700;
}

h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(44px, 7vw, 76px);
  line-height:1.02;
  letter-spacing:-.04em;
  margin-bottom:20px;
  font-weight:650;
}

.hero-copy{
  max-width:720px;
  color:var(--muted);
  font-size:19px;
  line-height:1.8;
  margin-bottom:34px;
}

.hero-actions,
.contact-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.button{
  padding:15px 22px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.01em;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover{transform:translateY(-1px)}
.button-primary{
  background:linear-gradient(180deg, var(--gold-soft), var(--gold));
  color:#0a0d12;
  box-shadow:0 10px 28px rgba(184,151,79,.18);
}
.button-secondary{
  border:1px solid rgba(184,151,79,.38);
  color:var(--text);
  background:rgba(255,255,255,.01);
}

.statement-band{
  padding:0 0 34px;
}

.statement-inner{
  border-top:1px solid rgba(184,151,79,.18);
  border-bottom:1px solid rgba(184,151,79,.18);
  padding:26px 0;
}

.statement-inner p{
  margin:0;
  max-width:860px;
  font-size:22px;
  letter-spacing:-.02em;
  color:#e5decf;
}

.section{
  padding:76px 0;
}

.section-heading{
  max-width:740px;
  margin-bottom:34px;
}
.section-heading.compact{
  margin-bottom:28px;
}
h2{
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.08;
  letter-spacing:-.03em;
  margin-bottom:0;
  font-weight:620;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}

.card{
  background:linear-gradient(180deg, rgba(18,24,33,.96), rgba(12,16,22,.98));
  border:1px solid rgba(184,151,79,.14);
  border-radius:var(--radius);
  padding:28px;
  min-height:240px;
  box-shadow:var(--shadow);
}
.card-accent{
  width:56px;
  height:2px;
  background:linear-gradient(90deg, var(--gold-soft), transparent);
  margin-bottom:26px;
}
.card h3{
  font-size:22px;
  line-height:1.2;
  margin-bottom:14px;
  letter-spacing:-.02em;
}
.card p{
  color:var(--muted);
  margin-bottom:0;
}

.process-inner{
  background:linear-gradient(180deg, rgba(16,20,27,.7), rgba(11,14,19,.9));
  border:1px solid rgba(184,151,79,.12);
  border-radius:32px;
  padding:40px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}
.process-step{
  padding-top:8px;
}
.process-step span{
  display:inline-block;
  margin-bottom:18px;
  color:var(--gold-soft);
  font-size:14px;
  letter-spacing:.16em;
  font-weight:700;
}
.process-step h3{
  font-size:24px;
  margin-bottom:10px;
}
.process-step p{
  color:var(--muted);
  margin-bottom:0;
}

.founder-grid{
  display:grid;
  grid-template-columns:minmax(280px, 420px) minmax(0, 1fr);
  gap:42px;
  align-items:center;
}
.founder-photo-wrap{
  background:linear-gradient(180deg, rgba(184,151,79,.16), rgba(184,151,79,.04));
  border:1px solid rgba(184,151,79,.16);
  border-radius:32px;
  padding:14px;
  box-shadow:var(--shadow);
}
.founder-photo{
  border-radius:22px;
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.founder-copy{
  max-width:690px;
}
.founder-copy p{
  color:var(--muted);
  font-size:17px;
}
.founder-copy p:last-child{margin-bottom:0}

.contact-box{
  background:
    linear-gradient(180deg, rgba(18,24,33,.96), rgba(12,16,22,.96));
  border:1px solid rgba(184,151,79,.14);
  border-radius:32px;
  padding:40px;
  box-shadow:var(--shadow);
}
.contact-box h2{
  max-width:780px;
  margin-bottom:12px;
}
.contact-copy{
  color:var(--muted);
  margin-bottom:28px;
}

.site-footer{
  padding:32px 0 56px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(184,151,79,.12);
  padding-top:26px;
}
.footer-inner p{
  color:var(--muted);
  margin-bottom:0;
}
.footer-mark{
  width:64px;
  opacity:.9;
}

@media (max-width: 980px){
  .nav{display:none}
  .hero{padding:88px 0 70px}
  .section{padding:64px 0}
  .card-grid,
  .process-grid,
  .founder-grid{
    grid-template-columns:1fr;
  }
  .process-inner,
  .contact-box{padding:28px}
  
.brand{
  width: 154px; text-align:center}
  .section{padding:54px 0}
  .card{padding:24px; min-height:auto}
  .founder-photo-wrap{padding:10px; border-radius:24px}
  .founder-photo{border-radius:18px}
}




.site-header{
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.site-header.header-scrolled{
  background: rgba(7,9,13,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}


/* Theme toggle */
.theme-toggle{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(184,151,79,.32);
  background: rgba(255,255,255,.02);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .22s ease, background .22s ease, transform .18s ease;
}
.theme-toggle:hover{
  transform: translateY(-1px);
  border-color: rgba(184,151,79,.48);
}
.theme-icon{
  position: absolute;
  font-size: 18px;
  line-height: 1;
  transition: opacity .28s ease, transform .28s ease;
}
.sun-icon{ opacity: 1; transform: scale(1) rotate(0deg); }
.moon-icon{ opacity: 0; transform: scale(.7) rotate(-20deg); }

body.light-mode .sun-icon{ opacity: 0; transform: scale(.7) rotate(20deg); }
body.light-mode .moon-icon{ opacity: 1; transform: scale(1) rotate(0deg); }

/* Light mode variables */
body.light-mode{
  --bg:#f6f1e6;
  --panel:#fffaf1;
  --panel-2:#fff8ed;
  --text:#131313;
  --muted:#625a4c;
  --line:#ddd1bb;
  --gold:#b8974f;
  --gold-soft:#c8a85d;
  --shadow:0 20px 60px rgba(0,0,0,.08);
  background:
    radial-gradient(circle at top, rgba(184,151,79,0.10), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #f3ece0 100%);
}
body.light-mode .site-header{
  background: rgba(248,242,232,.82);
}
body.light-mode .site-header.header-scrolled{
  background: rgba(248,242,232,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
body.light-mode .button-secondary{
  background: rgba(0,0,0,.01);
}

/* Light mode text contrast fix */
body.light-mode {
  --text:#0e0e0e;
  --muted:#3e3a33;
}

body.light-mode p,
body.light-mode .hero-copy,
body.light-mode .card p,
body.light-mode .contact-copy,
body.light-mode .statement-inner p {
  color:#3e3a33;
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3 {
  color:#0e0e0e;
}


/* Light mode box contrast fix */
body.light-mode .card,
body.light-mode .process-inner,
body.light-mode .contact-box{
  background: linear-gradient(180deg, rgba(255,250,241,.98), rgba(248,239,225,.98));
  border: 1px solid rgba(184,151,79,.24);
}

body.light-mode .card h3,
body.light-mode .process-step h3,
body.light-mode .contact-box h2,
body.light-mode .section-heading h2,
body.light-mode .section-heading .eyebrow,
body.light-mode .contact-box .eyebrow{
  color:#111111;
}

body.light-mode .card p,
body.light-mode .process-step p,
body.light-mode .contact-box p,
body.light-mode .contact-copy{
  color:#332f29;
}

body.light-mode .process-step span{
  color:#8d6f32;
}

body.light-mode .statement-inner{
  border-top:1px solid rgba(184,151,79,.26);
  border-bottom:1px solid rgba(184,151,79,.26);
}

body.light-mode .statement-inner p{
  color:#1f1c18;
}


.footer-legal{
  margin-top:20px;
  font-size:12px;
  line-height:1.6;
  max-width:800px;
}
.footer-legal p{
  margin-bottom:10px;
  color:var(--muted);
}

/* dark mode */
body:not(.light-mode) .footer-legal p{
  color:#9a9488;
}

/* light mode */
body.light-mode .footer-legal p{
  color:#3a342c;
}
