:root {
  --paper: #f8f5ee;
  --paper-2: #ebe4d7;
  --ink: #151515;
  --muted: #65615a;
  --line: #cfc5b6;
  --rust: #a33a24;
  --green: #113f31;
  --blue: #526c78;
  --shadow: 0 24px 70px rgba(31, 28, 24, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(16px);
}

.wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--rust);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.social-links {
  justify-self: end;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.social-links a:hover {
  border-color: var(--line);
  color: var(--rust);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 44vw) 1fr;
  min-height: max(720px, calc(100svh - 150px));
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px) clamp(32px, 6vw, 86px);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(92px, 13vw, 210px);
  font-weight: 700;
  line-height: 0.77;
}

.hero h1::after {
  display: block;
  width: 78px;
  height: 4px;
  margin: 46px 0 32px;
  background: var(--rust);
  content: "";
}

.hero-lede {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.1;
}

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

.text-link,
.button-link,
.identity-item a,
.journal-heading a {
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--rust);
  padding: 0 18px;
}

.button-link:hover {
  background: var(--rust);
  color: var(--paper);
}

.hero-media {
  min-height: 560px;
  margin: 0;
  border-left: 1px solid var(--line);
}

.hero-media img {
  object-position: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  padding: 32px 36px;
}

.proof-strip div {
  min-height: 76px;
  padding: 4px 34px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 0.95;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 94px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 120px) 42px;
  border-bottom: 1px solid var(--line);
}

.section-index,
.item-number,
.journal-list span {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-copy h2,
.feature-band h2,
.journal-heading h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 82px);
  font-weight: 600;
  line-height: 0.95;
}

.essay {
  max-width: 600px;
  margin-top: 34px;
  color: #2d2b28;
}

.essay p {
  margin: 0 0 20px;
}

.story-media {
  align-self: stretch;
  min-height: 560px;
  margin: 0;
  box-shadow: var(--shadow);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
}

.identity-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 46px 36px 50px;
  border-right: 1px solid var(--line);
}

.identity-item:first-child {
  padding-left: 0;
}

.identity-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.identity-item h3 {
  min-height: 158px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.9;
}

.identity-item figure {
  aspect-ratio: 1.55;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--paper-2);
}

.identity-item p:not(.item-number) {
  min-height: 130px;
  margin: 0 0 28px;
  color: #312e2a;
}

.identity-item a::after,
.text-link::after,
.journal-heading a::after {
  content: "  →";
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 7vw, 120px);
  align-items: center;
  padding: clamp(62px, 8vw, 118px) max(42px, calc((100vw - 1320px) / 2 + 42px));
  background: var(--green);
  color: var(--paper);
}

.feature-band .section-index {
  color: #dcbf93;
}

.feature-band p:last-child {
  margin: 0;
  color: rgba(248, 245, 238, 0.82);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.journal-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 100px) 42px;
  border-bottom: 1px solid var(--line);
}

.journal-heading h2 {
  max-width: 450px;
  margin-bottom: 42px;
}

.journal-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}

.journal-list article {
  min-height: 280px;
  padding: 12px 24px 0;
  border-right: 1px solid var(--line);
}

.journal-list article:last-child {
  border-right: 0;
}

.journal-list h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 0.98;
}

.journal-list p {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px max(42px, calc((100vw - 1320px) / 2 + 42px));
  background: linear-gradient(90deg, #0d372a, var(--green) 72%, #1e1e1e);
  color: var(--paper);
}

.quote-band blockquote {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.signature {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  font-style: italic;
  color: #e3d3bd;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(36px, 8vw, 120px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 42px;
}

.contact-section h2 {
  max-width: 560px;
}

.contact-section p {
  max-width: 520px;
  color: var(--muted);
}

address {
  display: grid;
  align-content: center;
  gap: 20px;
  color: #2f2b27;
  font-style: normal;
}

address a:hover {
  color: var(--rust);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 24px 42px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 26px;
  }

  .nav-links,
  .social-links {
    justify-self: start;
  }

  .nav-links {
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    padding: 0 0 10px;
    white-space: nowrap;
  }

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

  .hero-media {
    min-height: min(70svh, 620px);
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .story-section,
  .feature-band,
  .journal-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .identity-item,
  .identity-item:first-child,
  .identity-item:last-child {
    padding: 42px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .identity-item:last-child {
    border-bottom: 0;
  }

  .identity-item h3,
  .identity-item p:not(.item-number) {
    min-height: 0;
  }

  .journal-list {
    grid-template-columns: repeat(2, 1fr);
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .journal-list article {
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--paper);
  }

  .site-header,
  .hero-copy,
  .story-section,
  .identity-grid,
  .journal-section,
  .contact-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wordmark {
    font-size: 18px;
  }

  .social-links {
    display: none;
  }

  .hero h1 {
    font-size: clamp(72px, 22vw, 96px);
  }

  .hero h1::after {
    margin: 28px 0 22px;
  }

  .hero-lede {
    font-size: 23px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-copy {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-media {
    min-height: 230px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2) {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }

  .story-media {
    min-height: 380px;
  }

  .identity-item figure {
    aspect-ratio: 1.2;
  }

  .feature-band,
  .quote-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .journal-list {
    grid-template-columns: 1fr;
  }

  .journal-list article {
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .quote-band {
    grid-template-columns: 1fr;
  }

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