:root {
  --navy: #0D1B2A;
  --navy-mid: #162236;
  --navy-light: #1E2F45;
  --gold: #C9A84C;
  --gold-light: #DFC070;
  --cream: #F5F0E8;
  --text-muted: rgba(245, 240, 232, 0.65);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--cream); background: rgba(201, 168, 76, 0.1); }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  margin-left: 0.5rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: var(--transition);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 68px 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 4rem;
}
.hero-content { flex: 1; max-width: 560px; z-index: 1; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-visual {
  flex: 1;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-circle {
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: absolute;
}
.geo-shape { position: absolute; border-radius: 4px; }
.geo-shape--1 {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.4);
  transform: rotate(15deg);
  top: 80px; left: 50%; margin-left: -90px;
}
.geo-shape--2 {
  width: 120px; height: 120px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  transform: rotate(-20deg);
  bottom: 100px; left: 60px;
}
.geo-shape--3 {
  width: 80px; height: 80px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  transform: rotate(45deg);
  top: 120px; right: 40px;
}
.geo-shape--4 {
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
  bottom: 160px; left: 50%; transform: translateX(-50%) rotate(-10deg);
}
.services {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  background: rgba(30,47,69,0.6);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-icon { width: 56px; height: 56px; margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-link { color: var(--gold); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: letter-spacing var(--transition); }
.service-link:hover { letter-spacing: 0.05em; }
.footer { margin-top: auto; background: rgba(0,0,0,0.4); border-top: 1px solid rgba(201,168,76,0.1); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.78rem; color: var(--text-muted); max-width: 380px; line-height: 1.5; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.2); gap: 0.5rem;
  }
  .nav-toggle { display: flex; }
  .hero { flex-direction: column; gap: 2rem; padding-top: 100px; min-height: auto; padding-bottom: 3rem; }
  .hero-visual { height: 240px; width: 100%; }
  .geo-circle { width: 220px; height: 220px; }
  .services-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
