﻿:root {
  --ink: #1a1714;
  --ink-soft: #3d3832;
  --mist: #e8e2d8;
  --stone: #c4b8a8;
  --champagne: #f3eee6;
  --gold: #9a8460;
  --gold-soft: rgba(154, 132, 96, 0.35);
  --header-h: 5.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--champagne);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
}

.collection__image,
.about-story__image,
.about-hero__video,
.promo__media img,
.brand-card__image,
.product-modal__image,
.cart-item__image,
.brand-hero__video,
.product__image,
.reel__image {
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ——— Header ——— */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  mix-blend-mode: difference;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__links--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex-wrap: wrap;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0ebe3;
}

.nav__links a .letter {
  opacity: 0.72;
  transition: opacity 0.35s var(--ease);
}

.nav__links a:hover .letter {
  opacity: 1;
}

.nav__brand {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav__logo {
  width: 3.25rem;
  height: auto;
  display: block;
  filter: invert(1) brightness(1.05);
  transition: transform 0.5s var(--ease);
}

.nav__brand:hover .nav__logo {
  transform: scale(1.04);
}

.nav__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.nav__burger {
  display: none;
  position: relative;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
}

.nav__burger-line {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: #f0ebe3;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
}

body.nav-open .nav__burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .nav__burger-line:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav__burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  color: #f0ebe3;
  opacity: 0.78;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.nav__icon:hover,
.nav__icon[aria-current="page"] {
  opacity: 1;
}

.nav__icon:hover {
  transform: translateY(-0.08rem);
}

.nav__icon svg {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
}

/* ——— Search ——— */

.search {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 120;
  display: grid;
  justify-items: center;
  padding: 0 1.25rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s;
}

.search.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search__panel {
  width: min(100%, 36rem);
  padding: 1.25rem 1.25rem 0.85rem;
  background: rgba(18, 16, 14, 0.94);
  border: 1px solid rgba(243, 238, 230, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.search__label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.search__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search__input {
  flex: 1;
  min-width: 0;
  height: 2.75rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(232, 226, 216, 0.22);
  background: transparent;
  color: var(--champagne);
  font-family: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration,
.search__input::-webkit-search-results-button,
.search__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search__input::placeholder {
  color: rgba(232, 226, 216, 0.4);
}

.search__input:focus {
  border-color: rgba(154, 132, 96, 0.7);
}

.search__close {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(232, 226, 216, 0.22);
  background: transparent;
  color: var(--champagne);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.search__close:hover {
  border-color: rgba(232, 226, 216, 0.5);
  color: #fff;
}

.search__results {
  margin-top: 0.75rem;
  max-height: min(50vh, 22rem);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search__results::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.search__results.has-items {
  border-top: 1px solid rgba(232, 226, 216, 0.1);
  padding-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.search__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid rgba(232, 226, 216, 0.08);
  transition: padding-left 0.35s var(--ease);
}

.search__item:hover {
  padding-left: 0.55rem;
}

.search__item-type {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.search__item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--champagne);
}

.search__item-meta {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.5);
}

.search__empty {
  padding: 1rem 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 216, 0.5);
}

/* ——— Auth ——— */

.auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 4rem;
  background:
    radial-gradient(ellipse 60% 45% at 70% 20%, rgba(154, 132, 96, 0.16), transparent 55%),
    linear-gradient(165deg, #2a2520 0%, #1a1714 48%, #12100e 100%);
}

.auth__panel {
  width: min(100%, 26rem);
  padding: 2.5rem 2rem;
  background: rgba(243, 238, 230, 0.96);
  color: var(--ink);
}

.auth__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.auth__title {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.auth__text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.auth__form {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
}

.auth__field {
  display: grid;
  gap: 0.45rem;
}

.auth__field-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
}

.auth__input {
  width: 100%;
  height: 2.85rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(26, 23, 20, 0.16);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.auth__input::placeholder {
  color: rgba(61, 56, 50, 0.35);
}

.auth__password {
  position: relative;
  display: flex;
  align-items: center;
}

.auth__password .auth__input {
  padding-right: 5.5rem;
}

.auth__toggle {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  height: 2rem;
  padding: 0 0.65rem;
  border: none;
  background: transparent;
  color: rgba(61, 56, 50, 0.55);
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.auth__toggle:hover {
  color: var(--ink);
}

.auth__message {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.auth__message.is-error {
  color: #8a3a32;
}

.auth__message.is-success {
  color: #3f6b4a;
}

.auth__submit {
  width: 100%;
  margin-top: 0.35rem;
  cursor: pointer;
  border: none;
}

.auth__submit.btn--dark {
  margin-top: 0.35rem;
}

.auth__switch {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.auth__switch a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.3s var(--ease);
}

.auth__switch a:hover {
  color: var(--gold);
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: start;
  overflow: hidden;
  isolation: isolate;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      105deg,
      rgba(12, 10, 9, 0.62) 0%,
      rgba(12, 10, 9, 0.35) 42%,
      rgba(12, 10, 9, 0.18) 100%
    ),
    url("../assets/images/hero.png") center right / cover no-repeat;
  background-color: #12100e;
}

.hero__atmosphere::before {
  display: none;
}

.hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: min(36rem, 100%);
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  color: var(--mist);
}

.hero__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--champagne);
}

.hero__title {
  margin-top: 1.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--stone);
}

.hero__text {
  margin-top: 0.85rem;
  width: min(28rem, 100%);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: rgba(232, 226, 216, 0.62);
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  width: min(100%, 28rem);
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn--primary {
  background: var(--champagne);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--mist);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(232, 226, 216, 0.28);
  color: var(--mist);
}

.btn--ghost:hover {
  border-color: rgba(232, 226, 216, 0.55);
  color: var(--champagne);
}

.btn--dark {
  width: auto;
  margin-top: 2.75rem;
  padding-inline: 1.75rem;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--champagne);
}

.btn--dark:hover {
  background: #2a2520;
  border-color: #2a2520;
}

.btn--reveal.btn--primary {
  animation: btn-primary-in 0.7s var(--ease) backwards;
  animation-delay: calc(var(--btn-i, 0) * 28ms + 120ms);
}

.btn--reveal.btn--ghost {
  animation: btn-ghost-in 0.7s var(--ease) backwards;
  animation-delay: calc(var(--btn-i, 0) * 28ms + 120ms);
}

.btn--reveal.btn--dark {
  animation: btn-dark-in 0.7s var(--ease) backwards;
  animation-delay: calc(var(--btn-i, 0) * 28ms + 120ms);
}

@keyframes btn-primary-in {
  from {
    background-color: transparent;
    border-color: transparent;
  }
  to {
    background-color: var(--champagne);
    border-color: transparent;
  }
}

@keyframes btn-ghost-in {
  from {
    background-color: transparent;
    border-color: transparent;
  }
  to {
    background-color: transparent;
    border-color: rgba(232, 226, 216, 0.28);
  }
}

@keyframes btn-dark-in {
  from {
    background-color: transparent;
    border-color: transparent;
  }
  to {
    background-color: var(--ink);
    border-color: var(--ink);
  }
}

/* ——— Fragrance reel ——— */

.reel {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(154, 132, 96, 0.12), transparent 55%),
    linear-gradient(180deg, #12100e 0%, #1a1714 55%, #2a2520 100%);
  overflow: hidden;
  color: var(--mist);
}

.reel__intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2.75rem;
}

.reel__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.reel__title {
  margin-top: 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--champagne);
}

.reel__text {
  margin-top: 0.85rem;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.58);
}

.reel__viewport {
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.reel__track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  padding: 0.5rem 2rem 1rem;
  animation: reel-scroll 42s linear infinite;
  will-change: transform;
}

.reel__viewport:hover .reel__track {
  animation-play-state: paused;
}

.reel__slide {
  flex: 0 0 auto;
  width: min(72vw, 16.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  color: inherit;
  transition: transform 0.45s var(--ease);
}

.reel__slide:hover {
  transform: translateY(-0.35rem);
}

.reel__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #0c0b0a;
}

.reel__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.reel__slide:hover .reel__image {
  transform: scale(1.04);
}

.reel__info {
  display: grid;
  gap: 0.3rem;
  padding: 0 0.15rem;
}

.reel__brand {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.reel__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--champagne);
}

.reel__notes {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 216, 0.5);
}

@keyframes reel-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 0.625rem), 0, 0);
  }
}

/* ——— Promo banners ——— */

.promos {
  position: relative;
  padding: 0;
  background: #12100e;
  overflow: hidden;
}

.promos__inner {
  position: relative;
  max-width: none;
  margin: 0;
  display: block;
  height: min(72vh, 36rem);
  min-height: 22rem;
}

.promo {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: var(--champagne);
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 0.9s var(--ease),
    visibility 0.9s var(--ease),
    transform 1.1s var(--ease);
}

.promo.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 1;
}

.promo__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 45% at 70% 40%, rgba(154, 132, 96, 0.22), transparent 55%),
    linear-gradient(165deg, #2a2520 0%, #1a1714 48%, #12100e 100%);
}

.promo__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s linear;
}

.promo__media img[src=""],
.promo__media img:not([src]) {
  display: none;
}

.promo.is-active .promo__media img {
  transform: scale(1.06);
}

.promo__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 10, 9, 0.72) 0%,
    rgba(12, 10, 9, 0.35) 48%,
    rgba(12, 10, 9, 0.2) 100%
  );
}

.promo--warm .promo__media::after,
.promo--soft .promo__media::after {
  background: linear-gradient(
    105deg,
    rgba(12, 10, 9, 0.72) 0%,
    rgba(12, 10, 9, 0.35) 48%,
    rgba(12, 10, 9, 0.2) 100%
  );
}

.promo__body {
  display: grid;
  gap: 0.55rem;
  align-content: end;
  justify-items: start;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 36rem;
}

.promo__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.promo__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--champagne);
}

.promo__text {
  max-width: 28ch;
  font-size: 0.95rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.68);
}

.promos__dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.promos__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 1px solid rgba(232, 226, 216, 0.45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.promos__dot.is-active {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: scale(1.15);
}

/* ——— Collection ——— */

.collection {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(154, 132, 96, 0.12), transparent 55%),
    linear-gradient(180deg, #ebe4d8 0%, var(--champagne) 45%, #e7e0d4 100%);
  overflow: hidden;
}

.collection__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: min(92vh, 52rem);
  max-width: 1200px;
  margin: 0 auto;
}

.collection__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 28rem;
  overflow: hidden;
  background: #12100e;
}

.collection__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.collection__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 2rem;
}

.collection__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.collection__title {
  margin-top: 1rem;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.collection__text {
  margin-top: 1.25rem;
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.collection__list {
  margin-top: 2.75rem;
  max-width: 26rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.collection__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
  transition: padding-left 0.45s var(--ease);
}

.collection__item:hover {
  padding-left: 0.65rem;
}

.collection__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.collection__meta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
  text-align: right;
}

.collection__item:hover .collection__meta {
  color: var(--gold);
}

/* ——— About ——— */

.about-hero {
  display: grid;
  place-items: center;
  min-height: min(72vh, 36rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 50% at 40% 45%, rgba(154, 132, 96, 0.22), transparent 55%),
    linear-gradient(165deg, #2a2520 0%, #1a1714 45%, #12100e 100%);
}

.about-hero__content {
  text-align: center;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 3.5rem;
  max-width: 36rem;
  color: var(--mist);
}

.about-hero__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--champagne);
}

.about-hero__title {
  margin-top: 1.1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.about-hero__text {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 216, 0.62);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(88vh, 44rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--champagne);
}

.about-story__media {
  position: relative;
  min-height: 22rem;
  align-self: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--champagne);
}

.about-story__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  display: block;
}

.about-story__content {
  display: grid;
  align-content: center;
  gap: 0;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 34rem;
}

.about-story__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-story__title {
  margin-top: 1rem;
  max-width: 16ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.about-story__copy {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.15rem;
  max-width: 38ch;
}

.about-story__copy p {
  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.about-values {
  background: linear-gradient(180deg, #ebe4d8 0%, var(--champagne) 100%);
  border-top: 1px solid rgba(26, 23, 20, 0.08);
}

.about-values__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

.about-values__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.about-values__list {
  margin-top: 2rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.about-values__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem 2rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.about-values__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.about-values__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* ——— Cart ——— */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cart-hero {
  padding: calc(var(--header-h) + 3rem) 1.5rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 65% 50% at 40% 45%, rgba(154, 132, 96, 0.18), transparent 55%),
    linear-gradient(165deg, #2a2520 0%, #1a1714 45%, #12100e 100%);
  color: var(--mist);
}

.cart-hero__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.cart-hero__title {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--champagne);
}

.cart-hero__text {
  margin: 0.85rem auto 0;
  max-width: 28ch;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.58);
}

.cart {
  padding: 3.5rem 1.5rem 5rem;
  background: var(--champagne);
}

.cart__empty[hidden],
.cart__layout[hidden],
.cart__summary[hidden] {
  display: none !important;
}

.cart__empty {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.cart__empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--ink);
}

.cart__empty-text {
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.cart__layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.7fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.cart__toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.cart__toolbar-count {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.cart__clear {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.cart__clear:hover {
  color: var(--ink);
}

.cart__list {
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.cart-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto auto;
  grid-template-areas:
    "media info qty price"
    "media info remove remove";
  gap: 0.65rem 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.cart-item__media {
  grid-area: media;
  display: block;
  width: 5.5rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1714;
}

.cart-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(154, 132, 96, 0.25), transparent 60%),
    #1a1714;
}

.cart-item__info {
  grid-area: info;
  min-width: 0;
}

.cart-item__brand {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.cart-item__name {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.cart-item__name:hover {
  color: var(--gold);
}

.cart-item__meta {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.cart-item__qty {
  grid-area: qty;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cart-item__qty-btn {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(26, 23, 20, 0.18);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.cart-item__qty-btn:hover {
  border-color: var(--ink);
  background: rgba(26, 23, 20, 0.04);
}

.cart-item__qty-value,
.cart-item__qty-input {
  min-width: 2.25rem;
  width: 2.5rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-family: inherit;
  border: none;
  background: transparent;
  padding: 0.2rem 0;
  -moz-appearance: textfield;
}

.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__qty-input:focus {
  outline: none;
  box-shadow: inset 0 -1px 0 var(--gold);
}

.cart-item__price {
  grid-area: price;
  display: grid;
  justify-items: end;
  gap: 0.2rem;
}

.cart-item__price-current {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}

.cart-item__price-old {
  font-size: 0.78rem;
  color: rgba(61, 56, 50, 0.45);
  text-decoration: line-through;
}

.cart-item__remove {
  grid-area: remove;
  justify-self: end;
  border: none;
  background: none;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.cart-item__remove:hover {
  color: var(--ink);
}

.cart__summary {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
  display: grid;
  gap: 0.55rem;
}

.cart__summary-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.cart__summary-rows {
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.cart__summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.cart__summary-row dt {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.cart__summary-row dd {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.cart__summary-row--save dd {
  color: var(--gold);
}

.cart__summary-row--total {
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.cart__summary-row--total dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.cart__summary-row--total dd {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.cart__summary-row[hidden] {
  display: none !important;
}

.cart__summary-count {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.cart__summary-total {
  margin-top: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.cart__checkout {
  width: 100%;
  margin-top: 1.25rem;
  cursor: pointer;
  border: none;
}

.cart__continue {
  margin-top: 0.85rem;
  justify-self: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.6);
  transition: color 0.3s var(--ease);
}

.cart__continue:hover {
  color: var(--ink);
}

.nav__badge {
  position: absolute;
  top: 0.15rem;
  right: 0.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.28rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #12100e;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ——— Profile ——— */

.profile-hero {
  padding: calc(var(--header-h) + 3rem) 1.5rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 65% 50% at 40% 45%, rgba(154, 132, 96, 0.18), transparent 55%),
    linear-gradient(165deg, #2a2520 0%, #1a1714 45%, #12100e 100%);
  color: var(--mist);
}

.profile-hero__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile-hero__title {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--champagne);
}

.profile-hero__text {
  margin: 0.85rem auto 0;
  max-width: 32ch;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.58);
}

.profile {
  padding: 3.5rem 1.5rem 5rem;
  background: var(--champagne);
}

.profile__layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.75rem 3.5rem;
  align-items: start;
}

.profile__section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile__facts {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.profile__fact {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.profile__fact dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
}

.profile__fact dd {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  word-break: break-word;
}

.profile__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
}

.profile__actions .btn--dark {
  margin-top: 0;
}

.profile__ghost {
  width: auto;
  margin-top: 0;
  color: var(--ink);
  border-color: rgba(26, 23, 20, 0.28);
}

.profile__ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.profile__logout {
  margin-left: auto;
  border: none;
  background: none;
  padding: 0.5rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.profile__logout:hover {
  color: var(--ink);
}

.profile__stat {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.profile__stat-value {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--ink);
}

.profile__stat-meta {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.profile-activity {
  margin-top: 2rem;
}

.profile-activity__empty {
  margin-top: 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.profile-activity__list {
  margin-top: 1rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.profile-activity__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.profile-activity__main {
  display: grid;
  gap: 0.25rem;
}

.profile-activity__type {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile-activity__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.profile-activity__detail {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.profile-activity__time {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: rgba(61, 56, 50, 0.5);
  white-space: nowrap;
}

/* ——— Footer ——— */

.footer {
  background:
    radial-gradient(ellipse 55% 45% at 20% 0%, rgba(154, 132, 96, 0.14), transparent 55%),
    linear-gradient(180deg, #1a1714 0%, #12100e 100%);
  color: var(--mist);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.footer__logo {
  width: 3rem;
  height: auto;
  display: block;
  filter: invert(1) brightness(1.05);
}

.footer__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--champagne);
}

.footer__tagline {
  max-width: 22ch;
  font-size: 0.88rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.55);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}

.footer__heading {
  margin-bottom: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__nav ul {
  display: grid;
  gap: 0.65rem;
}

.footer__nav a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 216, 0.68);
  transition: color 0.35s var(--ease);
}

.footer__nav a:hover {
  color: var(--champagne);
}

.footer__bottom {
  border-top: 1px solid rgba(232, 226, 216, 0.1);
  padding: 1.25rem 1.5rem 1.5rem;
}

.footer__bottom p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 226, 216, 0.38);
}

.nav__links a[aria-current="page"] .letter {
  opacity: 1;
}

/* ——— Brands / Collection page ——— */

.brands-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.brands-hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 65% 50% at 40% 45%, rgba(154, 132, 96, 0.22), transparent 55%),
    linear-gradient(165deg, #2a2520 0%, #1a1714 45%, #12100e 100%);
}

.brands-hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
}

.brands-hero__content {
  text-align: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  max-width: 36rem;
  color: var(--mist);
}

.brands-hero__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--champagne);
}

.brands-hero__title {
  margin-top: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.brands-hero__text {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 216, 0.62);
}

.brands {
  background:
    radial-gradient(ellipse 55% 35% at 10% 0%, rgba(154, 132, 96, 0.1), transparent 50%),
    var(--champagne);
}

.brands__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6.5rem;
}

.brands__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.brands__title {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.brands__lead {
  margin-top: 1rem;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.brands__list {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 1.35rem 1.1rem;
  border-top: none;
}

.brands__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  border-bottom: none;
  transition: transform 0.45s var(--ease);
}

.brands__item:hover {
  padding-left: 0;
  transform: translateY(-0.3rem);
}

.brands__photo-wrap {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1.15rem;
  background: #1a1714;
}

.brands__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.brands__item:hover .brands__photo {
  transform: scale(1.04);
}

.brands__copy {
  display: grid;
  gap: 0.25rem;
  padding: 0 0.1rem;
}

.brands__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.brands__meta {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
  text-align: left;
}

.brands__item:hover .brands__meta {
  color: var(--gold);
}

.brands__group {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.brands__group .brands__title {
  margin-top: 0;
}

.brands__group .brands__list {
  margin-top: 2.25rem;
}

/* ——— Brand page ——— */

.brand-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--mist);
  background: #000;
  padding: calc(var(--header-h) + 1.5rem) 2rem 3rem;
}

.brand-hero__media {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  background: transparent;
  pointer-events: none;
}

.brand-hero__frame {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 4.5rem;
  pointer-events: none;
  background: #111;
  user-select: none;
  opacity: 0;
  transform: translate3d(1.5rem, 1.25rem, 0) scale(0.94);
}

.brand-hero__frame.is-hidden {
  display: none;
}

.brand-hero__frame.is-visible {
  animation: brand-video-in 1.15s var(--ease) forwards;
}

@keyframes brand-video-in {
  from {
    opacity: 0;
    transform: translate3d(1.5rem, 1.25rem, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.brand-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.brand-hero__image {
  width: min(100%, 22rem);
  height: auto;
  max-height: calc(100vh - var(--header-h) - 4rem);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 999px;
}

.brand-hero__image.is-hidden,
.brand-hero__placeholder.is-hidden {
  display: none;
}

.brand-hero__placeholder {
  display: none;
}

.brand-hero__media::after {
  display: none;
}

.brand-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  margin: 0;
  padding: 0;
  justify-self: start;
  align-self: center;
}

.brand-hero__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-hero__title {
  margin-top: 0.85rem;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--champagne);
}

.brand-hero__text {
  margin-top: 1rem;
  max-width: 28ch;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(232, 226, 216, 0.62);
}

.brand-products {
  background:
    radial-gradient(ellipse 55% 35% at 90% 0%, rgba(154, 132, 96, 0.1), transparent 50%),
    var(--champagne);
}

.brand-products__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6.5rem;
}

.brand-products__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-products__title {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.brand-products__list {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.brand-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(26, 23, 20, 0.1);
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.brand-card:hover {
  transform: translateY(-0.28rem);
  border-color: rgba(26, 23, 20, 0.2);
  box-shadow: 0 18px 36px rgba(18, 16, 14, 0.08);
}

.brand-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1714;
}

.brand-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.brand-card:hover .brand-card__image {
  transform: scale(1.04);
}

.brand-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1.1rem 1.25rem;
}

.brand-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-card__notes {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--ink-soft);
}

.brand-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.brand-card__volume {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
}

.brand-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.62);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 44rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: auto;
  background: var(--champagne);
  color: var(--ink);
  transform: translate3d(0, 1rem, 0) scale(0.98);
  transition: transform 0.45s var(--ease);
  outline: none;
}

.product-modal.is-open .product-modal__dialog {
  transform: none;
}

.product-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}

.product-modal__close:hover {
  opacity: 1;
}

.product-modal__media {
  min-height: 18rem;
  background: #12100e;
}

.product-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal__body {
  padding: 2rem 1.75rem 2rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.product-modal__brand {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-modal__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.product-modal__family {
  font-size: 0.88rem;
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.product-modal__description {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.product-modal__meta {
  margin-top: 1rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.product-modal__meta-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.product-modal__meta-row dt {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
}

.product-modal__meta-row dd {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.product-modal__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  margin-top: 1rem;
}

.product-modal__price-old {
  font-size: 0.95rem;
  color: rgba(61, 56, 50, 0.45);
  text-decoration: line-through;
}

.product-modal__price-current {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--ink);
}

.product-modal__cart {
  width: fit-content;
  margin-top: 1.25rem;
  border: none;
  cursor: pointer;
}

/* ——— Product page ——— */

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 100vh;
  background: var(--champagne);
}

.product__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 28rem;
  padding: calc(var(--header-h) + 2rem) 2rem 3rem;
  background: var(--champagne);
}

.product__glow {
  position: absolute;
  inset: 18% 22%;
  background:
    radial-gradient(circle at 45% 40%, rgba(154, 132, 96, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 55% 60%, rgba(61, 56, 50, 0.06) 0%, transparent 50%);
  filter: blur(8px);
  animation: mist-drift 16s ease-in-out infinite alternate;
}

.product__image {
  position: relative;
  z-index: 1;
  width: min(58%, 16rem);
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0) scale(0.94);
}

.product__image.is-hidden,
.product__placeholder.is-hidden {
  display: none;
}

.product__image.is-visible {
  animation: product-image-in 1.1s var(--ease) forwards;
}

@keyframes product-image-in {
  from {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.product__placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(70%, 14rem);
  aspect-ratio: 3 / 5;
  border: 1px dashed rgba(26, 23, 20, 0.18);
  color: rgba(61, 56, 50, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2.5rem) 3rem 4rem 2.5rem;
}

.product__back {
  width: fit-content;
  margin: 0;
  min-height: 2.5rem;
  padding: 0 1.4rem;
  gap: 0.45rem;
}

.product__back.btn--dark {
  margin-top: 0;
}

.product__back .word-space {
  width: 0.45em;
}

.product__brand {
  margin-top: 2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.product__title {
  margin-top: 0.85rem;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.product__family {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.product__description {
  margin-top: 1.5rem;
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.product__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.product__price-old {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: rgba(61, 56, 50, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.product__price-current {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.product__meta {
  margin-top: 2.25rem;
  max-width: 28rem;
  border-top: 1px solid rgba(26, 23, 20, 0.12);
}

.product__meta-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}

.product__meta-row dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(61, 56, 50, 0.55);
}

.product__meta-row dd {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.product__cart {
  width: fit-content;
  margin-top: 2rem;
  cursor: pointer;
  border: none;
}

.product__cart.btn--dark {
  margin-top: 2rem;
}

/* ——— Letter animation ——— */

.letters {
  display: block;
}

.nav__links a.letters {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
}

.btn.letters {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.btn .word {
  display: inline-block;
  white-space: nowrap;
}

.btn .letter:last-child {
  margin-right: -0.14em;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.word-space {
  display: inline-block;
  width: 0.55em;
}

.btn .word-space {
  width: 0.80em;
}

.letter {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform, opacity;
  opacity: 1;
  animation: letter-in 0.7s var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 28ms + 120ms);
}

.nav__links a .letter {
  animation-name: letter-in-nav;
}

@keyframes letter-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.55em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes letter-in-nav {
  from {
    opacity: 0;
    transform: translate3d(0, -0.4em, 0);
  }
  to {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mist-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-2%, 3%) scale(1.06);
  }
}

/* ——— Section reveal ——— */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 2.25rem, 0);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal-item] {
  opacity: 0;
  transform: translate3d(0, 1.35rem, 0);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: calc(0.12s * var(--reveal-i, 0));
  will-change: opacity, transform;
}

[data-reveal].is-in [data-reveal-item] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .letter {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .nav__links a .letter {
    opacity: 0.72;
  }

  .reel__track {
    animation: none;
  }

  .btn--reveal {
    animation: none;
  }

  .promo,
  .promo.is-active .promo__media img {
    transition: none;
    transform: none;
  }

  .brand-hero__frame {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .brand-hero__frame.is-visible {
    animation: none;
  }

  .product__image,
  .product__image.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }

  [data-reveal],
  [data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Responsive ——— */

@media (max-width: 1100px) {
  .nav {
    padding: 0 1.35rem;
  }

  .nav__links {
    gap: 1.35rem;
  }

  .brand-hero,
  .product {
    gap: 1.5rem;
    padding-inline: 1.5rem;
  }

  .product-modal__dialog {
    width: min(860px, calc(100% - 1.5rem));
  }

  .footer__inner {
    gap: 2.5rem 3rem;
    padding-inline: 1.35rem;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 5.25rem;
  }

  .header {
    height: var(--header-h);
    mix-blend-mode: normal;
    background: rgba(18, 16, 14, 0.94);
    backdrop-filter: blur(10px);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav {
    flex-wrap: nowrap;
    height: 100%;
    min-height: 0;
    padding: 0 1.15rem;
    gap: 0.65rem;
  }

  .nav__brand {
    order: 1;
  }

  .nav__actions {
    order: 2;
    margin-left: auto;
    gap: 0.35rem;
  }

  .nav__burger {
    display: grid;
    order: 3;
  }

  .nav__links--center {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
    margin: 0;
    padding: 2rem 1.5rem 4rem;
    background: #12100e;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s var(--ease),
      visibility 0.35s var(--ease);
  }

  body.nav-open .nav__links--center {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links--center a {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }

  .nav__links--center a .letter {
    opacity: 0.88;
  }

  .nav__icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .nav__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .search {
    top: var(--header-h);
  }

  .hero__content {
    width: min(34rem, 100%);
    padding-inline: 1.35rem;
  }

  .hero__actions {
    width: min(100%, 22rem);
  }

  .collection__layout,
  .about-story,
  .cart__layout,
  .profile__layout,
  .brand-hero,
  .product,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .collection__visual {
    min-height: 24rem;
    order: -1;
  }

  .collection__content {
    padding: 3rem 1.5rem 4rem;
  }

  .about-story__media {
    min-height: 20rem;
    aspect-ratio: 4 / 5;
  }

  .about-story__content {
    max-width: none;
    padding: 3rem 1.5rem;
  }

  .brand-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-hero {
    min-height: auto;
    gap: 1.5rem;
    padding: calc(var(--header-h) + 1rem) 1.35rem 2.5rem;
  }

  .brand-hero__media {
    order: -1;
    justify-content: center;
  }

  .brand-hero__content {
    width: 100%;
    padding: 0;
  }

  .brand-hero__frame {
    width: min(100%, 22rem);
  }

  .product__visual {
    min-height: 24rem;
    padding: calc(var(--header-h) + 1.25rem) 1.35rem 2rem;
  }

  .product__content {
    padding: 2.75rem 1.35rem 4rem;
  }

  .product-modal__dialog {
    grid-template-columns: 1fr;
    max-height: min(92vh, 52rem);
  }

  .product-modal__media {
    min-height: 15rem;
    aspect-ratio: 16 / 10;
  }

  .cart-item {
    grid-template-columns: 5rem minmax(0, 1fr);
    grid-template-areas:
      "media info"
      "media qty"
      "media price"
      "media remove";
  }

  .cart-item__qty,
  .cart-item__price,
  .cart-item__remove {
    justify-self: start;
  }

  .cart-item__price {
    justify-items: start;
  }

  .profile__fact {
    grid-template-columns: 6.5rem 1fr;
  }

  .promos__inner {
    height: min(64vh, 30rem);
  }

  .brands__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth {
    padding-inline: 1.15rem;
  }

  .auth__panel {
    width: min(100%, 28rem);
    padding: 2.25rem 1.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 5rem;
  }

  .nav {
    padding: 0 1rem;
  }

  .nav__logo {
    width: 2.45rem;
  }

  .nav__icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .nav__icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .nav__burger {
    width: 2.35rem;
    height: 2.35rem;
  }

  .search__panel {
    width: 100%;
    margin-inline: 0;
  }

  .hero__brand {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .hero__actions {
    grid-template-columns: 1fr;
    width: min(100%, 100%);
  }

  .btn {
    width: 100%;
    white-space: nowrap;
  }

  .btn.letters {
    justify-content: center;
  }

  .collection__visual {
    min-height: 18rem;
  }

  .collection__content {
    padding: 2.25rem 1.2rem 3.5rem;
  }

  .collection__title {
    max-width: 12ch;
  }

  .collection__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .collection__meta {
    text-align: left;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero__content {
    padding: calc(var(--header-h) + 1.5rem) 1.2rem 2.5rem;
  }

  .about-story__media {
    min-height: 16rem;
  }

  .about-story__content {
    padding: 2.5rem 1.2rem 3rem;
  }

  .about-values__inner,
  .brands__inner,
  .brand-products__inner {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .about-values__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cart {
    padding: 2.5rem 1.15rem 4rem;
  }

  .cart__toolbar {
    flex-wrap: wrap;
  }

  .cart-item {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.4rem 0.85rem;
  }

  .cart__summary {
    position: static;
  }

  .profile {
    padding: 2.5rem 1.15rem 4rem;
  }

  .profile__fact {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .profile__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .profile__logout {
    margin-left: 0;
    align-self: flex-start;
  }

  .profile-activity__item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .footer__inner {
    gap: 2.25rem;
    padding: 3rem 1.15rem 2.25rem;
  }

  .footer__nav {
    gap: 1.5rem 1rem;
  }

  .btn--dark {
    width: 100%;
    margin-top: 0;
  }

  .profile__actions .btn--dark,
  .cart__checkout {
    width: 100%;
  }

  .reel {
    padding: 3.25rem 0 3rem;
  }

  .reel__intro {
    padding: 0 1.15rem 1.75rem;
  }

  .reel__track {
    gap: 1rem;
    padding-inline: 1.15rem;
    animation-duration: 34s;
  }

  .reel__slide {
    width: min(72vw, 12.5rem);
  }

  .reel__media {
    border-radius: 1.25rem;
  }

  .promos__inner {
    height: min(62vh, 24rem);
    min-height: 16.5rem;
  }

  .promo__body {
    padding: 1.5rem 1.15rem 3rem;
  }

  .promo__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .brands__list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
  }

  .brands__photo-wrap {
    border-radius: 0.9rem;
  }

  .brands__item {
    grid-template-columns: unset;
    gap: 0.75rem;
  }

  .brands__meta {
    text-align: left;
  }

  .brand-hero__frame {
    width: min(100%, 18rem);
    border-radius: 3rem;
  }

  .brand-hero__image {
    width: min(100%, 15rem);
    max-height: 52vh;
  }

  .brand-products__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-modal {
    padding: 0.75rem;
  }

  .product-modal__media {
    min-height: 12rem;
    aspect-ratio: 4 / 5;
  }

  .product-modal__body {
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .product-modal__cart {
    width: 100%;
  }

  .product__visual {
    min-height: 18rem;
    padding: calc(var(--header-h) + 1rem) 1.15rem 1.75rem;
  }

  .product__content {
    padding: 2.25rem 1.15rem 3.5rem;
  }

  .product__meta-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .auth__panel {
    padding: 1.85rem 1.2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 4.75rem;
  }

  .brands__list {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    grid-template-columns: 1fr;
  }

  .promos__inner {
    height: min(58vh, 22rem);
  }

  .cart-item__name {
    font-size: 1.15rem;
  }
}

