:root {
  --ink: #050505;
  --paper: #f4f4f0;
  --white: #fff;
  --pink: #ff35b2;
  --blue: #4aa8df;
  --green: #7cff42;
  --yellow: #ffe300;
  --bol: #0000a4;
  --line: #202020;
  --max: 1128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 8rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--pink); }

.shell { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: -9999px;
  z-index: 100;
  padding: 8px 14px;
  color: white;
  background: black;
}
.skip-link:focus { left: 8px; }

.announcement {
  display: block;
  height: 36px;
  padding: 8px 16px;
  color: white;
  background: black;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}
.site-header { height: 96px; background: var(--paper); border-bottom: 1px solid var(--line); }
.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding-inline: 32px;
}
.brand {
  grid-column: 2;
  grid-row: 1;
  color: black;
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1;
}
.brand sup { position: relative; top: -0.55em; margin-left: 2px; font-size: 9px; letter-spacing: 0; }
.nav-links { grid-column: 1; grid-row: 1; display: flex; align-items: center; gap: 34px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.nav-links i { width: 10px; height: 10px; border: 1px solid black; border-radius: 50%; }
.nav-links .nav-more, .nav-links a:last-child { display: none; }
.nav-actions { grid-column: 3; grid-row: 1; display: flex; align-items: center; justify-self: end; gap: 18px; }
.language-switch { display: flex; align-items: center; gap: 5px; font-size: 12px; letter-spacing: .04em; }
.language-switch a { color: #666; text-decoration: none; }
.language-switch a:hover, .language-switch a:focus-visible { color: black; text-decoration: underline; text-underline-offset: 4px; }
.language-switch a[aria-current="page"] { color: black; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.menu-button { display: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 28px;
  color: white;
  background: black;
  border: 1px solid black;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  transition: color 150ms ease, background 150ms ease;
}
.button:hover, .button:focus-visible { color: black; background: var(--pink); }
.button--bol { color: white; background: var(--bol); border-color: var(--bol); }
.button--bol:hover, .button--bol:focus-visible { color: white; background: #1717c8; }
.button--small { min-height: 38px; padding: 6px 18px; font-size: 14px; }
.button--ghost { color: black; background: transparent; border-color: black; }
.button--light { color: black; background: white; border-color: white; }
.button svg { width: 1em; height: 1em; }

h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -0.035em; line-height: 1.15; }
h1 { font-size: clamp(46px, 5vw, 64px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: 24px; }
.eyebrow { margin: 0 0 14px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.hero--collage { position: relative; height: min(672px, calc(100vh - 132px)); min-height: 580px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-background { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero--collage::after { position: absolute; inset: 0; content: ""; background: rgba(0,0,0,.08); }
.hero--collage .hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8vw 42px;
  color: white;
  text-align: center;
}
.hero--collage h1 { max-width: 1000px; font-size: clamp(44px, 4.85vw, 58px); font-weight: 400; line-height: 1.2; letter-spacing: -0.035em; }
.hero--collage .hero-copy > p { margin: 22px 0 26px; font-size: 16px; }
.hero--collage .hero-actions { width: min(992px, 100%); }
.hero--collage .button { width: 100%; color: black; background: white; border-color: white; font-size: 22px; }
.hero--collage .button:hover { color: white; background: var(--bol); border-color: var(--bol); }

.intro-statement { padding: 68px 0 62px; border-bottom: 1px solid var(--line); text-align: center; }
.intro-statement p { max-width: 870px; margin: 0 auto 24px; font-size: clamp(25px, 3vw, 34px); line-height: 1.25; letter-spacing: -.025em; }
.feature-marquee { overflow: hidden; padding: 28px 0; border-bottom: 1px solid var(--line); }
.feature-marquee__track { display: flex; width: max-content; align-items: center; gap: 66px; animation: marquee 24s linear infinite; }
.feature-marquee span { font-size: clamp(34px, 4vw, 50px); white-space: nowrap; }
.feature-marquee img { width: 98px; height: 98px; object-fit: cover; }
@keyframes marquee { to { transform: translateX(-33.33%); } }

.product-rail { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.product-tile { min-width: 0; padding: 32px 32px 26px; border-right: 1px solid var(--line); text-align: center; }
.product-tile:last-child { border-right: 0; }
.product-tile__image { display: grid; aspect-ratio: 1; place-items: center; padding: 32px; overflow: hidden; }
.product-tile__image--blue { background: var(--blue); }
.product-tile__image--green { background: var(--green); }
.product-tile__image--pink { background: #cb5b99; }
.product-tile__image img { width: 100%; height: 100%; object-fit: contain; }
.product-tile__details { padding-top: 26px; }
.product-tile__details h2 { min-height: 76px; margin-bottom: 18px; font-size: clamp(25px, 2.6vw, 36px); }
.product-tile__details h2 a { text-decoration: none; }

.editorial-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 720px; border-bottom: 1px solid var(--line); }
.editorial-split__image { padding: 64px 32px; }
.editorial-split__image img { width: min(100%, 550px); margin-inline: auto; }
.editorial-split__copy { padding: 64px 32px; text-align: center; }
.editorial-split__copy h2 { margin-bottom: 20px; }
.editorial-split__copy p { max-width: 590px; margin: 0 auto 28px; }
.editorial-split__copy .button { width: min(100%, 550px); }
.art-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.art-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-right: 1px solid var(--line); }
.art-strip img:last-child { border-right: 0; }

.section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.section--paper, .section--pink, .section--ink { color: black; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 64px; margin-bottom: 58px; }
.section-heading p { max-width: 600px; margin: 0; font-size: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.image-card { overflow: hidden; border: 1px solid var(--line); }
.image-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.image-card--portrait img { aspect-ratio: 4 / 5; }
.copy-block p { max-width: 58ch; }
.copy-block .button { margin-top: 20px; }
.steps, .cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.step, .card { min-height: 250px; padding: 30px; background: var(--paper); border-right: 1px solid var(--line); }
.step:last-child, .card:last-child { border-right: 0; }
.step h3, .card h3 { margin-bottom: 70px; }
.step p, .card p { margin: 0; }
.quote { text-align: center; }
.quote p { margin: 0; font-size: clamp(32px, 5vw, 60px); line-height: 1.15; }
.quote small { display: block; margin-top: 24px; }

.product-page { border-bottom: 1px solid var(--line); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; }
.product-grid > div:first-child { display: flex; min-width: 0; min-height: 650px; align-items: center; flex-direction: column; justify-content: center; padding: 64px 7vw; border-right: 1px solid var(--line); }
.gallery-main { width: min(100%, 510px); aspect-ratio: 1; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); width: min(100%, 510px); gap: 8px; margin-top: 14px; }
.gallery-thumbs button { aspect-ratio: 1; padding: 0; overflow: hidden; background: none; border: 1px solid transparent; cursor: pointer; }
.gallery-thumbs button[aria-current="true"] { border-color: black; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 54px 42px 0; }
.product-copy .eyebrow { margin-bottom: 12px; }
.product-title-line { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid black; }
.product-title-line h1 { font-size: clamp(30px, 3vw, 42px); }
.product-title-line span { font-size: 14px; font-weight: 700; text-transform: uppercase; }
.product-copy .lede { margin: 28px 0 12px; font-size: 18px; }
.feature-list { margin: 18px 0 28px; padding: 0; border-top: 1px solid #b4b4b0; list-style: none; }
.feature-list li { padding: 9px 0; border-bottom: 1px solid #b4b4b0; }
.product-checkout { margin: auto -42px 0; padding: 28px 42px; background-image: radial-gradient(black 1px, transparent 1px); background-size: 9px 9px; border-top: 1px solid black; }
.product-actions .button { width: 100%; }
.microcopy { margin: 10px 0 0; padding: 4px; background: var(--paper); text-align: center; font-size: 12px; }
.product-story { max-width: none; padding-block: 64px 78px; border-bottom: 1px solid var(--line); }
.product-story h2 { margin: 32px 0 18px; font-size: 18px; font-weight: 700; letter-spacing: 0; }
.product-story h2:first-child { margin-top: 0; }
.product-story p { max-width: 1100px; }

.page-hero { padding: 82px 0; border-bottom: 1px solid var(--line); text-align: center; }
.page-hero h1 { max-width: 920px; margin-inline: auto; }
.page-hero p { max-width: 700px; margin: 22px auto 0; font-size: 18px; }
.about-banner { height: 575px; overflow: hidden; background: #121212; border-bottom: 1px solid var(--line); }
.about-banner img { width: 100%; height: 100%; object-fit: cover; }
.story-title { padding: 68px 32px; border-bottom: 1px solid var(--line); }
.story-title h1 { font-size: clamp(46px, 5vw, 64px); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 64px 32px; border-bottom: 1px solid var(--line); }
.story-grid__image img { position: sticky; top: 30px; width: 100%; }
.story-grid__copy { font-size: 17px; }
.story-grid__copy p { max-width: 650px; margin: 0 0 26px; }
.about-social { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 32px; padding: 64px 32px; border-bottom: 1px solid var(--line); }
.about-social img { width: 100%; }
.about-social div { display: grid; gap: 12px; text-align: center; }
.about-social a { font-size: clamp(30px, 4vw, 52px); text-underline-offset: 8px; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-size: 20px; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 28px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; margin: 0; padding: 0 0 24px; }
.section--cta { padding: 0; }
.section--cta .shell { width: 100%; max-width: none; }
.final-cta { padding: 84px 32px; text-align: center; background: var(--blue); }
.final-cta h2 { max-width: 850px; margin-inline: auto; }
.final-cta p:not(.eyebrow) { max-width: 570px; margin: 20px auto 28px; }
.prose { max-width: 800px; padding-block: 56px 90px; }
.prose h2 { margin: 42px 0 14px; font-size: 30px; }
.prose-note { padding: 20px; background: var(--yellow); border: 1px solid black; }

.site-footer { background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; }
.footer-cell { min-height: 230px; padding: 38px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.footer-cell:nth-child(even) { border-right: 0; }
.footer-title { margin: 0 0 24px; font-size: 30px; }
.footer-shop p:not(.footer-title) { max-width: 520px; margin: 0 auto 22px; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-social { display: flex; align-items: center; flex-direction: column; justify-content: center; }
.instagram-link { font-size: 24px; text-underline-offset: 6px; }
.copyright { margin: 30px 0 0; font-size: 13px; }
.mobile-buy { display: none; }

.has-reveal [data-reveal], .has-reveal [data-reveal][data-visible] { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 78px; }
  .nav { padding-inline: 16px; }
  .brand { font-size: 24px; }
  .nav-actions { gap: 10px; }
  .nav-cta .button { min-height: 36px; padding: 6px 12px; font-size: 12px; }
  .menu-button { grid-column: 1; grid-row: 1; display: block; width: 42px; height: 42px; padding: 0; background: transparent; border: 0; }
  .menu-button span, .menu-button::before, .menu-button::after { display: block; width: 22px; height: 1px; margin: 5px auto; content: ""; background: black; }
  .nav-links { position: absolute; top: 78px; right: 0; left: 0; z-index: 20; display: none; align-items: stretch; padding: 18px; background: var(--paper); border-bottom: 1px solid black; }
  .nav-links[data-open] { display: grid; gap: 0; }
  .nav-links a, .nav-links .nav-more, .nav-links a:last-child { display: flex; padding: 13px 5px; border-bottom: 1px solid #bbb; }
  .hero--collage { height: 640px; min-height: 0; }
  .hero-background { object-position: center; }
  .hero--collage .hero-copy { padding-inline: 20px; }
  .hero--collage h1 { font-size: clamp(36px, 7.5vw, 52px); }
  .product-rail { grid-template-columns: 1fr; }
  .product-tile { border-right: 0; border-bottom: 1px solid black; }
  .product-tile:last-child { border-bottom: 0; }
  .product-tile__details h2 { min-height: 0; }
  .editorial-split, .product-grid, .story-grid, .split, .section-heading { grid-template-columns: 1fr; }
  .editorial-split__copy { padding-top: 20px; padding-bottom: 70px; }
  .art-strip { overflow-x: auto; grid-template-columns: repeat(3, 82vw); }
  .product-grid > div:first-child { min-height: auto; padding: 36px 22px; border-right: 0; border-bottom: 1px solid black; }
  .product-copy { padding: 40px 24px 0; }
  .product-checkout { margin: 26px -24px 0; padding: 24px; }
  .steps, .cards { grid-template-columns: 1fr; }
  .step, .card { min-height: 190px; border-right: 0; border-bottom: 1px solid black; }
  .step:last-child, .card:last-child { border-bottom: 0; }
  .step h3, .card h3 { margin-bottom: 40px; }
  .about-banner { height: 430px; }
  .story-grid { padding: 34px 20px; }
  .story-grid__image img { position: static; }
  .about-social { grid-template-columns: 1fr; padding: 34px 20px; }
}

@media (max-width: 560px) {
  .announcement { font-size: 12px; }
  .nav-cta { display: none; }
  .nav { grid-template-columns: 1fr auto 1fr; }
  .hero--collage { height: 570px; }
  .hero--collage h1 { font-size: 36px; line-height: 1.12; }
  .hero--collage .hero-copy > p { margin-block: 16px 22px; }
  .hero--collage .button { font-size: 18px; }
  .intro-statement { padding: 50px 0; }
  .intro-statement p { font-size: 25px; }
  .feature-marquee { padding: 18px 0; }
  .feature-marquee__track { gap: 32px; }
  .feature-marquee img { width: 65px; height: 65px; }
  .product-tile { padding: 20px 20px 26px; }
  .product-tile__image { padding: 20px; }
  .editorial-split { min-height: 0; }
  .editorial-split__image { padding: 36px 20px; }
  .section { padding: 62px 0; }
  .section-heading { gap: 18px; margin-bottom: 38px; }
  .about-banner { height: 310px; }
  .story-title { padding: 44px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cell, .footer-cell:nth-child(even) { min-height: 0; border-right: 0; }
  .mobile-buy { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 30; display: block; }
  .mobile-buy .button { width: 100%; box-shadow: 0 5px 24px rgba(0,0,0,.24); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
