:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --paper: #f6f4ef;
  --paper-muted: rgba(246, 244, 239, 0.72);
  --paper-faint: rgba(246, 244, 239, 0.14);
  --ink: #050505;
  --accent-blue: #4b959e;
  --accent-red: #86201e;
  --gray: #8f8a83;
  --gunmetal: #1c1f22;
  --silver: #c1c0bd;
  --border: rgba(246, 244, 239, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --content-max: 1460px;
  --section-gap: clamp(5rem, 9vw, 9rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 4.2rem;
  --radius: 1.5rem;
  --cursor-size: 1.9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(75, 149, 158, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(134, 32, 30, 0.08), transparent 24%),
    linear-gradient(180deg, #070707 0%, #050505 24%, #050505 100%);
  color: var(--paper);
  font-family: "Inter", "Neue Haas Grotesk", "Suisse International", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  opacity: 0;
  transform: scale(0.993);
  transition:
    opacity 700ms var(--ease),
    transform 900ms var(--ease),
    filter 700ms var(--ease);
}

body.is-ready {
  opacity: 1;
  transform: scale(1);
}

body.is-leaving {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(14px);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--content-max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

.eyebrow--light {
  color: rgba(246, 244, 239, 0.8);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: clamp(1.8rem, 4vw, 4rem);
}

.section-title,
.hero-section__title,
.journal-hero__title,
.about-hero__title,
.product-page__title,
.philosophy-section__copy,
.about-feature__quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(3rem, 6vw, 6.8rem);
}

.reveal,
.split-text,
.campaign-card,
.journal-card,
.image-block,
.about-quote,
.product-page__panel,
.featured-section__media,
.featured-section__details,
.journal-preview__card {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
}

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

.split-line {
  display: block;
  overflow: hidden;
}

.split-char,
.split-word {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 900ms var(--ease);
}

.is-visible .split-char,
.is-visible .split-word {
  transform: translateY(0);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #040404;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 420ms var(--ease),
    transform 420ms var(--ease),
    filter 420ms var(--ease);
}

body.is-leaving .page-transition {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 0.85rem;
  background: #040404;
  transition: opacity 900ms var(--ease), visibility 900ms var(--ease);
}

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

.loader__word {
  display: flex;
  justify-content: center;
  gap: 0.08em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.loader__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
}

.loader__subline {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: var(--header-height);
  padding: 0 1rem;
  color: var(--paper);
  mix-blend-mode: difference;
  transition:
    transform 500ms var(--ease),
    background-color 500ms var(--ease),
    backdrop-filter 500ms var(--ease),
    opacity 500ms var(--ease);
}

.site-header.is-solid {
  background: rgba(4, 4, 4, 0.92);
  backdrop-filter: blur(18px);
  mix-blend-mode: normal;
  border-bottom: 1px solid rgba(246, 244, 239, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.site-logo {
  justify-self: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.header__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: 0;
  color: inherit;
}

.header__menu-button {
  justify-self: start;
  width: 3rem;
  height: 3rem;
  padding: 0;
}

.header__menu-button span,
.header__menu-button span::before {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 420ms var(--ease), width 420ms var(--ease);
}

.header__menu-button span + span {
  margin-top: 0.36rem;
}

.header__menu-button:hover span,
.header__menu-button:hover span + span {
  width: 1.45rem;
}

.header__cart {
  justify-self: end;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header__cart-count {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-content: space-between;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(4, 4, 4, 0.98);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 500ms var(--ease),
    transform 700ms var(--ease),
    visibility 500ms var(--ease);
}

.fullscreen-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.fullscreen-menu__inner {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.fullscreen-menu__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.54);
}

.fullscreen-menu__nav {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.2rem);
}

.fullscreen-menu__nav a {
  width: fit-content;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  transition:
    letter-spacing 350ms var(--ease),
    opacity 350ms var(--ease),
    transform 350ms var(--ease);
}

.fullscreen-menu__nav a:hover {
  letter-spacing: 0.08em;
  transform: translateX(0.4rem);
  opacity: 0.88;
}

.fullscreen-menu__nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.35rem;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--ease);
}

.fullscreen-menu__nav a:hover::after {
  transform: scaleX(1);
}

.fullscreen-menu__close {
  justify-self: end;
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 244, 239, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: var(--header-height);
  overflow: clip;
}

.hero-section__video,
.video-section__video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.92) brightness(0.8);
  transform: scale(1.06);
}

.hero-section__veil,
.video-section__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.48) 42%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(circle at center, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.55));
}

.hero-section__content {
  position: relative;
  z-index: 1;
  width: min(90vw, 56rem);
  text-align: center;
}

.hero-section__title {
  font-size: clamp(4.8rem, 15vw, 12rem);
}

.hero-section__tagline {
  margin: 0.6rem 0 2rem;
  font-size: clamp(0.82rem, 2vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.82);
}

.hero-section .eyebrow {
  color: rgba(246, 244, 239, 0.76);
}

.animated-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(246, 244, 239, 0.34);
  border-radius: 999px;
  background: rgba(246, 244, 239, 0.02);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition:
    transform 300ms var(--ease),
    background-color 300ms var(--ease),
    box-shadow 300ms var(--ease),
    border-color 300ms var(--ease);
}

.animated-button:hover {
  transform: translateY(-2px) scale(1.01);
  background: rgba(246, 244, 239, 0.06);
  box-shadow: 0 0 0 1px rgba(246, 244, 239, 0.08), 0 18px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(246, 244, 239, 0.55);
}

.animated-button--dark {
  color: var(--paper);
  background: #0b0b0b;
}

.collection-section,
.campaign-strip,
.journal-preview,
.philosophy-section,
.featured-section,
.video-section,
.journal-hero,
.journal-rail-section,
.journal-grid-section,
.about-hero,
.about-feature,
.about-quotes,
.about-gallery,
.product-page {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.campaign-card {
  position: relative;
  grid-column: span 4;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 239, 0.1);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.campaign-card:nth-child(2n) {
  margin-top: 3rem;
}

.campaign-card__media {
  position: absolute;
  inset: 0;
}

.campaign-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1200ms var(--ease), filter 1200ms var(--ease);
  filter: grayscale(0.15) contrast(0.95) brightness(0.76);
}

.campaign-card:hover .campaign-card__media img {
  transform: scale(1.14);
}

.campaign-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.86) 62%, rgba(5, 5, 5, 0.96) 100%);
}

.campaign-card__content h3 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.95;
}

.campaign-card__content p {
  margin: 0;
  color: rgba(246, 244, 239, 0.72);
}

.philosophy-section {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: end;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-section__copy {
  max-width: 18ch;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.philosophy-section__notes {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
  font-size: 0.86rem;
  color: rgba(246, 244, 239, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.featured-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
}

.featured-section__media {
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid rgba(246, 244, 239, 0.1);
  min-height: 42rem;
  box-shadow: var(--shadow);
}

.featured-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.featured-section__details {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.featured-section__price,
.product-page__price {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.84);
}

.featured-section__description,
.video-section__text,
.journal-hero__lede,
.about-feature p,
.product-page__description,
.product-page__meta p,
.product-page__section p,
.journal-card__excerpt,
.journal-rail__excerpt,
.about-quote__text,
.site-footer__links a,
.journal-preview__card p,
.product-page__status {
  color: rgba(246, 244, 239, 0.74);
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.size-selector__chip {
  min-width: 3.1rem;
  min-height: 2.7rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(246, 244, 239, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  transition:
    transform 260ms var(--ease),
    background-color 260ms var(--ease),
    border-color 260ms var(--ease);
}

.size-selector__chip:hover,
.size-selector__chip.is-active {
  transform: translateY(-2px);
  background: rgba(246, 244, 239, 0.08);
  border-color: rgba(246, 244, 239, 0.5);
}

.video-section {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: clip;
  border-radius: calc(var(--radius) + 0.5rem);
}

.video-section__copy {
  position: relative;
  z-index: 1;
  width: min(90vw, 36rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.journal-preview__rail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.journal-preview__card {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
}

.journal-preview__card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(246, 244, 239, 0.1);
  box-shadow: var(--shadow);
  transition: transform 1.2s var(--ease);
}

.journal-preview__card:hover img {
  transform: scale(1.03);
}

.journal-preview__card h3,
.journal-card h3,
.about-quote h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(246, 244, 239, 0.1);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 250ms var(--ease), opacity 250ms var(--ease);
}

.site-footer__links a:hover {
  color: var(--paper);
}

.instagram-icon {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid currentColor;
  border-radius: 0.34rem;
}

.instagram-icon::before,
.instagram-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::before {
  width: 0.5rem;
  height: 0.5rem;
}

.instagram-icon::after {
  width: 0.14rem;
  height: 0.14rem;
  background: currentColor;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.product-page__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-page__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(246, 244, 239, 0.1);
  min-height: 26rem;
  background: #0a0a0a;
  box-shadow: var(--shadow);
}

.product-page__figure--large {
  min-height: 44rem;
  grid-column: span 2;
}

.product-page__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.product-page__figure:hover img {
  transform: scale(1.05);
}

.product-page__panel {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid rgba(246, 244, 239, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.98));
  box-shadow: var(--shadow);
}

.product-page__title {
  font-size: clamp(3rem, 5vw, 5rem);
}

.product-page__meta,
.product-page__section {
  display: grid;
  gap: 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(246, 244, 239, 0.1);
}

.product-page__label {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: rgba(246, 244, 239, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
}

.product-page__bag-button {
  width: 100%;
}

.product-page__status {
  margin: 0;
  font-size: 0.9rem;
}

.journal-hero {
  padding-top: calc(var(--header-height) + 3rem);
  max-width: 66rem;
}

.journal-hero__title,
.about-hero__title {
  font-size: clamp(4rem, 10vw, 9rem);
}

.journal-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(28rem, 80vw), 32rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
}

.journal-rail::-webkit-scrollbar {
  height: 0.5rem;
}

.journal-rail::-webkit-scrollbar-thumb {
  background: rgba(246, 244, 239, 0.18);
  border-radius: 999px;
}

.journal-rail__card {
  scroll-snap-align: start;
  display: grid;
  gap: 1rem;
  min-height: 100%;
}

.journal-rail__card img,
.journal-card img,
.about-gallery img,
.about-feature img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(246, 244, 239, 0.1);
  box-shadow: var(--shadow);
}

.journal-rail__card img {
  aspect-ratio: 4 / 5;
}

.journal-grid-section {
  display: grid;
  gap: 1rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.journal-card {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
}

.journal-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.journal-card:hover img {
  transform: scale(1.04);
}

.journal-card__meta,
.journal-rail__meta {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(246, 244, 239, 0.52);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.about-hero {
  padding-top: calc(var(--header-height) + 3rem);
  max-width: 70rem;
}

.about-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.about-feature__image {
  overflow: hidden;
}

.about-feature__image img {
  aspect-ratio: 4 / 5;
}

.about-feature__copy {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin-left: auto;
}

.about-feature__quote {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.about-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-quote {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem;
  border: 1px solid rgba(246, 244, 239, 0.1);
  border-radius: var(--radius);
  background: rgba(246, 244, 239, 0.02);
}

.about-quote__text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.98;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.about-gallery__block {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
}

.about-gallery__block:nth-child(2) {
  margin-top: 3rem;
}

.about-gallery__block img {
  aspect-ratio: 3 / 4;
}

.custom-cursor {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: var(--cursor-size);
  height: var(--cursor-size);
  margin: calc(var(--cursor-size) / -2) 0 0 calc(var(--cursor-size) / -2);
  border: 1px solid rgba(246, 244, 239, 0.72);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0) scale(0.7);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    width 220ms var(--ease),
    height 220ms var(--ease);
  backdrop-filter: blur(2px);
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-hover {
  width: 3.6rem;
  height: 3.6rem;
  border-color: rgba(246, 244, 239, 0.95);
  mix-blend-mode: difference;
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

@media (max-width: 1180px) {
  .campaign-card,
  .journal-preview__card,
  .journal-card,
  .about-quote {
    grid-column: span 6;
  }

  .philosophy-section,
  .featured-section,
  .product-page,
  .about-feature {
    grid-template-columns: 1fr;
  }

  .product-page__panel {
    position: relative;
    top: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 4rem;
    --section-gap: 4.5rem;
  }

  .site-header {
    padding-inline: 0.85rem;
  }

  .site-logo {
    font-size: 1.35rem;
  }

  .section-shell {
    width: min(calc(100% - 1.25rem), var(--content-max));
  }

  .campaign-grid,
  .journal-preview__rail,
  .journal-grid,
  .about-quotes,
  .about-gallery,
  .product-page__gallery {
    grid-template-columns: 1fr;
  }

  .campaign-card,
  .journal-preview__card,
  .journal-card,
  .about-gallery__block,
  .about-quote {
    grid-column: 1 / -1;
  }

  .campaign-card {
    min-height: 24rem;
  }

  .campaign-card:nth-child(2n) {
    margin-top: 0;
  }

  .philosophy-section__notes {
    justify-items: start;
  }

  .featured-section__media {
    min-height: 28rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .fullscreen-menu__nav a {
    font-size: clamp(2.75rem, 12vw, 4.5rem);
  }

  .product-page__figure--large,
  .product-page__figure {
    min-height: 20rem;
  }
}

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

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

  .custom-cursor,
  .page-transition,
  .loader {
    display: none !important;
  }
}