﻿:root {
  --ink: #f4f4f4;
  --soft-ink: #b8b8b8;
  --paper: #060606;
  --stone: #101010;
  --accent: #d8d8d8;
  --cmyk-cyan: #bfeeff;
  --cmyk-magenta: #ffc0e3;
  --cmyk-yellow: #ffffff;
  --cmyk-black: #080808;
  --cmyk-cyan-light: #d8f4ff;
  --cmyk-magenta-light: #ffd7ee;
  --cmyk-yellow-light: #fff9cf;
  --cmyk-ink-soft: #181818;
  --white: #ffffff;
  --black: #020202;
  --line: #2a2a2a;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  --max: 1220px;
  --section-space: 3.7rem;
  --section-merge-space: 1.15rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 42%, #070707 100%);
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

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

.section {
  padding: var(--section-space) 0;
}

main > .section + .section {
  padding-top: var(--section-merge-space);
}

.section-soft {
  background: linear-gradient(180deg, #0c0c0c 0%, #121212 100%);
}

.section-dark {
  background: #000;
  color: #f0f0f0;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

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

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.top-strip {
  background: #050505;
  color: #f1f1f1;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  overflow: hidden;
  border-bottom: 1px solid #171717;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 200vw;
  white-space: nowrap;
  will-change: transform;
  animation: header-marquee 8s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding-right: 2.8rem;
}

@keyframes header-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(6, 6, 6, 0.92);
  border-bottom: 1px solid #1f1f1f;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand img {
  width: 126px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #f0f0f0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #ededed;
}

.nav-list a {
  color: #ededed;
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: #090909;
  background: #f2f2f2;
  outline: none;
}

.action-link:hover,
.action-link:focus-visible {
  color: #090909;
  filter: brightness(1.04);
  outline: none;
}

.action-link {
  color: #101010;
  background: linear-gradient(120deg, var(--cmyk-cyan-light) 0%, var(--cmyk-magenta-light) 58%, var(--cmyk-yellow-light) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.action-link-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(9, 7, 6, 0.86) 15%, rgba(10, 8, 6, 0.32) 62%, rgba(10, 8, 6, 0.15) 100%);
}

.hero-content {
  position: relative;
  color: #f7f7f7;
  max-width: 610px;
  padding-top: 4.5rem;
  padding-bottom: 3.2rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.9vw, 4.5rem);
  margin: 0.85rem 0 1.15rem;
}

.hero p {
  color: #d9d9d9;
  max-width: 54ch;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.22s ease;
}

.btn-solid {
  background: linear-gradient(135deg, var(--cmyk-cyan-light) 0%, var(--cmyk-magenta-light) 56%, var(--cmyk-yellow-light) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #111;
  box-shadow: 0 10px 24px rgba(16, 16, 16, 0.14);
}

.btn-solid:hover {
  filter: brightness(1.03) saturate(1.05);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(191, 238, 255, 0.95);
  color: #111;
  background: linear-gradient(120deg, rgba(191, 238, 255, 0.96), rgba(255, 215, 238, 0.92));
}

.btn-outline:hover {
  background: linear-gradient(120deg, rgba(216, 244, 255, 0.98), rgba(255, 249, 207, 0.96));
}

.btn-dark {
  background: linear-gradient(120deg, var(--cmyk-cyan-light) 0%, var(--cmyk-magenta-light) 62%, var(--cmyk-yellow-light) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  color: #111;
}

.btn-dark:hover {
  background: linear-gradient(120deg, #e5f7ff 0%, #ffe3f3 62%, #fffbe0 100%);
}

.btn-outline-dark {
  border-color: rgba(191, 238, 255, 0.65);
  color: #111;
  background: linear-gradient(120deg, rgba(216, 244, 255, 0.88), rgba(255, 249, 207, 0.86));
}

.btn-outline-dark:hover {
  background: linear-gradient(120deg, rgba(191, 238, 255, 0.96), rgba(255, 215, 238, 0.9));
  color: #0f0f0f;
}

.heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.heading-row h2,
.story-content h2,
.highlight-copy h2,
.split-copy h2,
.promise-block h2,
.newsletter h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.8rem);
}

.heading-row a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d5d5d5;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tile-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.tile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.78), transparent 62%);
}

.tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-content {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  color: #f2f2f2;
}

.tile-content h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.tile-content a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.feature-text {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.feature-text h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.feature-text p {
  color: var(--soft-ink);
  margin-bottom: 1.4rem;
}

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

.feature-grid article {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.feature-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-grid h3,
.editorial-grid h3,
.arrival-row h3,
.guides-grid h3 {
  font-size: 1.3rem;
  padding: 0.85rem 1rem 1rem;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.category-strip a {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(120deg, var(--cmyk-cyan-light) 0%, var(--cmyk-magenta-light) 58%, var(--cmyk-yellow-light) 100%);
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  color: #17181b;
  padding: 0.86rem 0.35rem;
  box-shadow: 0 10px 18px rgba(15, 16, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.category-strip a:hover,
.category-strip a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 24px rgba(15, 16, 18, 0.14);
  outline: none;
}

.category-strip a:active {
  transform: translateY(0);
}

.story-block,
.product-highlight,
.split-section,
.promise-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story-media,
.highlight-media,
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
}

.story-media img,
.highlight-media img,
.split-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.story-content,
.highlight-copy,
.split-copy {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.highlight-copy ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--soft-ink);
}

.editorial-grid,
.arrival-row,
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.editorial-grid article,
.arrival-row article,
.guides-grid article {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.editorial-grid img,
.arrival-row img,
.guides-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.editorial-grid p,
.guides-grid a {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #dddddd;
  padding: 0 1rem 1rem;
}

.promise-block {
  grid-template-columns: 0.95fr 1.05fr;
}

.promise-block > div {
  background: var(--stone);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.promise-block > img {
  border-radius: var(--radius);
  object-fit: cover;
  min-height: 320px;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.newsletter-form {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  font: inherit;
}

.newsletter-form input {
  background: transparent;
  color: #fff;
  padding: 0 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(220, 220, 220, 0.7);
}

.newsletter-form button {
  background: linear-gradient(120deg, var(--cmyk-cyan-light) 0%, var(--cmyk-magenta-light) 60%, var(--cmyk-yellow-light) 100%);
  border-color: rgba(255, 255, 255, 0.26);
  color: #111;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 1rem;
  font-weight: 700;
}

.newsletter-form button:hover {
  filter: brightness(1.03) saturate(1.04);
}

.site-footer {
  background: #020202;
  color: #d8d8d8;
  padding-top: 4.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.site-footer h2,
.site-footer h3 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.site-footer h3 {
  font-size: 1.1rem;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

.site-footer a {
  color: #cfcfcf;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-top {
  position: fixed;
  right: clamp(0.75rem, 2.4vw, 1.25rem);
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(120deg, var(--cmyk-cyan-light) 0%, var(--cmyk-magenta-light) 58%, var(--cmyk-yellow-light) 100%);
  color: #0d0d0d;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
  z-index: 80;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  outline: none;
}

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

@media (max-width: 1080px) {
  .nav-list {
    gap: 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
  }

  .collection-grid,
  .editorial-grid,
  .guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel,
  .story-block,
  .product-highlight,
  .split-section,
  .promise-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-media img,
  .highlight-media img,
  .split-media img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 2.8rem;
    --section-merge-space: 0.85rem;
  }

  .top-strip {
    font-size: 0.64rem;
    letter-spacing: 0.09em;
  }

  .marquee-track span {
    padding-right: 1.4rem;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .nav-wrap {
    min-height: 68px;
    flex-wrap: wrap;
    row-gap: 0.65rem;
    padding: 0.55rem 0 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 0.85rem;
  }

  .site-header.menu-open .primary-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-bottom: 0;
  }

  .nav-list a {
    display: inline-flex;
    width: 100%;
    padding: 0.48rem 0;
  }

  .action-link-desktop {
    display: none;
  }

  .action-link-mobile {
    display: inline-flex;
    margin-top: 0.9rem;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding-top: 2.8rem;
    padding-bottom: 2.5rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .collection-grid,
  .feature-grid,
  .editorial-grid,
  .arrival-row,
  .guides-grid,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .story-content,
  .highlight-copy,
  .split-copy,
  .feature-text,
  .promise-block > div {
    padding: 1.35rem;
  }

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

  .newsletter-form {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 116px;
  }

  .btn {
    min-height: 48px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    right: 0.7rem;
    bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .scroll-top {
    transition: none;
  }
}

