@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --bg: #0A0D12;
  --surface: #111620;
  --text-primary: #F0EDE6;
  --text-secondary: #8A8F9E;
  --accent-gold: #C9A84C;
  --accent-gold-light: #E8C97A;
  --divider: #1E2433;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg); color: var(--text-primary); font-family: var(--font-body); min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
li { list-style: none; }
img { max-width: 100%; display: block; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%; }
.text-center { text-align: center; }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Typography */
.eyebrow { font-family: var(--font-mono); font-size: 11px; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.hero-headline { font-family: var(--font-display); font-size: 72px; color: var(--text-primary); line-height: 1.1; margin-bottom: 24px; font-weight: 500; }
.section-headline { font-family: var(--font-display); font-size: 56px; color: var(--text-primary); line-height: 1.1; margin-bottom: 24px; font-weight: 500; }
.section-headline-sm { font-family: var(--font-display); font-size: 42px; color: var(--text-primary); line-height: 1.2; margin-bottom: 24px; font-weight: 500; }
.subheadline { font-size: 18px; color: var(--text-secondary); line-height: 1.6; max-width: 520px; font-weight: 400; }
.body-text { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

/* Buttons & Links */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 16px 32px; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { border: 1px solid var(--accent-gold); background: transparent; color: var(--accent-gold); }
.btn-primary:hover { background: var(--accent-gold); color: var(--bg); border-color: var(--accent-gold); }
.btn-solid { background: var(--accent-gold); color: var(--bg); border: 1px solid var(--accent-gold); border-radius: 0; }
.btn-solid:hover { background: var(--accent-gold-light); border-color: var(--accent-gold-light); }
.btn-full { width: 100%; }
.link-gold { color: var(--accent-gold); position: relative; display: inline-block; font-size: 14px; font-weight: 500; }
.link-gold::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background-color: var(--accent-gold); transition: width 0.3s ease; }
.link-gold:hover::after { width: 100%; }

/* Navigation */
nav { position: fixed; top: 0; left: 0; width: 100%; padding: 32px 0; z-index: 1000; transition: all 0.3s ease; border-bottom: 1px solid transparent; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-scrolled { background: rgba(10, 13, 18, 0.7); backdrop-filter: blur(12px); border-bottom: 1px solid var(--divider); padding: 16px 0; }
.logo { font-family: var(--font-display); font-size: 18px; color: var(--accent-gold); letter-spacing: 0.1em; display: inline-block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-primary); font-size: 14px; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-gold-light); }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; border: none; background: transparent; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; }

/* Sections */
.section { padding: 96px 0; position: relative; }
.section-surface { background: var(--surface); }
.section-full-height { min-height: 100vh; display: flex; align-items: center; position: relative; }
.section-page-header { padding: 160px 0 96px; text-align: center; }

/* Hero Specific */
.hero-mesh { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background-image: linear-gradient(to right, var(--bg) 0%, rgba(10, 13, 18, 0) 100%), linear-gradient(rgba(10, 13, 18, 0.9), var(--bg)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0l100 100M100 0L0 100" stroke="%23c9a84c" stroke-width="0.3" fill="none"/></svg>'); background-size: auto, auto, 80px 80px; opacity: 0.08; z-index: -1; mask-image: radial-gradient(circle at center, black 0%, transparent 60%); -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 70%); }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; max-width: 650px; position: relative; z-index: 10; padding-top: 60px; }
.hero-content .delay-3 { margin-top: 40px; }

/* Grid & Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start; }
.grid-col { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.grid-divider { width: 1px; background: var(--accent-gold); opacity: 0.3; align-self: stretch; }

/* Team Cards */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.team-card { background: var(--surface); border: 1px solid var(--accent-gold); padding: 48px; transition: outline 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; outline: 1px solid transparent; }
.team-card:hover { outline: 1px solid rgba(201, 168, 76, 0.5); box-shadow: 0 0 32px rgba(201, 168, 76, 0.05); }
.team-photo { width: 100px; height: 100px; border-radius: 4px; border: 1px solid var(--accent-gold); display: flex; align-items: center; justify-content: center; background: var(--bg); color: var(--accent-gold); font-family: var(--font-display); font-size: 40px; margin-bottom: 24px; }
.team-name { font-family: var(--font-display); font-size: 28px; color: var(--text-primary); margin-bottom: 8px; }
.team-title { font-family: var(--font-mono); font-size: 12px; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; line-height: 1.4; }
.team-bio { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.bullet-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; flex-grow: 1; }
.bullet-list li { position: relative; padding-left: 20px; font-size: 14px; color: var(--text-primary); line-height: 1.5; }
.bullet-list li::before { content: "•"; position: absolute; left: 0; color: var(--accent-gold); }

/* Credibility Bar */
.credibility-bar { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; gap: 32px; align-items: center; text-align: center; background: var(--surface); padding: 64px 0;border-top: 1px solid transparent;}
.credibility-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 16px; }
.credibility-label { font-family: var(--font-mono); font-size: 11px; color: var(--accent-gold); letter-spacing: 0.1em; }
.credibility-text { font-size: 14px; color: var(--text-primary); font-weight: 400; max-width: 250px; line-height: 1.5; }

/* Services - Track List */
.service-items { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.service-item-title { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--text-primary); margin-bottom: 8px; position: relative; padding-left: 16px; }
.service-item-title::before { content: ""; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold); position: absolute; left: 0; top: 6px; }
.service-item-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-left: 16px; max-width: 580px; }

/* Engagement Model Grid */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; border-top: 1px solid rgba(201, 168, 76, 0.4); padding-top: 48px; margin-top: 48px; }
.step-title { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--text-primary); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* Contact Form */
.form-container { max-width: 560px; margin: 0 auto; width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; text-align: left; }
.form-label { font-family: var(--font-mono); font-size: 12px; color: var(--accent-gold); }
.form-control { background: #0c1016; border: 1px solid var(--divider); padding: 16px; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.3s; width: 100%; }
.form-control:focus { border-color: var(--accent-gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; }
.form-footer { margin-top: 24px; font-size: 13px; color: var(--text-secondary); text-align: center; }

/* Footer */
footer { background: #05070a; padding: 64px 0 24px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: center; border-bottom: 1px solid var(--divider); padding-bottom: 48px; margin-bottom: 24px; }
.footer-left p { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }
.footer-links { display: flex; justify-content: center; gap: 24px; }
.footer-links a, .footer-contact a { font-size: 13px; color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-gold); }
.footer-contact { text-align: right; }
.footer-bottom { text-align: center; }
.footer-bottom p { font-family: var(--font-mono); font-size: 11px; color: #4A4D57; }

/* Responsive Adjustments */
@media (max-width: 900px) {
  .hero-headline { font-size: 56px; }
  .section-headline { font-size: 42px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-divider { display: none; }
  .credibility-bar { grid-template-columns: 1fr; gap: 48px; }
  .credibility-bar .grid-divider { display: none; }
  .credibility-item { padding: 0; }
  .step-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-contact { text-align: center; }
  .hero-mesh { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .hero-headline { font-size: 42px; }
  .section-headline { font-size: 36px; }
  .section-headline-sm { font-size: 32px; }
  nav { padding: 24px 0; }
  .nav-scrolled { padding: 16px 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--divider); align-items: flex-start; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
