:root {
  color-scheme: light;
  --ink: #172633;
  --blue: #163f5a;
  --teal: #1f9a8a;
  --coral: #e9663d;
  --sun: #f4c84a;
  --paper: #fbfaf7;
  --mist: #e8f0ee;
  --line: #cbd7d3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; }

.site-header,
.hero,
.about,
.work,
footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: 138px; height: auto; }

nav { display: flex; gap: 24px; }
nav a {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
nav a:hover, nav a:focus-visible { color: var(--coral); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(48px, 9vw, 116px);
  align-items: center;
  min-height: 620px;
  padding-block: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { color: var(--blue); }

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: #40535d;
  font-size: 1.1rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 2px solid var(--coral);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover, .text-link:focus-visible { border-color: var(--teal); color: var(--teal); }

.portrait { margin: 0; }
.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 10px solid var(--sun);
  object-fit: cover;
  object-position: center;
}
.portrait figcaption {
  max-width: 300px;
  margin: 14px 0 0 auto;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.35;
}

.about {
  max-width: 1120px;
  border-top: 1px solid var(--line);
  padding-block: 100px;
}
.about > * { max-width: 780px; }
.about h2, .work h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  letter-spacing: 0;
  line-height: 1.06;
}
.about-copy { color: #40535d; font-size: 1.06rem; }
.about-copy p { margin-bottom: 18px; }
.about-link { margin-top: 8px; }

.work {
  width: 100%;
  max-width: none;
  background: var(--mist);
  padding: 88px max(24px, calc((100% - 1120px) / 2));
}
.section-heading { max-width: 520px; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 48px;
}
.focus-grid article { border-top: 2px solid var(--blue); padding-top: 18px; }
.focus-number { color: var(--coral); font-size: 0.78rem; font-weight: 700; }
.focus-grid h3 { margin: 8px 0; font-family: var(--serif); font-size: 1.45rem; }
.focus-grid p { color: #40535d; font-size: 0.95rem; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
}
footer img { width: 110px; height: auto; }
footer p { margin: 0; color: #62717a; font-size: 0.78rem; }

@media (max-width: 700px) {
  .site-header, .hero, .about, footer { width: min(100% - 32px, 1120px); }
  .site-header { min-height: 72px; }
  .brand img { width: 120px; }
  nav { gap: 16px; }
  nav a { font-size: 0.78rem; }
  .hero { grid-template-columns: 1fr; gap: 44px; min-height: auto; padding-block: 56px 72px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.25rem); }
  .portrait { max-width: 520px; }
  .about { padding-block: 72px; }
  .work { padding: 64px 16px; }
  .focus-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 36px; }
}

@media (max-width: 380px) {
  nav { gap: 10px; }
  nav a { font-size: 0.72rem; }
  .brand img { width: 108px; }
}
