:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #64615b;
  --paper: #f8f5ee;
  --panel: #ffffff;
  --line: #d8d0c4;
  --forest: #1f584f;
  --carmine: #8d2f3f;
  --gold: #c4943b;
  --blue: #254c76;
  --shadow: 0 18px 60px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(248, 245, 238, 0.92);
  border-bottom: 1px solid rgba(216, 208, 196, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.94rem;
  min-width: 0;
}

.site-nav a,
.site-footer a,
.focus-grid a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 92px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 238, 0.78)),
    var(--paper);
}

.eyebrow,
.section-kicker,
.number {
  color: var(--carmine);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.12;
}

.hero-content p:not(.eyebrow) {
  max-width: 48ch;
  color: #37332f;
  font-size: 1.15rem;
}

.hero-actions,
.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.button.secondary {
  color: var(--ink);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) 0;
}

.intro {
  max-width: 880px;
  text-align: center;
}

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

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.focus-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--panel);
  padding: clamp(24px, 3.3vw, 42px);
}

.focus-grid p {
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

blockquote {
  margin: 28px 0 0;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  color: #35302b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

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

.work-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.work-card:hover img {
  transform: scale(1.04);
}

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

.journal p {
  max-width: 68ch;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 4vw, 56px);
  background: #171717;
  color: #f7f1e6;
}

.site-footer p {
  margin-bottom: 0;
  color: #c8beb1;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

@media (max-width: 920px) {
  .hero,
  .profile,
  .journal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 48vh;
  }

  .focus-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav {
    justify-content: flex-start;
  }

  .hero-content {
    padding: 32px 20px 44px;
  }

  h1 {
    max-width: 10ch;
    font-size: 3rem;
  }

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

  .focus-grid article {
    min-height: 250px;
  }

  .button {
    width: 100%;
  }
}
