:root {
  --navy-900: #00002b;
  --navy-800: #000055;
  --navy-700: #0d1b4c;
  --gold: #b8862c;
  --gold-light: #d9a94f;
  --gold-text: #936b23;
  --bg: #f7f8fb;
  --bg-alt: #eef1f7;
  --text: #1c1f2a;
  --text-muted: #565b6b;
  --border: #e2e5ee;
  --white: #ffffff;
  --max-width: 1120px;
  --radius: 10px;
  --header-height: 65px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--white);
  color: var(--navy-900);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px; color: var(--text-muted); }

.section-eyebrow, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-text);
  margin-bottom: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo { height: 40px; width: auto; }

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--gold-text); }

.nav-cta {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}

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

.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px !important;
}

.lang-switch:hover { border-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 96px 0 80px;
}

.hero-inner { max-width: 780px; }

.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 800; }

.hero .eyebrow { color: var(--gold-light); }

.hero-sub2 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #dfe3f0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 660px;
  margin: 0 0 20px;
}

.hero-sub {
  color: #c7cbdb;
  font-size: 1.1rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}

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

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-large { font-size: 1.1rem; padding: 16px 36px; }

/* Stats */
.stats {
  background: var(--navy-800);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-label {
  display: block;
  color: #c7cbdb;
  font-size: 0.85rem;
  margin-top: 4px;
}

.formula-banner {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: var(--navy-900);
  padding: 28px 0;
  text-align: center;
}

.formula-banner p {
  color: var(--white);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 800;
  margin: 0;
}

.formula-banner .accent { color: var(--gold-light); font-style: italic; }

/* Sections */
.section { padding: 88px 0; }

.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
}

.about-highlights {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}

.about-highlights ul { margin: 0; padding-left: 20px; color: var(--text-muted); }
.about-highlights li { margin-bottom: 12px; }

.about-photo {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.about-photo-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.about-photo-credential {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

.linkedin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  margin: -4px 0 20px;
  transition: background 0.15s ease, color 0.15s ease;
}

.linkedin-button:hover { background: var(--gold); color: var(--navy-900); }

.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { margin: 0; }

.approach { background: var(--white); }

.approach-list { margin-top: 32px; }

.approach-item {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}

.approach-item:last-child { border-bottom: 1px solid var(--border); }

.approach-label {
  flex: 0 0 130px;
  font-weight: 800;
  color: var(--gold-text);
  font-size: 1.05rem;
}

.approach-item p { margin: 0; flex: 1 1 auto; max-width: 620px; }

.track-record { background: var(--bg); }

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.track-item {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.track-item h3 { margin-bottom: 8px; }
.track-item p { margin: 0; }

.faq { background: var(--white); }

.faq-list { margin-top: 32px; }

.faq-item { padding: 24px 0; border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { margin: 0; max-width: 680px; }

.contact {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--white);
  text-align: center;
}

.contact h2 { color: var(--white); }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-sub { color: #c7cbdb; }
.contact .section-eyebrow { color: var(--gold-light); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { height: 28px; filter: brightness(0) invert(1); opacity: 0.8; }

.footer-inner p { color: #9aa0b4; margin: 0; font-size: 0.85rem; }

.footer-inner a { color: #c7cbdb; font-size: 0.85rem; text-decoration: none; }
.footer-inner a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .services-grid, .track-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item { flex-direction: column; gap: 6px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 18px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta, .lang-switch { align-self: flex-start; }
  .brand-logo { height: 32px; }
  .brand-name { font-size: 1.05rem; }
}

/* Scroll reveal: JS adds js-reveal-ready before any .reveal element is
   hidden, so content stays fully visible with JS disabled or blocked. */
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
