:root {
  --ink: #0b0d12;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #666b75;
  --line: #d9dbe0;
  --accent: #123dff;
  --accent-dark: #0b2bbb;
  --max-width: 1180px;
  --shadow: 0 20px 45px rgba(11, 13, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(247, 247, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner,
.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-toggle {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100svh - 4.5rem);
  display: none;
  padding: 2rem 1rem;
  background: var(--paper);
  overflow-y: auto;
}

.nav-open .site-nav {
  display: block;
}

.site-nav ul {
  width: min(100%, 32rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  min-height: calc(100svh - 4.5rem);
  display: grid;
  align-items: end;
  padding: 4rem 0 2rem;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  content: "";
  background: currentColor;
}

.display-title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 12vw, 7.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: #c7cad2;
  font-size: clamp(1rem, 2.8vw, 1.18rem);
}

.hero-panel {
  padding: 1.25rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tee-placeholder,
.product-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  min-height: 17rem;
  margin-top: 1rem;
  color: #5a5f69;
  background:
    linear-gradient(135deg, transparent 49.7%, #dfe1e5 49.8%, #dfe1e5 50.2%, transparent 50.3%),
    #eef0f2;
  border: 1px solid #dfe1e5;
  overflow: hidden;
}

.tee-placeholder::before,
.product-placeholder::before {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid #d5d8de;
  content: "";
}

.placeholder-label {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0.7rem;
  background: rgba(238, 240, 242, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #333641;
  border-left: 1px solid #333641;
}

.product-strip span {
  padding: 0.85rem;
  border-right: 1px solid #333641;
  border-bottom: 1px solid #333641;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid currentColor;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.button--accent {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button--disabled {
  color: #8b8f98;
  background: #e5e6e8;
  border-color: #cdd0d5;
  cursor: not-allowed;
}

.section {
  padding: 4.5rem 0;
}

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

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

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.page-title {
  margin: 0;
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.section--ink .section-heading p {
  color: #b8bbc3;
}

.feature-grid,
.product-grid,
.principle-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.principle-card {
  min-height: 11rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-card__number {
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-card h3,
.principle-card h3,
.product-info h2,
.product-card h2 {
  margin: 1.6rem 0 0.35rem;
  font-size: 1.1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-card p,
.principle-card p {
  margin: 0;
  color: var(--muted);
}

.product-card {
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.product-placeholder {
  margin-top: 0;
}

.product-card h2 {
  margin: 1rem 0 0;
}

.product-card p {
  margin: 0.25rem 0 0.65rem;
  color: var(--muted);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.tag {
  padding: 0.3rem 0.5rem;
  color: var(--ink);
  background: #eef0f4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-block {
  display: grid;
  gap: 2rem;
}

.spec-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  text-align: right;
}

.page-hero {
  padding: 4.5rem 0 3rem;
  color: var(--white);
  background: var(--ink);
}

.page-hero p {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: #bfc2ca;
  font-size: 1.05rem;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #bfc2ca;
}

.product-detail {
  display: grid;
  gap: 2rem;
}

.product-info h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.size-row {
  display: flex;
  gap: 0.45rem;
  margin: 1.2rem 0 1.7rem;
}

.size-chip {
  min-width: 3rem;
  min-height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.story-copy {
  max-width: 48rem;
}

.story-copy p {
  font-size: 1.08rem;
}

.story-copy p:first-child {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.size-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.size-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  background: var(--white);
}

.size-table th,
.size-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.size-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-table tbody tr:last-child td {
  border-bottom: 0;
}

.notice {
  margin-top: 1.25rem;
  padding: 1rem;
  color: #30343c;
  background: #e8eafe;
  border-left: 4px solid var(--accent);
}

.measure-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  counter-reset: measure;
}

.measure-step {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: measure;
}

.measure-step::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent);
  content: "0" counter(measure);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.measure-step h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.measure-step p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-dark);
  font-weight: 800;
}

.policy {
  max-width: 48rem;
}

.policy h2 {
  margin: 2.5rem 0 0.7rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.policy p,
.policy li {
  color: #3f444e;
}

.policy ul {
  padding-left: 1.25rem;
}

.cta-band {
  padding: 3.5rem 0;
  color: var(--white);
  background: var(--accent);
}

.cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  color: #c8cbd2;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-note {
  max-width: 30rem;
  margin: 0.75rem 0 0;
}

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

.footer-links a {
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #31343c;
  font-size: 0.75rem;
}

@media (min-width: 42rem) {
  .feature-grid,
  .principle-grid,
  .measure-steps,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: end;
  }

  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }
}

@media (min-width: 62rem) {
  .header-inner,
  .container {
    width: min(100% - 4rem, var(--max-width));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    height: auto;
    display: block;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .site-nav ul {
    width: auto;
    display: flex;
    align-items: center;
    gap: 1.35rem;
  }

  .site-nav a {
    padding: 1.6rem 0 1.45rem;
    border: 0;
    border-bottom: 2px solid transparent;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-nav a[aria-current="page"] {
    color: var(--ink);
    border-bottom-color: var(--accent);
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.55fr);
    align-items: end;
  }

  .display-title {
    max-width: 11ch;
    font-size: clamp(4.5rem, 7vw, 6.4rem);
  }

  .product-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-block,
  .product-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 4rem;
  }

  .product-detail .product-placeholder {
    min-height: 38rem;
  }

  .measure-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-hero {
    padding: 6rem 0 4rem;
  }
}

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

/* Brand campaign layout */
figure {
  margin: 0;
}

figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero--campaign {
  position: relative;
  min-height: calc(100svh - 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  background: #0a0b0f;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.92) 0%, rgba(7, 8, 12, 0.72) 48%, rgba(7, 8, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 8, 12, 0.74) 0%, transparent 48%);
}

.hero-content {
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
}

.campaign-title {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(3.35rem, 14vw, 7.75rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero--campaign .hero-copy {
  max-width: 31rem;
  color: #e3e4e8;
}

.button--glass {
  color: var(--white);
  background: rgba(10, 11, 15, 0.28);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

.campaign-meta {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-meta span {
  padding-right: 0.75rem;
}

.campaign-meta span:last-child {
  display: none;
}

.brand-intro__grid {
  display: grid;
  gap: 1.25rem;
}

.brand-intro__grid .eyebrow {
  color: var(--accent);
}

.brand-intro__grid h2,
.campaign-heading h2,
.editorial-copy h2,
.quality-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.brand-intro__grid > p:last-child {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.product-story {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.editorial-grid,
.quality-grid,
.about-story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.editorial-image img,
.quality-image img,
.product-hero-image img,
.collection-hero img,
.lookbook-grid img,
.about-campaign img,
.about-detail img,
.campaign-tile img {
  width: 100%;
  object-fit: cover;
}

.editorial-image img {
  aspect-ratio: 4 / 5;
}

.editorial-copy > p:not(.eyebrow),
.quality-copy > p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-row {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}

.proof-row span {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
}

.campaign-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.campaign-heading > p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.campaign-gallery {
  display: grid;
  gap: 1.25rem;
}

.campaign-tile img {
  aspect-ratio: 4 / 5;
}

.campaign-tile--wide img,
.campaign-tile--collection img {
  aspect-ratio: 5 / 4;
}

.quality-story {
  padding-top: 0;
}

.quality-grid {
  gap: 0;
}

.quality-image img {
  min-height: 24rem;
  aspect-ratio: 1 / 1;
}

.quality-copy {
  padding: 3rem 0 0;
}

.quality-copy > p:not(.eyebrow) {
  color: #b9bdc6;
}

.quality-points {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid #343740;
  list-style: none;
}

.quality-points li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #343740;
}

.quality-points strong {
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quality-points span {
  color: #aeb2bc;
  font-size: 0.86rem;
}

.product-hero-image img {
  aspect-ratio: 4 / 5;
  background: #e7e8e9;
}

.product-info .eyebrow {
  color: var(--accent);
}

.product-lead {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-facts {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.product-facts div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.product-facts span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-facts strong {
  text-align: right;
}

.product-info .button-row {
  align-items: center;
}

.collection-hero img {
  aspect-ratio: 3 / 2;
}

.lookbook-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.lookbook-grid figure:first-child img {
  aspect-ratio: 1 / 1;
}

.lookbook-grid figure:last-child img {
  aspect-ratio: 4 / 5;
}

.page-hero--brand .eyebrow {
  margin-top: 0;
  color: #9aaeff;
}

.page-hero--brand .page-title {
  max-width: 12ch;
}

.about-campaign {
  padding-top: 1rem;
}

.about-campaign img {
  max-height: 46rem;
  aspect-ratio: 16 / 10;
  object-position: center 32%;
}

.about-story-grid {
  align-items: start;
}

.about-detail img {
  aspect-ratio: 1 / 1;
}

@media (min-width: 42rem) {
  .campaign-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .campaign-meta span:last-child {
    display: block;
  }

  .brand-intro__grid {
    grid-template-columns: 0.45fr 1.4fr;
  }

  .brand-intro__grid > p:last-child {
    grid-column: 2;
  }

  .campaign-heading {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    align-items: end;
  }

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

  .campaign-tile--collection {
    grid-column: 1 / -1;
  }
}

@media (min-width: 62rem) {
  .hero--campaign {
    min-height: min(54rem, calc(100svh - 4.5rem));
    padding: 0;
  }

  .hero-media {
    object-position: center 42%;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .campaign-title {
    font-size: clamp(5.2rem, 7.8vw, 7.75rem);
  }

  .campaign-meta {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .brand-intro {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .brand-intro__grid {
    grid-template-columns: 0.35fr 1.2fr 0.65fr;
    align-items: start;
  }

  .brand-intro__grid > p:last-child {
    grid-column: auto;
    padding-top: 0.35rem;
  }

  .editorial-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 6rem;
  }

  .editorial-image {
    width: 82%;
  }

  .campaign-gallery {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    align-items: stretch;
  }

  .campaign-tile--wide {
    grid-column: 1;
    grid-row: 1;
  }

  .campaign-tile--tall {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .campaign-tile--collection {
    grid-column: 1;
    grid-row: 2;
  }

  .campaign-tile--tall img {
    height: calc(100% - 1.7rem);
    aspect-ratio: auto;
  }

  .quality-grid {
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 42rem;
  }

  .quality-image img {
    height: 100%;
    aspect-ratio: auto;
  }

  .quality-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
  }

  .product-detail {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 6rem;
    align-items: center;
  }

  .product-hero-image {
    width: 86%;
  }

  .lookbook-grid {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: stretch;
  }

  .lookbook-grid img {
    height: 100%;
  }

  .about-story-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 6rem;
  }

  .about-detail {
    margin-top: -6rem;
  }
}

/* Official brand mark overlays use the user's original PNG without redrawing it. */
.brand-visual {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.brand-visual > .brand-visual__photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
}

.brand-visual > .brand-stamp {
  position: absolute;
  z-index: 2;
  width: 3.45%;
  height: auto;
  max-width: none;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.brand-visual > .mark-light {
  filter: invert(1);
}

.group-mark-1 { left: 22.7%; top: 35.5%; }
.group-mark-2 { left: 43.7%; top: 56.5%; }
.group-mark-3 { left: 62.2%; top: 32.7%; }
.group-mark-4 { left: 88.0%; top: 40.8%; }

.brand-visual > .forest-mark {
  left: 63.5%;
  top: 37.2%;
  width: 7.4%;
}

.color-mark-1 { left: 27.4%; top: 24.9%; }
.color-mark-2 { left: 57.0%; top: 23.5%; }
.color-mark-3 { left: 86.0%; top: 27.7%; }
.color-mark-4 { left: 40.9%; top: 58.2%; }
.color-mark-5 { left: 71.2%; top: 58.8%; }

.campaign-tile--wide .brand-visual__photo,
.campaign-tile--collection .brand-visual__photo,
.collection-hero .brand-visual__photo,
.about-campaign .brand-visual__photo {
  aspect-ratio: 3 / 2;
}

.campaign-tile--tall .brand-visual__photo,
.lookbook-grid figure:last-child .brand-visual__photo {
  aspect-ratio: 2 / 3;
}

@media (max-width: 41.99rem) {
  .hero-media {
    object-position: 82% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 12, 0.94) 0%, rgba(7, 8, 12, 0.7) 58%, rgba(7, 8, 12, 0.28) 100%),
      linear-gradient(0deg, rgba(7, 8, 12, 0.8) 0%, transparent 52%);
  }
}
