/* Curated Adventure Network — public site
   Inherits CAN Look (27 Aug 2026). Paper / ink / rust stamp. Notebook, not office. */

:root {
  --paper: #EDE4D4;
  --ink: #1C1814;
  --rust: #B44A2C;
  --hair: rgba(28, 24, 20, 0.18);
  --hair-mid: rgba(28, 24, 20, 0.32);
  --gutter: 28px;
  --page: 1100px;
  --type-title: "Archivo", sans-serif;
  --type-note: "Courier Prime", "Courier New", Courier, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image: none;
  color: var(--ink);
  font-family: var(--type-title);
  font-weight: 700;
  line-height: 1.45;
  min-height: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }
::selection { background: var(--ink); color: var(--paper); }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 8px 12px;
  z-index: 20;
  text-decoration: none;
  font-size: 13px;
}
.skip:focus { left: 8px; }

.defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 36px 80px;
  position: relative;
}

/* Stamp — stacked name, left-justified. The initials are CAN. No frame. */
.stamp {
  display: inline-block;
  font-family: var(--type-title);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  color: var(--rust);
  text-align: left;
  line-height: 0.95;
  letter-spacing: 0.04em;
  border: 0;
  outline: 0;
  padding: 0;
  transform: none;
  filter: url(#stamp-ink);
  background: transparent;
  overflow: visible;
}
.stamp b {
  display: block;
  font-weight: 800;
  margin-right: 0;
}
.stamp--lg {
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: 0.02em;
}
.stamp--md { font-size: 17px; }
.stamp--sm {
  font-size: 11px;
  letter-spacing: 0.03em;
}
.stamp--line {
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.stamp--line b { display: inline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
  margin: 0 -36px;
  padding: 14px 36px 12px;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.site-header.is-scrolled {
  border-bottom-color: var(--hair-mid);
}
.site-header a.stamp,
.brand {
  text-decoration: none;
  min-width: 0;
  color: var(--rust);
}
.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}
.primary-nav a:hover { border-bottom-color: var(--hair-mid); }
.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--ink);
  padding: 14px 0 0;
  margin-top: 64px;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { text-decoration: none; }
.site-footer a.stamp { color: var(--rust); }
.site-footer a:hover { text-decoration: underline; }
.site-footer a.stamp:hover { text-decoration: none; opacity: 0.8; }

.kicker {
  margin: 0 0 12px;
  font-family: var(--type-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
}
h1, h2, h3 {
  font-family: var(--type-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
}
h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
}
h3 {
  font-size: 18px;
  font-weight: 700;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lede {
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  max-width: 62ch;
}
/* Signed 30 Aug 2026: space only, no hr.rule hairlines */
h1 + .lede,
h2 + .lede {
  margin-top: 24px;
}

.text-link {
  display: inline-block;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  margin-top: 16px;
}
.text-link:hover { opacity: 0.7; }

.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
}
.btn:hover { background: rgba(28, 24, 20, 0.04); }

.frame {
  border: 1px solid var(--hair-mid);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.frame-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 10px 5px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--type-note);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.frame-top .code { font-weight: 700; }
.frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: none;
  border-radius: 0;
}
.caption {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--hair);
  font-family: var(--type-note);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
}
.caption .place {
  display: block;
  letter-spacing: 0.04em;
}
.caption .who {
  display: block;
  font-family: var(--type-note);
  font-weight: 400;
  opacity: 0.72;
  margin-top: 4px;
  font-size: 11px;
}

section { margin: 0 0 56px; padding-top: 8px; }
main { padding-top: 36px; }

.cover-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px 40px;
  align-items: start;
  margin: 0 0 56px;
}
.cover-grid .intro { margin: 0; padding: 0; }
.cover-grid .stamp--lg {
  display: block;
  margin: 0 0 32px;
}
.cover-grid .frame img {
  height: 420px;
  object-fit: cover;
  object-position: center 58%;
  filter: none;
}

.practice { margin-bottom: 56px; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 12px;
}
.practice-grid article {
  background: var(--paper);
  padding: 16px 14px 18px;
}
.practice-grid .n {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
}
.practice-grid h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.practice-grid p {
  font-size: 13px;
  max-width: 28ch;
}

.method { margin-bottom: 56px; }
.method h2 { max-width: 22ch; }

.featured { margin-bottom: 24px; }
.featured-spread {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px 32px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  margin-top: 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.featured-spread .frame img {
  height: 340px;
  object-fit: cover;
  object-position: center 30%;
}
.featured-body {
  padding: 4px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.featured-body h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.featured-body .muted {
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 13px;
  opacity: 0.85;
}
.featured-body .text-link { align-self: flex-start; }

.case-intro { margin-bottom: 28px; }
.case-intro h1 { text-transform: uppercase; }

.work-still { margin: 0 0 56px; }
.work-still img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.work-still.frame--portrait img {
  max-height: 720px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}
.work-still.frame--yellow-group {
  max-width: 32rem;
}
.work-still.frame--yellow-group img {
  max-height: 720px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.facts > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 24px;
  max-width: 40rem;
}
.facts > div {
  background: var(--paper);
  padding: 12px 14px 14px;
}
.facts dt {
  font-family: var(--type-title);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.7;
  font-weight: 700;
}
.facts dd {
  margin: 0;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.015em;
}

.route {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.route li {
  background: var(--paper);
  padding: 14px 12px 16px;
}
.route .n {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}
.route h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 24px;
  max-width: 40rem;
}
.metrics > div {
  background: var(--paper);
  padding: 14px 14px 16px;
}
.metric-n {
  font-family: var(--type-title);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.metric-lab {
  display: block;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.75;
}

.partners {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair);
  max-width: 36rem;
}
.partners li {
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
}

.close-block { margin-bottom: 8px; }
.close-block h2 {
  max-width: 16ch;
  margin-bottom: 18px;
}

.contact {
  margin-bottom: 24px;
}
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 28px;
}
.person {
  background: var(--paper);
  padding: 16px 14px 18px;
  font-style: normal;
  margin: 0;
}
.person h2 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.person a.mail {
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  overflow-wrap: anywhere;
}
.person a.mail:hover { opacity: 0.7; }
.where {
  margin-top: 28px;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .page { padding: 0 16px 48px; }
  .site-header {
    margin: 0 -16px;
    padding: 14px 16px 12px;
  }
  .cover-grid,
  .featured-spread,
  .market-row,
  .practice-grid,
  .metrics,
  .people,
  .facts,
  .split {
    grid-template-columns: 1fr;
  }
  .market-row .frame img { height: auto; max-height: 280px; }
  .market-row.market-row--face .frame img,
  .market-row--face .frame img { height: 400px; max-height: 400px; object-fit: cover; object-position: center 20%; }
  .market-row.market-row--605 .frame img,
  .market-row--605 .frame img { height: 280px; max-height: none; object-fit: cover; object-position: 22% center; }
  .market-row.market-row--face .frame--admiration img,
  .market-row--face .frame--admiration img { object-position: center top; }
  .route--3 { grid-template-columns: 1fr; }
  .cover-grid .frame img { height: auto; max-height: 320px; }
  .featured-spread .frame img { height: auto; max-height: 280px; }
  .route { grid-template-columns: 1fr 1fr; }
  main { padding-top: 24px; }
}

@media (max-width: 520px) {
  .route { grid-template-columns: 1fr; }
  .stamp--sm { font-size: 10px; }
  .primary-nav { gap: 12px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  .site-header { position: static; }
  .site-footer nav { display: none; }
  body { background: var(--paper); }
}

.visually-quiet {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap { width: 100%; }
.featured-spread .frame { margin: 0; }

/* In-market notebook rows (homepage) */
.market-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid var(--hair);
}
.market-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px 32px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.market-row .frame { margin: 0; }
.market-row .frame img {
  height: 280px;
  object-fit: cover;
  object-position: center 40%;
}
.market-row.market-row--face .frame img,
.market-row--face .frame img {
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
}
.market-row.market-row--face .frame--admiration img,
.market-row--face .frame--admiration img {
  object-position: center top;
}
.market-row.market-row--605 .frame img,
.market-row--605 .frame img {
  height: 280px;
  object-fit: cover;
  object-position: 22% center;
}

.case {
  scroll-margin-top: 76px;
  margin-bottom: 64px;
}
.case + .case {
  padding-top: 48px;
  margin-top: 8px;
}

.route--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 40rem;
}
.route p {
  margin: 6px 0 0;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.8;
}

.frame--portrait img {
  object-position: center top;
}

/* Per-still crop. Later rules win on equal specificity. Do not crop heads. */
.market-row--face .frame--blair-bruna img,
.frame--blair-bruna img { object-position: center 22%; }
.market-row--face .frame--smiles img,
.frame--smiles img { object-position: center 28%; }
.market-row--face .frame--admiration img,
.work-still.frame--admiration img,
.frame--admiration img,
.frame--cowboy img { object-position: center top; }
.work-still.frame--yellow-group img,
.frame--yellow-group img { object-position: center 18%; }
.frame--bruna-blair img { object-position: center center; }
.frame--jett img { object-position: center 55%; }
.market-row--605 .frame--605-hero img,
.work-still.frame--605-hero img,
.frame--605-hero img { object-position: 22% center; }
.work-still.frame--605-hero img {
  max-height: 640px;
  object-fit: cover;
}
.work-still.frame--gravel img {
  max-height: 640px;
  object-fit: cover;
  object-position: center;
}
.work-still.frame--canyon-bike img {
  max-height: 640px;
  object-fit: cover;
  object-position: center 58%;
}

@media (max-width: 860px) {
  .market-row {
    grid-template-columns: 1fr;
  }
  .market-row .frame img {
    height: auto;
    max-height: 280px;
  }
  .market-row.market-row--face .frame img,
  .market-row--face .frame img {
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center 20%;
  }
  .market-row.market-row--face .frame--admiration img,
  .market-row--face .frame--admiration img {
    object-position: center top;
  }
  .market-row--605 .frame img {
    height: 280px;
    max-height: none;
  }
  .route--3 {
    grid-template-columns: 1fr;
  }
}

.work-still.frame--zaldivar img {
  object-fit: cover;
  object-position: center 22%;
}
.case-intro h2 { text-transform: uppercase; }

/* Eli sampling still. Heads in. */
.work-still.frame--eli img,
.frame--eli img {
  height: auto;
  max-height: none;
  object-fit: unset;
  object-position: unset;
}

.frame--ramirez img {
  object-position: center top;
}

.frame--zaldivar img {
  object-fit: cover;
  object-position: center 22%;
}

/* Capability chapters. Split stills. Full-bleed home hero. */
.hero-bleed {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 8px;
}
.hero-bleed-photo {
  position: relative;
  background: var(--paper);
}
.hero-bleed-photo .frame-top {
  background: var(--paper);
}
.hero-bleed-photo img {
  width: 100%;
  height: 78vh;
  min-height: 720px;
  max-height: 860px;
  object-fit: cover;
  object-position: center 18%;
  filter: none;
}
.hero-bleed-copy {
  position: absolute;
  left: max(28px, calc(50vw - 550px + 28px));
  top: 28px;
  max-width: 15rem;
  background: transparent;
  padding: 0;
  color: var(--ink);
  z-index: 2;
}
.hero-bleed-copy .stamp--lg {
  display: block;
  margin: 0 0 12px;
  text-align: left;
  font-size: clamp(15px, 1.7vw, 22px);
}
.hero-bleed-copy h1,
.hero-bleed-copy .kicker,
.hero-bleed-copy .lede {
  color: var(--ink);
}
.hero-bleed-copy .kicker {
  margin: 0 0 8px;
}
.hero-bleed-copy h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.08;
  white-space: nowrap;
}
.hero-bleed-copy .lede {
  margin: 0;
  font-size: 14px;
}
.hero-bleed-photo > .caption {
  margin: 0;
  padding: 10px max(36px, calc(50vw - 550px + 36px)) 14px;
  background: var(--paper);
}

.chapter.split,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  align-items: start;
  margin: 0 0 56px;
}
.chapter.split.split--photo-left > figure,
.split.split--photo-left > figure {
  order: -1;
}
.chapter.split .chapter-copy,
.split .chapter-copy {
  padding-top: 8px;
}
.chapter.split > .frame,
.split > .frame {
  margin: 0;
}
.chapter.split > .frame img,
.split > .frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center center;
  filter: none;
}
.chapter.chapter--face .frame img {
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
}
.chapter.chapter--face .frame--blair-bruna img {
  object-position: center 22%;
}
.chapter.chapter--face .frame--admiration img {
  height: 400px;
  object-fit: cover;
  object-position: center top;
}
.split > .frame.frame--605-hero img,
.chapter .frame--605-hero img {
  object-position: 22% center;
}
.split > .frame.frame--portrait img,
.chapter .frame--portrait img {
  height: auto;
  max-height: 720px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.home-intro {
  max-width: 38rem;
  margin: 28px 0 8px;
}
.home-intro .stamp--lg {
  display: block;
  margin: 0 0 28px;
}
.home-intro h1 {
  max-width: 14ch;
}
.home-intro .lede {
  margin-bottom: 0;
}

.chapter.chapter--type {
  max-width: 38rem;
  margin: 0;
  padding: 48px 0 12px;
}
.chapter.chapter--type .kicker,
.chapter.chapter--type h2,
.chapter.chapter--type .lede {
  font-family: var(--type-title);
}


.home-close {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 8px 0 8px;
  padding-top: 28px;
}
.home-close .text-link {
  margin-top: 0;
}

.page-intro {
  margin-bottom: 48px;
}

@media (max-width: 860px) {
  .hero-bleed {
    margin-top: 0;
  }
  .hero-bleed-copy {
    position: absolute;
    left: 16px;
    right: auto;
    top: 16px;
    max-width: 11.5rem;
    padding: 0;
  }
  .hero-bleed-copy .stamp--lg {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .hero-bleed-copy h1 {
    font-size: 18px;
    max-width: none;
    white-space: nowrap;
  }
  .hero-bleed-photo img {
    height: 92vw;
    min-height: 460px;
    max-height: 640px;
    object-fit: cover;
    object-position: center 12%;
  }
  .chapter.split,
  .split {
    grid-template-columns: 1fr;
  }
  .chapter.split.split--photo-left > figure,
  .split.split--photo-left > figure {
    order: 0;
  }
  .chapter.split > .frame img,
  .split > .frame img {
    height: auto;
    max-height: 320px;
  }
  .chapter.chapter--face .frame img,
  .split.chapter--face > .frame img {
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center 20%;
  }
  .chapter.chapter--face .frame--blair-bruna img {
    object-position: center 22%;
  }
  .chapter.chapter--face .frame--admiration img {
    object-position: center top;
  }
  .split > .frame.frame--portrait img,
  .chapter .frame--portrait img {
    height: auto;
    max-height: 720px;
  }
  .split > .frame.frame--605-hero img {
    object-position: 22% center;
  }
  .work-still.frame--gravel img {
    max-height: 440px;
    object-position: center 32%;
  }
  .work-still.frame--canyon-bike img {
    max-height: 460px;
    object-position: center 55%;
  }
  .work-still.frame--eli img,
  .frame--eli img {
    height: auto;
    max-height: none;
    object-fit: unset;
    object-position: unset;
  }
}

@media (max-width: 520px) {
  .site-header { flex-wrap: wrap; }
  .hero-bleed-copy {
    top: 10px;
    left: 12px;
    right: auto;
    bottom: auto;
    max-width: 11rem;
    padding: 0;
    display: block;
  }
  .hero-bleed-copy .stamp--lg {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .hero-bleed-copy .kicker {
    max-width: 12rem;
  }
  .hero-bleed-intro {
    margin-top: 0;
    max-width: none;
  }
  .hero-bleed-intro h1 {
    font-size: 18px;
    max-width: none;
    white-space: nowrap;
  }
  .hero-bleed-photo img {
    height: 100vw;
    min-height: 480px;
    max-height: 620px;
    object-fit: cover;
    object-position: center top;
  }
}


.work-still.frame--canyon-email .email-scroll,
.work-still--quiet .frame.frame--canyon-email .email-scroll {
  width: 100%;
  max-width: 600px;
  height: 720px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  scroll-behavior: auto;
}
.work-still.frame--canyon-email .email-scroll img,
.work-still.frame--canyon-email img,
.work-still--quiet .frame.frame--canyon-email .email-scroll img,
.work-still--quiet .frame.frame--canyon-email img {
  max-height: none;
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: unset;
  display: block;
}
@media (max-width: 860px) {
  .work-still.frame--canyon-email .email-scroll,
  .work-still--quiet .frame.frame--canyon-email .email-scroll {
    max-width: none;
    height: 720px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-still.frame--canyon-email .email-scroll,
  .work-still--quiet .frame.frame--canyon-email .email-scroll {
    overflow-y: auto;
  }
}


/* Notebook case dropdown. Destinations. Paper, ink, hairline. No radius, no shadow, no gradient. */
details.case-drop {
  border: 1px solid var(--hair-mid);
  background: var(--paper);
  margin: 0 0 56px;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

details.case-drop > summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 6px 10px 5px;
  font-family: var(--type-note);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

details.case-drop > summary::-webkit-details-marker {
  display: none;
}

details.case-drop > summary::marker {
  content: none;
  display: none;
}

details.case-drop[open] > summary {
  border-bottom: 1px solid var(--hair);
}

details.case-drop > .lede {
  margin: 20px 12px 0;
}

details.case-drop > .facts {
  margin: 24px 12px 0;
}

details.case-drop > .work-still {
  margin: 28px 12px 0;
}

details.case-drop > .work-still:last-of-type {
  margin-bottom: 28px;
}

details.case-drop > .btn {
  margin: 0 12px 24px;
  border-radius: 0;
  box-shadow: none;
}

.work-still--quiet { border: 0; background: transparent; box-shadow: none; }
.work-still--quiet > .frame { margin: 0; }
.work-still--quiet .credit {
  font-family: var(--type-note);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.72;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
}

.work-still--quiet { border: 0; background: transparent; box-shadow: none; }
.work-still--quiet > .frame { margin: 0; }
.work-still--quiet .credit {
  font-family: var(--type-note);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.72;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
}

/* Heads in. Full stills, no 520 cover crop. 30 Aug look pass: all JAX stills. */
.work-still.work-still--full img,
.work-still.work-still--full .frame img {
  max-height: none;
  height: auto;
  object-fit: unset;
  object-position: unset;
}
.work-still.frame--eli img,
.frame--eli img {
  height: auto;
  max-height: none;
  object-fit: unset;
  object-position: unset;
}

/* 30 Aug look pass. Home services two columns. Space only between cells. */
.home-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 48px;
  margin: 40px 0 0;
  padding: 0;
  border: 0;
}
.home-services .chapter.chapter--type {
  max-width: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 700px) {
  .home-services {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
}
