@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=DM+Mono:wght@300;400&display=swap');
 
:root {
  --navy:    #05101d;
  --navy-2:  #091828;
  --navy-3:  #0c2236;
  --teal:    #2ab5ac;
  --teal-dim:#1e8a84;
  --gold:    #c9943a;
  --gold-lt: #e4ba6e;
  --gold-dim:#a37828;
  --cream:   #f5f0e8;
  --cream-2: #ede8de;
  --text:    #0d1a27;
  --muted:   #5a6676;
  --line:    #dfe4eb;
  --white:   #ffffff;
  --radius:  20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-card: 0 2px 0 rgba(0,0,0,.04), 0 12px 40px rgba(5,16,29,.08);
  --shadow-deep: 0 24px 64px rgba(5,16,29,.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}
 
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
 
/* ─── HEADER ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  background: rgba(5,16,29,.94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(201,148,58,.14);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(5,16,29,.98);
  box-shadow: 0 1px 0 rgba(201,148,58,.1), 0 8px 32px rgba(0,0,0,.2);
}
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(201,148,58,.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -.02em;
  transition: background var(--transition);
}
.brand:hover .brand-mark { background: rgba(201,148,58,.08); }
.brand-name {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}
.nav { display: flex; gap: 4px; font-size: 13px; font-weight: 500; }
.nav a {
  color: rgba(255,255,255,.7);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .02em;
}
.nav a:hover {
  color: var(--gold-lt);
  background: rgba(201,148,58,.08);
}
.language-switch {
  display: flex; gap: 4px; align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 4px 6px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .05em;
  transition: color var(--transition), background var(--transition);
}
.lang-btn.active {
  color: var(--navy);
  background: var(--gold);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 8px;
  place-items: center;
  transition: border-color var(--transition);
}
.menu-toggle:hover { border-color: var(--gold); color: var(--gold); }
 
/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
  color: #fff;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/hero-background.svg") center/cover no-repeat;
  opacity: .9;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(108deg, rgba(5,16,29,.97) 0%, rgba(5,16,29,.82) 44%, rgba(5,16,29,.28) 72%, rgba(5,16,29,.72) 100%),
    radial-gradient(ellipse 60% 70% at 68% 20%, rgba(42,181,172,.12), transparent 60%),
    radial-gradient(ellipse 40% 50% at 12% 80%, rgba(201,148,58,.06), transparent 50%);
}
.hero-person {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(420px, 40vw);
  height: 600px;
  background: url("assets/hero-person.svg") bottom center/contain no-repeat;
  z-index: 2;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.4));
}
.hero-content { position: relative; z-index: 3; padding: 80px 0 100px; }
.hero-copy { max-width: 660px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.teal { color: var(--teal); }
.gold { color: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  margin: 0 0 24px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-lead {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(220,232,244,.82);
  max-width: 560px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,148,58,.3);
}
.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 8px 28px rgba(201,148,58,.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.04);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
 
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin-top: 40px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(201,148,58,.22);
  border-radius: var(--radius-sm);
  background: rgba(5,16,29,.5);
  backdrop-filter: blur(10px);
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: rgba(201,148,58,.5); }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 12px;
  color: rgba(215,228,242,.7);
  font-weight: 400;
  letter-spacing: .01em;
}
 
/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(42,181,172,.07), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(201,148,58,.05), transparent 50%);
  pointer-events: none;
}
.section-heading { margin-bottom: 52px; }
.section-heading.centered { text-align: center; }
.section-heading h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.section-heading h2 em { font-style: italic; color: var(--teal); }
.section-dark .section-heading h2 { color: #fff; }
.section-dark .section-heading h2 em { color: var(--gold-lt); }
.section-heading p.lead {
  margin: 12px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
}
.section-heading.centered p.lead { margin-left: auto; margin-right: auto; }
 
/* ─── WHY ME CARDS ─── */
.cards { display: grid; gap: 20px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); border-color: rgba(42,181,172,.2); }
.card:hover::after { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(42,181,172,.08);
  color: var(--teal-dim);
  font-size: 26px;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.card:hover .card-icon { background: rgba(42,181,172,.14); }
.card-icon.dark { background: var(--navy); color: var(--gold); }
.card:hover .card-icon.dark { background: var(--navy-2); }
.card h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
  font-weight: 700;
  line-height: 1.2;
}
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; font-weight: 300; }
 
/* ─── TIMELINE ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.timeline-connector {
  position: absolute;
  top: 20px; left: calc(10% + 20px); right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,148,58,.4) 20%, rgba(201,148,58,.4) 80%, transparent);
  pointer-events: none;
}
.timeline-item {
  position: relative;
  padding: 52px 20px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.timeline-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,148,58,.3);
  transform: translateY(-3px);
}
.timeline-number {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(201,148,58,.2);
}
.timeline-item img {
  width: 120px; height: 72px;
  object-fit: contain;
  margin: 0 auto 18px;
  opacity: .9;
}
.timeline-item h3 {
  font-family: var(--font-display);
  color: var(--gold-lt);
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.timeline-item p { color: rgba(213,226,240,.75); font-size: 13px; line-height: 1.55; margin: 0; font-weight: 300; }
 
/* ─── COMPETENCY GRID ─── */
.competency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.competency-grid span {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), color var(--transition);
  cursor: default;
}
.competency-grid span:hover { background: rgba(42,181,172,.05); color: var(--teal-dim); }
.competency-grid span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: .7;
}
 
/* ─── SERVICES ─── */
.service-cards .card { min-height: 220px; }
 
/* ─── PROFILE STRIP ─── */
.profile-strip {
  padding: 60px 0;
  background: linear-gradient(110deg, var(--navy-2) 0%, #083632 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.profile-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60 Z' fill='none' stroke='rgba(255,255,255,.025)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.strip-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.strip-grid h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.03em;
  font-weight: 700;
}
.strip-grid p { color: rgba(213,228,240,.75); line-height: 1.55; margin: 0; font-weight: 300; }
.strip-divider {
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 40px;
}
.language-list { display: grid; gap: 10px; margin-top: 4px; }
.language-list span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(213,228,240,.75);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.language-list b {
  color: var(--gold-lt);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.tool-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  color: rgba(213,228,240,.8);
  background: rgba(255,255,255,.04);
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
 
/* ─── CONTACT ─── */
.contact-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(42,181,172,.06), transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.contact-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 16px;
  font-weight: 700;
}
.contact-grid .contact-lead {
  color: rgba(213,228,240,.65);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
.contact-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 4px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-row:last-child { border-bottom: 0; }
.contact-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(201,148,58,.1);
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-row a {
  color: rgba(225,235,245,.85);
  font-weight: 500;
  font-size: 14px;
  word-break: break-word;
  transition: color var(--transition);
}
.contact-row a:hover { color: var(--gold-lt); }
 
/* ─── FOOTER ─── */
.footer {
  background: #020b14;
  color: rgba(148,162,178,.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 40px;
  font-size: 12px;
  letter-spacing: .03em;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(201,148,58,.6);
  font-family: var(--font-display);
  font-size: 14px;
}
 
/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
 
/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .site-header { padding: 0 20px; }
  .menu-toggle { display: grid; }
  .brand-name { display: none; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    padding: 16px 20px 24px;
    background: rgba(5,16,29,.98);
    border-bottom: 1px solid rgba(201,148,58,.15);
    gap: 2px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 14px; }
  .hero { min-height: 100svh; align-items: flex-start; padding-top: 72px; }
  .hero-content { padding: 80px 0; }
  .hero-person { opacity: .2; right: -60px; width: 480px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .cards.four,
  .timeline,
  .competency-grid,
  .strip-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .strip-divider { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px; }
  .timeline-connector { display: none; }
  .timeline-item { padding-top: 56px; }
  .contact-grid { gap: 40px; }
  .section { padding: 72px 0; }
}
@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .hero h1 { font-size: 44px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats { grid-template-columns: 1fr; }
  .footer { flex-direction: column; padding: 20px; text-align: center; gap: 8px; }
  .section { padding: 56px 0; }
  .competency-grid { grid-template-columns: 1fr 1fr; }
}
 