:root {
  --paper: #fdf9f8;
  --cream: #f5f2ed;
  --forest: #173625;
  --ink: #111612;
  --muted: #6f706a;
  --line: #e7e1dc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Work Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure { margin: 0; }

.nav {
  position: sticky; top: 0; z-index: 20;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 43px; padding: 0 30px;
  background: rgba(253,249,248,.96); border-bottom: 1px solid rgba(23,54,37,.1);
  backdrop-filter: blur(12px);
}
.brand { font: 800 14px/1 "Bricolage Grotesque", sans-serif; letter-spacing: -.055em; }
.nav-links { display: flex; gap: 28px; height: 100%; align-items: center; }
.nav-links a { font: 400 7px/1 "Space Mono", monospace; letter-spacing: .13em; opacity: .55; }
.nav-links a:hover, .nav-links .active { opacity: 1; }
.account { justify-self: end; width: 14px; height: 14px; }
.account svg { fill: none; stroke: currentColor; stroke-width: 1.5; }

.hero { position: relative; min-height: calc(100vh - 43px); display: grid; place-items: center; overflow: hidden; text-align: center; background: #d8d5d0; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,18,12,.06), rgba(10,18,12,.28)); }
.hero-image { position: absolute; inset: 0; object-fit: cover; object-position: center; }
.hero-copy { position: relative; z-index: 1; padding: 28px 38px 32px; color: white; background: rgba(15,32,22,.16); text-shadow: 0 2px 16px rgba(0,0,0,.45); backdrop-filter: blur(2px); }
.eyebrow { margin: 0; font: 400 7px/1.4 "Space Mono", monospace; letter-spacing: .27em; color: #8a8b84; }
.hero .eyebrow { color: rgba(255,255,255,.82); }
.hero h1 { margin: 12px 0 6px; font: 800 clamp(54px, 5.5vw, 82px)/.9 "Bricolage Grotesque", sans-serif; letter-spacing: -.055em; color: white; }
.hero-subtitle { margin: 0; font: italic 17px/1.4 "Work Sans", sans-serif; }

.editorial-section { width: 100%; padding-left: max(36px, calc((100vw - 1368px) / 2)); padding-right: max(36px, calc((100vw - 1368px) / 2)); }
.editorial-section h2 { margin: 0 0 28px; font: 700 38px/1 "Bricolage Grotesque", sans-serif; letter-spacing: -.035em; color: var(--forest); }
.editorial-section article > p:not(.eyebrow):not(.folio) { margin: 0 0 24px; max-width: 420px; font: 400 13px/1.7 "Work Sans", sans-serif; color: #555650; }
.folio { margin: 44px 0 0; font: 400 7px/1.4 "Space Mono", monospace; letter-spacing: .18em; color: #7c7d76; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-content: center; }
.product-card { display: block; min-width: 0; padding: 10px 10px 12px; color: var(--ink); background: rgba(255,255,255,.72); border: 1px solid rgba(23,54,37,.09); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
a.product-card:hover { transform: translateY(-3px); border-color: rgba(23,54,37,.3); box-shadow: 0 10px 22px rgba(23,54,37,.09); }
.product-image { display: block; aspect-ratio: 1 / 1; margin-bottom: 10px; overflow: hidden; background: #f5f5f3; }
.product-image img { object-fit: contain; }
.product-name { display: block; font: 700 10px/1.25 "Bricolage Grotesque", sans-serif; color: var(--forest); }
.product-color { display: block; margin-top: 4px; font: 400 6px/1.2 "Space Mono", monospace; letter-spacing: .11em; color: #85857e; }
.product-grid-dark .product-card { background: rgba(255,255,255,.95); border-color: rgba(255,255,255,.16); }

.departure {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(290px, .72fr);
  grid-template-areas:
    "photo story"
    "products products";
  column-gap: clamp(52px, 6vw, 104px);
  row-gap: 48px;
  align-items: center;
  padding-top: clamp(90px, 8vw, 132px);
  padding-bottom: clamp(90px, 8vw, 132px);
  background: var(--cream);
}
.departure figure {
  grid-area: photo;
  height: clamp(460px, 38vw, 610px);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(32,31,27,.12);
}
.departure figure img { object-position: center 42%; }
.departure article { grid-area: story; align-self: center; }
.departure article::before {
  content: "01";
  display: block;
  margin-bottom: 26px;
  font: 400 8px/1 "Space Mono", monospace;
  letter-spacing: .2em;
  color: #96978f;
}
.departure article h2 { font-size: clamp(38px, 3.2vw, 52px); margin-bottom: 24px; }
.departure article > p:not(.folio) { max-width: 360px; }
.departure .folio { margin-top: 38px; }
.departure .product-grid {
  grid-area: products;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(23,54,37,.13);
}
.departure .product-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: 1fr auto auto 1fr;
  column-gap: 18px;
  min-height: 126px;
  padding: 10px;
  background: rgba(255,255,255,.52);
}
.departure .product-image {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 104px;
  height: 104px;
  margin: 0;
  align-self: center;
}
.departure .product-name { grid-column: 2; grid-row: 2; align-self: end; font-size: 11px; }
.departure .product-color { grid-column: 2; grid-row: 3; align-self: start; margin-top: 7px; }

.lost { min-height: 1190px; display: grid; grid-template-columns: .78fr .5fr 1.12fr; gap: 52px; align-items: center; border-bottom: 1px solid var(--line); }
.lost article { padding-top: 130px; }
.lost figure { position: relative; height: 900px; }
.captioned-photo figcaption { margin-top: 8px; font: 400 6px/1 "Space Mono", monospace; letter-spacing: .08em; color: #aaa49d; }
.photo-note { position: absolute; right: -10px; bottom: 16px; padding: 16px 20px; color: white; background: var(--forest); font: 700 7px/1.5 "Space Mono", monospace; letter-spacing: .05em; }

.connection { position: relative; min-height: 1050px; overflow: hidden; color: white; background: var(--forest); padding: 190px max(36px, calc((100vw - 1368px) / 2)) 90px; }
.connection-title { position: absolute; top: 135px; left: 50%; transform: translateX(-50%); margin: 0; color: rgba(255,255,255,.10); font: 800 78px/1 "Bricolage Grotesque", sans-serif; letter-spacing: -.04em; }
.connection-grid { position: relative; display: grid; grid-template-columns: .72fr .42fr 1.08fr; gap: 46px; align-items: center; }
.connection article h3 { margin: 0 0 24px; font: 700 36px/1 "Bricolage Grotesque", sans-serif; letter-spacing: -.035em; }
.connection article p { max-width: 435px; margin: 0 0 34px; font-size: 13px; line-height: 1.65; }
.connection article a { display: inline-block; padding: 8px 13px; border: 1px solid rgba(255,255,255,.65); font: 400 7px/1 "Space Mono", monospace; letter-spacing: .1em; }
.connection figure { position: relative; height: 720px; }
.connection figure figcaption { position: absolute; right: 0; bottom: 0; padding: 11px 17px; color: #483f32; background: #d7c2a4; font: 400 7px/1 "Space Mono", monospace; letter-spacing: .08em; }

.home { min-height: 1240px; display: grid; grid-template-columns: .67fr .48fr 1.22fr; gap: 42px; align-items: center; background: var(--cream); }
.home .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home article { align-self: end; padding-bottom: 205px; }
.home article .eyebrow { margin-bottom: 22px; }
.home figure { height: 1000px; }

.closing { min-height: 520px; display: grid; place-content: center; text-align: center; border-top: 1px solid var(--line); background: var(--paper); }
.closing p { margin: 0 0 30px; font: italic 14px/1.4 "Work Sans", sans-serif; color: #565752; }
.closing h2 { margin: 0 0 9px; font: 700 61px/.95 "Bricolage Grotesque", sans-serif; letter-spacing: -.045em; color: var(--forest); }
.closing span { font: 700 8px/1 "Space Mono", monospace; letter-spacing: .2em; }

.chapter-next { min-height: 300px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 22px; color: #79c9f2; background: var(--cream); border-top: 1px solid var(--line); text-align: center; }
.chapter-next > span:first-child { font: 400 14px/1.3 "Space Mono", monospace; letter-spacing: .08em; }
.chapter-next-arrow { width: 46px; height: 46px; display: grid; place-items: center; border: 1.5px solid currentColor; border-radius: 15px; font: 300 28px/1 "Work Sans", sans-serif; transition: transform .25s ease, color .25s ease, background .25s ease; }
.chapter-next small { font: 400 7px/1 "Space Mono", monospace; letter-spacing: .18em; opacity: 0; transform: translateY(-5px); transition: opacity .25s ease, transform .25s ease; }
.chapter-next:hover .chapter-next-arrow { transform: translateY(6px); color: white; background: #79c9f2; }
.chapter-next:hover small { opacity: 1; transform: translateY(0); }

footer { min-height: 430px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 32px; background: var(--cream); border-top: 1px solid var(--line); }
.footer-brand { font: 800 72px/1 "Bricolage Grotesque", sans-serif; letter-spacing: -.055em; color: rgba(23,54,37,.06); }
footer nav { display: flex; gap: 30px; }
footer nav a, footer p { font: 400 7px/1 "Space Mono", monospace; letter-spacing: .13em; }
footer p { margin: 0; color: #96958f; }

@media (max-width: 760px) {
  .nav { grid-template-columns: 1fr auto; padding: 0 16px; }
  .nav-links { display: none; }
  .hero { min-height: 78vh; padding: 0 20px; }
  .hero-image { object-position: center; }
  .hero-copy { padding: 22px 18px 25px; }
  .hero h1 { font-size: 46px; }
  .hero-subtitle { font-size: 13px; }
  .editorial-section { padding: 70px 22px; }
  .departure, .lost, .home { min-height: 0; grid-template-columns: 1fr; gap: 42px; }
  .product-grid, .home .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { padding: 8px 8px 10px; }
  .product-name { font-size: 9px; }
  .departure { grid-template-areas: "photo" "story" "products"; row-gap: 38px; }
  .departure figure { height: 66vw; min-height: 280px; max-height: 470px; }
  .departure .product-grid { order: 2; }
  .departure article { order: 3; }
  .departure article::before { margin-bottom: 18px; }
  .departure .product-grid { grid-template-columns: 1fr; gap: 10px; padding-top: 20px; }
  .departure .product-card { grid-template-columns: 88px minmax(0, 1fr); min-height: 106px; }
  .departure .product-image { width: 88px; height: 88px; }
  .lost article { order: 3; padding-top: 0; }
  .lost .product-grid { order: 2; }
  .lost figure { order: 1; }
  .lost figure { height: 118vw; }
  .photo-note { right: -6px; bottom: 14px; max-width: 180px; }
  .connection { min-height: 0; padding: 100px 22px 70px; }
  .connection-title { top: 42px; font-size: 40px; }
  .connection-grid { grid-template-columns: 1fr; gap: 50px; }
  .connection-grid article { order: 3; }
  .connection-grid .product-grid { order: 2; }
  .connection-grid figure { order: 1; }
  .connection figure { height: 115vw; }
  .home article { align-self: auto; padding-bottom: 0; order: 3; }
  .home .product-grid { order: 2; }
  .home figure { order: 1; }
  .home figure { height: 118vw; }
  .closing { min-height: 390px; padding: 0 20px; }
  .closing h2 { font-size: 44px; }
  .chapter-next { min-height: 240px; }
  footer { min-height: 300px; }
}
