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

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

:root {
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #222222;
  --black-5:    #2e2e2e;
  --gold:       #c9a84c;
  --gold-dim:   #9e7e35;
  --gold-light: #e8c97a;
  --white:      #ffffff;
  --off-white:  #f0ede6;
  --muted:      #888888;
  --muted-2:    #555555;
  --border:     rgba(201,168,76,0.18);
  --border-2:   rgba(255,255,255,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --radius: 3px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s !important;
  white-space: nowrap;
}

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

/* ── PAGE SHELL ── */
.page-top { padding-top: var(--nav-h); }

/* ── SECTIONS ── */
section { padding: 6rem 2.5rem; }
section.tight { padding: 4rem 2.5rem; }
.inner { max-width: 1080px; margin: 0 auto; }
.inner-sm { max-width: 760px; margin: 0 auto; }

/* ── SECTION LABELS ── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* ── HEADINGS ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
em { font-style: italic; color: var(--gold); }

.section-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ── DIVIDERS ── */
.ruled {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

hr.section-rule {
  border: none;
  border-top: 1px solid var(--border-2);
  margin: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

/* ── STAT STRIP ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  overflow: hidden;
  margin: 3rem 0;
}

.stat-cell {
  background: var(--black-2);
  padding: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CARDS ── */
.card {
  background: var(--black-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border); }

.card-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--black-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  overflow: hidden;
  padding: 14px 0;
}

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

.marquee-track span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0 2rem;
}

.marquee-track span.dot {
  color: var(--gold);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── QUOTE ── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--black-2);
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.pull-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── STEP LIST ── */
.step-list { list-style: none; }

.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-2);
}

.step-item:last-child { border-bottom: none; }

.step-n {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  min-width: 32px;
  opacity: 0.6;
  padding-top: 2px;
}

.step-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TEAM CARD ── */
.team-card {
  background: var(--black-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 2rem;
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black-4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.team-name { font-size: 1.1rem; margin-bottom: 2px; }
.team-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-bio { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }

.team-bullets { list-style: none; }
.team-bullets li {
  font-size: 12px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-2);
  display: flex;
  gap: 8px;
}
.team-bullets li:last-child { border-bottom: none; }
.team-bullets li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--black-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select option { background: var(--black-3); }
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

input::placeholder, textarea::placeholder { color: var(--muted-2); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-row input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.checkbox-row label {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--black-2);
  border-top: 1px solid var(--border-2);
  padding: 3rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-2);
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--sans);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-contact a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  max-width: 1080px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-2);
}

.footer-bottom a { color: var(--muted-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(135deg, var(--black) 0%, var(--black-2) 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; max-width: 700px; }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── DARK SECTION ── */
.section-dark { background: var(--black-2); }
.section-darker { background: var(--black-3); }

/* ── PILL TAGS ── */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--gold);
}

/* ── DISCLAIMER ── */
.disclaimer {
  font-size: 11px;
  color: var(--muted-2);
  border-top: 1px solid var(--border-2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── LOGO ── */
.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 2rem;
}

.section-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.15;
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
}

.watermark-logo {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  object-fit: contain;
  opacity: 0.06;
  pointer-events: none;
}
