:root {
  color-scheme: light;
  --paper: #f2f0e8;
  --paper-deep: #e8e4d9;
  --ink: #17211f;
  --ink-soft: #52605c;
  --moss: #3f5d4d;
  --sunset: #bd6049;
  --line: rgba(23, 33, 31, 0.18);
  --white: #f8f7f2;
  --display: "Iowan Old Style", "Songti SC", "STSong", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.25rem;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 320ms ease, background 320ms ease, min-height 320ms ease, border-color 320ms ease;
}

.site-header.is-scrolled {
  min-height: 4.25rem;
  color: var(--ink);
  background: rgba(242, 240, 232, 0.91);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  gap: 0.7rem;
  letter-spacing: 0.04em;
}

.brand-mark {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 600;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.desktop-nav a {
  position: relative;
  padding: 0.7rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 1rem;
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  gap: 0.55rem;
  padding: 0.25rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-sound-off {
  display: none;
}

.music-toggle[aria-pressed="false"] .icon-sound-on {
  display: none;
}

.music-toggle[aria-pressed="false"] .icon-sound-off {
  display: block;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #4e5a58;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 49%;
  animation: hero-breathe 26s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 21, 21, 0.62) 0%, rgba(13, 21, 21, 0.2) 48%, transparent 76%),
    linear-gradient(0deg, rgba(10, 17, 17, 0.42) 0%, transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(48rem, calc(100% - 2 * var(--page-pad)));
  margin: 0 var(--page-pad) clamp(4rem, 9vh, 8rem);
}

.eyebrow,
.section-index {
  margin: 0 0 1.1rem;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.motion-heading h2,
.sea-copy h2,
.night-heading h2,
.everyday-copy h2,
.closing-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 9.5em;
  font-size: clamp(3rem, 6.8vw, 7.6rem);
}

.hero-intro {
  max-width: 31rem;
  margin: 1.45rem 0 1.8rem;
  color: rgba(248, 247, 242, 0.84);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.85rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.text-link svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 220ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(0.28rem);
}

.closing-copy .text-link:hover svg,
.closing-copy .text-link:focus-visible svg {
  transform: translateY(-0.22rem);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: clamp(2.5rem, 6vh, 5.5rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.hero-index i {
  width: 4.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

@keyframes hero-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

.editorial-section,
.motion-section,
.night-section,
.everyday-section {
  padding: clamp(6rem, 12vw, 11rem) var(--page-pad);
}

.section-heading,
.motion-heading,
.night-heading,
.everyday-copy {
  display: grid;
  grid-template-columns: minmax(10rem, 0.65fr) 1.25fr minmax(16rem, 0.8fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 5rem);
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

.section-heading .section-index,
.motion-heading .section-index,
.night-heading .section-index,
.everyday-copy .section-index {
  align-self: start;
  color: var(--ink-soft);
}

.section-heading h2,
.motion-heading h2,
.night-heading h2,
.everyday-copy h2,
.closing-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 6.2rem);
}

.section-heading > p:last-child,
.motion-heading > p:last-child,
.night-heading > p:last-child,
.everyday-copy > p:last-child {
  max-width: 28rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.city-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 5rem);
}

figure {
  margin: 0;
}

.image-frame img,
.sea-card img,
.night-grid img,
.everyday-strip img {
  height: 100%;
  object-fit: cover;
}

.city-primary {
  grid-row: 1 / span 2;
}

.city-primary img {
  aspect-ratio: 4 / 3;
}

.city-secondary {
  width: 82%;
  margin-left: auto;
}

.city-secondary img {
  aspect-ratio: 3 / 4;
  object-position: 56% center;
}

.city-detail {
  width: 112%;
  margin-left: -22%;
}

.city-detail img {
  aspect-ratio: 4 / 3;
}

.image-frame figcaption,
.motion-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.image-frame img,
.motion-frame video,
.sea-card img,
.night-grid img,
.everyday-strip img {
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.image-frame:hover img,
.sea-card:hover img,
.night-grid figure:hover img,
.everyday-strip figure:hover img {
  transform: scale(1.012);
}

.image-frame,
.sea-card,
.night-grid figure,
.everyday-strip figure {
  overflow: hidden;
}

.image-frame figcaption,
.motion-frame figcaption,
.sea-card figcaption {
  overflow: visible;
}

.motion-section {
  color: var(--white);
  background: #1d2a25;
}

.motion-section .section-index,
.motion-section .motion-heading > p:last-child {
  color: rgba(248, 247, 242, 0.62);
}

.motion-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: clamp(1rem, 3vw, 3rem);
}

.motion-frame video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.motion-frame-wide {
  margin-bottom: 8vw;
}

.motion-frame-tall {
  width: 92%;
  margin-left: auto;
}

.motion-frame-tall video {
  aspect-ratio: 3 / 4;
  object-position: 60% center;
}

.motion-frame figcaption {
  color: rgba(248, 247, 242, 0.68);
  border-color: rgba(248, 247, 242, 0.2);
}

.sea-section {
  background: #dfe7e6;
}

.sea-hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
}

.sea-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.sea-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 30, 33, 0.46), transparent 54%);
}

.sea-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: var(--page-pad);
  width: min(36rem, calc(100% - 2 * var(--page-pad)));
  color: var(--white);
  transform: translateY(-50%);
}

.sea-copy h2 {
  font-size: clamp(3.6rem, 8.5vw, 9.5rem);
}

.sea-copy p:last-child {
  max-width: 27rem;
  margin: 1.5rem 0 0;
  color: rgba(248, 247, 242, 0.76);
}

.sea-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(23, 33, 31, 0.2);
}

.sea-card {
  color: var(--ink);
  background: var(--paper);
}

.sea-card img {
  aspect-ratio: 4 / 3;
}

.sea-card figcaption {
  padding: 1rem var(--page-pad) 2.5rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.night-section {
  color: var(--white);
  background: #111917;
}

.night-section .section-index,
.night-section .night-heading > p:last-child {
  color: rgba(248, 247, 242, 0.58);
}

.night-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.55fr;
  align-items: end;
  gap: clamp(1rem, 3vw, 3rem);
}

.night-wide img {
  aspect-ratio: 4 / 3;
}

.night-tall {
  margin-bottom: -6vw;
}

.night-tall img {
  aspect-ratio: 3 / 4;
}

.night-note {
  position: absolute;
  right: calc(28% + 1rem);
  bottom: 1rem;
  margin: 0;
  color: rgba(248, 247, 242, 0.6);
  font-size: 0.64rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.everyday-section {
  background: var(--paper-deep);
}

.everyday-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.everyday-strip figure:nth-child(1) img,
.everyday-strip figure:nth-child(2) img {
  aspect-ratio: 4 / 3;
}

.everyday-strip figure:nth-child(2) {
  transform: translateY(4rem);
}

.everyday-dog {
  width: 86%;
  justify-self: end;
}

.everyday-dog img {
  aspect-ratio: 3 / 4;
  object-position: 48% center;
}

.collections-section {
  padding: clamp(7rem, 12vw, 12rem) var(--page-pad);
  background: #dfe7e3;
}

.collections-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 5rem);
}

.collections-heading .section-index {
  align-self: start;
}

.collections-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.collections-deck {
  max-width: 24rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.collection-guide {
  display: none;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.7vw, 1.6rem);
  margin-top: clamp(4rem, 8vw, 7rem);
}

.collection-card {
  position: relative;
  min-height: clamp(29rem, 52vw, 44rem);
  overflow: hidden;
  color: var(--white);
  background: #283431;
}

.collection-card picture,
.collection-card img,
.collection-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-card img {
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.collection-card-city img {
  object-position: 48% center;
}

.collection-card-coast img {
  object-position: 58% center;
}

.collection-card-moments img {
  object-position: 48% center;
}

.collection-card-shade {
  background: linear-gradient(0deg, rgba(10, 17, 17, 0.78) 0%, rgba(10, 17, 17, 0.08) 65%);
}

.collection-card-open {
  position: absolute;
  z-index: 2;
  top: clamp(1rem, 1.8vw, 1.5rem);
  right: clamp(1rem, 1.8vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0.15rem 0.8rem;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(13, 22, 21, 0.35);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  transition: color 240ms ease, border-color 240ms ease, background 240ms ease;
}

.collection-card-open svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 240ms ease;
}

.collection-card-copy {
  position: absolute;
  z-index: 1;
  right: clamp(1.3rem, 2.5vw, 2.4rem);
  bottom: clamp(1.4rem, 3vw, 2.8rem);
  left: clamp(1.3rem, 2.5vw, 2.4rem);
  display: grid;
  gap: 0.35rem;
}

.collection-card-copy small {
  margin-bottom: 0.55rem;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.collection-card-copy strong {
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.collection-card-copy > span {
  color: rgba(248, 247, 242, 0.72);
  font-size: 0.76rem;
}

.collection-card:hover img,
.collection-card:focus-visible img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.collection-card:hover .collection-card-open,
.collection-card:focus-visible .collection-card-open {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.9);
}

.collection-card:hover .collection-card-open svg,
.collection-card:focus-visible .collection-card-open svg {
  transform: translateX(0.2rem);
}

.closing-section {
  display: grid;
  place-items: center;
  min-height: 72svh;
  padding: 6rem var(--page-pad);
  text-align: center;
  background: var(--paper);
}

.closing-copy h2 {
  max-width: 10em;
}

.closing-copy .text-link {
  margin-top: 2.5rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem var(--page-pad);
  color: rgba(248, 247, 242, 0.65);
  background: #111917;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.site-footer div {
  display: flex;
  gap: 1.5rem;
}

.site-footer a {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(248, 247, 242, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1000px) {
  .hero {
    background: #1b2724;
  }

  .hero-media {
    inset: 0 0 0 auto;
    width: 66%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #1b2724 0 30%, rgba(27, 39, 36, 0.98) 35%, rgba(27, 39, 36, 0.55) 47%, rgba(27, 39, 36, 0.08) 65%, transparent 78%),
      linear-gradient(180deg, rgba(12, 18, 17, 0.3) 0%, transparent 36%, rgba(12, 18, 17, 0.5) 100%);
  }

  .hero-copy {
    width: min(30rem, 33vw);
  }

  .hero h1 {
    max-width: 6.2em;
    font-size: clamp(3.5rem, 5.1vw, 5.5rem);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .section-heading,
  .motion-heading,
  .night-heading,
  .everyday-copy {
    grid-template-columns: 1fr 1.4fr;
  }

  .section-heading h2,
  .motion-heading h2,
  .night-heading h2,
  .everyday-copy h2 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .section-heading .section-index,
  .motion-heading .section-index,
  .night-heading .section-index,
  .everyday-copy .section-index {
    grid-row: 2;
  }

  .section-heading > p:last-child,
  .motion-heading > p:last-child,
  .night-heading > p:last-child,
  .everyday-copy > p:last-child {
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 1.25rem;
  }

  .site-header {
    min-height: 4.25rem;
    padding-top: env(safe-area-inset-top);
  }

  .brand-sub,
  .music-toggle span {
    display: none;
  }

  .header-controls {
    gap: 0.2rem;
  }

  .music-toggle {
    width: 2.75rem;
    justify-content: center;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 48% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 21, 21, 0.68) 0%, rgba(13, 21, 21, 0.12) 58%, rgba(13, 21, 21, 0.24) 100%);
  }

  .hero-copy {
    width: auto;
    margin-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }

  .eyebrow {
    max-width: 20rem;
    font-size: 0.61rem;
  }

  .hero h1 {
    max-width: 8.2em;
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .hero-intro {
    max-width: 19rem;
    font-size: 0.86rem;
  }

  .hero-index {
    display: none;
  }

  .editorial-section,
  .motion-section,
  .night-section,
  .everyday-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-heading,
  .motion-heading,
  .night-heading,
  .everyday-copy {
    display: block;
    margin-bottom: 3.5rem;
  }

  .section-heading h2,
  .motion-heading h2,
  .night-heading h2,
  .everyday-copy h2,
  .closing-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .section-heading > p:last-child,
  .motion-heading > p:last-child,
  .night-heading > p:last-child,
  .everyday-copy > p:last-child {
    margin-top: 1.25rem;
  }

  .city-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .city-primary,
  .city-secondary,
  .city-detail {
    width: 100%;
    margin: 0;
  }

  .city-primary img {
    aspect-ratio: 4 / 5;
    object-position: 57% center;
  }

  .city-secondary {
    width: 82%;
    margin-left: auto;
  }

  .city-detail {
    width: 90%;
  }

  .motion-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
  }

  .motion-frame-wide,
  .motion-frame-tall {
    width: 100%;
    margin: 0;
  }

  .motion-frame-wide video {
    aspect-ratio: 4 / 5;
    object-position: 53% center;
  }

  .motion-frame-tall {
    width: 84%;
    margin-left: auto;
  }

  .sea-hero {
    min-height: 82svh;
  }

  .sea-hero > img {
    object-position: 62% center;
  }

  .sea-hero::after {
    background: linear-gradient(0deg, rgba(17, 30, 33, 0.57), transparent 70%);
  }

  .sea-copy {
    top: auto;
    right: var(--page-pad);
    bottom: 3.5rem;
    transform: none;
  }

  .sea-copy h2 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

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

  .sea-card figcaption {
    padding-bottom: 2rem;
  }

  .night-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .night-wide img {
    aspect-ratio: 4 / 5;
    object-position: 58% center;
  }

  .night-tall {
    width: 78%;
    margin: 0 0 0 auto;
  }

  .night-note {
    position: static;
    align-self: flex-start;
  }

  .everyday-strip {
    display: flex;
    gap: 1rem;
    margin-right: calc(-1 * var(--page-pad));
    padding-right: var(--page-pad);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .everyday-strip::-webkit-scrollbar {
    display: none;
  }

  .everyday-strip figure,
  .everyday-strip figure:nth-child(2),
  .everyday-dog {
    flex: 0 0 84vw;
    width: auto;
    transform: none;
    scroll-snap-align: start;
  }

  .everyday-dog img {
    aspect-ratio: 4 / 3;
  }

  .collections-section {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    overflow: hidden;
  }

  .collections-heading {
    display: block;
  }

  .collections-heading h2 {
    max-width: 8em;
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .collections-heading .collections-deck {
    margin-top: 1.3rem;
  }

  .collections-heading .collection-guide {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.8rem;
    color: var(--ink);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .collection-guide svg {
    width: 2rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
    animation: collection-swipe-cue 1800ms ease-in-out 2;
  }

  .collection-cards {
    display: flex;
    gap: 0.9rem;
    margin-top: 3.5rem;
    margin-right: calc(-1 * var(--page-pad));
    padding-right: var(--page-pad);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .collection-cards::-webkit-scrollbar {
    display: none;
  }

  .collection-card {
    flex: 0 0 84vw;
    min-height: 31rem;
    scroll-snap-align: start;
  }

  .collection-card-open {
    min-height: 2.5rem;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    font-size: 0.68rem;
  }

  .closing-section {
    min-height: 62svh;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }
}

@keyframes collection-swipe-cue {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.38rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-guide svg {
    animation: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) {
    animation: page-fade-out 220ms ease both;
  }

  ::view-transition-new(root) {
    animation: page-fade-in 420ms ease both;
  }
}

@keyframes page-fade-out {
  to {
    opacity: 0;
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }
}

@media (max-width: 999px) and (max-height: 650px) and (orientation: landscape) {
  .site-header {
    min-height: 3.5rem;
  }

  .hero-copy {
    width: min(24rem, 45vw);
    margin-right: var(--page-pad);
    margin-bottom: 1.1rem;
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3rem);
  }

  .hero-intro {
    margin: 0.8rem 0 1rem;
    font-size: 0.74rem;
  }

  .hero-shade {
    background:
      linear-gradient(270deg, rgba(13, 21, 21, 0.7) 0%, rgba(13, 21, 21, 0.32) 50%, transparent 72%),
      linear-gradient(0deg, rgba(13, 21, 21, 0.4) 0%, transparent 62%);
  }

  .hero-index {
    bottom: 2rem;
  }
}

@media (min-width: 1000px) and (max-height: 650px) {
  .site-header {
    min-height: 3.5rem;
  }

  .hero-copy {
    width: min(27rem, 33vw);
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 4.3vw, 4rem);
  }

  .hero-intro {
    margin: 0.75rem 0 0.9rem;
  }

  .hero-index {
    bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
