:root {
  --ink: #10100f;
  --charcoal: #1c1d1d;
  --graphite: #2c3032;
  --ivory: #f4efe6;
  --porcelain: #f8f7f2;
  --denim: #17304a;
  --teal: #357f86;
  --oxide: #875b35;
  --metal: #bca16e;
  --muted: #8c887f;
  --line: rgba(28, 29, 29, 0.14);
  --line-light: rgba(244, 239, 230, 0.18);
  --shadow: 0 28px 80px rgba(16, 16, 15, 0.22);
  --serif: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(16, 16, 15, 0.42) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.cursor-light {
  position: fixed;
  width: 42vw;
  height: 42vw;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(188, 161, 110, 0.16), rgba(53, 127, 134, 0.08) 34%, transparent 62%);
  filter: blur(8px);
}

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

.section-pad {
  padding: clamp(84px, 10vw, 150px) clamp(20px, 5vw, 72px);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 58px);
  color: var(--ivory);
  transition: background 350ms ease, color 350ms ease, padding 350ms ease, border-color 350ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--ink);
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(6px 10px 18px rgba(0, 0, 0, 0.28));
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  transform-style: preserve-3d;
  perspective: 500px;
  box-shadow: inset 5px 5px 0 rgba(188, 161, 110, 0.18), 9px 9px 0 rgba(23, 48, 74, 0.3);
}

.brand-mark span {
  position: absolute;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  transform: translateZ(18px);
}

.brand-mark span:first-child {
  margin-left: -11px;
}

.brand-mark span:last-child {
  margin-left: 11px;
  color: var(--metal);
  transform: translateZ(28px) skewY(-8deg);
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto 6px;
  background: currentColor;
  transition: transform 280ms ease, opacity 280ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 85;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 90px 28px 36px;
  color: var(--ivory);
  background: rgba(16, 16, 15, 0.96);
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
}

.nav-open .mobile-nav {
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(36px, 11vw, 70px);
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) 48px;
  isolation: isolate;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.9), rgba(16, 16, 15, 0.45) 48%, rgba(16, 16, 15, 0.82)),
    linear-gradient(0deg, rgba(16, 16, 15, 0.78), transparent 58%);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 32%;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 66vw);
}

.hero-logo {
  display: block;
  width: clamp(56px, 6vw, 96px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.hero-portrait {
  position: absolute;
  top: clamp(106px, 15vh, 178px);
  right: clamp(20px, 5vw, 88px);
  z-index: 2;
  width: clamp(220px, 24vw, 382px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.35);
  border-radius: 6px;
  background: rgba(16, 16, 15, 0.42);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(188, 161, 110, 0.45);
  pointer-events: none;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  height: 4px;
  background: #b51f27;
  box-shadow: 0 0 30px rgba(181, 31, 39, 0.5);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 40%;
  filter: grayscale(0.18) contrast(1.08) saturate(0.92);
  transform: scale(1.02);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--metal);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(72px, 14vw, 190px);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(244, 239, 230, 0.82);
  font-size: clamp(18px, 2vw, 26px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
  transition: transform 260ms var(--ease), background 260ms ease, color 260ms ease, border-color 260ms ease;
}

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

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

.button-ghost {
  color: var(--ivory);
}

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

.hero-side {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 52px;
  display: grid;
  gap: 8px;
  color: rgba(244, 239, 230, 0.66);
  text-align: right;
  font-size: 12px;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 1px;
  height: 80px;
  background: rgba(244, 239, 230, 0.26);
  overflow: hidden;
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 36px;
  background: var(--ivory);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  from { transform: translateY(-44px); }
  to { transform: translateY(88px); }
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: var(--porcelain);
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 36s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 72px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 16, 15, 0.42);
  white-space: nowrap;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.about-copy h2,
.vision-copy h2,
.section-heading h2,
.contact-copy h2 {
  max-width: 980px;
  font-size: clamp(44px, 8vw, 112px);
}

.about-copy p,
.vision-copy p,
.section-heading p,
.contact-copy p {
  max-width: 740px;
  color: var(--graphite);
  font-size: clamp(17px, 1.5vw, 21px);
}

.portrait-stage {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  transform: rotate(1.2deg);
  background: rgba(248, 247, 242, 0.62);
  box-shadow: var(--shadow);
}

.portrait-stage img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.84);
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.portrait-caption strong {
  color: var(--ink);
  font-weight: 500;
}

.metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.metrics div {
  display: grid;
  gap: 4px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}

.vision {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
}

.vision::before {
  content: "";
  position: absolute;
}

.vision-image {
  border: 1px solid var(--line-light);
  padding: 14px;
}

.vision-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.85);
}

.vision-copy p:not(.eyebrow),
.section-dark .section-heading p {
  color: rgba(244, 239, 230, 0.74);
}

.section-heading {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

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

.feature-look {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--porcelain);
}

.feature-look img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.feature-look:hover img {
  transform: scale(1.04);
}

.feature-look div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(16, 16, 15, 0.9), transparent);
}

.feature-look span,
.feature-look p,
.timeline-item time,
.press-card span,
.service-card span {
  color: var(--metal);
  font-size: 12px;
  text-transform: uppercase;
}

.feature-look h3,
.timeline-item h3,
.service-card h3 {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.feature-look p,
.timeline-item p,
.service-card p {
  margin: 0;
}

.runway-strip {
  position: relative;
  min-height: 100vh;
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
}

.sticky-title {
  position: sticky;
  top: 110px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: max-content;
  margin-left: clamp(20px, 5vw, 72px);
  padding: 14px 18px;
  border: 1px solid var(--line-light);
  background: rgba(16, 16, 15, 0.62);
  backdrop-filter: blur(18px);
  text-transform: uppercase;
}

.sticky-title span {
  color: var(--metal);
  font-size: 12px;
}

.sticky-title strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.strip-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 26px clamp(20px, 5vw, 72px) 0;
  transform: translateX(calc(var(--scroll-progress, 0) * -28vw));
  transition: transform 120ms linear;
}

.strip-track img {
  width: min(68vw, 440px);
  height: min(82vh, 680px);
  object-fit: cover;
  border: 1px solid var(--line-light);
  filter: saturate(0.9);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--graphite);
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 654px;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 650ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(0.78) brightness(0.78);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 280ms ease, transform 280ms var(--ease);
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.timeline-item {
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item p,
.service-card p {
  color: rgba(244, 239, 230, 0.68);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.press-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(23, 48, 74, 0.08), transparent 48%),
    var(--porcelain);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}

.press-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 16, 15, 0.35);
  box-shadow: var(--shadow);
}

.press-card strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(244, 239, 230, 0.045);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(36px, 8vw, 120px);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: clamp(20px, 2.4vw, 34px);
  font-family: var(--serif);
}

.contact-links a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 16, 15, 0.18);
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line-light);
}

.footer-links {
  display: flex;
  gap: 18px;
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer p {
  justify-self: end;
  max-width: 300px;
  margin: 0;
  color: rgba(244, 239, 230, 0.62);
  text-align: right;
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 34px;
  color: var(--ivory);
  background: rgba(16, 16, 15, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(94vw, 1180px);
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid var(--line-light);
}

.lightbox p {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 28px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  right: 13px;
  height: 1px;
  background: var(--ivory);
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

@media (max-width: 1100px) {
  .collection-layout,
  .press-grid,
  .services-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item:nth-child(2n) {
    border-right: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-side {
    display: none;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 94svh;
    padding-top: 104px;
  }

  .hero-content {
    width: min(100%, 680px);
    padding-top: 230px;
  }

  .hero-portrait {
    top: 94px;
    right: 18px;
    width: min(42vw, 210px);
  }

  .hero-backdrop img {
    object-position: 61% 28%;
  }

  .about-grid,
  .vision,
  .contact {
    grid-template-columns: 1fr;
  }

  .metrics,
  .collection-layout,
  .press-grid,
  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .timeline-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-dark .timeline-item {
    border-bottom-color: var(--line-light);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item.tall {
    min-height: 360px;
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 38px;
    height: 44px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-content {
    padding-top: 214px;
  }

  .hero-logo {
    width: 54px;
  }

  .hero-portrait {
    top: 88px;
    width: min(46vw, 178px);
  }

  .hero-title {
    font-size: clamp(64px, 22vw, 118px);
  }

  .hero-actions,
  .filter-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .filter-bar button {
    width: 100%;
  }

  .section-pad {
    padding-inline: 16px;
  }

  .portrait-caption {
    display: grid;
  }

  .feature-look,
  .feature-look img {
    min-height: 540px;
  }

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

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .strip-track img {
    width: 78vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .strip-track {
    transform: none !important;
  }
}
