:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #64605a;
  --paper: #f6f2ec;
  --panel: #ffffff;
  --line: #d8d0c5;
  --accent: #2f6b5f;
  --deep: #243b4a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  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(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);
  background: rgba(246, 242, 236, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 32px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 clamp(22px, 5vw, 72px) clamp(54px, 9vw, 112px);
  color: #fffaf2;
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.intro {
  max-width: 960px;
  padding: clamp(42px, 7vw, 86px) clamp(22px, 5vw, 72px);
}

.intro p {
  margin: 0;
  color: var(--deep);
  font-size: clamp(22px, 3.3vw, 42px);
  line-height: 1.25;
  font-family: Georgia, "Times New Roman", serif;
}

.gallery-section,
.series {
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.section-heading .eyebrow {
  color: var(--accent);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

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

figure {
  margin: 0;
  background: var(--panel);
}

figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

figcaption {
  padding: 12px 4px 4px;
  color: var(--muted);
  font-size: 14px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.series-grid article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.series-grid span {
  color: var(--accent);
  font-weight: 700;
}

h3 {
  margin: 64px 0 12px;
  font-size: 24px;
}

.series-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

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

  .hero {
    min-height: 680px;
  }

  .gallery,
  .series-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
