:root {
  --black: #000;
  --grey: #565d6c;
  --off: #f5f3ee;
  --navy: #0c172a;
  --teal: #9ad6d8;
  --blue: #0052df;
  --red: #d32032;
  --green: #2e6f40;
  --line: rgba(0, 0, 0, 0.18);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 99;
  padding: 0.75rem;
  background: #fff;
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: auto;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark-wrap {
  width: 38px;
  height: 38px;
  overflow: hidden;
  background: #fff;
  border-radius: 0;
}

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

.brand-wordmark,
.eyebrow,
.poster-top,
.poster-bottom {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: #000;
  content: "";
  transition: right 0.2s;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.menu-toggle {
  display: none;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
}

/* Shared layout */

.section-pad {
  max-width: var(--max);
  margin: auto;
  padding: 100px 28px;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading h2,
.browse h2,
.story-grid h2,
.garment-copy h2,
.values h2,
.about-ai-heading h2 {
  margin: 0.15em 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 420px;
  color: var(--grey);
}

/* Homepage hero */

.home-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 7vw;
  min-height: 760px;
  max-width: var(--max);
  margin: auto;
  padding: 72px 28px 60px;
}

.hero-copy h1,
.page-hero h1,
.design-hero h1 {
  margin: 0.2em 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(4.2rem, 9vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-copy h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #252525;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

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

.button {
  display: inline-block;
  padding: 14px 20px;
  border: 1px solid #000;
  font-weight: 700;
  transition: transform 0.2s;
}

.button-dark {
  background: #000;
  color: #fff;
}

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

.text-link {
  border-bottom: 1px solid;
  font-weight: 700;
}

.hero-poster {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 4 / 5;
  padding: 24px;
  background: var(--teal);
  box-shadow: 14px 14px 0 #000;
  transform: rotate(1.5deg);
}

.hero-poster img {
  align-self: center;
  width: 72%;
  mix-blend-mode: multiply;
}

/* Marquee */

.marquee {
  overflow: hidden;
  padding: 13px 0;
  background: #000;
  color: #fff;
  border-block: 1px solid #000;
}

.marquee div {
  white-space: nowrap;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

/* Design cards */

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

.design-card {
  display: block;
}

.card-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e8e5de;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.design-card:hover .card-media img {
  transform: scale(1.025);
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #000;
  font-weight: 700;
}

.card-meta span:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* Image fallback */

.media-shell {
  position: relative;
  background: #e5e1d9;
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 3rem);
  text-transform: uppercase;
}

.media-shell.is-missing .image-fallback {
  display: flex;
}

/* Manifesto */

.manifesto {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--navy);
  color: #fff;
}

.manifesto-line {
  max-width: 1200px;
  margin: 0.3em 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* Browse */

.browse {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
}

.browse-links a {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid #000;
}

.browse-links a:last-child {
  border-bottom: 1px solid #000;
}

.browse-links span {
  font-size: 0.75rem;
  font-weight: 700;
}

.browse-links strong {
  font-size: 1.35rem;
}

.browse-links em {
  color: var(--grey);
  font-style: normal;
}

/* Page hero */

.page-hero {
  max-width: var(--max);
  margin: auto;
  padding: 120px 28px 70px;
}

.compact-hero {
  max-width: 1100px;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.compact-hero > p:not(.eyebrow),
.contact-hero > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--grey);
  font-size: 1.25rem;
}

/* Design page */

.design-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 50px;
  max-width: var(--max);
  margin: auto;
  padding: 60px 28px 90px;
}

.design-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.design-lede {
  max-width: 520px;
  font-size: 1.3rem;
}

.design-hero-media {
  aspect-ratio: 4 / 5;
}

.design-hero-media img,
.gallery-item img,
.colour-card img,
.garment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.prose {
  max-width: 760px;
  font-size: 1.15rem;
}

.prose h3 {
  margin-top: 2.2em;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-item {
  grid-column: span 6;
  aspect-ratio: 4 / 3;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 4;
}

.colour-section {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: #fff;
}

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

.colour-card {
  aspect-ratio: 1 / 1;
}

.garment-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 8vw;
}

.garment-media {
  aspect-ratio: 16 / 10;
}

.design-pagination {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000;
  font-weight: 700;
}

/* Drops */

.drop-list a,
.contact-grid > a {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #000;
}

.drop-list a:last-child {
  border-bottom: 1px solid #000;
}

.drop-list strong {
  font-size: 1.2rem;
}

.drop-list em {
  font-style: normal;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 8vw;
}

.about-mark {
  padding: 12%;
  background: var(--teal);
  box-shadow: 14px 14px 0 #000;
}

.about-mark img {
  mix-blend-mode: multiply;
}

.large-prose {
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  line-height: 1.35;
}

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

.values span {
  font-weight: 700;
}

.values h2 {
  font-size: 2rem;
}

/* Creating with AI */

.about-ai {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-ai-heading {
  position: sticky;
  top: 40px;
}

.about-ai-heading h2 {
  margin-top: 0.15em;
}

.about-ai .prose {
  max-width: 760px;
}

.about-ai .prose p:first-child {
  margin-top: 0;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.contact-grid > a {
  grid-template-columns: 180px 1fr auto;
}

.contact-grid strong {
  font-size: clamp(1.5rem, 4vw, 4rem);
}

.contact-social {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 30px 0;
  border-top: 1px solid #000;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 80px auto 0;
  padding: 48px 28px;
  border-top: 1px solid #000;
}

.footer-copy {
  max-width: 560px;
  color: var(--grey);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-weight: 600;
}

/* Mobile */

@media (max-width: 800px) {
  .site-header {
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 20px;
    background: var(--off);
    border-bottom: 1px solid #000;
  }

  .site-nav.is-open {
    display: flex;
  }

  .home-hero,
  .design-hero,
  .story-grid,
  .browse,
  .garment-section,
  .about-grid,
  .about-ai {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    padding: 50px 18px;
  }

  .hero-poster {
    max-width: 520px;
  }

  .section-pad,
  .page-hero,
  .design-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .card-grid,
  .colour-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-item,
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 12;
  }

  .browse-links a {
    grid-template-columns: 35px 1fr;
  }

  .browse-links em {
    display: none;
  }

  .card-meta {
    grid-template-columns: 1fr auto;
  }

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

  .drop-list a,
  .contact-grid > a,
  .contact-social {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .design-pagination {
    gap: 30px;
  }

  .about-ai {
    gap: 2rem;
  }

  .about-ai-heading {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .brand-wordmark {
    font-size: 0.65rem;
  }
}

  /* Team Edition page */

.team-edition-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 50px;
  max-width: var(--max);
  margin: auto;
  padding: 60px 28px 90px;
}

.team-edition-hero-copy h1 {
  margin: 0.15em 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.team-edition-id {
  margin: 0.25rem 0 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.team-edition-season {
  margin: 1.5rem 0 0;
  color: var(--grey);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-edition-summary {
  max-width: 560px;
  margin-top: 2rem;
  font-size: 1.3rem;
}

.team-edition-hero-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-edition-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-edition-story,
.team-edition-exclusive,
.team-edition-cta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 8vw;
}

.team-edition-story h2,
.team-edition-exclusive h2,
.team-edition-cta h2 {
  margin: 0.15em 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.team-edition-designs .card-media {
  aspect-ratio: 4 / 5;
}

.team-edition-designs .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-edition-gallery .gallery-item {
  overflow: hidden;
}

.team-edition-exclusive {
  background: var(--navy);
  color: #fff;
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.team-edition-exclusive .prose {
  color: rgba(255, 255, 255, 0.85);
}

.team-edition-cta .button {
  margin-top: 1rem;
}

@media (max-width: 800px) {
  .team-edition-hero,
  .team-edition-story,
  .team-edition-exclusive,
  .team-edition-cta {
    grid-template-columns: 1fr;
  }

  .team-edition-hero {
    padding: 50px 18px 70px;
  }

  .team-edition-hero-copy h1 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .team-edition-id {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .team-edition-summary {
    font-size: 1.15rem;
  }

  .team-edition-hero-media {
    margin-top: 1rem;
  }

  .team-edition-exclusive {
    padding-right: 18px;
    padding-left: 18px;
  }
}