:root {
  --paper: #f8f5ef;
  --ink: #20201d;
  --muted: #6f6b62;
  --line: #ded8cc;
  --leaf: #405646;
  --coral: #b85641;
  --blue: #183e67;
  --stone: #c7bcae;
  --white: #fffdfa;
  --shadow: 0 16px 40px rgba(32, 32, 29, 0.12);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(32, 32, 29, 0.1);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.primary-nav a {
  padding: 10px 0;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #ede5da;
}

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

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(42px, 8vw, 96px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 9vw, 8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
}

.hero-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.section {
  padding: clamp(54px, 9vw, 112px) 0;
}

.section.alt {
  background: var(--white);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(240px, 0.5fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

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

.work-card {
  display: grid;
  gap: 14px;
}

.work-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--stone);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

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

.work-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.work-card p {
  margin: -4px 0 0;
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 0.95fr);
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: var(--stone);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-copy p,
.page-intro p,
.text-block p {
  color: var(--muted);
  margin: 18px 0 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.page-title {
  padding: clamp(56px, 10vw, 124px) 0 clamp(34px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.page-intro {
  max-width: 760px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.archive-item {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.archive-item h3 {
  margin-top: 18px;
}

.archive-item p {
  color: var(--muted);
  margin: 8px 0 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 253, 250, 0.74);
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--white);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(32, 32, 29, 0.08);
  }

  .section-head,
  .feature-row,
  .feature-row.reverse,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

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

  .hero {
    min-height: 76vh;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (min-width: 821px) and (max-width: 1040px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
