:root {
  --onyx: #111111;
  --ivory: #f5f4ef;
  --sage: #6d7a5e;
  --terra: #d86b4f;
  --ember: #ff6a1a;
  --taupe: #a89a8e;
  --stone: #d9d5cc;
  --paper: #fbfaf6;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
  --serif: "Playfair Display", "Didot", "Bodoni 72", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --headline-line-height: 1.08;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--ivory);
  color: var(--onyx);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-intro-loading {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(150px, 250px) 1fr minmax(260px, auto);
  align-items: center;
  gap: 28px;
  padding: 34px clamp(22px, 5vw, 84px);
  overflow: hidden;
  isolation: isolate;
  background: rgba(245, 244, 239, 0.78);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12), 0 1px 0 rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("/assets/header-botanical-bg.webp") center / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(245, 244, 239, 0.9);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.14), 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::before {
  opacity: 0.16;
}

.brand img {
  width: 210px;
  height: auto;
  transition: width 180ms ease;
}

@media (min-width: 901px) {
  .site-header.is-scrolled {
    grid-template-columns: minmax(150px, 200px) 1fr minmax(260px, auto);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header.is-scrolled .brand img {
    width: 178px;
  }

  .site-header.is-scrolled .primary-nav a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 70px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active,
.primary-nav a[aria-current="location"],
body:has(#shop:target) .primary-nav a[href="#shop"],
body:has(#collections:target) .primary-nav a[href="#collections"],
body:has(#about:target) .primary-nav a[href="#about"],
body:has(#journal:target) .primary-nav a[href="#journal"] {
  color: var(--sage);
  border-color: currentColor;
  outline: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.text-action,
.bag-button,
.menu-button {
  border: 0;
  background: transparent;
  color: var(--onyx);
  cursor: pointer;
}

.text-action,
.bag-button {
  padding: 8px 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-actions .text-action,
.header-actions .bag-button {
  color: var(--terra);
}

.header-actions .text-action:hover,
.header-actions .text-action:focus-visible,
.header-actions .bag-button:hover,
.header-actions .bag-button:focus-visible {
  color: var(--onyx);
  outline: none;
}

.bag-button span {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--terra);
  color: var(--ivory);
  font-size: 11px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 8px;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
  background: #111;
  color: var(--onyx);
  text-align: center;
  transition: opacity 640ms ease, visibility 640ms ease;
}

.intro-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.15), rgba(17, 17, 17, 0.88)),
    url("/assets/rynell-intro-poster.webp") center / cover no-repeat;
  filter: blur(22px) saturate(0.84);
  transform: scale(1.06);
  opacity: 0.42;
  pointer-events: none;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-loader-art {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100svh;
  max-width: 100vw;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.28);
  animation: introPosterIn 700ms ease both;
}

.intro-loader-enter {
  position: absolute;
  z-index: 3;
  top: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 54px);
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(245, 244, 239, 0.4);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.68);
  color: var(--ivory);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.intro-loader-enter:hover,
.intro-loader-enter:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
  outline: none;
}

.intro-countdown {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 42px);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.5);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(8px);
}

.intro-countdown svg,
.intro-countdown span {
  grid-area: 1 / 1;
}

.intro-countdown svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.intro-countdown circle {
  fill: none;
  stroke-width: 2;
}

.intro-countdown-track {
  stroke: rgba(245, 244, 239, 0.28);
}

.intro-countdown-progress {
  stroke: var(--ivory);
  stroke-linecap: round;
}

.loading-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}

.loading-media[hidden] {
  display: none;
}

.loading-media > img {
  display: block;
}

.global-loading-indicator {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(245, 244, 239, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, visibility 160ms ease;
  backdrop-filter: blur(3px);
}

.loading-media.is-loading .global-loading-indicator {
  opacity: 1;
  visibility: visible;
}

.global-loading-ring {
  width: var(--loading-ring-size, 34px);
  aspect-ratio: 1;
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: globalLoaderSpin 720ms linear infinite;
}

.loading-media[data-loader-size="small"] {
  --loading-ring-size: 26px;
}

.loading-media[data-loader-size="large"] {
  --loading-ring-size: 46px;
}

@keyframes globalLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes introPosterIn {
  from {
    opacity: 0;
    transform: scale(1.012);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ivory);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(245, 244, 239, 0.98) 0%, rgba(245, 244, 239, 0.88) 31%, rgba(245, 244, 239, 0.12) 62%),
    linear-gradient(180deg, rgba(245, 244, 239, 0.3), rgba(245, 244, 239, 0.04));
}

.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 44px));
  padding: clamp(190px, 22vh, 270px) 0 80px clamp(22px, 5vw, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.intro-copy h2,
.section-heading h2,
.brand-system h2,
.journal h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: var(--headline-line-height);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  color: var(--sage);
  font-size: clamp(54px, 7.4vw, 104px);
}

.rule {
  display: block;
  width: 150px;
  height: 2px;
  margin: 38px 0 34px;
  background: var(--sage);
}

.hero-text {
  max-width: 420px;
  margin: 0 0 46px;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.button-primary,
.drawer-cta,
.journal-form button,
.collection-card button,
.merch-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border: 1px solid var(--onyx);
  border-radius: 5px;
  background: var(--onyx);
  color: var(--ivory);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  min-width: min(330px, 100%);
  padding: 0 32px;
  gap: 28px;
}

.button-primary:hover,
.drawer-cta:hover,
.journal-form button:hover,
.collection-card button:hover,
.merch-card button:hover {
  transform: translateY(-2px);
  background: var(--sage);
  border-color: var(--sage);
}

.intro-band,
.collections,
.brand-system,
.journal {
  padding: clamp(70px, 9vw, 130px) clamp(22px, 5vw, 84px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(42px, 6vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-copy h2,
.section-heading h2,
.brand-system h2,
.journal h2 {
  font-size: clamp(39px, 5.1vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro-grid article {
  min-height: 310px;
  padding: 30px;
  background: var(--paper);
}

.intro-grid span,
.card-index {
  color: var(--taupe);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.intro-grid h3,
.collection-card h3,
.merch-card h3 {
  margin: 92px 0 18px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: var(--headline-line-height);
}

.intro-grid p,
.collection-card p,
.merch-card p,
.brand-system-copy p,
.journal-form label,
.drawer p {
  color: rgba(17, 17, 17, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.merch-card .card-index.merch-price {
  margin: 0;
  color: var(--terra);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.image-reel {
  padding: clamp(54px, 7vw, 96px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.image-reel-heading {
  padding: 0 clamp(22px, 5vw, 84px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.image-reel-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 500;
}

.image-reel-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.image-reel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--onyx);
  cursor: pointer;
  font-size: 17px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.image-reel-controls button:hover,
.image-reel-controls button:focus-visible {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--ivory);
  outline: none;
}

.image-reel-viewport {
  overflow-x: auto;
  padding: 0 clamp(22px, 5vw, 84px) 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.image-reel-viewport::-webkit-scrollbar {
  display: none;
}

.image-reel-track {
  width: max-content;
  display: flex;
  gap: 18px;
}

.image-reel figure {
  width: clamp(300px, 42vw, 560px);
  margin: 0;
  scroll-snap-align: start;
}

.image-reel figure img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  border: 1px solid #c9c7c2;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.image-reel-link {
  display: block;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}

.image-reel-link img {
  transition: transform 220ms ease, filter 220ms ease;
}

.image-reel-link:hover img,
.image-reel-link:focus-visible img {
  filter: brightness(0.96);
  transform: scale(1.012);
}

.image-reel-link:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
}

.image-reel figcaption {
  padding-top: 12px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: end;
  margin-bottom: 48px;
}

.merch-color-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.merch-color-nav button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, 0.7);
  cursor: pointer;
  padding: 0 15px 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.merch-color-nav button span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  background: var(--swatch);
}

.merch-color-nav button:hover,
.merch-color-nav button:focus-visible,
.merch-color-nav button.is-active {
  border-color: currentColor;
  color: var(--onyx);
  outline: none;
}

.merch-color-nav button.is-active {
  background: rgba(217, 213, 204, 0.22);
}

.collection-grid,
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-card,
.merch-card {
  min-height: 610px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.collection-card.dark-card {
  background: var(--onyx);
  color: var(--ivory);
}

.merch-card {
  min-height: 0;
  gap: 20px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.merch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--merch-card-background) center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.merch-card > * {
  position: relative;
  z-index: 1;
}

.merch-card:nth-child(1) { --merch-card-background: url("/assets/merch/card-backgrounds/01.webp"); }
.merch-card:nth-child(2) { --merch-card-background: url("/assets/merch/card-backgrounds/02.webp"); }
.merch-card:nth-child(3) { --merch-card-background: url("/assets/merch/card-backgrounds/03.webp"); }
.merch-card:nth-child(4) { --merch-card-background: url("/assets/merch/card-backgrounds/04.webp"); }
.merch-card:nth-child(5) { --merch-card-background: url("/assets/merch/card-backgrounds/05.webp"); }
.merch-card:nth-child(6) { --merch-card-background: url("/assets/merch/card-backgrounds/06.webp"); }
.merch-card:nth-child(7) { --merch-card-background: url("/assets/merch/card-backgrounds/07.webp"); }
.merch-card:nth-child(8) { --merch-card-background: url("/assets/merch/card-backgrounds/08.webp"); }
.merch-card:nth-child(9) { --merch-card-background: url("/assets/merch/card-backgrounds/09.webp"); }
.merch-card:nth-child(10) { --merch-card-background: url("/assets/merch/card-backgrounds/10.webp"); }
.merch-card:nth-child(11) { --merch-card-background: url("/assets/merch/card-backgrounds/11.webp"); }
.merch-card:nth-child(12) { --merch-card-background: url("/assets/merch/card-backgrounds/12.webp"); }
.merch-card:nth-child(13) { --merch-card-background: url("/assets/merch/card-backgrounds/13.webp"); }
.merch-card:nth-child(14) { --merch-card-background: url("/assets/merch/card-backgrounds/14.webp"); }
.merch-card:nth-child(15) { --merch-card-background: url("/assets/merch/card-backgrounds/01.webp"); }

.merch-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  border: 1px solid #c9c7c2;
  border-radius: 6px;
  object-fit: cover;
  background: var(--stone);
  cursor: zoom-in;
  transition: background 220ms ease, opacity 160ms ease;
}

.merch-feature {
  grid-column: auto;
}

.merch-tall {
  grid-row: auto;
}

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

.merch-details {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.merch-details div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
}

.merch-details dt,
.merch-option span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merch-details dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.merch-option {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.merch-option select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--onyx) 50%) calc(100% - 22px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--onyx) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    var(--paper);
  color: var(--onyx);
  padding: 0 48px 0 14px;
  cursor: pointer;
}

.merch-option strong {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 5px;
  background: rgba(217, 213, 204, 0.18);
  color: rgba(17, 17, 17, 0.72);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
}

.collection-card.dark-card p {
  color: rgba(245, 244, 239, 0.72);
}

.mark-tile,
.texture-tile {
  min-height: 250px;
  border-radius: 6px;
}

.mark-tile {
  display: grid;
  place-items: center;
  background: #080808;
}

.mark-tile img {
  width: 172px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.texture-tile {
  border: 1px solid rgba(17, 17, 17, 0.08);
  overflow: hidden;
  background: var(--stone);
}

.texture-tile img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.collection-card h3,
.merch-card h3 {
  margin-top: 28px;
}

.collection-card button,
.merch-card button {
  min-height: 54px;
  width: 100%;
  margin-top: auto;
  border-color: currentColor;
}

.collection-card:not(.dark-card) button,
.merch-card button {
  background: transparent;
  color: var(--onyx);
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  background: #ece7dc;
}

.brand-system-copy p {
  max-width: 620px;
  margin: 28px 0 0;
}

.palette {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.palette button {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--onyx);
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.palette button::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: var(--swatch);
}

.palette button:hover,
.palette button:focus-visible {
  color: var(--terra);
  outline: none;
}

.guide-frame {
  margin: 0;
  max-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.guide-frame img {
  width: 100%;
  cursor: zoom-in;
}

.about-story,
.ads-showcase,
.faq {
  width: 100%;
  min-width: 0;
  padding: clamp(78px, 9vw, 148px) clamp(22px, 5vw, 84px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.about-story-heading h2,
.ads-heading h2,
.faq-heading h2 {
  max-width: 820px;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(39px, 5.1vw, 76px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-story-heading,
.about-story-copy,
.ads-heading,
.ads-gallery,
.faq-heading,
.faq-list {
  min-width: 0;
}

.about-story-copy {
  display: grid;
  gap: 26px;
  padding-top: 38px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
}

.about-story-copy p {
  margin: 0;
}

.ads-showcase {
  border-top: 1px solid var(--line);
  background: #111;
  color: var(--ivory);
}

.ads-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 24px clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 84px);
}

.ads-heading .section-kicker {
  grid-column: 1 / -1;
}

.ads-heading h2 {
  margin-top: 0;
  color: var(--ivory);
}

.ads-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(245, 244, 239, 0.68);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.ads-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 2.4vw, 34px);
}

.ad-piece {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.48fr);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 244, 239, 0.18);
  border-radius: 6px;
  background: #181818;
}

.ad-piece-feature {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.ad-piece img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  cursor: zoom-in;
}

.ad-piece-feature img {
  aspect-ratio: 4 / 5;
  min-height: 560px;
}

.ad-piece figcaption {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: clamp(20px, 2.5vw, 34px);
}

.ad-piece figcaption span,
.ad-piece figcaption small {
  color: rgba(245, 244, 239, 0.58);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ad-piece figcaption strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1.08;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 128px);
  border-top: 1px solid var(--line);
  background: #efebe2;
}

.faq-list {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 46px 26px 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.7;
}

.journal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 520px);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
  background: var(--onyx);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.journal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.76)),
    url("/assets/rynell-logo-pattern-dark.webp") center / 720px auto repeat;
  opacity: 1;
}

.journal .section-kicker {
  color: var(--terra);
}

.journal-list-label {
  margin: 4px 0 -18px;
}

.journal-copy {
  display: grid;
  gap: 32px;
}

.journal-links {
  display: grid;
  max-width: 640px;
  border-top: 1px solid rgba(245, 244, 239, 0.18);
}

.journal-links a,
.journal-links button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid rgba(245, 244, 239, 0.18);
  background: transparent;
  color: rgba(245, 244, 239, 0.78);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 160ms ease, padding-left 160ms ease;
}

.journal-links a:hover,
.journal-links a:focus-visible,
.journal-links button:hover,
.journal-links button:focus-visible {
  color: var(--ivory);
  padding-left: 10px;
  outline: none;
}

.journal-links a::after,
.journal-links button::after {
  content: "\2192";
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.journal-links a:hover::after,
.journal-links a:focus-visible::after,
.journal-links button:hover::after,
.journal-links button:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.journal-form {
  display: grid;
  gap: 14px;
}

.journal-form label {
  color: rgba(245, 244, 239, 0.78);
}

.journal-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 10px;
}

.journal-form input,
.drawer input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 5px;
  background: var(--paper);
  color: var(--onyx);
  padding: 0 18px;
}

.journal-form button {
  min-height: 58px;
  background: var(--ivory);
  color: var(--onyx);
  border-color: var(--ivory);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: rgba(245, 244, 239, 0.78);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--onyx);
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/assets/rynell-logo-pattern-light.webp") right bottom / min(1120px, 92vw) auto repeat;
  opacity: 0.5;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 84%, rgba(251, 250, 246, 0) 0 18%, rgba(251, 250, 246, 0.1) 33%, rgba(251, 250, 246, 0.72) 66%),
    linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.94) 48%, rgba(251, 250, 246, 0.36) 100%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.64) 50%, rgba(251, 250, 246, 0.18) 100%);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 0.38fr) minmax(190px, 0.4fr);
  gap: clamp(34px, 6vw, 96px);
  min-height: clamp(470px, 48vw, 680px);
  align-items: start;
  padding: clamp(86px, 10vw, 150px) clamp(22px, 5vw, 84px) clamp(72px, 8vw, 120px);
}

.footer-brand .footer-mark {
  width: 64px;
  height: auto;
  margin-bottom: 38px;
}

.footer-brand h2 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 500;
  line-height: var(--headline-line-height);
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  width: max-content;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--sage);
  border-color: currentColor;
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(22px, 5vw, 84px);
  border-top: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(17, 17, 17, 0.32);
  backdrop-filter: blur(4px);
}

.product-lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-columns: min(980px, 100%);
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 54px);
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(12px);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(245, 244, 239, 0.36);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.68);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.product-lightbox-hint.is-visible {
  animation: productLightboxHint 4.2s ease forwards;
}

@keyframes productLightboxHint {
  0% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }

  12%,
  70% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -4px);
  }
}

.product-lightbox figure {
  width: 100%;
  max-height: calc(100svh - 128px);
  margin: 0;
  display: grid;
  gap: 16px;
  justify-items: center;
  overflow: auto;
}

.product-lightbox img {
  width: 100%;
  max-height: calc(100svh - 186px);
  border-radius: 8px;
  object-fit: contain;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  cursor: zoom-in;
  transition: max-height 180ms ease, width 180ms ease;
  -webkit-user-drag: none;
  user-select: none;
}

.product-lightbox img:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
}

.product-lightbox.is-zoomed figure {
  align-items: start;
  justify-items: start;
  cursor: grab;
}

.product-lightbox.is-zoomed img {
  width: min(1600px, 150vw);
  max-width: none;
  max-height: none;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition: none;
}

.product-lightbox.is-dragging figure,
.product-lightbox.is-dragging img {
  cursor: grabbing;
}

.product-lightbox figcaption {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  text-align: center;
}

.product-lightbox-close {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: max-content;
  min-height: 42px;
  border: 1px solid rgba(245, 244, 239, 0.44);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: var(--ivory);
  cursor: pointer;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-lightbox-close:hover,
.product-lightbox-close:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .product-lightbox-hint.is-visible {
    animation-duration: 6s;
  }
}

.drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100svh;
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer[data-drawer="search"] {
  background:
    linear-gradient(rgba(251, 250, 246, 0.84), rgba(251, 250, 246, 0.84)),
    url("/assets/merch/card-backgrounds/05.webp") center / cover no-repeat;
}

.drawer[data-drawer="account"] {
  background:
    linear-gradient(rgba(251, 250, 246, 0.84), rgba(251, 250, 246, 0.84)),
    url("/assets/merch/card-backgrounds/12.webp") center / cover no-repeat;
}

.drawer-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: var(--onyx);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer img {
  width: 180px;
  margin-bottom: 22px;
  mix-blend-mode: multiply;
}

.drawer a {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 38px;
}

.drawer h2 {
  margin: 42px 0 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: var(--headline-line-height);
}

.drawer-cta {
  width: 100%;
  margin-top: auto;
}

.drawer[data-drawer="cart"] {
  overflow: hidden;
}

.drawer[data-drawer="cart"] .cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  margin-right: -8px;
}

.drawer[data-drawer="cart"] .cart-summary,
.drawer[data-drawer="cart"] .drawer-cta {
  flex: 0 0 auto;
}

.drawer[data-drawer="cart"] .drawer-cta {
  margin-top: 0;
}

.cart-empty p {
  margin: 0;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 5px;
  object-fit: cover;
  background: var(--stone);
}

.cart-item-copy {
  display: grid;
  gap: 7px;
}

.cart-item strong,
.cart-summary strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.cart-item span,
.cart-summary span {
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--onyx);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-controls button:last-child {
  padding: 0 12px;
}

.cart-controls button:hover,
.cart-controls button:focus-visible {
  border-color: var(--sage);
  color: var(--sage);
  outline: none;
}

.cart-controls span {
  min-width: 18px;
  text-align: center;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0 16px;
}

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 36px));
  padding: 16px 20px;
  border-radius: 5px;
  background: var(--onyx);
  color: var(--ivory);
  text-align: center;
  box-shadow: var(--shadow);
}

.site-utilities {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: none;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.site-utilities > * {
  pointer-events: auto;
}

body.is-drawer-open .site-utilities {
  opacity: 0;
  visibility: hidden;
}

body.is-drawer-open .site-utilities > * {
  pointer-events: none;
}

.back-to-top,
.contact-toggle,
.contact-panel button {
  border: 1px solid var(--onyx);
  background: var(--onyx);
  color: var(--ivory);
  cursor: pointer;
}

.back-to-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
  font-size: 22px;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-widget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.article-drawer {
  width: min(680px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.article-drawer .drawer-close {
  position: sticky;
  z-index: 2;
  top: 0;
  display: block;
  margin-left: auto;
  padding: 8px 0;
}

.article-kicker {
  margin: 28px 0 14px;
  color: var(--terra);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-drawer h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 66px);
}

.article-drawer .article-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 4px 0 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  mix-blend-mode: normal;
}

.article-body {
  display: grid;
  gap: 20px;
  padding-bottom: 36px;
}

.article-body p {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.contact-toggle {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.contact-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(360px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-panel-header p,
.contact-panel label span {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-panel-header button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.contact-panel-header button::before {
  content: "\00d7";
  display: block;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.contact-panel label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fffefa;
  color: var(--onyx);
  padding: 12px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.back-to-top:hover,
.back-to-top:focus-visible,
.contact-toggle:hover,
.contact-toggle:focus-visible,
.contact-panel button:hover,
.contact-panel button:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
  outline: none;
}

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

  .site-header.is-scrolled {
    padding: 6px 18px;
  }

  .site-header.is-scrolled .brand img {
    width: 112px;
  }

  .site-header.is-scrolled .menu-button {
    width: 34px;
    height: 34px;
    padding: 8px 6px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .primary-nav,
  .text-action,
  .bag-button {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
    margin-left: auto;
  }

  .intro-band,
  .section-heading,
  .brand-system,
  .about-story,
  .faq,
  .journal,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-story,
  .faq {
    gap: 34px;
  }

  .about-story-copy {
    padding-top: 0;
  }

  .ads-heading,
  .ads-gallery {
    grid-template-columns: 1fr;
  }

  .ad-piece-feature {
    grid-row: auto;
  }

  .collection-grid,
  .merch-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .merch-feature,
  .merch-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-grid article {
    min-height: 230px;
  }

  .intro-grid h3 {
    margin-top: 52px;
  }
}

@media (max-width: 720px) {
  .merch-card::before {
    opacity: 0.12;
  }

  .image-reel-heading {
    align-items: start;
    flex-direction: column;
  }

  .image-reel figure {
    width: min(82vw, 390px);
  }

  .site-header {
    padding: 18px 18px;
  }

  .site-header.is-scrolled {
    padding: 5px 14px;
  }

  .site-header.is-scrolled .brand img {
    width: 104px;
  }

  .intro-loader-art {
    width: 100vw;
    height: 100svh;
    max-width: none;
    object-fit: cover;
  }

  .intro-loader::before {
    opacity: 0.24;
    filter: blur(14px) saturate(0.9);
  }

  .intro-loader-enter {
    top: 14px;
    right: 14px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .intro-countdown {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .brand img {
    width: 176px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(245, 244, 239, 0.98) 0%, rgba(245, 244, 239, 0.82) 43%, rgba(245, 244, 239, 0.16) 100%),
      linear-gradient(90deg, rgba(245, 244, 239, 0.78), rgba(245, 244, 239, 0.1));
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-copy {
    width: calc(100% - 36px);
    padding: 130px 0 40px 18px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .hero-text {
    font-size: 18px;
  }

  .button-primary {
    min-width: 0;
    width: 100%;
    min-height: 60px;
  }

  .intro-band,
  .collections,
  .brand-system,
  .ads-showcase,
  .about-story,
  .faq,
  .journal {
    padding: 64px 18px;
  }

  .about-story,
  .faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story-copy {
    padding-top: 0;
  }

  .ads-heading {
    gap: 22px;
  }

  .ads-heading .section-kicker {
    grid-column: auto;
  }

  .ad-piece,
  .ad-piece-feature {
    grid-template-columns: 1fr;
  }

  .ad-piece img,
  .ad-piece-feature img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .footer-inner {
    padding: 64px 18px;
  }

  .site-footer::before {
    background-size: 760px auto;
    background-position: 72% bottom;
    opacity: 0.5;
  }

  .site-footer::after {
    background:
      radial-gradient(circle at 76% 88%, rgba(251, 250, 246, 0) 0 18%, rgba(251, 250, 246, 0.14) 34%, rgba(251, 250, 246, 0.82) 64%),
      linear-gradient(180deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.86) 45%, rgba(251, 250, 246, 0.28) 100%);
  }

  .footer-bottom {
    flex-direction: column;
    padding: 22px 18px;
  }

  .palette {
    grid-template-columns: 1fr 1fr;
  }

  .journal-form div {
    grid-template-columns: 1fr;
  }

  .site-utilities {
    right: 16px;
    bottom: 16px;
  }

  .contact-toggle {
    min-height: 42px;
    padding: 0 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader,
  .intro-loader-art {
    animation: none;
    transition: none;
  }

  .global-loading-ring {
    animation-duration: 1400ms;
  }
}
