@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("assets/fonts/Nohemi-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #090a0a;
  --paper: #f1f3f0;
  --white: #ffffff;
  --muted: #666b68;
  --line: #b8bbb8;
  --red: #a72e24;
  --green: #159b37;
  --header-height: 108px;
  --page: min(1560px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-enter: 680ms;
  --motion-reveal: 760ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nohemi", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button,
a {
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
  line-height: 1;
}

h1,
h2 {
  text-wrap: balance;
}

:focus-visible {
  outline: 2px solid rgba(10, 10, 10, 0.45);
  outline-offset: 3px;
}

/* Calm, minimal form focus treatment */
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible,
.discount-input input:focus-visible,
.cart-note textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.18);
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.discount-input input:focus,
.cart-note textarea:focus {
  background: rgba(0, 0, 0, 0.018);
}

.remember-info input:focus-visible {
  outline: 2px solid rgba(10, 10, 10, 0.35);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Page motion: the lead composition establishes the new page, while later
   sections reveal only when they reach the viewport. */
#app.page-entering > :first-child {
  transform-origin: 50% 12%;
  animation: page-pop-in var(--motion-enter) var(--ease) both;
}

#app.page-entering > :first-child > * {
  animation: page-detail-in 620ms var(--ease) both;
}

#app.page-entering > :first-child > :nth-child(1) {
  animation-delay: 70ms;
}

#app.page-entering > :first-child > :nth-child(2) {
  animation-delay: 140ms;
}

#app.page-entering > :first-child > :nth-child(3) {
  animation-delay: 200ms;
}

#app.page-entering > :first-child > :nth-child(n + 4) {
  animation-delay: 250ms;
}

.reveal-section {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.992);
  transform-origin: 50% 12%;
  will-change: opacity, transform;
}

.reveal-section.is-revealed {
  animation: section-pop-in var(--motion-reveal) var(--ease) var(--reveal-delay, 0ms) both;
}

@keyframes page-pop-in {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes page-detail-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes section-pop-in {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.announcement {
  position: relative;
  z-index: 50;
  overflow: hidden;
  padding: 14px 0 13px;
  color: var(--white);
  background: var(--ink);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.announcement__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.announcement__track span {
  padding-right: 5rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* The full multilingual message fits comfortably on desktop. */
@media (min-width: 1200px) {
  .announcement {
    display: grid;
    min-height: 46px;
    padding: 0 clamp(2rem, 4vw, 5rem);
    place-items: center;
    font-size: clamp(0.82rem, 0.75vw, 0.95rem);
  }

  .announcement__track {
    justify-content: center;
    width: 100%;
    animation: none;
    transform: none;
  }

  .announcement__track span {
    padding-right: 0;
    text-align: center;
  }

  .announcement__track span[aria-hidden="true"] {
    display: none;
  }
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(32px, calc((100vw - 1560px) / 2));
  border-bottom: 1px solid rgba(9, 10, 10, 0.12);
  background: rgba(241, 243, 240, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  width: 122px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4.8rem);
}

.main-nav a {
  position: relative;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 570;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.icon-button svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button {
  position: relative;
  justify-self: end;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: -1px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.section {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 15px 25px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-weight: 650;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.button:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

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

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

.button--secondary {
  color: var(--ink);
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: min(72vh, 810px);
  overflow: hidden;
  background: #1c1c1c;
}

.hero > img {
  width: 100%;
  height: min(72vh, 810px);
  object-fit: cover;
}

.hero__action {
  position: absolute;
  right: clamp(20px, 4vw, 70px);
  bottom: clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
}

.hero__action > span {
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-intro {
  padding-block: clamp(96px, 10vw, 180px);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto clamp(50px, 6vw, 86px);
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 7vw, 7.5rem);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 3rem;
  text-align: left;
}

.section-heading--split h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

.section-heading--split > p:last-child {
  max-width: 520px;
  margin: 0;
}

.product-grid {
  display: grid;
  gap: clamp(28px, 3vw, 56px) clamp(20px, 2.8vw, 48px);
}

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

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

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d9d7;
  isolation: isolate;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease, transform 700ms var(--ease), filter 700ms var(--ease);
}

.product-card__image.is-active {
  opacity: 1;
}

.product-card__media:hover .product-card__image {
  filter: contrast(1.05);
  transform: scale(1.025);
}

.product-card__counter {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 9px 6px;
  color: var(--white);
  background: rgba(9, 10, 10, 0.82);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.product-card__view {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 13px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 650;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 250ms ease, transform 350ms var(--ease);
}

.product-card__media:hover .product-card__view,
.product-card__media:focus-visible .product-card__view {
  opacity: 1;
  transform: translateY(0);
}

.hot-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--red);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-top: 20px;
}

.product-card__meta h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.8rem, 2.7vw, 3.35rem);
}

.product-card__meta h3 a {
  text-decoration: none;
}

.product-card__meta > div > p:not(.eyebrow) {
  max-width: 32ch;
  margin-bottom: 0;
  color: var(--muted);
}

.price {
  margin: 1.6rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  white-space: nowrap;
}

.price strong {
  margin-right: 0.45rem;
}

.price s,
.product-price s {
  color: var(--muted);
  font-weight: 400;
}

.swatches {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}

.swatch {
  width: 17px;
  height: 17px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.swatch--white { background: var(--white); }
.swatch--black { background: var(--ink); }

.section-link {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(60px, 7vw, 110px);
}

.section-link a {
  font-size: clamp(1.5rem, 2.5vw, 3.25rem);
  font-weight: 650;
  letter-spacing: 0;
}

.material-feature {
  position: relative;
  min-height: min(76vh, 900px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.material-feature__media {
  position: absolute;
  inset: 0;
}

.material-feature__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.27) 62%, rgba(0, 0, 0, 0.38) 100%);
  content: "";
}

.material-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.7);
}

.material-feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(850px, 80%);
  min-height: min(76vh, 900px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 7vw, 110px);
}

.material-feature__content .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.material-feature__content h2 {
  margin-bottom: 2.7rem;
  font-size: clamp(3rem, 6.3vw, 7rem);
  font-weight: 500;
}

.material-feature__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.material-feature__specs span:not(:last-child)::after {
  margin-left: 2rem;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

.reviews-section {
  padding-block: clamp(110px, 12vw, 210px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-grid blockquote {
  min-height: 270px;
  margin: 0;
  padding: clamp(25px, 4vw, 55px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-grid blockquote p {
  margin-bottom: 3rem;
  font-size: clamp(1.5rem, 2.4vw, 2.9rem);
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1.08;
}

.review-grid footer {
  color: var(--muted);
  font-size: 0.8rem;
}

.closing-ticker {
  overflow: hidden;
  padding: 22px 0;
  color: var(--white);
  background: var(--red);
  font-size: clamp(2.5rem, 7vw, 8rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.8;
  white-space: nowrap;
}

.closing-ticker span {
  display: inline-block;
  animation: closing-marquee 24s linear infinite;
}

@keyframes closing-marquee {
  to { transform: translateX(-50%); }
}

.site-footer {
  padding: clamp(70px, 9vw, 140px) max(32px, calc((100vw - 1560px) / 2)) 30px;
  color: var(--white);
  background: var(--ink);
}

.site-footer__lead h2 {
  max-width: 1000px;
  margin-bottom: clamp(70px, 12vw, 190px);
  font-size: clamp(3.3rem, 8vw, 9.5rem);
}

.site-footer .eyebrow,
.site-footer p {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__links {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-left: auto;
  padding-bottom: 90px;
}

.site-footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer__links p {
  margin: 0;
}

.site-footer__links a {
  color: var(--white);
}

.site-footer__links .footer-heading {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 650;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__bottom img {
  width: 115px;
  filter: invert(1);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
}

/* Shop */
.shop-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
  padding-block: clamp(110px, 13vw, 230px) clamp(75px, 10vw, 160px);
}

.shop-hero h1 {
  margin-bottom: 0;
  font-size: clamp(4.5rem, 11vw, 13rem);
}

.shop-hero > p {
  max-width: 520px;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.shop-section {
  padding-bottom: clamp(130px, 15vw, 250px);
}

.shop-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.shop-toolbar h2,
.shop-toolbar p {
  margin: 0;
}

.shop-toolbar h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.shop-toolbar h2 span,
.shop-toolbar p {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Story */
.story-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 150px);
  padding-block: clamp(90px, 12vw, 200px);
}

.story-hero__image {
  position: relative;
}

.story-hero__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.story-hero__image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
}

.story-hero__copy h1 {
  margin-bottom: 3rem;
  font-size: clamp(3.6rem, 7vw, 8.7rem);
}

.story-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1.12rem, 1.85vw, 1.7rem);
}

.story-hero__copy .story-emphasis {
  margin-top: 2.8rem;
  font-weight: 720;
}

.seekers-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}

.seekers-mark,
.seekers-copy {
  display: flex;
  align-items: center;
  padding: clamp(40px, 7vw, 110px);
}

.seekers-mark {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.seekers-mark img {
  width: 100%;
  filter: invert(1);
}

.seekers-copy {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.seekers-copy .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

.seekers-copy h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(3.2rem, 6vw, 7rem);
}

.seekers-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.story-manifesto {
  padding-block: clamp(130px, 17vw, 280px);
  text-align: center;
}

.story-manifesto h2 {
  max-width: 1300px;
  margin: 0 auto 4rem;
  font-size: clamp(3rem, 6.4vw, 7.5rem);
}

/* Contact */
.contact-page {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 170px);
  padding-block: clamp(90px, 12vw, 190px);
}

.contact-intro h1 {
  margin-bottom: 2.5rem;
  font-size: clamp(4rem, 8vw, 10rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-details p {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin: 0;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid var(--ink);
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.discount-field > span:first-child {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select,
.discount-input input {
  width: 100%;
  min-height: 58px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.field textarea {
  resize: vertical;
}

/* Product */
.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(50px, 7vw, 120px);
  padding-block: clamp(60px, 8vw, 130px);
}

.product-gallery__main {
  position: relative;
  overflow: hidden;
  background: #d6d7d5;
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-index {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-gallery__thumbs button {
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--ink);
}

.product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-purchase {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
  padding-top: 28px;
}

.product-purchase h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(4rem, 8.5vw, 9rem);
  text-transform: uppercase;
}

.product-subtitle {
  margin-bottom: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-meaning {
  max-width: 550px;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-block: 2.6rem 3.5rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.product-price strong {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.variant-group {
  margin: 0;
  padding: 23px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.variant-group legend {
  float: left;
  width: 100%;
  margin-bottom: 18px;
  font-weight: 650;
}

.variant-group legend span {
  margin-left: 0.5rem;
  color: var(--muted);
  font-weight: 400;
}

.color-options,
.size-options {
  display: flex;
  clear: both;
  gap: 12px;
}

.color-option {
  width: 54px;
  height: 54px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--paper), 0 0 0 0 var(--ink);
  transition: box-shadow 180ms ease;
}

.color-option--black { background: var(--ink); }
.color-option--white { background: var(--white); }
.color-option.is-active { box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--ink); }

.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.size-options button {
  min-height: 50px;
  border: 1px solid var(--line);
  background: transparent;
}

.size-options button:hover,
.size-options button.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.stock {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  color: var(--green);
  font-weight: 650;
}

.stock span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(21, 155, 55, 0.15);
}

.purchase-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.purchase-actions .button {
  width: 100%;
}

.microcopy {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.product-details {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 9vw, 150px);
  padding-block: clamp(100px, 14vw, 220px);
  border-top: 1px solid var(--line);
}

.size-guide .section-heading {
  margin-bottom: 35px;
}

.size-guide .section-heading--split {
  grid-template-columns: 1fr 0.8fr;
}

.size-guide .section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.8rem);
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child {
  text-align: left;
}

thead th {
  border-bottom-color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

tbody th {
  font-size: 0.86rem;
  font-weight: 600;
}

.assurances {
  align-self: center;
}

.assurances h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

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

.assurances li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.assurances li span {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Cart */
.cart-drawer {
  width: min(760px, 100vw);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: var(--paper);
}

.cart-drawer[open] {
  transform-origin: 100% 50%;
  animation: cart-pop-in 520ms var(--ease) both;
}

.cart-drawer::backdrop {
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(3px);
}

.cart-drawer[open]::backdrop {
  animation: backdrop-fade-in 320ms ease-out both;
}

@keyframes cart-pop-in {
  from {
    opacity: 0;
    transform: translate3d(42px, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes backdrop-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cart-drawer__header {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 55px);
  border-bottom: 1px solid var(--line);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  text-transform: uppercase;
}

.close-button svg {
  width: 28px;
}

.cart-drawer__content {
  display: flex;
  height: calc(100dvh - 120px);
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 55px);
}

.cart-empty {
  display: grid;
  flex: 1;
  place-items: center;
  align-content: center;
  text-align: center;
}

.cart-empty__index {
  margin-bottom: 2rem;
  color: var(--line);
  font-size: clamp(7rem, 24vw, 15rem);
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 0.75;
}

.cart-empty h3 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 7vw, 5rem);
  text-transform: uppercase;
}

.cart-empty > p:not(.cart-empty__index) {
  max-width: 390px;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.cart-items {
  display: grid;
  gap: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  gap: 22px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.cart-item > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cart-item__details h3 {
  margin-bottom: 0.4rem;
  font-size: 2rem;
}

.cart-item__details > p:not(.eyebrow) {
  color: var(--muted);
}

.cart-item__price {
  font-weight: 700;
  white-space: nowrap;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: repeat(3, 34px);
  align-items: center;
  margin-top: 12px;
  border: 1px solid var(--line);
}

.quantity-control button {
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
}

.quantity-control span {
  text-align: center;
}

.text-button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.cart-note label {
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
}

.cart-note textarea {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  resize: vertical;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 45px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 720;
  letter-spacing: 0;
}

.cart-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
}

/* Checkout */
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(60px, 9vw, 150px);
  padding-block: clamp(70px, 9vw, 150px);
}

.checkout-form {
  display: grid;
  gap: 50px;
}

.checkout-heading h1 {
  margin-bottom: 0;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.checkout-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-form legend {
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ink);
  font-size: 1.65rem;
  font-weight: 650;
}

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

.field--full {
  grid-column: 1 / -1;
}

.payment-choice {
  display: flex;
  gap: 16px;
  padding: 25px;
  border: 1px solid var(--ink);
}

.payment-choice > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
}

.payment-choice p {
  margin: 4px 0 0;
  color: var(--muted);
}

.checkout-submit {
  width: 100%;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  align-self: start;
  padding: clamp(28px, 4vw, 55px);
  color: var(--white);
  background: var(--ink);
}

.order-summary .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.order-summary > h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.order-summary__items {
  display: grid;
  gap: 20px;
}

.summary-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.summary-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
}

.summary-item div {
  display: grid;
  gap: 4px;
}

.summary-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.discount-field {
  display: grid;
  gap: 12px;
  margin-block: 45px;
  color: var(--white);
}

.discount-input {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.discount-input input {
  color: var(--white);
  border: 0;
}

.discount-input button {
  border: 0;
  color: var(--white);
  background: transparent;
}

.totals {
  margin: 0;
}

.totals > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.totals dd {
  margin: 0;
}

.totals__grand {
  margin-top: 22px;
  padding-top: 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.5rem;
  font-weight: 720;
}

.empty-checkout,
.order-success {
  display: flex;
  min-height: calc(100vh - var(--header-height) - 45px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 80px;
}

.empty-checkout h1,
.order-success h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 10vw, 11rem);
}

.empty-checkout > p:not(.eyebrow),
.order-success > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.order-success {
  align-items: center;
  text-align: center;
}

.success-check {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 2.5rem;
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100vw - 44px));
  padding: 16px 20px;
  color: var(--white);
  background: var(--ink);
  font-weight: 620;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 300ms var(--ease);
}

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

@media (max-width: 1050px) {
  :root {
    --page: calc(100vw - 40px);
  }

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

  .product-grid--three .product-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
  }

  .shop-hero,
  .story-hero,
  .contact-page,
  .product-page,
  .checkout-page,
  .product-details {
    gap: 45px;
  }

  .product-page {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .product-purchase h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
  }

  .seekers-section {
    grid-template-columns: 1fr;
  }

  .seekers-mark {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .seekers-mark img {
    width: min(560px, 80%);
    margin: auto;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 78px;
    --page: calc(100vw - 32px);
  }

  .announcement {
    padding-block: 10px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 16px;
    backdrop-filter: none;
  }

  .brand {
    width: 92px;
  }

  .menu-toggle {
    display: grid;
    order: -1;
  }

  .menu-toggle svg {
    width: 25px;
  }

  .main-nav {
    position: fixed;
    z-index: 45;
    top: var(--mobile-nav-top, calc(78px + 36px));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 50px 25px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 300ms var(--ease), visibility 220ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(2.4rem, 11vw, 4rem);
    font-weight: 650;
    letter-spacing: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero,
  .hero > img {
    min-height: 62vh;
    height: 62vh;
  }

  .hero > img {
    object-position: center;
  }

  .hero__action {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .hero__action > span {
    display: none;
  }

  .hero__action .button {
    width: 100%;
  }

  .section-heading--split,
  .shop-hero,
  .story-hero,
  .contact-page,
  .product-page,
  .checkout-page,
  .product-details {
    grid-template-columns: 1fr;
  }

  .product-grid--three,
  .product-grid--shop {
    grid-template-columns: 1fr;
  }

  .product-grid--three .product-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .product-card__meta {
    grid-template-columns: 1fr;
  }

  .price {
    margin-top: 0;
  }

  .material-feature {
    width: 100%;
  }

  .material-feature__content {
    width: 100%;
    min-height: 680px;
    justify-content: flex-end;
    padding: 30px 20px 42px;
  }

  .material-feature__content h2 {
    font-size: clamp(2.9rem, 13vw, 5rem);
  }

  .material-feature__specs span::after {
    display: none;
  }

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

  .site-footer__links {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

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

  .shop-hero {
    gap: 2.5rem;
  }

  .shop-hero > p {
    max-width: none;
  }

  .story-hero__image {
    width: min(100%, 520px);
  }

  .seekers-copy,
  .seekers-mark {
    padding: 55px 24px;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .product-purchase,
  .order-summary {
    position: static;
  }

  .product-details {
    padding-block: 100px;
  }

  .product-details .size-guide {
    overflow: hidden;
  }

  .cart-drawer {
    width: 100vw;
  }

  .checkout-page {
    padding-block: 55px 100px;
  }

  .order-summary {
    order: -1;
  }

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

  .field--full {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .hero,
  .hero > img {
    min-height: 500px;
    height: 500px;
  }

  .hero > img {
    object-position: 54% center;
  }

  .collection-intro,
  .reviews-section {
    padding-block: 85px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .product-card__meta h3 {
    font-size: 2.2rem;
  }

  .shop-hero h1,
  .contact-intro h1,
  .story-hero__copy h1,
  .empty-checkout h1,
  .order-success h1 {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

  .product-purchase h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .product-subtitle {
    font-size: 1.55rem;
  }

  .size-options {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    overflow-x: auto;
  }

  .purchase-actions,
  .cart-actions {
    grid-template-columns: 1fr;
  }

  .cart-drawer__header {
    min-height: 100px;
  }

  .cart-drawer__content {
    height: calc(100dvh - 100px);
    padding: 24px 18px;
  }

  .cart-item {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
  }

  .cart-item__price {
    grid-column: 2;
  }

  .summary-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .summary-item img {
    width: 64px;
    height: 82px;
  }

  .summary-item > strong:last-child {
    grid-column: 2;
  }

  .order-summary {
    margin-inline: -16px;
    padding: 30px 18px;
  }

  .contact-details p {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-section.is-revealed {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.remember-info {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 1rem 0 1.25rem;
  font-size: .92rem;
  cursor: pointer;
}
.remember-info input {
  width: 1rem;
  height: 1rem;
  accent-color: #000;
}
