:root {
  --background: #ffffff;
  --foreground: #171717;
  --muted: #747474;
  --secondary: #f5f5f3;
  --border: #dedede;
  --accent: #eeeeec;
  --display: "Archivo", Arial, sans-serif;
  --sans: "Space Grotesk", Arial, sans-serif;
}

.dark {
  --background: #111111;
  --foreground: #f4f4f1;
  --muted: #a5a5a0;
  --secondary: #1d1d1b;
  --border: #30302d;
  --accent: #252522;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

.site-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--background);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 94%, transparent);
  backdrop-filter: blur(14px);
}

.brand,
.desktop-nav a,
.eyebrow,
.section-label,
.product-category,
.number,
.tags span,
.image-caption,
.archive-caption,
.small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--foreground);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: var(--muted);
  transition: color 160ms ease;
}

.desktop-nav a:hover { color: var(--foreground); }

.theme-toggle,
.menu-toggle {
  border: 0;
  background: transparent;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sun,
.dark .moon { display: none; }
.dark .sun { display: block; }

.mobile-actions,
.mobile-nav { display: none; }

.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-copy {
  padding: 78px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
}

.hero-title {
  margin: 0 0 30px -7px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 7.4vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.072em;
}

.hero-title span,
.hero-title em { display: block; }
.hero-title span:first-child { color: #7b7b7b; }
.hero-title span:nth-child(2) { color: #d1d1d1; }
.hero-title em { color: #e5e5e5; font-style: normal; }
.dark .hero-title span:first-child { color: #d8d8d4; }
.dark .hero-title span:nth-child(2) { color: #7f7f79; }
.dark .hero-title em { color: #51514d; }

.hero-intro {
  margin: 0 0 38px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--foreground);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.button-light {
  background: transparent;
  color: var(--foreground);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  min-height: 50vh;
  background: var(--secondary);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.08) contrast(1.02) brightness(1.03);
  transform-origin: center;
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 14px 18px;
  width: fit-content;
  max-width: calc(100% - 48px);
  background: color-mix(in oklab, var(--background) 92%, transparent);
  border: 1px solid var(--border);
  color: var(--muted);
}

.section {
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
}

.two-col,
.difference {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
}

.section-label {
  color: var(--muted);
  padding-top: 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-title em {
  color: var(--muted);
  font-style: normal;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.copy-block p,
.archive-intro p,
.archive-copy p,
.contact p,
.work-notes p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  background: var(--secondary);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.statement em { color: var(--muted); }

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

.service-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}

.service-card:first-child { padding-left: 0; }
.service-card:last-child { border-right: 0; padding-right: 0; }

.number {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card h3,
.brand-row h3,
.work-notes h3,
.product-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-card h3 {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span {
  border: 1px solid var(--accent);
  color: var(--muted);
  padding: 5px 10px;
  font-size: 10px;
  background: var(--background);
}

.product-group {
  margin-bottom: 48px;
}

.product-category {
  padding-bottom: 13px;
  margin-bottom: 1px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 1px;
  background: var(--accent);
}

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

.product-card {
  background: var(--background);
  overflow: hidden;
}

.product-image {
  overflow: hidden;
  background: var(--secondary);
}

.portrait-ratio { aspect-ratio: 3 / 4; }
.square-ratio { aspect-ratio: 1 / 1; }

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.product-card:hover img { transform: scale(1.035); }

.product-card h3 {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-card p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.work-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.work-notes h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
}

.work-notes p {
  font-size: 12px;
  margin: 0;
}

.archive-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
  margin: 34px 0 48px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
}

.archive-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top;
  background: var(--secondary);
}

.archive-grid img.album-cover {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.archive-grid > div {
  display: grid;
  gap: 8px;
}

.archive-caption {
  color: var(--muted);
  margin: 12px 0 36px;
}

.archive-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  clear: both;
}

.pullquote {
  font-family: var(--display);
  font-size: 26px;
  font-style: normal;
  line-height: 1.35 !important;
  color: var(--foreground) !important;
}

.brand-rows {
  border-top: 1px solid var(--border);
}

.brand-row {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.brand-row h3 {
  font-size: 26px;
  line-height: 1.05;
}

.brand-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.brand-row span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.contact-links a {
  border: 1px solid var(--foreground);
  padding: 12px 16px;
  font-size: 13px;
}

.small {
  color: var(--muted);
  line-height: 1.7 !important;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.js .hero-title.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .hero-title.reveal span,
.js .hero-title.reveal em {
  opacity: 0;
  transform: translateX(-30px);
}

.js .hero-title.reveal span,
.js .hero-title.reveal em {
  animation: heroLineIn 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-title.reveal span:nth-child(2) {
  animation-delay: 170ms;
}

.js .hero-title.reveal em {
  animation-delay: 340ms;
}

.js .hero-title.reveal.is-visible span,
.js .hero-title.reveal.is-visible em {
  animation: heroLineIn 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-title.reveal.is-visible span:nth-child(2) {
  animation-delay: 170ms;
}

.js .hero-title.reveal.is-visible em {
  animation-delay: 340ms;
}

.js .hero-visual.reveal {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 900ms ease, transform 900ms ease;
  animation: heroImageIn 900ms ease forwards;
}

.js .hero-visual.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js .hero .eyebrow.reveal,
.js .hero .hero-intro.reveal,
.js .hero .hero-actions.reveal,
.js .hero .hero-stats.reveal {
  animation: heroFadeUp 650ms ease forwards;
}

.js .hero .hero-intro.reveal {
  animation-delay: 520ms;
}

.js .hero .hero-actions.reveal {
  animation-delay: 700ms;
}

.js .hero .hero-stats.reveal {
  animation-delay: 880ms;
}

.js .hero-visual.reveal.is-visible img {
  animation: heroImageDrift 8s ease-in-out 450ms infinite alternate;
}

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.045) translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .product-image img { transition: none; }
  .js .hero-title.reveal span,
  .js .hero-title.reveal em,
  .js .hero-visual.reveal,
  .js .hero-visual.reveal img {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 20px 24px;
  }

  .desktop-nav { display: none; }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    flex-direction: column;
    gap: 5px;
    width: 34px;
    padding: 4px 0;
  }

  .menu-toggle span {
    width: 34px;
    height: 1px;
    background: var(--foreground);
  }

  .mobile-nav {
    display: none;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--background);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .mobile-nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    min-height: 46vh;
  }

  .hero-copy {
    padding: 58px 24px 50px;
  }

  .hero-title {
    margin-left: -4px;
    font-size: clamp(62px, 18vw, 90px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .two-col,
  .difference,
  .section-heading,
  .about-grid,
  .archive-intro,
  .archive-copy,
  .contact-grid,
  .work-notes {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .service-card {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child { border-bottom: 0; }

  .apparel-grid,
  .three-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    gap: 8px;
    overflow: visible;
  }

  .archive-grid > div {
    display: grid;
    gap: 8px;
  }

  .archive-grid img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .archive-grid img.album-cover {
    object-fit: contain;
  }

  .archive-copy {
    margin-top: 28px;
    overflow: visible;
  }

  .archive-copy p {
    overflow-wrap: anywhere;
  }

  .portrait { max-width: 360px; }

  .brand-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand-row span {
    text-align: left;
  }
}
