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

:root {
  --bg: #fafaf8;
  --bg2: #f3f1ec;
  --surface: #ffffff;
  --border: #e2ddd6;
  --text: #1c1c1c;
  --muted: #6b6560;
  --navy: #1a2744;
  --gold: #c9a84c;
  --gold2: #e0bc6e;
  --warm: #f7f2ea;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.label { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(26,39,68,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.logo-sub { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: inline-block; padding: 9px 22px; background: var(--gold); color: #000; border-radius: 4px; font-size: 0.82rem; font-weight: 700; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold2); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #fff; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-size: 0.92rem; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #243460; transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* SECTIONS */
.section { padding: 90px 24px; }
.section-alt { background: var(--bg2); }
.section-navy { background: var(--navy); color: #fff; }
.section-warm { background: var(--warm); }
.container { max-width: 1100px; margin: 0 auto; }
.section-heading { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 48px; max-width: 600px; line-height: 1.8; }

/* PAGE HEADER */
.page-header { background: var(--navy); padding: 80px 24px 60px; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* CARDS */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 48px 24px 32px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}