:root {
  --navy: #16233a;
  --navy-dark: #0d1522;
  --charcoal: #1e2226;
  --cream: #f5f1e8;
  --stone: #eae4d6;
  --gold: #a9824c;
  --text-dark: #21252b;
  --text-muted: #5b6570;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--navy-dark);
}

a { text-decoration: none; color: inherit; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--navy-dark);
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--stone);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 2rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

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

.hero-text h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
}

.subtitle {
  color: var(--stone);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-desc {
  color: #c7cdd6;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #c39a5f;
  transform: translateY(-2px);
}

/* Sections */
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

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

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  max-width: 750px;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

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

.section-intro {
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.col-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.tick-list {
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
}

.tick-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Experience cards */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.exp-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 1.8rem;
  border-radius: 4px;
}

.exp-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.exp-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.exp-card p:not(.exp-role) {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.credentials, .languages {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--stone);
}

.credentials h3, .languages h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.languages p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.languages-note {
  max-width: 650px;
}

/* Contact */
.contact {
  background: var(--navy-dark);
}

.contact h2, .contact .eyebrow { color: var(--white); }
.contact .eyebrow { color: var(--gold); }

.contact .section-intro {
  color: var(--stone);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-details a, .contact-details span {
  color: var(--stone);
  font-size: 1.05rem;
}

.contact-details a:hover { color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.5rem;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 800px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .two-col, .exp-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
}
