:root {
  --bg: #0d1f2d;
  --surface: #122535;
  --surface2: #1a3347;
  --fg: #f0ede8;
  --fg-muted: #9aadbf;
  --accent: #e8634a;
  --accent-warm: #f4a261;
  --teal: #2d9b8a;
  --gold: #d4a853;
  --border: rgba(240,237,232,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,155,138,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(232,99,74,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(212,168,83,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0d1f2d 0%, #0a2a1e 40%, #1a3a2e 70%, #0d1f2d 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,74,0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── Shared Section Styles ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
}

/* ── Territory ── */
.territory {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.territory-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.territory-item {
  padding: 40px;
  background: var(--surface);
  border-left: 2px solid var(--teal);
  transition: background 0.2s;
}

.territory-item:hover { background: var(--surface2); }

.territory-icon {
  color: var(--teal);
  margin-bottom: 16px;
}

.territory-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.territory-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Manifesto ── */
.manifesto {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 48px;
}

.manifesto-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.manifesto-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent-warm);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Fleet ── */
.fleet {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.fleet-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.fleet-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.fleet-card-icon {
  color: var(--teal);
  margin-bottom: 20px;
}

.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.fleet-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.fleet-note {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.fleet-note p {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

/* ── Closing ── */
.closing {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(154,173,191,0.6);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 48px; }
  .territory, .manifesto, .fleet, .closing { padding: 64px 24px; }
  .territory-grid { grid-template-columns: 1fr; }
  .fleet-cards { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .site-footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 16px; }
}
