@font-face {
  font-family: "Exposee Serif";
  src: url("fonts/Lora-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Exposee Sans";
  src: url("fonts/SourceSans3-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ink: #1f2320;
  --muted: #656b62;
  --line: #d9ddd5;
  --paper: #fbfaf7;
  --soft: #f1f0ea;
  --accent: #526346;
  --accent-2: #7b694c;
  --radius: 8px;
  --body-font: "Exposee Sans", "Source Sans 3", Arial, Helvetica, sans-serif;
  --display-font: "Exposee Serif", Lora, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--muted);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #222;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 25, 20, 0.68), rgba(20, 25, 20, 0.34) 52%, rgba(20, 25, 20, 0.22)),
    linear-gradient(0deg, rgba(20, 25, 20, 0.44), rgba(20, 25, 20, 0.08) 42%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.94);
}

.hero-print-image {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 58px;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--display-font);
  font-size: 62px;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 23px;
  line-height: 1.38;
  font-weight: 400;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.fact {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  font-family: var(--display-font);
  font-size: 27px;
  font-weight: 650;
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.35;
}

section {
  padding: 58px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.4fr);
  gap: 54px;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.copy {
  max-width: 760px;
}

.copy p {
  margin: 0 0 18px;
}

.copy p:first-child {
  margin-top: 0;
}

.copy p:last-child {
  margin-bottom: 0;
}

.lead {
  font-family: var(--display-font);
  font-size: 23px;
  line-height: 1.42;
  font-weight: 500;
  color: #31382f;
}

.closing {
  font-weight: 700;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
}

.button-link:hover,
.button-link:focus-visible {
  background: #435338;
}

.features {
  columns: 2;
  column-gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.features li {
  break-inside: avoid;
  padding: 0 0 12px 22px;
  position: relative;
  line-height: 1.45;
}

.features li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 10px;
}

.gallery {
  padding: 58px;
  border-bottom: 1px solid var(--line);
}

.gallery h2 {
  margin-bottom: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 128px;
  grid-auto-flow: dense;
  gap: 16px;
  align-items: start;
}

.gallery-grid figure,
.visual figure {
  margin: 0;
  background: var(--soft);
  border: 1px solid rgba(82, 99, 70, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-grid figure {
  display: grid;
  grid-column: span 2;
  grid-row: span 2;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
}

.gallery-grid figure:nth-child(1) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .portrait {
  grid-row: span 3;
}

.gallery-grid img,
.visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.gallery-grid .portrait img {
  aspect-ratio: auto;
}

.lightbox-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.gallery-grid .lightbox-link {
  min-height: 0;
}

.lightbox-link:focus-visible {
  outline: 3px solid rgba(82, 99, 70, 0.75);
  outline-offset: 3px;
}

figcaption {
  padding: 10px 12px 12px;
  background: var(--soft);
  border-top: 1px solid rgba(82, 99, 70, 0.12);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.25;
}

.visual {
  border-bottom: 1px solid var(--line);
  background: #f7f6f1;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.visual img {
  aspect-ratio: 16 / 9;
}

.notice {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 760px;
}

.contact {
  background: var(--accent);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.contact p {
  margin: 0 0 10px;
}

.fineprint {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 18px;
  overflow: hidden;
  background: rgba(31, 35, 32, 0.94);
  color: #fff;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-top,
.lightbox-caption {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lightbox-count,
.lightbox-caption {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.lightbox-frame {
  position: relative;
  display: grid;
  place-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  height: calc(100vh - 132px);
  height: calc(100dvh - 132px);
  overflow: hidden;
}

.lightbox-image {
  position: absolute;
  inset: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.lightbox-controls {
  display: flex;
  gap: 10px;
}

.lightbox button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  line-height: 1.1;
  cursor: pointer;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 820px) {
  body {
    font-size: 18px;
    line-height: 1.58;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content,
  section,
  .gallery {
    padding: 32px 24px;
  }

  h1 {
    max-width: 100%;
    font-size: 35px;
    line-height: 1.04;
  }

  .facts,
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid .portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid img,
  .gallery-grid .portrait img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .features {
    columns: 1;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-top,
  .lightbox-caption {
    gap: 10px;
  }

  .lightbox button {
    padding: 8px 10px;
    font-size: 14px;
  }
}
