:root {
  color-scheme: light;
  --bg: #f8f7f2;
  --surface: #ffffff;
  --ink: #1f2523;
  --muted: #66706b;
  --line: #d9ddd5;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #c27b25;
  --shadow: 0 24px 60px rgba(31, 37, 35, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(217, 221, 213, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 32px rgba(31, 37, 35, 0.08);
}

.nav a {
  min-width: 52px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  outline: none;
}

.section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding-top: 36px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-kicker,
.work-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

.lead {
  margin: 28px 0 0;
  color: var(--teal-dark);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 760;
  line-height: 1.28;
}

.summary {
  margin: 22px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
}

.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.25);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(217, 221, 213, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.body-copy {
  color: var(--muted);
  font-size: 18px;
}

.body-copy p {
  margin: 0 0 18px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.card-index {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 850;
}

.focus-card p,
.work-item p {
  margin: 0;
  color: var(--muted);
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.work-label {
  margin-bottom: 8px;
  color: var(--amber);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-links a {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
  font-weight: 750;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(15, 118, 110, 0.4);
  outline: none;
}

.site-footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    overflow-x: auto;
    max-width: calc(100vw - 94px);
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-media {
    min-height: 260px;
  }

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

  .focus-card {
    min-height: 190px;
  }

  .card-index {
    margin-bottom: 24px;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 24px, var(--max-width));
    padding: 64px 0;
  }

  .site-header,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header {
    position: static;
  }

  .nav a {
    min-width: 46px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .lead {
    font-size: 22px;
  }

  .summary,
  .body-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}
