:root {
  --ivory: #f7f3ee;
  --ivory-deep: #efe8de;
  --beige: #e8ddd0;
  --beige-deep: #d4c4b0;
  --blush: #e8c4c4;
  --blush-deep: #d9a8a8;
  --rose: #c4787a;
  --rose-deep: #a85a5c;
  --rose-dark: #8b4548;
  --brown: #3d2b2b;
  --brown-soft: #5c4747;
  --ink: #1a1212;
  --gold: #c4a574;
  --gold-light: #e0cba0;
  --gold-deep: #a8894f;
  --white: #fffcfa;
  --cream: #fbf7f2;
  --muted: #7a6e6e;
  --line: #e6dcd3;
  --shadow: 0 18px 50px rgba(61, 43, 43, 0.08);
  --shadow-soft: 0 8px 30px rgba(61, 43, 43, 0.06);
  --radius: 18px;
  --radius-sm: 10px;
  --header-h: 88px;
  --announce-h: 38px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  background: var(--ivory-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.container-wide {
  width: min(1680px, calc(100% - 40px));
  margin-inline: auto;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--rose);
  font-weight: 500;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ANNOUNCEMENT */
.announce {
  height: var(--announce-h);
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
}

.announce-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  color: var(--brown);
  white-space: nowrap;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a,
.nav-links > .has-mega > a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  padding: 10px 0;
  position: relative;
}

.nav-links > a::after,
.has-mega > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.35s var(--ease);
}

.nav-links > a:hover::after,
.has-mega:hover > a::after,
.nav-links > a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  background: none;
  border: 0;
  color: var(--brown);
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.25s;
}

.icon-btn:hover {
  background: var(--ivory-deep);
}

.count-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--rose);
  color: #fff;
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--brown);
  display: block;
}

/* MEGA MENU */
.has-mega {
  position: static;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 42px 0 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.28s var(--ease);
  pointer-events: none;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.open .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.mega h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.mega a {
  display: block;
  padding: 6px 0;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.mega a:hover {
  color: var(--rose-deep);
}

.mega-featured {
  background: linear-gradient(160deg, #f3e6e0, #ead3c8);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mega-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(26, 18, 18, 0.55));
}

.mega-featured * {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--header-h) - var(--announce-h));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 18, 18, 0.62), rgba(26, 18, 18, 0.18) 55%, rgba(196, 120, 122, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  padding: 80px 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  color: #fff;
  max-width: 12ch;
  margin: 18px 0 22px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 18, 0.35), rgba(26, 18, 18, 0.55));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin: 12px 0 14px;
}

.page-hero p {
  max-width: 56ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

/* SECTIONS */
.section {
  padding: 92px 0;
}

.section-alt {
  background: var(--ivory);
}

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 8px;
}

.section-intro {
  max-width: 52ch;
  color: var(--muted);
}

/* CATEGORY CARDS */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.cat-card.wide {
  grid-column: span 2;
  min-height: 420px;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(26, 18, 18, 0.72));
}

.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.cat-card h3 {
  color: #fff;
  font-size: 2rem;
  margin: 6px 0 8px;
}

/* EDITORIAL */
.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.editorial.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.editorial-media {
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.editorial-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 10px 0 16px;
}

.mini-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.mini-cat {
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  transition: 0.25s;
}

.mini-cat:hover {
  border-color: var(--rose);
  background: var(--ivory);
}

.mini-cat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

/* SIGNATURE BANNER */
.signature {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.signature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 18, 0.48);
}

.signature-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.signature h2 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin: 12px 0 18px;
}

/* ROUTINE */
.routine-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.routine-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.routine-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.routine-card div {
  padding: 18px;
}

.step-num {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
}

.feature-card i {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-top img,
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #e8ddd0, #e8c4c4);
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* GUIDE CARDS */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease);
}

.guide-card:hover {
  transform: translateY(-6px);
}

.guide-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.guide-card div {
  padding: 24px;
}

.guide-card h3 {
  margin: 8px 0 10px;
}

/* INSTAGRAM */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.insta-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.insta-item span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  font-size: 1.3rem;
}

.insta-item:hover span {
  opacity: 1;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #3d2b2b, #8b4548);
  color: #fff;
  text-align: center;
  padding: 100px 24px;
}

.newsletter h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 10px 0 14px;
}

.news-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 28px auto 0;
}

.news-form input {
  flex: 1;
  border: 0;
  padding: 16px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.news-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* FOOTER */
.footer {
  background: #140e0e;
  color: rgba(255, 252, 250, 0.78);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 50px;
}

.footer h4 {
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 252, 250, 0.72);
}

.footer a:hover {
  color: #fff;
}

.footer-brand {
  font-family: var(--font-serif);
  color: #fff;
  letter-spacing: 0.16em;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 14px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-news {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-news input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  color: var(--rose-deep);
}

/* ABOUT */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 40px 0;
}

.story-block img {
  border-radius: var(--radius);
  height: 460px;
  width: 100%;
  object-fit: cover;
}

.prose {
  color: var(--brown-soft);
}

.prose p {
  margin-bottom: 16px;
}

.prose h2,
.prose h3 {
  margin: 28px 0 12px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.contact-card i {
  color: var(--gold);
  margin-right: 8px;
}

/* SHOP LAYOUT */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.filter-group {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.filter-group label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  color: var(--brown-soft);
  cursor: pointer;
  font-size: 0.95rem;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shop-search {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 420px;
}

.shop-search input,
select {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
  width: 100%;
}

/* PRODUCT DETAIL */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory);
  height: 620px;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumbs img {
  height: 96px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbs img.active {
  border-color: var(--rose);
}

.shade-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}

.shade {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}

.shade.active {
  box-shadow: 0 0 0 2px var(--rose);
}

.qty {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 40px;
  height: 42px;
  border: 0;
  background: var(--ivory);
  cursor: pointer;
}

.qty input {
  width: 48px;
  border: 0;
  text-align: center;
  background: #fff;
}

.tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin: 48px 0 24px;
  flex-wrap: wrap;
}

.tabs button {
  background: none;
  border: 0;
  padding: 10px 0;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.tabs button.active {
  color: var(--brown);
  border-color: var(--gold);
}

.tab-panel {
  display: none;
  color: var(--brown-soft);
}

.tab-panel.active {
  display: block;
}

/* CART */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--brown);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 50;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.promo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.promo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  background: var(--ivory);
}

.gift-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.collection-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20, 14, 14, 0.7));
}

.collection-card > div {
  position: relative;
  z-index: 1;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collection-card h3 {
  color: #fff;
  font-size: 2rem;
}

.limited {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 640px;
}

.limited img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 640px;
}

.limited-copy {
  background: #1a1212;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.limited-copy h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 12px 0 18px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--rose);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.8s var(--ease) forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

body.menu-open {
  overflow: hidden;
}
