:root {
  --app-bg: #efefed;
  --surface: #f7f6f3;
  --surface-2: #f8f8f6;
  --card: #ffffff;
  --ink: #141c34;
  --muted: #677087;
  --line: #e8e7e3;
  --gold: #c8a162;
  --gold-soft: #efe4d2;
  --deep: #0f1b3a;
  --panel: #ede9e3;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--app-bg);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
}

h1 {
  font-size: 63px;
}

h2 {
  font-size: 42px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c8a162;
  outline-offset: 2px;
}

button,
input,
textarea {
  font-family: inherit;
}

.hidden {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
}

.page-frame {
  width: 100%;
  background: var(--surface);
}

.content-wrap {
  width: min(1120px, calc(100% - 200px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 22px rgba(20, 29, 48, 0.08);
  background: rgba(247, 246, 243, 0.98);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
}

.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 42px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5f687e;
  transition: color 0.24s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.24s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.collab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #1f2842;
  background: transparent;
  color: #1f2842;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 38px;
  padding: 10px 34px;
  cursor: pointer;
}

.collab-button span {
  position: relative;
  z-index: 2;
}

.collab-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1f2842;
  transform: translateY(102%);
  transition: transform 0.26s ease;
}

.collab-button:hover {
  color: #fff;
}

.collab-button:hover::before {
  transform: translateY(0);
}

main {
  position: relative;
}

#about,
#mission,
#collabs,
#brands,
#shop,
#contact {
  scroll-margin-top: 116px;
}

.section-block {
  padding-top: 84px;
  padding-bottom: 112px;
}

.hero-section {
  position: relative;
  padding: 20px 0 60px;
  overflow: hidden;
}

.hero-side-label {
  position: absolute;
  left: 16px;
  top: 320px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-size: 9px;
  letter-spacing: 0.39em;
  text-transform: uppercase;
  color: #bcc2ce;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: start;
  gap: 30px;
}

.hero-copy {
  position: relative;
  isolation: isolate;
}

.hero-copy::before,
.hero-copy::after {
  content: none;
  display: none;
}

.hero-kicker {
  margin: 8px 0 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin: 0;
  max-width: 620px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 63px;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.pill-row {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-chip {
  border: 1px solid #d9deea;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #667082;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pill-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-description {
  margin: 20px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

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

.primary-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--deep);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  min-height: 42px;
}

.primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #d0ab70, #ba8f4e);
  transform: translateY(102%);
  transition: transform 0.28s ease;
}

.primary-cta span {
  position: relative;
  z-index: 1;
}

.primary-cta:hover::before {
  transform: translateY(0);
}

.primary-cta:hover .cta-arrow {
  transform: translateX(2px);
}

.cta-arrow {
  transition: transform 0.22s ease;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #788092;
  transition: color 0.2s ease;
}

.social-list a:hover {
  color: var(--gold);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.phone-shell {
  width: min(332px, 100%);
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: visible;
  border: 2px solid #fff;
  box-shadow: 0 18px 30px rgba(21, 28, 47, 0.12);
  background: #ddd;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.phone-shell:hover {
  transform: translateY(-4px);
}

.phone-video-link {
  display: block;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.phone-video-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s ease;
}

.phone-shell:hover .phone-video {
  transform: scale(1.05);
}

.phone-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.06) 24%, rgba(10, 12, 18, 0.5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.play-chip {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.24s ease, background 0.24s ease;
}

.phone-shell:hover .play-chip {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.32);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #fff;
  margin-left: 2px;
}

.watch-label {
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.new-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.likes-chip {
  position: absolute;
  left: -18px;
  bottom: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f1f1ef;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 8px 16px rgba(19, 30, 50, 0.08), 0 1px 3px rgba(19, 30, 50, 0.06);
}

.likes-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f6efe3;
  color: #c39856;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.likes-chip strong {
  display: block;
  font-size: 10px;
  color: #1f2841;
}

.likes-chip small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9098a9;
}

.hero-tabs {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 8px;
}

.hero-tab {
  border: 1px solid var(--line);
  background: var(--card);
  color: #6a7284;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-tab.active,
.hero-tab:hover {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.96fr) 1.04fr;
  gap: 18px;
  align-items: stretch;
}

.about-section {
  padding-top: 84px;
  padding-bottom: 84px;
  background: #ffffff;
}

.about-photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 10px 24px rgba(20, 29, 49, 0.12);
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.about-grid:hover .about-photo img {
  filter: grayscale(0.18);
  transform: scale(1.03);
}

.about-copy {
  padding: 38px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.2;
  font-weight: 500;
}

.about-copy h2 span {
  color: var(--gold);
  font-style: italic;
}

.about-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.54;
  max-width: 540px;
}

.about-copy em {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: #2d3448;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

.mission-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.mission-photo-wrap {
  margin: 0;
  position: relative;
  padding: 30px 0 44px 30px;
}

.mission-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 48px);
  height: calc(100% - 80px);
  border: 1px solid var(--line);
  border-radius: 20px;
  pointer-events: none;
}

.mission-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(17, 25, 44, 0.14);
  transition: transform 0.8s ease;
}

.mission-photo-wrap:hover .mission-photo {
  transform: scale(1.03);
}

.mission-note {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: -28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 38px 24px;
  width: 220px;
  box-shadow: 0 18px 30px rgba(26, 33, 49, 0.12);
}

.mission-note small {
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.mission-note p {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.66;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mission-copy {
  padding-top: 4px;
}

.mission-kicker {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.46em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--gold);
}

.mission-copy h2 {
  margin: 0;
  max-width: 920px;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.014em;
}

.mission-copy h2 span {
  color: var(--gold);
  font-style: italic;
}

.mission-underlined {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  color: var(--ink);
  font-style: normal;
}

.mission-underlined::after {
  content: '';
  position: absolute;
  left: -2px;
  bottom: 4px;
  width: calc(100% + 4px);
  height: 4px;
  background: var(--ink);
  border-radius: 120px;
  transform: rotate(-1.7deg);
  transform-origin: left center;
}

.mission-details {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 64px;
}

.mission-details p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.54;
}

.mission-narrative {
  max-width: 540px;
}

.mission-details .quote {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee3eb;
  font-style: italic;
  color: #667188;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.mission-details ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
  align-content: start;
}

.mission-details li {
  font-size: 10px;
  letter-spacing: 0.24em;
  line-height: 1.02;
  font-weight: 600;
  text-transform: uppercase;
  color: #8c99b1;
}

.mission-signoff {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.26;
  font-style: italic;
  color: #0f172a;
}

.collabs-section {
  padding-top: 112px;
  border-top: 1px solid var(--line);
}

.values-section {
  border-top: 1px solid var(--line);
  padding-top: 112px;
}

.shop-section {
  padding-top: 38px;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 16px;
}

.section-kicker {
  margin: 0 0 24px;
  font-size: 12px;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.section-title {
  margin: 0 0 54px;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 0.92;
  font-weight: 300;
}

.section-title span {
  font-style: italic;
  color: #202842;
}

.filter-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-head > span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: #9ca2b0;
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  position: relative;
  border: 1px solid var(--line);
  background: var(--card);
  color: #6d7485;
  border-radius: 999px;
  padding: 8px 15px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.filter-pill:hover {
  transform: translateY(-1px);
  border-color: #cab08d;
  color: var(--gold);
}

.filter-pill.active {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 90px;
  gap: 18px;
}

.collab-card {
  position: relative;
  grid-column: span 5;
  grid-row: span 2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dbe3ee;
  background: #0f172a;
  transition: transform 0.36s ease, border-color 0.36s ease, box-shadow 0.36s ease;
}

.collab-card.is-featured {
  grid-column: span 7;
  grid-row: span 6;
}

.collab-grid.is-beauty-uniform .collab-card.is-featured {
  grid-column: span 5;
  grid-row: span 2;
}

.collab-card:hover {
  transform: translateY(-4px);
  border-color: #d0d9e6;
  box-shadow: 0 18px 34px rgba(17, 27, 46, 0.18);
}

.collab-card.is-hidden {
  display: none;
}

.collab-more-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.collab-more-wrap.is-hidden {
  display: none;
}

.collab-more-link {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #667082;
  border-bottom: 1px solid #cfd6e2;
  cursor: pointer;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.collab-more-link:hover,
.collab-more-link:focus-visible {
  color: var(--deep);
  border-color: var(--deep);
}

.reel-media {
  position: absolute;
  inset: 0;
}

.reel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.1) 20%, rgba(8, 13, 24, 0.68) 100%);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.collab-card:hover .reel-video {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.reel-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 16px 16px 14px;
  display: grid;
  gap: 6px;
  color: #fff;
}

.collab-card.is-featured .reel-overlay {
  padding: 24px 24px 20px;
  gap: 8px;
}

.collab-grid.is-beauty-uniform .collab-card.is-featured .reel-overlay {
  padding: 16px 16px 14px;
  gap: 6px;
}

.reel-overlay small {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6deed;
  font-weight: 600;
}

.reel-overlay h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}

.collab-card.is-featured .reel-overlay h3 {
  font-size: 42px;
  line-height: 1.04;
}

.collab-grid.is-beauty-uniform .collab-card.is-featured .reel-overlay h3 {
  font-size: 30px;
  line-height: 1.02;
}

.reel-overlay p {
  margin: 0;
  color: rgba(236, 242, 250, 0.92);
  font-size: 12px;
  line-height: 1.46;
  max-width: 35ch;
}

.collab-card.is-featured .reel-overlay p {
  font-size: 14px;
  line-height: 1.48;
}

.collab-grid.is-beauty-uniform .collab-card.is-featured .reel-overlay p {
  font-size: 12px;
  line-height: 1.46;
}

.case-link {
  margin-top: 4px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f4d8aa;
  border-bottom: 1px solid rgba(244, 216, 170, 0.8);
  transition: color 0.24s ease, border-color 0.24s ease;
}

.collab-card:hover .case-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.95);
}

.values-heading {
  text-align: center;
  margin-bottom: 54px;
}

.values-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.25;
  font-weight: 500;
}

.values-heading h2 span {
  font-style: italic;
}

.values-heading p {
  margin: 20px 0 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f96a8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.value-card {
  background: #fff;
  border: none;
  border-radius: 26px;
  padding: 36px 26px 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #d3dbe8;
  box-shadow: 0 22px 36px rgba(21, 33, 56, 0.09);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c19a56;
  background: #eeece8;
  transition: background 0.3s ease, color 0.3s ease;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card:hover .value-icon {
  background: #ece3d4;
  color: #b98f47;
}

.value-card h3 {
  margin: 38px 0 22px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.29;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #23304a;
}

.value-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 292px;
}

.shop-heading {
  display: block;
  margin-bottom: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-card {
  background: var(--card);
  border: 1px solid #eceae5;
  border-radius: 6px;
  padding-bottom: 8px;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px 8px 0 0;
  background: #f3f3f2;
}

.product-media > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease;
}

.product-card:hover .product-media > img {
  transform: scale(1.09);
}

.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 44, 0);
  transition: background 0.36s ease;
}

.product-card:hover .product-media::after {
  background: rgba(18, 26, 44, 0.12);
}

.product-chip {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #454d60;
}

.shop-now {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  z-index: 2;
  border-radius: 999px;
  background: #fff;
  color: #202942;
  padding: 8px 14px;
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-card:hover .shop-now {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.product-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a7b5;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 0 8px;
}

.product-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 0.92;
  font-weight: 500;
}

.product-meta span {
  margin-top: 8px;
  font-size: 10px;
  color: #7d8597;
}

.product-card > p {
  margin: 4px 0 0;
  padding: 0 8px;
  color: #95a0ae;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-ltk-link {
  margin-top: 16px;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #52607a;
  border-bottom: 1px solid #cfd6e2;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.shop-ltk-link:hover,
.shop-ltk-link:focus-visible {
  color: var(--deep);
  border-color: var(--deep);
}

.contact-section {
  margin-top: 34px;
  padding: 66px 0;
  background: var(--panel);
}

.contact-inner {
  max-width: 780px;
  text-align: center;
}

.contact-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 63px;
  line-height: 1.65;
  font-weight: 200;
}

.contact-inner h2 span {
  font-style: italic;
}

.contact-inner p {
  margin: 8px auto 0;
  max-width: 620px;
  color: #4c556b;
  font-size: 16px;
  line-height: 1.45;
}

.contact-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-actions button {
  border: none;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  padding: 12px 28px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-actions button:hover {
  background: #c19a5b;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(26, 34, 54, 0.18);
}

.contact-actions a {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6e7588;
}

.media-kit-link {
  display: inline-block;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid #dedad3;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7a8293;
  transition: color 0.2s ease;
}

.media-kit-link:hover {
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  padding: 14px 0 20px;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 30px;
  z-index: 65;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(18, 28, 52, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: #17203a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(18, 28, 52, 0.15);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, color 0.24s ease, background 0.24s ease;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #17203a;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand a {
  font-family: var(--serif);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 3px 0 0;
  color: #8d96a8;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d7dae2;
  color: #7d8598;
  font-size: 8px;
  letter-spacing: 0.07em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  color: var(--gold);
  border-color: #d6bc92;
}

.footer-socials a span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  padding: 4px 8px;
  border-radius: 6px;
  background: #1e273f;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer-note {
  display: grid;
  gap: 2px;
  text-align: right;
}

.footer-note span {
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9ca4b4;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 16, 29, 0.64);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  width: min(560px, calc(100% - 14px));
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ebe9e3;
  padding: 26px;
  box-shadow: 0 24px 34px rgba(14, 20, 38, 0.25);
  animation: modalIn 0.28s ease;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  background: transparent;
  color: #838b9e;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 0.86;
  font-weight: 500;
}

.modal-card h2 span {
  color: var(--gold);
  font-style: italic;
}

.modal-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.modal-card.is-status {
  text-align: center;
}

.modal-card.is-status h2 {
  margin-top: 6px;
}

.modal-card.is-status > p {
  margin: 16px auto 4px;
  max-width: 38ch;
  line-height: 1.58;
}

.modal-form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal-form label {
  display: grid;
  gap: 4px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #778095;
}

.modal-form label:nth-of-type(3),
.modal-form label:nth-of-type(4),
.modal-form button {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.modal-form input,
.modal-form textarea {
  border: 1px solid #dce0e8;
  border-radius: 8px;
  background: #fbfbfb;
  color: var(--ink);
  font-size: 13px;
  padding: 10px 12px;
}

.modal-form textarea {
  resize: vertical;
  min-height: 110px;
}

.modal-form button {
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-form button:hover {
  background: #c19a5b;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 13, 23, 0.78);
  backdrop-filter: blur(2px);
}

.video-lightbox-card {
  position: relative;
  width: min(920px, calc(100% - 28px));
  border-radius: 14px;
  border: 1px solid rgba(228, 232, 239, 0.4);
  background: #0f172a;
  box-shadow: 0 28px 40px rgba(0, 0, 0, 0.38);
  padding: 16px 16px 12px;
  z-index: 1;
  animation: modalIn 0.24s ease;
}

.video-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(14, 22, 39, 0.72);
  color: #fff;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.video-lightbox-title {
  margin: 0 0 10px;
  padding-right: 42px;
  color: #d4dced;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.video-lightbox-player {
  width: 100%;
  max-height: min(72vh, 760px);
  background: #000;
  border-radius: 10px;
  object-fit: contain;
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s ease forwards;
  animation-delay: var(--hero-delay, 0s);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.95s ease, transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1240px) {
  .content-wrap {
    width: min(1080px, calc(100% - 96px));
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-side-label {
    display: none;
  }

}

@media (max-width: 1020px) {
  .content-wrap {
    width: min(980px, calc(100% - 72px));
  }

  .section-block {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .main-nav {
    display: none;
  }

  .section-kicker {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: clamp(36px, 4.5vw, 42px);
    line-height: 1.04;
  }

  .collabs-section,
  .values-section,
  .shop-section {
    padding-top: 84px;
  }

  .hero-grid,
  .about-grid,
  .mission-grid,
  .section-split,
  .shop-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-section {
    padding: 22px 0 58px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    max-width: 760px;
    font-size: clamp(50px, 6.4vw, 58px);
    line-height: 1.06;
  }

  .hero-title br,
  .about-copy h2 br,
  .mission-copy h2 br {
    display: none;
  }

  .hero-description {
    max-width: 680px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-media {
    justify-content: center;
  }

  .phone-shell {
    width: min(390px, 100%);
  }

  .about-grid {
    gap: 28px;
  }

  .about-photo {
    max-width: 700px;
    min-height: 500px;
  }

  .about-copy {
    padding: 12px 4px 0;
  }

  .about-copy h2 {
    line-height: 1.02;
    font-size: clamp(36px, 5vw, 42px);
  }

  .about-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .mission-grid {
    gap: 34px;
  }

  .collab-grid,
  .values-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid {
    gap: 14px;
  }

  .value-card {
    min-height: 0;
    padding: 30px 22px 26px;
    border-radius: 18px;
  }

  .value-icon {
    width: 52px;
    height: 52px;
  }

  .value-icon svg {
    width: 24px;
    height: 24px;
  }

  .value-card h3 {
    margin: 18px 0 10px;
    font-size: 21px;
    line-height: 1.24;
  }

  .value-card p {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
  }

  .values-heading {
    margin-bottom: 34px;
  }

  .values-heading h2 {
    font-size: clamp(36px, 4.6vw, 42px);
    line-height: 1.18;
  }

  .values-heading p {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .shop-heading {
    margin-bottom: 20px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-meta h3 {
    font-size: 18px;
    line-height: 1.08;
  }

  .product-meta span {
    margin-top: 6px;
    font-size: 11px;
  }

  .product-card > p {
    font-size: 9px;
  }

  .collab-grid {
    gap: 14px;
    grid-auto-rows: auto;
  }

  .collab-card,
  .collab-card.is-featured {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 290px;
  }

  .reel-overlay {
    padding: 16px 16px 14px;
  }

  .reel-overlay h3 {
    font-size: 28px;
  }

  .collab-card.is-featured .reel-overlay h3 {
    font-size: 34px;
  }

  .mission-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-photo-wrap {
    max-width: 620px;
    padding: 20px 0 40px 20px;
  }

  .mission-photo-wrap::before {
    width: calc(100% - 30px);
    height: calc(100% - 68px);
  }

  .mission-note {
    right: 12px;
    bottom: 6px;
    width: 198px;
    padding: 14px 18px;
  }

  .mission-note p {
    font-size: 18px;
    line-height: 1.56;
  }

  .mission-copy {
    padding-top: 0;
  }

  .mission-copy h2 {
    font-size: clamp(38px, 5.8vw, 46px);
    line-height: 1.09;
    max-width: 100%;
  }

  .mission-details {
    margin-top: 20px;
  }

  .mission-narrative {
    max-width: 100%;
  }

  .mission-details .quote {
    font-size: 14px;
    line-height: 1.54;
  }

  .mission-signoff {
    margin-top: 24px;
    font-size: 18px;
  }

  .contact-section {
    margin-top: 24px;
    padding: 56px 0;
  }

  .contact-inner h2 {
    font-size: clamp(42px, 6vw, 54px);
    line-height: 1.2;
    font-weight: 300;
  }

  .contact-inner p {
    margin-top: 12px;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-actions {
    margin-top: 26px;
    gap: 16px;
  }

  .media-kit-link {
    margin-top: 20px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .back-to-top {
    right: 20px;
    bottom: 22px;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .section-block {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .content-wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .header-inner {
    min-height: 70px;
  }

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

  .collab-button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 8px;
  }

  .hero-section {
    padding: 12px 0 46px;
  }

  .collabs-section,
  .values-section,
  .shop-section {
    padding-top: 56px;
  }

  .contact-section {
    margin-top: 18px;
    padding: 48px 0;
  }

  .hero-kicker {
    margin: 4px 0 16px;
    font-size: 9px;
    letter-spacing: 0.26em;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(39px, 11vw, 50px);
    line-height: 1.08;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-actions {
    align-items: center;
  }

  .social-list {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .social-list a {
    min-height: 30px;
    font-size: 8px;
    letter-spacing: 0.17em;
  }

  .pill-row {
    justify-content: center;
  }

  .phone-shell {
    width: min(320px, 100%);
    border-radius: 20px;
  }

  .phone-video-link,
  .phone-overlay {
    border-radius: 18px;
  }

  .play-chip {
    width: 48px;
    height: 48px;
  }

  .watch-label {
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.08;
  }

  .filter-head {
    margin-bottom: 18px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .filter-row {
    justify-content: center;
  }

  .collab-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .collab-card,
  .collab-card.is-featured {
    min-height: 250px;
    border-radius: 16px;
  }

  .reel-overlay,
  .collab-card.is-featured .reel-overlay {
    padding: 14px 14px 12px;
    gap: 5px;
  }

  .reel-overlay h3,
  .collab-card.is-featured .reel-overlay h3 {
    font-size: 24px;
    line-height: 1.06;
  }

  .reel-overlay p,
  .collab-card.is-featured .reel-overlay p {
    font-size: 11px;
    line-height: 1.4;
  }

  .values-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .values-heading h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .values-heading p {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .value-card {
    min-height: 0;
    padding: 24px 18px 20px;
    border-radius: 14px;
    align-items: center;
    text-align: center;
  }

  .value-icon {
    margin: 0 auto;
    width: 48px;
    height: 48px;
  }

  .value-icon svg {
    width: 22px;
    height: 22px;
  }

  .value-card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
    line-height: 1.22;
  }

  .value-card p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }

  .shop-heading {
    margin-bottom: 14px;
  }

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

  .product-meta h3 {
    font-size: 17px;
  }

  .product-meta,
  .product-card > p {
    text-align: center;
    justify-content: center;
  }

  .shop-ltk-link {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .likes-chip {
    left: 8px;
    bottom: -10px;
    padding: 7px 8px;
  }

  .about-section,
  .mission-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-grid {
    gap: 16px;
  }

  .about-photo {
    min-height: 380px;
  }

  .about-copy {
    padding: 6px 0 0;
  }

  .about-copy h2 {
    font-size: clamp(31px, 9.4vw, 37px);
    line-height: 1.08;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.58;
  }

  .mission-photo-wrap {
    padding: 10px 0 24px 10px;
  }

  .mission-photo-wrap::before {
    width: calc(100% - 16px);
    height: calc(100% - 42px);
    border-radius: 14px;
  }

  .mission-note {
    right: 4px;
    bottom: 6px;
    width: 170px;
    padding: 12px 14px;
  }

  .mission-note p {
    margin-top: 6px;
    font-size: 17px;
    line-height: 1.5;
  }

  .mission-kicker {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.32em;
  }

  .mission-copy h2 {
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.08;
  }

  .mission-underlined {
    padding-bottom: 12px;
  }

  .mission-underlined::after {
    bottom: 2px;
    height: 3px;
  }

  .mission-details {
    margin-top: 18px;
    gap: 16px;
  }

  .mission-details .quote {
    margin-bottom: 14px;
    padding-bottom: 14px;
    font-size: 13px;
  }

  .mission-details ul {
    gap: 12px;
  }

  .mission-details li {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .mission-signoff {
    margin-top: 20px;
    font-size: 16px;
  }

  .contact-inner {
    max-width: 100%;
  }

  .contact-inner h2 {
    font-size: clamp(34px, 8.8vw, 44px);
    line-height: 1.18;
    font-weight: 300;
  }

  .contact-inner p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-actions {
    margin-top: 20px;
    width: 100%;
  }

  .contact-actions button {
    width: 100%;
    max-width: 260px;
  }

  .contact-actions a {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-align: center;
    word-break: break-word;
  }

  .media-kit-link {
    margin-top: 18px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .footer-inner {
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }

  .footer-brand {
    width: 100%;
    text-align: center;
  }

  .footer-brand a {
    font-size: 20px;
  }

  .footer-brand p {
    text-align: center;
  }

  .footer-socials {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 16px;
  }

  .footer-note {
    width: 100%;
    text-align: center;
  }

  .hero-copy,
  .about-copy,
  .mission-copy,
  .shop-heading,
  .contact-inner,
  .footer-brand {
    text-align: center;
  }

  .filter-head > span {
    text-align: center;
  }

  .section-split {
    justify-items: center;
  }

  .mission-details {
    text-align: center;
  }

  .mission-details ul {
    justify-items: center;
  }

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

  .modal-card h2 {
    font-size: 42px;
  }

  .video-lightbox-card {
    width: min(100%, calc(100% - 8px));
    max-height: calc(100vh - 22px);
    overflow: auto;
  }
}

@media (max-width: 560px) {
  .collab-grid,
  .values-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-tabs,
  .pill-row,
  .filter-row {
    gap: 6px;
  }

  .hero-title,
  .mission-copy h2,
  .about-copy h2 {
    font-size: clamp(31px, 10.8vw, 36px);
    line-height: 1.1;
  }

  #about,
  #mission,
  #collabs,
  #brands,
  #shop,
  #contact {
    scroll-margin-top: 102px;
  }

  .values-heading h2,
  .section-title {
    line-height: 1.04;
    font-size: clamp(30px, 9.6vw, 36px);
  }

  .collab-card,
  .collab-card.is-featured {
    min-height: 220px;
  }

  .reel-overlay p {
    display: none;
  }

  .case-link {
    font-size: 8px;
    letter-spacing: 0.16em;
    min-height: 24px;
  }

  .contact-inner h2 {
    font-size: clamp(30px, 10.5vw, 38px);
    line-height: 1.14;
  }

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

  .contact-actions button {
    max-width: 100%;
  }

  .footer-socials {
    order: 3;
  }

  .video-lightbox {
    padding: 12px;
  }

  .video-lightbox-card {
    width: min(100%, calc(100% - 8px));
    padding: 12px 12px 10px;
    border-radius: 12px;
  }

  .video-lightbox-title {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .video-lightbox-player {
    max-height: 62vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
