:root {
  --ink: #1e2822;
  --green: #28533d;
  --green-dark: #183829;
  --green-soft: #e7eee8;
  --paper: #fbfcf9;
  --clay: #c96f4a;
  --line: #dce3dc;
  --muted: #687269;
  --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.6;
}

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

img {
  display: block;
}

.shell {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  background: rgba(251, 252, 249, 0.96);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand span {
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.brand small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #344139;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--clay);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  gap: clamp(48px, 7vw, 112px);
  padding-block: 54px 72px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 48px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote,
.intro-statement {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 630px;
  margin: 0;
  font-size: clamp(3.6rem, 6.4vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: #4f5a52;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.button:hover {
  background: var(--clay);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
}

.hero-image {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  background: #161515;
}

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

.intro-band {
  padding-block: 88px;
  background: var(--green-soft);
  border-block: 1px solid #d5dfd7;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.65fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.intro-statement {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.intro-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.works-section {
  padding-block: 130px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

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

.work-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #191918;
}

.work-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.work-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}

.work-meta h3 {
  margin: 0;
  font-size: 1.55rem;
}

.work-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.quote-section {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 12%;
  background: var(--green-dark);
  color: #f8f4ea;
  text-align: center;
}

.quote-section .eyebrow {
  color: #acc2b3;
}

blockquote {
  max-width: 980px;
  margin: 12px auto 44px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.button-light {
  background: #f8f4ea;
  color: var(--green-dark);
}

.page-hero {
  padding-block: 110px 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.8rem, 7.5vw, 8rem);
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.gallery-page {
  padding-block: 80px 140px;
}

.gallery-page .work-grid {
  gap: 52px 32px;
}

.about-lead {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 170px);
  padding-block: 110px;
}

.about-lead h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.08;
}

.prose p {
  margin: 0 0 24px;
  color: #4f5a52;
  font-size: 1.08rem;
}

.prose .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1.3;
}

.merits {
  padding-block: 110px 140px;
  background: var(--green-soft);
  border-top: 1px solid #d5dfd7;
}

.merits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 100px;
}

.merit-block h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.merit-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.merit-block li {
  padding: 12px 0;
  border-top: 1px solid #cbd7cd;
  color: #455148;
}

.contact-page {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: start;
  padding-block: 120px 150px;
}

.contact-page h1 {
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.contact-card {
  margin-top: 45px;
  padding: 42px;
  background: var(--green-soft);
  border-top: 4px solid var(--green);
}

.contact-card p {
  margin: 0 0 8px;
}

.contact-card a {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.contact-aside {
  padding-top: 72px;
}

.contact-aside p {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  padding-block: 68px 48px;
  background: #101d16;
  color: #cbd5ce;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 60px;
  align-items: end;
}

.footer-grid p {
  margin: 0;
}

.footer-brand {
  margin-bottom: 8px !important;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.footer-label {
  margin-bottom: 10px !important;
  color: #8ea595;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
}

.footer-copy {
  color: #829086;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .header-inner {
    min-height: 82px;
  }

  nav {
    gap: 20px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 70px 42px;
  }

  .hero-copy {
    padding: 0 0 24px;
  }

  .hero-image {
    min-height: 520px;
  }

  .intro-grid,
  .about-lead,
  .contact-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-statement {
    max-width: 700px;
  }

  .works-section,
  .about-lead,
  .merits,
  .contact-page {
    padding-block: 90px;
  }

  .contact-aside {
    padding-top: 0;
  }

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

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-block: 22px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .hero-image {
    min-height: 390px;
  }

  .intro-band {
    padding-block: 64px;
  }

  .intro-grid {
    gap: 25px;
  }

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

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

  .work-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .quote-section {
    min-height: 520px;
    padding-inline: 24px;
  }

  .page-hero {
    padding-block: 76px 54px;
  }

  .contact-card {
    padding: 30px;
  }

  .footer-grid {
    gap: 34px;
  }
}
