/* Vast Quiet — minimal field journal */
:root {
  --paper: #f7f6f3;
  --ink: #111111;
  --mute: #6a6a6a;
  --line: #e4e2dc;
  --accent: #111111;
  --night: #111111;
  --cream: #f7f6f3;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Syne, sans-serif;
  cursor: auto;
  overflow-x: hidden;
}
body.vq-nav-open { overflow: hidden; }
::selection { background: var(--ink); color: var(--paper); }
a, button, summary, input, textarea, label { cursor: pointer; }
button { cursor: pointer; }

.vq-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 0;
  z-index: 90;
  background: var(--ink);
}

.vq-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.vq-mark {
  display: flex;
  gap: 8px;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.vq-mark span:first-child,
.vq-mark span:last-child {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-style: normal;
}
.vq-mark span:last-child { font-style: italic; font-weight: 400; }
.vq-open {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Syne, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0;
}
.vq-open:hover { opacity: 0.45; }

.vq-nav {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  transform: translateY(-101%);
  transition: transform 0.55s var(--ease);
}
.vq-nav.is-open { transform: translateY(0); }
.vq-nav-left {
  padding: 110px 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.vq-nav-index { list-style: none; margin: 0; padding: 0; }
.vq-nav-index a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
  font-family: Fraunces, serif;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.vq-nav-index a em {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
  min-width: 28px;
}
.vq-nav-index a span { display: inline-block; }
.vq-nav-index a:hover { opacity: 0.4; }
.vq-nav-right {
  padding: 110px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vq-nav-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.vq-nav-meta a { color: var(--ink); text-decoration: none; }
.vq-nav-meta a:hover { opacity: 0.45; }
.vq-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  font-family: Syne, sans-serif;
}

.vq-footer {
  background: var(--paper);
  color: var(--ink);
  padding: 72px 40px 28px;
  border-top: 1px solid var(--line);
}
.vq-footer-giant { display: none; }
.vq-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.vq-footer h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 14px;
  font-weight: 400;
}
.vq-footer a { color: var(--ink); text-decoration: none; }
.vq-footer a:hover { opacity: 0.45; }
.vq-footer p, .vq-footer li { font-size: 14px; line-height: 1.7; margin: 0; }
.vq-footer ul { list-style: none; margin: 0; padding: 0; }
.vq-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.vq-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  z-index: 95;
  padding: 18px 40px;
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
  box-shadow: none;
}
.vq-cookie.is-show { transform: translateY(0); }
.vq-cookie h3 {
  font-family: Fraunces, serif;
  font-size: 18px;
  margin: 0 0 4px;
  font-weight: 500;
}
.vq-cookie p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0;
}
.vq-cookie a { color: var(--ink); }
.vq-cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.vq-cookie button {
  font-family: Syne, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
}
.vq-cookie .vq-accept { background: var(--ink); color: var(--paper); }
.vq-prefs { display: none; grid-column: 1 / -1; font-size: 13px; }
.vq-prefs.is-open { display: block; }
.vq-prefs label { display: flex; gap: 8px; align-items: center; margin: 6px 0; }

.vq-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.vq-display {
  font-family: Fraunces, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.vq-italic { font-style: italic; font-weight: 400; }

.vq-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.vq-reveal.is-in { opacity: 1; transform: none; }
.vq-clip {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.vq-clip.is-in { opacity: 1; }

.vq-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--mute);
  padding: 10px 0;
}
.vq-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: vq-marquee 40s linear infinite;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
}
@keyframes vq-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.vq-orbit, .vq-orbit-wrap, .vq-float { display: none; }

.vq-film { background: transparent; padding: 0; }
.vq-film::before, .vq-film::after { display: none; }
.vq-film img { display: block; width: 100%; height: 100%; object-fit: cover; }

.vq-drop::first-letter {
  font-family: Fraunces, serif;
  float: left;
  font-size: 64px;
  line-height: 0.75;
  padding: 8px 10px 0 0;
  color: var(--ink);
  font-weight: 400;
}

.vq-rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.vq-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  position: relative;
  overflow: visible;
}
.vq-btn::before { display: none; }
.vq-btn:hover { background: var(--ink); color: var(--paper); }
.vq-btn-light {
  border-color: var(--ink);
  color: var(--ink);
}
.vq-btn-light:hover { background: var(--ink); color: var(--paper); }

.vq-input, .vq-area {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: Syne, sans-serif;
  font-size: 16px;
  padding: 12px 0;
  color: var(--ink);
  outline: none;
}
.vq-input:focus, .vq-area:focus { border-bottom-color: var(--ink); }
.vq-area { min-height: 140px; resize: vertical; }
.vq-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  color: var(--mute);
}

.vq-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  padding: 140px 56px 72px;
  gap: 64px;
  align-items: end;
}
.vq-hero-copy h1 { font-size: clamp(72px, 12vw, 168px); margin: 12px 0 0; }
.vq-hero-stack {
  position: relative;
  min-height: 82vh;
}
.vq-hero-stack img {
  position: absolute;
  object-fit: cover;
  filter: none;
}
.vq-hero-stack .a {
  width: 100%;
  height: 100%;
  top: 0; right: 0; left: 0;
  z-index: 2;
}
.vq-hero-stack .b,
.vq-hero-stack .c { display: none; }

.vq-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vq-stats article {
  padding: 64px 40px;
  border-right: 1px solid var(--line);
}
.vq-stats article:last-child { border-right: 0; }
.vq-stats strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 400;
}
.vq-stats span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--mute);
}

.vq-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 88px 56px;
}
.vq-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.vq-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
  filter: none;
}
.vq-card:hover img { opacity: 0.82; transform: none; filter: none; }
.vq-card figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.vq-card figcaption b {
  display: block;
  font-family: Fraunces, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}
.vq-side-stack { display: grid; gap: 12px; }

.vq-stripe {
  background: transparent;
  color: var(--ink);
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 70vh;
}
.vq-stripe h2 { font-size: clamp(48px, 7vw, 96px); margin: 0; }

.vq-gallery-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 36px 56px 80px;
  scroll-snap-type: x mandatory;
}
.vq-gallery-rail figure {
  flex: 0 0 420px;
  scroll-snap-align: start;
  margin: 0;
}
.vq-gallery-rail img { width: 100%; height: 62vh; min-height: 480px; object-fit: cover; }
.vq-gallery-rail figcaption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--mute);
}

.vq-page { padding: 160px 56px 120px; }
.vq-page-title {
  font-size: clamp(56px, 10vw, 132px);
  margin: 8px 0 32px;
}

.vq-notes-list { display: grid; gap: 72px; }
.vq-note-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto 1fr;
  gap: 12px 48px;
  align-items: end;
  padding: 0 0 72px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.vq-note-row em {
  font-family: Fraunces, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--mute);
  font-weight: 400;
  grid-column: 2;
}
.vq-note-row h3 {
  font-family: Fraunces, serif;
  font-size: clamp(36px, 5vw, 64px);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  grid-column: 2;
}
.vq-note-row p { margin: 0; font-size: 17px; line-height: 1.65; color: var(--mute); grid-column: 2; max-width: 42ch; }
.vq-note-row img {
  width: 100%;
  height: 68vh;
  min-height: 420px;
  object-fit: cover;
  clip-path: none;
  grid-column: 1;
  grid-row: 1 / span 3;
}
.vq-note-row:nth-child(even) { grid-template-columns: 0.8fr 1.2fr; }
.vq-note-row:nth-child(even) img { grid-column: 2; }
.vq-note-row:nth-child(even) em,
.vq-note-row:nth-child(even) h3,
.vq-note-row:nth-child(even) p { grid-column: 1; }
.vq-note-row:hover h3 { opacity: 0.45; }

.vq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.vq-split img { width: 100%; height: 100%; object-fit: cover; min-height: 70vh; }
.vq-split-copy { padding: 120px 64px; align-self: center; }

.vq-sticky-note {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 40px;
}
.vq-sticky-note .hold {
  position: sticky;
  top: 110px;
  height: fit-content;
}
.vq-prose { font-size: 20px; line-height: 1.8; max-width: 66ch; color: #2a2a2a; }
.vq-prose p { margin: 0 0 1.2em; }
.vq-pull {
  font-family: Fraunces, serif;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 32px 0;
  padding-left: 18px;
  border-left: 1px solid var(--ink);
  font-style: italic;
  font-weight: 400;
}

.vq-timeline { position: relative; padding-left: 36px; }
.vq-timeline::before {
  content: "";
  position: absolute;
  left: 4px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.vq-tl { position: relative; margin: 0 0 44px; }
.vq-tl::before {
  content: "";
  position: absolute;
  left: -35px; top: 10px;
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--paper);
}
.vq-tl h3 { font-family: Fraunces, serif; font-size: 26px; margin: 0 0 8px; font-weight: 400; }

.vq-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: transparent;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.vq-kit-grid article {
  background: transparent;
  padding: 32px 28px 32px 0;
  min-height: 180px;
  border-bottom: 1px solid var(--line);
}
.vq-kit-grid article:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.vq-kit-grid b {
  font-family: Fraunces, serif;
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}

.vq-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.vq-mosaic figure { margin: 0; overflow: hidden; position: relative; }
.vq-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.vq-mosaic figure:hover img { opacity: 0.85; transform: none; }
.vq-mosaic .w8 { grid-column: span 8; grid-row: span 3; }
.vq-mosaic .w4 { grid-column: span 4; grid-row: span 2; }
.vq-mosaic .w6 { grid-column: span 6; grid-row: span 2; }
.vq-mosaic .w3 { grid-column: span 3; grid-row: span 2; }
.vq-mosaic figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vq-faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.vq-full {
  width: 100%;
  height: 88vh;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.vq-band { padding: 96px 56px; }
.vq-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: Fraunces, serif;
  font-size: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}
.vq-faq summary::-webkit-details-marker { display: none; }
.vq-faq summary::after {
  content: "+";
  font-family: Syne, sans-serif;
  font-size: 22px;
  color: var(--mute);
  transition: transform 0.25s;
}
.vq-faq details[open] summary::after { transform: rotate(45deg); }
.vq-faq details p { max-width: 70ch; line-height: 1.7; padding: 12px 0 8px; color: var(--mute); }

.vq-legal { max-width: 760px; }
.vq-legal h2 {
  font-family: Fraunces, serif;
  font-size: 24px;
  margin: 36px 0 10px;
  font-weight: 400;
}
.vq-legal p, .vq-legal li { line-height: 1.7; font-size: 15px; color: #2a2a2a; }
.vq-legal ol { padding-left: 18px; }

.vq-news {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.vq-news article h3 {
  font-family: Fraunces, serif;
  font-size: 26px;
  margin: 10px 0;
  font-weight: 400;
}
.vq-watermark { display: none; }

.vq-form-ok {
  display: none;
  font-family: Fraunces, serif;
  font-size: 24px;
  padding: 40px 0;
}

.vq-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.22em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--mute);
}

.bg-paper { background: var(--paper) !important; }
.text-ink { color: var(--ink) !important; }
.bg-night { background: #111 !important; }
.text-cream { color: #f7f6f3 !important; }
.vq-card figcaption .vq-kicker { color: rgba(255,255,255,.75); }

@media (max-width: 980px) {
  .vq-hero, .vq-feature, .vq-stripe, .vq-split, .vq-sticky-note, .vq-news, .vq-footer-grid, .vq-nav, .vq-cookie {
    grid-template-columns: 1fr;
  }
  .vq-note-row, .vq-note-row:nth-child(even) { grid-template-columns: 1fr; }
  .vq-note-row em, .vq-note-row h3, .vq-note-row p,
  .vq-note-row:nth-child(even) em,
  .vq-note-row:nth-child(even) h3,
  .vq-note-row:nth-child(even) p { grid-column: 1; }
  .vq-note-row img, .vq-note-row:nth-child(even) img {
    display: block;
    grid-column: 1;
    grid-row: auto;
    height: 52vh;
    min-height: 280px;
  }
  .vq-gallery-rail figure { flex: 0 0 78vw; }
  .vq-gallery-rail img { height: 58vh; min-height: 320px; }
  .vq-kit-grid, .vq-stats { grid-template-columns: 1fr; }
  .vq-kit-grid article:nth-child(odd) { border-right: 0; padding-right: 0; }
  .vq-stats article { border-right: 0; border-bottom: 1px solid var(--line); }
  .vq-mosaic .w8, .vq-mosaic .w4, .vq-mosaic .w6, .vq-mosaic .w3 {
    grid-column: span 12;
    grid-row: span 2;
  }
  .vq-hero-stack { min-height: 42vh; }
  .vq-nav-left, .vq-nav-right { padding: 90px 24px 32px; }
  .vq-page, .vq-hero, .vq-feature, .vq-stripe { padding-left: 20px; padding-right: 20px; }
  .vq-top { padding: 18px 20px; }
  .vq-cookie { padding: 16px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .vq-reveal, .vq-clip { opacity: 1; transform: none; }
}
