:root {
  --bg: #f7f5f2;
  --text: #1f2933;
  --muted: #5f6b76;
  --accent: #2f6f8f;
  --card: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* HEADER */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 76px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 72px 24px;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.50)
    ),
    url("../images/tog3.jpg") center 42% / cover no-repeat;
  color: white;
  text-align: center;
}

.hero-inner {
  max-width: 850px;
  padding: 30px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero p {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

/* ABOUT */

.intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

.headshot {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* BUTTONS */

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid #d7dce0;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* LIFE / PHOTO MOSAIC */

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

.life-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.life-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.life-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-grid figure:hover img {
  transform: scale(1.02);
}

.photo-wide {
  grid-column: 1 / -1;
}

.photo-wide img {
  min-height: 420px;
}

/* FOOTER */

footer {
  border-top: 1px solid #e5e7eb;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-signature {
  width: 56px;
  height: auto;
  opacity: 0.75;
}

/* MOBILE */

@media (max-width: 760px) {
  .nav {
    padding: 10px 18px;
  }

  .brand img {
    width: 60px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 68vh;
    background:
      linear-gradient(
        rgba(0, 0, 0, 0.28),
        rgba(0, 0, 0, 0.52)
      ),
      url("../images/tog3.jpg") center / cover no-repeat;
  }

  .hero-inner {
    padding: 16px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 24px;
  }

  .headshot {
    max-width: 320px;
    margin: 0 auto;
  }

  .links {
    flex-direction: column;
    align-items: flex-start;
  }

  .life {
    padding: 10px 18px 60px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-wide {
    grid-column: auto;
  }

  .photo-grid img,
  .photo-wide img {
    min-height: 280px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}