* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-size: 20px;
  font-weight: 500;
}

.linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
}

.linkedin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.linkedin:hover {
  background: #111;
  color: #fff;
}

/* HERO */

.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 80px 0;
}

.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin: 0 0 18px;
}

.accent {
  color: #d32f2f;
}

.hero-subhead {
  font-size: 18px;
  max-width: 580px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero-statements p {
  font-size: 16px;
  margin: 6px 0;
  letter-spacing: 0.2px;
}

/* EXPERIENCE */

.experience {
  padding: 80px 0;
  background: #f8f8f8;
}

.experience-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
}

.experience-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.experience-text p {
  color: #444;
}

.experience-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* FOCUS */

.focus {
  padding: 80px 0;
}

.focus-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d32f2f;
  margin-bottom: 24px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.focus-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.focus-item p {
  font-size: 14px;
  color: #555;
}

/* CLOSING */

.closing {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.closing-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

/* GLOBAL HEADING RHYTHM */

section h2,
section h3,
section h4 {
  margin-top: 0;
  margin-bottom: 0.4em;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 900px) {

  .container {
    padding: 0 20px;
  }

  /* HERO */

  .hero-overlay {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-subhead {
    font-size: 16px;
  }

  .hero-statements p {
    font-size: 15px;
  }

  /* EXPERIENCE */

  .experience {
    padding: 60px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-image {
    order: -1; /* Headshot above text on mobile */
    text-align: center;
  }

  .experience-image img {
    max-width: 220px;
  }

  .experience-text h2 {
    font-size: 26px;
  }

  /* FOCUS */

  .focus {
    padding: 50px 0;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .focus-item h4 {
    font-size: 20px;
  }

  .focus-item p {
    font-size: 15px;
  }

  /* CLOSING */

  .closing-overlay {
    padding: 60px 0;
  }

  .closing h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}