/* Curated Adventure Network — public site
   Navy blueprint look (Sep 2026 LOOK REVISION). Sitewide navy ground + faded large grid. Archivo. */

:root {
  --navy: #0B1C2C;
  --ink-on-navy: #F4F1EA;
  /* Cream retired as page ground — keep token aliasing to navy for flat panels */
  --paper: #0B1C2C;
  --ink: #F4F1EA;
  --rust: #B44A2C;
  --hair: rgba(244, 241, 234, 0.18);
  --hair-mid: rgba(244, 241, 234, 0.32);
  --hair-on-navy: rgba(244, 241, 234, 0.22);
  --hair-on-navy-mid: rgba(244, 241, 234, 0.38);
  --gutter: 28px;
  --page: 1100px;
  --grid: 52px;
  --type-title: "Archivo", sans-serif;
  --type-note: "Courier Prime", "Courier New", Courier, monospace;
}

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

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

body {
  margin: 0;
  background-color: var(--navy);
  /* Larger faded vintage blueprint grid — not crisp 28px CAD */
  background-image:
    url("../images/blueprint/grid-tile.png"),
    linear-gradient(rgba(244, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(244, 241, 234, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.014) 1px, transparent 1px);
  background-size:
    var(--grid) var(--grid),
    var(--grid) var(--grid),
    var(--grid) var(--grid),
    calc(var(--grid) * 2) calc(var(--grid) * 2),
    calc(var(--grid) * 2) calc(var(--grid) * 2);
  background-repeat: repeat;
  background-blend-mode: soft-light, normal, normal, normal, normal;
  color: var(--ink-on-navy);
  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-on-navy); color: var(--navy); }

.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;
}
.note {
  font-family: var(--type-note);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  max-width: 62ch;
}
.lede + .note {
  margin-top: 16px;
}
/* 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;
}
.contact-cta {
  margin-top: 24px;
}
.contact-cta .btn {
  margin-top: 0;
}
.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(--navy); color: var(--ink-on-navy); }
}

.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 14%;
  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;
  }
}


/* —— Navy blueprint system (Sep 2026 LOOK REVISION) —— */

.wordmark {
  display: inline-block;
  font-family: var(--type-title);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  color: var(--ink-on-navy);
  text-align: left;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 0;
  padding: 0;
  background: transparent;
}
.wordmark b {
  display: block;
  font-weight: 800;
}

.site-header {
  background: var(--navy);
  border-bottom: 1px solid var(--hair-on-navy);
  color: var(--ink-on-navy);
}
.site-header--navy {
  background: var(--navy);
  border-bottom: 1px solid var(--hair-on-navy);
  color: var(--ink-on-navy);
}
.site-header a.stamp,
.site-header .brand,
.site-header--navy a.stamp,
.site-header--navy .brand {
  color: var(--ink-on-navy);
  filter: none;
}
.site-header .primary-nav a,
.site-header--navy .primary-nav a {
  color: var(--ink-on-navy);
}
.site-header .primary-nav a:hover,
.site-header--navy .primary-nav a:hover {
  border-bottom-color: var(--hair-on-navy-mid);
}
.site-header .primary-nav a[aria-current="page"],
.site-header--navy .primary-nav a[aria-current="page"] {
  border-bottom-color: var(--ink-on-navy);
}
.site-header.is-scrolled,
.site-header--navy.is-scrolled {
  border-bottom-color: var(--hair-on-navy-mid);
}

/* Tab ship accents — understated blueprint specimens */
.tab-ship {
  position: absolute;
  width: clamp(96px, 14vw, 156px);
  height: auto;
  opacity: 0.48;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  filter: none;
}
/* Home sail system: jib sits lightly behind “advocacy.” (Tyler 11 Sep 2026) */
.hero-atf__copy {
  position: relative;
  z-index: 1;
}
.hero-atf__mast {
  position: relative;
  z-index: 1;
}
.hero-atf__field > .hero-atf__sail {
  position: absolute;
  display: block;
  /* desktop jib lock: jib lightly behind “advocacy.”; main into right negative space */
  left: 38%;
  top: auto;
  right: auto;
  bottom: 8%;
  width: clamp(260px, 42vw, 480px);
  height: clamp(300px, 55vh, 500px);
  max-width: min(55vw, 520px);
  margin: 0;
  padding: 0;
  opacity: 0.26;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: normal;
  filter: none;
}
.hero-atf__field > .hero-atf__sail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
}
.hero-atf__mast,
.hero-atf__copy {
  position: relative;
  z-index: 1;
}
.hero-atf__copy h1,
.hero-atf__copy .hero-atf__sub {
  position: relative;
  z-index: 1;
}
.page-destinations > .page > .tab-ship,
.page-brands > .page > .tab-ship,
.page-contact > .page > .tab-ship,
.page > .tab-ship {
  top: 64px;
  right: 8px;
}
@media (max-width: 860px) {
  .tab-ship { width: clamp(72px, 22vw, 112px); opacity: 0.4; }
  .page > .tab-ship { top: 56px; right: 0; }
  .page-home .hero-atf__field > .hero-atf__sail {
    position: absolute;
    left: -4vw;
    right: auto;
    top: 8%;
    bottom: auto;
    width: min(100vw, 420px);
    max-width: none;
    height: 58vh;
    min-height: 380px;
    opacity: 0.26;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: normal;
    filter: none;
  }
  .page-home .hero-atf__field > .hero-atf__sail img {
    object-fit: contain;
    object-position: left center;
  }
}

/* Home: full-bleed ATF — blueprint band + navy type field. No gravel photo. */
.page-home .page {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 80px;
}
.page-home main {
  padding-top: 0;
}
.page-home .home-services,
.page-home .home-close,
.page-home .site-footer {
  max-width: var(--page);
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}
.page-home .site-footer {
  margin-top: 64px;
}

.hero-atf {
  position: relative;
  width: 100%;
  margin: 0 0 0;
  background: var(--navy);
  color: var(--ink-on-navy);
}
.hero-atf__band {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  background: var(--navy);
  line-height: 0;
  border-bottom: 1px solid var(--hair-on-navy);
  overflow: hidden;
  display: block;
}
.hero-atf__band img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: cover;
  object-position: center center;
  filter: none;
}
.hero-atf__field {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  padding: 36px max(36px, calc(50vw - 550px + 36px)) 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background: transparent; /* inherit sitewide navy + large grid from body */
  color: var(--ink-on-navy);
}
.hero-atf__mast {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 22rem;
}
.hero-atf__mast .wordmark {
  font-size: clamp(22px, 3.2vw, 36px);
  letter-spacing: 0.02em;
  filter: none;
}
.hero-atf__mast .primary-nav {
  justify-content: flex-start;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.hero-atf__mast .primary-nav a {
  color: var(--ink-on-navy);
}
.hero-atf__mast .primary-nav a:hover {
  border-bottom-color: var(--hair-on-navy-mid);
}
.hero-atf__mast .primary-nav a[aria-current="page"] {
  border-bottom-color: var(--ink-on-navy);
}
.hero-atf__copy {
  margin-top: auto;
  padding-top: 72px;
  max-width: min(42rem, 92vw);
}
.hero-atf__copy h1 {
  color: var(--ink-on-navy);
  font-size: clamp(28px, 5.8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: none;
  white-space: nowrap; /* one straight line — not stacked */
}
.hero-atf__sub {
  margin: 18px 0 0;
  font-family: var(--type-title);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.01em;
  color: var(--ink-on-navy);
  opacity: 0.88;
  max-width: 42ch;
}

/* Home services on navy under ATF — kickers/hairlines still read */
.page-home .home-services {
  margin-top: 56px;
  color: var(--ink-on-navy);
}
.page-home .home-services .chapter.chapter--type {
  padding: 0;
  border-top: 1px solid var(--hair-on-navy);
  padding-top: 20px;
}
.page-home .home-services .kicker,
.page-home .home-services h2,
.page-home .home-services .lede,
.page-home .home-close .text-link {
  color: var(--ink-on-navy);
}
.page-home .home-close .text-link {
  border-bottom-color: var(--hair-on-navy-mid);
}

/* Destinations / Brands: navy long-read; photos full-color */
.page-destinations,
.page-brands,
.page-contact,
.page-home {
  background: transparent;
  color: var(--ink-on-navy);
}
.page-destinations .page-intro,
.page-brands .page-intro {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hair-on-navy);
}

/* Dest + Brands intro sail — match Home watermark (CD signed 11 Sep 2026) */
.page-destinations .page-intro,
.page-brands .page-intro {
  position: relative;
  overflow: hidden; /* keep sail off case photos (Tyler 12 Sep 2026) */
}
.page-destinations .page-intro__sail,
.page-brands .page-intro__sail {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(160px, 28vw, 300px);
  max-height: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0.26;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-destinations .page-intro__sail img,
.page-brands .page-intro__sail img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}
.page-destinations .page-intro > *:not(.page-intro__sail),
.page-brands .page-intro > *:not(.page-intro__sail) {
  position: relative;
  z-index: 1;
}
.page-destinations .tab-ship,
.page-brands .tab-ship {
  display: none;
}

@media (max-width: 860px) {
  .page-destinations .page-intro__sail,
  .page-brands .page-intro__sail {
    right: 0;
    top: 0;
    width: min(48vw, 200px);
    max-height: 100%;
    opacity: 0.26;
  }
  /* Brands mobile only: clear subtitle (CD fail 12 Sep 2026) */
  .page-brands .page-intro__sail {
    right: -6%;
    width: min(38vw, 150px);
    top: 4%;
  }
  .page-brands .page-intro .lede {
    padding-right: min(42vw, 160px);
  }
}

.page-destinations .kicker,
.page-brands .kicker,
.page-contact .kicker,
.page-destinations h1,
.page-brands h1,
.page-contact h1,
.page-destinations h2,
.page-brands h2,
.page-destinations .lede,
.page-brands .lede,
.page-destinations .note,
.page-brands .note,
.page-destinations .facts dt,
.page-destinations .facts dd,
.page-brands .facts dt,
.page-brands .facts dd {
  color: var(--ink-on-navy);
}
.page-destinations .frame,
.page-brands .frame {
  border-color: var(--hair-on-navy-mid);
  background: transparent; /* photo frames only — no cream page wash */
}
.page-destinations .work-still img,
.page-brands .work-still img,
.page-destinations .frame img,
.page-brands .frame img {
  filter: none; /* full-color case photos — never cyanotype */
}
.page-destinations .facts,
.page-brands .facts {
  background: var(--hair-on-navy);
  border-color: var(--hair-on-navy);
}
.page-destinations .facts > div,
.page-brands .facts > div {
  background: var(--navy);
}
.page-destinations .btn,
.page-brands .btn,
.page-contact .btn {
  border-color: var(--ink-on-navy);
  color: var(--ink-on-navy);
}
.page-destinations .btn:hover,
.page-brands .btn:hover,
.page-contact .btn:hover {
  background: rgba(244, 241, 234, 0.06);
}

/* Contact: navy ground; H1 Send the next brief. */
.page-contact .contact {
  min-height: 58vh;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 48px 0 64px;
  color: var(--ink-on-navy);
}
.page-contact .contact .wrap {
  max-width: 36rem;
}
.page-contact .where {
  color: var(--ink-on-navy);
  opacity: 0.8;
}

.page-home .site-footer,
.page-destinations .site-footer,
.page-brands .site-footer,
.page-contact .site-footer,
.site-footer {
  border-top-color: var(--hair-on-navy-mid);
  color: var(--ink-on-navy);
}
.site-footer a {
  color: var(--ink-on-navy);
}

/* Case drop summaries on navy */
details.case-drop > summary {
  color: var(--ink-on-navy);
}

@media (max-width: 860px) {
  .hero-atf__field {
    min-height: clamp(380px, 70vh, 560px);
    padding: 28px 20px 48px;
  }
  .hero-atf__copy {
    padding-top: 48px;
  }
  .hero-atf__band img {
    width: 100%;
    height: auto;
  }
  .page-home .home-services,
  .page-home .home-close,
  .page-home .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .hero-atf__mast .wordmark {
    font-size: 20px;
  }
  .hero-atf__mast .primary-nav {
    gap: 14px;
    font-size: 11px;
  }
  .hero-atf__copy h1 {
    font-size: clamp(22px, 8.2vw, 34px);
    white-space: nowrap;
  }
}
