:root {
  --paper: #f7f3ed;
  --sand: #e7d9ca;
  --sand-soft: #efe6db;
  --clay: #a76954;
  --cocoa: #6b4c40;
  --ink: #25221f;
  --muted: #706a64;
  --line: rgba(37, 34, 31, 0.2);
  --white: #fffdf9;
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page: min(91vw, 1320px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  padding: 0 4.5vw;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(247, 243, 237, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.02em;
}

.wordmark small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
}

.site-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  min-height: 100svh;
  padding: 130px 8vw 70px;
  background:
    radial-gradient(circle at 11% 88%, rgba(167, 105, 84, 0.14), transparent 28%),
    var(--paper);
}

.hero-copy {
  z-index: 1;
  align-self: center;
  max-width: 790px;
  padding-right: 3vw;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 13px 3px 0;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 34px;
  font-size: clamp(64px, 7.7vw, 130px);
  line-height: 0.87;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 34px;
  color: #5d5650;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 16px 20px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(38vw, 520px);
}

.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5.4;
  overflow: hidden;
  background: var(--sand);
}

.hero-frame::after,
.reel-image::after,
.mosaic-photo::after,
.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(50, 32, 24, 0), rgba(50, 32, 24, 0.16));
  content: "";
  pointer-events: none;
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.82) contrast(0.95) sepia(0.07);
}

.vertical-note {
  position: absolute;
  top: 0;
  right: -42px;
  margin: 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-stamp {
  position: absolute;
  bottom: -35px;
  left: -65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 134px;
  height: 134px;
  padding: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  text-align: center;
  transform: rotate(-8deg);
}

.hero-stamp span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-stamp strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-index {
  position: absolute;
  right: 4.5vw;
  bottom: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.ticker {
  overflow: hidden;
  padding: 17px 0;
  color: var(--white);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  padding: 0 30px;
  font-family: var(--serif);
  font-size: 23px;
}

.ticker i {
  color: var(--clay);
  font-size: 9px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 120px max(4.5vw, calc((100vw - 1320px) / 2));
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 78px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--clay);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.65fr 0.55fr;
  grid-template-areas:
    "heading copy copy"
    "photo photo quote";
  gap: 70px 7vw;
  align-items: start;
}

.about-heading { grid-area: heading; }
.about-copy { grid-area: copy; max-width: 610px; justify-self: end; }
.about-photo { grid-area: photo; }
.editorial-quote { grid-area: quote; }

.about-heading h2,
.universe-intro h2,
.featured-header h2,
.partnerships-heading h2,
.visual-title h2,
.brands-heading h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 37px);
  line-height: 1.38;
}

.about-copy > p:not(.lead):not(.signature) {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

.signature {
  margin: 30px 0 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
}

.about-photo {
  position: relative;
  width: min(100%, 820px);
  margin: 10px 0 0;
}

.about-photo img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.75) sepia(0.07);
}

.about-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.editorial-quote {
  align-self: center;
  margin: 0;
  padding: 45px 0 45px 35px;
  border-left: 1px solid var(--clay);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.32;
}

.section-sand {
  background: var(--sand-soft);
}

.universe-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.7fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: 70px;
}

.universe-intro .eyebrow {
  align-self: start;
}

.universe-intro > p:last-child {
  margin-bottom: 5px;
  color: var(--muted);
  font-weight: 300;
}

.universe-list {
  border-top: 1px solid var(--line);
}

.universe-item {
  position: relative;
  display: grid;
  grid-template-columns: 0.15fr 0.72fr 1fr 36px;
  gap: 3vw;
  align-items: center;
  min-height: 127px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.universe-item:hover {
  padding: 0 22px;
  color: var(--white);
  background: var(--clay);
}

.universe-number {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.universe-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 47px);
  font-weight: 400;
}

.universe-item p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  transition: color 0.35s ease;
}

.universe-item:hover p { color: rgba(255, 255, 255, 0.78); }

.universe-mark {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
}

.content-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr 1.12fr;
  gap: 12px;
  margin-top: 88px;
}

.content-tile {
  position: relative;
  height: 450px;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.content-tile-low {
  margin-top: 58px;
}

.content-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 20, 17, 0.74));
  content: "";
  pointer-events: none;
}

.content-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-tile:first-child img { object-position: center 52%; }
.content-tile:nth-child(2) img { object-position: center 46%; }
.content-tile:nth-child(4) img { object-position: center 42%; }
.content-tile:hover img { transform: scale(1.035); }

.content-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.content-tile figcaption span {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.content-tile figcaption small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-header {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 76px;
}

.featured-header > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-weight: 300;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 3.8vw, 64px);
  align-items: start;
}

.reel-card-low {
  margin-top: 72px;
}

.reel-card {
  min-width: 0;
}

.reel-player {
  position: relative;
  height: 730px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.reel-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.reel-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
}

.reel-meta > div {
  min-width: 0;
}

.reel-tag-inline {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reel-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.2;
}

.reel-meta > a {
  flex: none;
  padding-top: 5px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reel-meta > a:hover,
.reel-meta > a:focus-visible {
  color: var(--clay);
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.section-ink .section-kicker { border-color: rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.55); }
.section-ink .section-kicker span,
.section-ink .eyebrow { color: #d5a793; }

.partnerships-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.25fr;
  gap: 5vw;
  margin-bottom: 70px;
}

.partnerships-heading h2 {
  max-width: 850px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.partnership-card {
  min-height: 270px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  transition: color 0.4s ease, background 0.4s ease;
}

.partnership-card:hover {
  color: var(--ink);
  background: #d7b4a3;
}

.partnership-card > span {
  display: block;
  margin-bottom: 47px;
  color: #d5a793;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.partnership-card:hover > span { color: var(--cocoa); }

.partnership-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
}

.partnership-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  transition: color 0.4s ease;
}

.partnership-card:hover p { color: rgba(37, 34, 31, 0.72); }

.partnership-note {
  max-width: 570px;
  margin: 36px 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.visual-title {
  display: grid;
  grid-template-columns: 0.5fr 1.25fr;
  gap: 5vw;
  align-items: start;
  margin-bottom: 70px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.8fr;
  grid-template-rows: 340px 210px 360px;
  gap: 14px;
}

.mosaic > * { margin: 0; }
.mosaic-a { grid-row: 1 / span 2; }
.mosaic-b { grid-column: 2 / span 2; }
.mosaic-c { grid-column: 2; grid-row: 2 / span 2; }
.mosaic-d { grid-column: 3; grid-row: 2; }
.mosaic-e { grid-column: 1; grid-row: 3; }
.mosaic-f { grid-column: 3; grid-row: 3; }

.mosaic-photo {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.mosaic-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.08);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mosaic-photo:hover img { transform: scale(1.035); }
.mosaic-c img { object-position: center 72%; }
.mosaic-d img { object-position: center 20%; }
.mosaic-f img { object-position: center 74%; }

.mosaic-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px;
  color: var(--white);
  background: var(--clay);
}

.mosaic-text span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mosaic-text p {
  max-width: 660px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3.3vw, 50px);
  line-height: 1.12;
}

.mosaic-quote {
  display: flex;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 37px);
  line-height: 1.3;
}

.brands {
  padding-top: 40px;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 70px;
}

.brands-copy {
  color: var(--muted);
  font-weight: 300;
}

.brand-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-slots > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.brand-slots span {
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 34px);
}

.brand-slots small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 140px 5vw;
  color: var(--white);
  background: var(--clay);
  text-align: center;
}

.contact::before,
.contact::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.contact::before { width: 680px; height: 680px; top: -330px; left: -180px; }
.contact::after { width: 520px; height: 520px; right: -170px; bottom: -310px; }

.contact .eyebrow::before { display: none; }

.contact h2 {
  margin-bottom: 30px;
  font-size: clamp(57px, 7.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact h2 em { color: var(--white); }

.contact-copy {
  max-width: 670px;
  margin: 0 auto 37px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: transparent;
}

.contact-channel {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 30px;
  align-items: end;
  padding: 42px 4.5vw;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-name {
  color: var(--white);
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--white); }

.back-top {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.72fr;
    padding-left: 5vw;
    padding-right: 7vw;
  }

  .hero-stamp { left: -30px; }
  .about-grid { gap: 60px 5vw; }
  .universe-intro { grid-template-columns: 0.65fr 1.25fr 0.65fr; }
  .mosaic { grid-template-rows: 280px 180px 300px; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }

  .menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 34px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 8vw;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: var(--serif); font-size: 37px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .site-nav .nav-cta { margin-top: 18px; padding: 14px 18px; border: 1px solid rgba(255, 255, 255, 0.5); font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
  body.menu-open .wordmark { position: relative; z-index: 102; color: var(--white); }
  body.menu-open .menu-button { color: var(--white); }

  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: auto;
    padding: 125px 6vw 100px;
  }

  .hero-copy { padding-right: 0; }
  .hero h1 { font-size: clamp(66px, 16vw, 105px); }
  .hero-visual { justify-self: end; width: min(76vw, 510px); margin-right: 5vw; }
  .hero-index { display: none; }

  .section { padding: 90px 6vw; }
  .section-kicker { margin-bottom: 58px; }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "heading heading" "copy copy" "photo photo" "quote quote";
    gap: 48px;
  }

  .about-copy { justify-self: start; }
  .about-photo img { aspect-ratio: 1.1 / 1; }
  .editorial-quote { max-width: 600px; margin-left: auto; }

  .universe-intro,
  .featured-header,
  .partnerships-heading,
  .visual-title,
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .universe-intro .eyebrow { margin-bottom: 0; }
  .universe-item { grid-template-columns: 45px 0.7fr 1fr 25px; }

  .content-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .content-tile { height: 470px; }
  .content-tile-low { margin-top: 42px; }

  .reels-grid { gap: 22px; }
  .reel-card-low { margin-top: 40px; }
  .reel-player { height: 650px; }
  .reel-meta { flex-direction: column; gap: 6px; }

  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 230px 310px 300px; }
  .mosaic-a { grid-column: 1; grid-row: 1 / span 2; }
  .mosaic-b { grid-column: 2; grid-row: 1; }
  .mosaic-c { grid-column: 2; grid-row: 2 / span 2; }
  .mosaic-d { grid-column: 1; grid-row: 3; }
  .mosaic-e { grid-column: 1; grid-row: 4; }
  .mosaic-f { grid-column: 2; grid-row: 4; }

  .site-footer { grid-template-columns: 1fr 1fr; align-items: center; }
  .site-footer a, .back-top { justify-self: end; }
}

@media (max-width: 620px) {
  .wordmark span { font-size: 22px; }
  .hero { padding-left: 5vw; padding-right: 5vw; }
  .hero h1 { font-size: clamp(58px, 18.3vw, 86px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { width: 86vw; margin-right: 1vw; }
  .hero-stamp { bottom: -45px; left: -10px; width: 118px; height: 118px; }
  .vertical-note { right: -22px; }
  .ticker span { font-size: 20px; }

  .section { padding-top: 78px; padding-bottom: 78px; }
  .section-kicker { margin-bottom: 45px; }

  .about-heading h2,
  .universe-intro h2,
  .featured-header h2,
  .partnerships-heading h2,
  .visual-title h2,
  .brands-heading h2 { font-size: clamp(42px, 12.7vw, 62px); }

  .about-copy .lead { font-size: 26px; }
  .about-photo img { aspect-ratio: 0.9 / 1; }
  .editorial-quote { padding-left: 24px; font-size: 28px; }

  .universe-item {
    grid-template-columns: 28px 1fr 24px;
    gap: 15px;
    min-height: 110px;
  }

  .universe-item h3 { font-size: 34px; }
  .universe-item p { grid-column: 2 / span 2; padding-bottom: 22px; }

  .content-gallery { margin-top: 60px; }
  .content-tile { height: 350px; }
  .content-tile-low { margin-top: 24px; }
  .content-tile figcaption { right: 15px; bottom: 15px; left: 15px; }

  .reels-grid { grid-template-columns: 1fr; gap: 48px; }
  .reel-card,
  .reel-card-low { width: 86%; margin-top: 0; }
  .reel-card:nth-child(even) { margin-left: auto; }
  .reel-player { height: 690px; }
  .reel-meta { flex-direction: row; }
  .reel-meta h3 { font-size: 25px; }

  .partnership-grid { grid-template-columns: 1fr; }
  .partnership-card { min-height: 230px; padding: 29px; }
  .partnership-card > span { margin-bottom: 30px; }

  .mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px 300px 290px; }
  .mosaic-a { grid-column: 1 / span 2; grid-row: 1; }
  .mosaic-b { grid-column: 1 / span 2; grid-row: 2; }
  .mosaic-c { grid-column: 1; grid-row: 3; }
  .mosaic-d { grid-column: 2; grid-row: 3; }
  .mosaic-e { grid-column: 1; grid-row: 4; padding: 25px; font-size: 25px; }
  .mosaic-f { grid-column: 2; grid-row: 4; }
  .mosaic-text { padding: 30px; }

  .brand-slots { grid-template-columns: 1fr; }
  .brand-slots > div { min-height: 130px; }
  .contact { padding: 100px 6vw; }
  .contact h2 { font-size: clamp(53px, 15vw, 80px); }

  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 17px; }
  .site-footer a, .back-top { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
