/* ============================================================
   MAISON NOIR — Styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #131110;
  --coal: #1c1917;
  --granite: #2a2623;
  --ivory: #f6f2ea;
  --cream: #ece4d6;
  --cream-2: #e4dbc9;
  --accent: #9d2235;
  --accent-deep: #7d1a2b;
  --accent-soft: #c2455a;
  --gold: #b9935a;
  --white: #fffdf9;
  --muted: #75706a;
  --line: rgba(19, 17, 16, 0.12);
  --line-light: rgba(255, 253, 249, 0.16);

  --font-display: "Archivo", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;

  --shadow-card: 0 24px 60px -28px rgba(19, 17, 16, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.05; }
p { margin: 0; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
::selection { background: var(--accent); color: var(--white); }

.container { width: min(1280px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid transparent;
  transition: color 0.35s var(--ease), background 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--solid { background: var(--ink); color: var(--ivory); }
.btn--solid:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(157, 34, 53, 0.7); }

.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--ivory); transform: translateY(-2px); }

/* WhatsApp buttons */
.btn--wa { background: #1ead61; color: var(--white); }
.btn--wa:hover { background: #178a4d; transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(30, 173, 97, 0.75); }
.btn--wa.btn--white { background: var(--white); color: #128a4b; }
.btn--wa.btn--white:hover { background: var(--cream-2); color: #0f6f3d; }

.btn--block { width: 100%; }
.btn--lg { padding: 20px 34px; font-size: 0.9rem; }

/* ---------- Announcement bar ---------- */
.announcement {
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-deep));
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.announcement p { animation: fadeSlide 0.8s var(--ease) both; }
.announcement .dot { margin: 0 0.7em; opacity: 0.7; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 242, 234, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -20px rgba(19,17,16,0.4); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.brand span { color: var(--accent); }

.nav { display: flex; gap: 4px; align-items: center; }
.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  color: var(--ink);
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--accent); }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--ink);
  position: relative;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { background: rgba(19,17,16,0.06); transform: scale(1.06); }
.bag-btn .bag-count {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}

.btn--header { padding: 11px 18px; font-size: 0.7rem; }
.btn--header svg { width: 16px; height: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  width: 22px; height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.35s var(--ease), opacity 0.3s;
  border-radius: 2px;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu-overlay {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--ivory);
  z-index: 55;
  display: none;
  align-items: stretch;
}
.menu-overlay.is-open { display: flex; animation: fadeIn 0.35s var(--ease) both; }
.menu-overlay__inner {
  padding: calc(var(--header-h) + 32px) 8% 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px; width: 100%;
}
.menu-overlay__nav { display: flex; flex-direction: column; gap: 4px; }
.menu-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 0;
  color: var(--ivory);
  transition: color 0.3s, padding-left 0.4s var(--ease);
}
.menu-link:hover { color: var(--accent-soft); padding-left: 12px; }
.menu-overlay__meta { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 37px);
  min-height: calc(100vh - var(--header-h) - 37px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 2.4s var(--ease) both;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(19,17,16,0.96) 8%, rgba(19,17,16,0.72) 40%, rgba(19,17,16,0.22) 72%, rgba(19,17,16,0.5) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 72px 0 110px; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__eyebrow span { width: 46px; height: 1px; background: var(--gold); display: inline-block; }
.hero__title {
  color: var(--white);
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}
.hero__title em { color: var(--accent-soft); font-size: 1.04em; }
.hero__copy {
  color: rgba(255,253,249,0.82);
  font-size: 1.06rem;
  max-width: 480px;
  margin: 28px 0 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn--ghost { border-color: rgba(255,253,249,0.35); color: var(--white); }
.hero .btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero__wa { margin-top: 26px; animation: waPulse 2.6s var(--ease) 1.2s infinite; }
.hero__meta {
  margin-top: 64px;
  display: flex;
  gap: 22px;
  color: rgba(255,253,249,0.5);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}
.hero__meta span { position: relative; }
.hero__meta span:not(:last-child)::after { content: "—"; margin-left: 22px; opacity: 0.4; }
.hero__scroll {
  position: absolute;
  right: 4.5vw; bottom: 30px;
  color: rgba(255,253,249,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hero__scroll svg { width: 22px; height: 22px; animation: floatY 2.2s ease-in-out infinite; }
.hero__scroll:hover { color: var(--accent-soft); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  border-block: 1px solid rgba(255,253,249,0.1);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: none;
}

/* ---------- Section scaffold ---------- */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--dark { background: var(--ink); color: var(--ivory); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 6vw, 70px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; text-align: left; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head__kicker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-head--row .section-head__kicker { justify-content: flex-start; }
.section-head__kicker::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.section-head__title {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.section-head__title em { color: var(--accent); }
.section-head__sub { color: var(--muted); margin-top: 16px; font-size: 0.98rem; }
.section-head--light .section-head__kicker { color: var(--gold); }
.section-head--light .section-head__kicker::before { background: var(--gold); }
.section-head--light .section-head__title em { color: var(--accent-soft); }
.section-head--light .section-head__sub { color: rgba(255,253,249,0.62); }

/* ---------- Collection grid ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.collection-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
  display: block;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.collection-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,10,0.85) 0%, rgba(13,11,10,0) 55%);
  transition: background 0.5s;
}
.collection-card:hover img { transform: scale(1.07); }
.collection-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 22px;
  color: var(--white);
  z-index: 2;
}
.collection-card__body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.collection-card__body p { font-size: 0.78rem; color: rgba(255,253,249,0.7); font-style: italic; font-family: var(--font-serif); margin-bottom: 16px; }
.collection-card__body .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-display);
  border-bottom: 1px solid rgba(255,253,249,0.5);
  padding-bottom: 4px;
  transition: border-color 0.3s, color 0.3s;
}
.collection-card__body .link svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.collection-card:hover .link { border-color: var(--white); color: var(--gold); }
.collection-card:hover .link svg { transform: translateX(4px); }

/* ---------- Filters ---------- */
.shop-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.filter-chip.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.product-card {
  display: flex; flex-direction: column;
  animation: cardIn 0.55s var(--ease) both;
}
.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.6s var(--ease), transform 0.9s var(--ease);
}
.product-card__media img.img-2 { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-card__media img.img-1 { transform: scale(1.05); opacity: 0; }
.product-card:hover .product-card__media img.img-2 { opacity: 1; transform: scale(1); }

.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 11px;
  text-transform: uppercase;
  border-radius: 3px;
}
.card-tag--gold { background: var(--gold); color: var(--ink); }

.card-actions {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  padding: 0 12px;
  display: flex; gap: 8px;
  z-index: 3;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.35s;
}
.product-card:hover .card-actions { transform: translateY(0); opacity: 1; }
.card-btn {
  flex: 1;
  border: none;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.card-btn--view { background: var(--white); color: var(--ink); }
.card-btn--view:hover { background: var(--ink); color: var(--white); }
.card-btn--wa { background: #1ead61; color: var(--white); }
.card-btn--wa:hover { background: #178a4d; color: var(--white); transform: translateY(-2px); }
.card-btn--bag {
  flex: none; width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(19,17,16,0.85); color: var(--ivory);
}
.card-btn--bag svg { width: 17px; height: 17px; }
.card-btn--bag:hover { background: var(--accent); color: var(--white); }

.card-body { padding-top: 16px; }
.card-body__top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.15;
  cursor: pointer;
  transition: color 0.3s;
}
.card-body h3:hover { color: var(--accent); }
.card-price { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; white-space: nowrap; }
.card-price .mrp { font-weight: 500; font-size: 0.78rem; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.card-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--muted);
}
.card-meta .sep { opacity: 0.4; }
.card-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}
.card-sizes { letter-spacing: 0.02em; }

/* ---------- New arrivals ---------- */
.arrivals-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.arrival-feature { position: relative; border-radius: 4px; overflow: hidden; min-height: 520px; grid-row: 1 / span 2; }
.arrival-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1s var(--ease); }
.arrival-feature:hover img { transform: scale(1.05); }
.arrival-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,11,10,0.88), rgba(13,11,10,0) 60%); }
.arrival-feature__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
}
.arrival-feature__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 600;
  font-style: italic;
  margin: 8px 0 10px;
}
.arrival-feature__body p { color: rgba(255,253,249,0.72); font-size: 0.92rem; max-width: 420px; margin-bottom: 20px; }
.link-line {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,253,249,0.5); padding-bottom: 5px;
  transition: border-color 0.3s, color 0.3s;
}
.link-line svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.link-line:hover { border-color: var(--gold); color: var(--gold); }
.link-line:hover svg { transform: translateX(4px); }

.arrival-mini {
  display: flex; flex-direction: column;
  background: rgba(255,253,249,0.05);
  border: 1px solid rgba(255,253,249,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.arrival-mini:hover { border-color: rgba(255,253,249,0.28); background: rgba(255,253,249,0.08); }
.arrival-mini__media { position: relative; aspect-ratio: 16/10; overflow: hidden; cursor: pointer; }
.arrival-mini__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.arrival-mini:hover img { transform: scale(1.06); }
.arrival-mini__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.arrival-mini__body h3 { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; font-weight: 600; cursor: pointer; transition: color 0.3s; }
.arrival-mini__body h3:hover { color: var(--accent-soft); }
.arrival-mini__price { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--gold); }
.arrival-mini__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; }
.arrival-mini__foot .link-line { font-size: 0.64rem; color: var(--white); border-bottom-color: rgba(255,253,249,0.4); }
.arrival-mini__foot .link-line:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

/* ---------- Editorial banner ---------- */
.editorial {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.editorial__media { position: absolute; inset: 0; }
.editorial__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.editorial__overlay { position: absolute; inset: 0; background: linear-gradient(85deg, rgba(13,11,10,0.92) 15%, rgba(13,11,10,0.55) 55%, rgba(13,11,10,0.25) 100%); }
.editorial__content { position: relative; z-index: 2; padding: 90px 0; }
.editorial__title {
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.editorial__title em { color: var(--accent-soft); }
.editorial__copy { color: rgba(255,253,249,0.78); max-width: 460px; margin: 26px 0 34px; font-size: 1.05rem; }

/* ---------- About / value cards ---------- */
.about-block { text-align: center; max-width: 800px; margin: 0 auto clamp(52px, 7vw, 80px); }
.about-block .hero__eyebrow { color: var(--accent); justify-content: center; }
.about-block .hero__eyebrow span { background: var(--accent); }
.about-block__title { margin-top: 6px; }
.about-block__copy { margin-top: 20px; font-size: 1rem; line-height: 1.8; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.value-card {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 4px;
  background: var(--white);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(157,34,53,0.25); }
.value-card:hover::before { transform: scaleX(1); }
.value-card svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 20px; }
.value-card h3 { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.value-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ---------- Instagram ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1.4vw, 16px);
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), opacity 0.4s; }
.insta-item::after {
  content: "↗";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  background: rgba(19,17,16,0.55);
  opacity: 0;
  transition: opacity 0.35s;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover::after { opacity: 1; }
.insta-cta { text-align: center; margin-top: clamp(36px, 5vw, 56px); }
.btn--insta svg { width: 19px; height: 19px; }

/* ---------- Contact row ---------- */
.contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 40px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
a.contact-chip:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 14px 34px -18px rgba(157,34,53,0.5); }
.contact-chip svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.contact-chip .w { color: var(--muted); font-weight: 500; }
.contact-chip--static { cursor: default; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(1200px 600px at 85% -20%, rgba(194,69,90,0.35), transparent 60%),
    linear-gradient(120deg, var(--accent-deep), var(--accent) 55%, var(--accent-deep));
  color: var(--white);
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,253,249,0.14);
  border-radius: 50%;
}
.cta-banner::before { width: 640px; height: 640px; left: -240px; top: -260px; }
.cta-banner::after { width: 520px; height: 520px; right: -200px; bottom: -260px; }
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner__kicker { font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; opacity: 0.75; margin-bottom: 18px; }
.cta-banner__title { font-size: clamp(2.6rem, 7vw, 4.8rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; }
.cta-banner__title em { color: var(--cream-2); }
.cta-banner__copy { max-width: 460px; margin: 20px auto 34px; color: rgba(255,253,249,0.85); font-size: 1.02rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,253,249,0.7); padding: clamp(56px, 8vw, 90px) 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(44px, 6vw, 70px);
  border-bottom: 1px solid var(--line-light);
}
.footer .brand { color: var(--white); font-size: 1.4rem; }
.footer .brand span { color: var(--accent-soft); }
.footer__brand p { margin-top: 18px; font-size: 0.88rem; line-height: 1.8; max-width: 340px; }
.footer__wa-simple {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #4ade80;
  transition: color 0.3s;
}
.footer__wa-simple svg { width: 17px; height: 17px; }
.footer__wa-simple:hover { color: var(--white); }
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__col a { display: block; padding: 6px 0; font-size: 0.88rem; color: rgba(255,253,249,0.72); transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer__col a:hover { color: var(--white); padding-left: 5px; }
.footer__note { text-align: center; padding: 26px 0; border-bottom: 1px solid var(--line-light); }
.footer__note p { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: rgba(255,253,249,0.85); }
.footer__base { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 26px 0 34px; font-size: 0.78rem; color: rgba(255,253,249,0.45); }
.footer__base .heart { color: var(--accent-soft); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1ead61;
  color: var(--white);
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -12px rgba(20, 120, 66, 0.65);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-4px) scale(1.05); background: #178a4d; }
.wa-float::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(30,173,97,0.5);
  animation: ringPulse 2.2s var(--ease) infinite;
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(13,11,10,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeIn 0.3s both; }
.modal__panel {
  position: relative;
  width: min(1020px, 100%);
  max-height: 92vh;
  background: var(--ivory);
  border-radius: 6px;
  overflow: auto;
  animation: modalUp 0.5s var(--ease) both;
  overflow-x: hidden;
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(19,17,16,0.82);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.modal__close svg { width: 19px; height: 19px; }
.modal__close:hover { background: var(--accent); transform: rotate(90deg); }

.pd { display: grid; grid-template-columns: 1.05fr 1fr; }
.pd__gallery { position: relative; background: var(--cream); }
.pd__gallery-main { aspect-ratio: 3/4; overflow: hidden; }
.pd__gallery-main img { width: 100%; height: 100%; object-fit: cover; animation: fadeIn 0.4s var(--ease) both; }
.pd__thumbs { display: flex; gap: 10px; padding: 12px; }
.pd__thumb {
  width: 72px; height: 92px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--cream);
  transition: border-color 0.3s;
}
.pd__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd__thumb.is-active { border-color: var(--accent); }

.pd__info { padding: clamp(26px, 4vw, 48px); display: flex; flex-direction: column; }
.pd__cat { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); font-family: var(--font-display); margin-bottom: 12px; }
.pd__name { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; text-transform: none; letter-spacing: -0.01em; line-height: 1.08; }
.pd__price { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; }
.pd__price .now { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.pd__price .was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.pd__price .save { background: var(--cream-2); color: var(--accent-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 3px; font-family: var(--font-display); }
.pd__desc { color: var(--muted); margin-top: 18px; font-size: 0.94rem; line-height: 1.75; }
.pd__row { margin-top: 22px; }
.pd__label { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.pd__label button { border: none; background: none; color: var(--accent); font-family: var(--font-display); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding: 0 0 2px; transition: color 0.3s; }
.pd__label button:hover { color: var(--accent-deep); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  min-width: 46px;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
  text-align: center;
}
.chip:hover { border-color: var(--ink); transform: translateY(-2px); }
.chip.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.chip--color {
  min-width: 0;
  width: 40px; height: 40px;
  padding: 0;
  border-radius: 50%;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
}
.chip--color.is-active { border-color: var(--accent); }
.chip--color.is-active::after { content: "✓"; color: #fff; font-size: 0.85rem; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.pd__meta { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.pd__meta div { font-size: 0.8rem; color: var(--muted); }
.pd__meta div strong { color: var(--ink); font-weight: 700; display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 2px; font-family: var(--font-display); }
.pd__meta div strong { font-family: var(--font-display); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; }
.pd__cta { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.pd__cta .note { font-size: 0.76rem; color: var(--muted); text-align: center; }
.pd__save { margin-top: 16px; text-align: center; }
.btn--addbag { border: 1px solid var(--ink); background: transparent; color: var(--ink); width: 100%; }
.btn--addbag:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); transform: translateY(-2px); }
.btn--addbag.is-saved { background: var(--ink); color: var(--ivory); }

/* Size guide table */
.size-guide { display: none; margin-top: 14px; border: 1px solid var(--line); border-radius: 4px; padding: 16px; animation: fadeIn 0.3s var(--ease) both; }
.size-guide.is-open { display: block; }
.size-guide h4 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.size-guide table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.size-guide th, .size-guide td { padding: 8px 6px; text-align: left; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 500; }
.size-guide th { font-weight: 700; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Info modal */
.modal--info .modal__panel { width: min(700px, 100%); }
.modal__panel--info .pd__info { padding: 44px; }
.modal__panel--info h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; }
.modal__panel--info p { color: var(--muted); margin-bottom: 16px; font-size: 0.92rem; line-height: 1.8; }
.modal__panel--info li { color: var(--muted); font-size: 0.92rem; margin-bottom: 8px; }

/* ---------- Drawer (selection bag) ---------- */
.drawer { position: fixed; inset: 0; z-index: 80; }
.drawer[aria-hidden="true"] { visibility: hidden; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(13,11,10,0.7); opacity: 0; transition: opacity 0.4s var(--ease); }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(460px, 100%);
  background: var(--ivory);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.55s var(--ease);
  box-shadow: -30px 0 60px rgba(13,11,10,0.3);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-size: 1.05rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; }
.drawer__count { color: var(--accent); font-size: 0.8rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 18px; }
.drawer__empty { text-align: center; padding: 60px 10px; color: var(--muted); }
.drawer__empty svg { width: 46px; height: 46px; margin: 0 auto 16px; opacity: 0.4; }
.drawer__empty p { font-size: 0.9rem; margin-bottom: 22px; }
.bag-item { display: flex; gap: 14px; border: 1px solid var(--line); border-radius: 4px; padding: 12px; background: var(--white); }
.bag-item__img { width: 74px; height: 92px; border-radius: 3px; overflow: hidden; flex: none; background: var(--cream); }
.bag-item__img img { width: 100%; height: 100%; object-fit: cover; }
.bag-item__info { flex: 1; min-width: 0; }
.bag-item__info h3 { font-family: var(--font-serif); font-style: italic; font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.bag-item__info .sub { font-size: 0.74rem; color: var(--muted); margin-bottom: 6px; }
.bag-item__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.bag-item__price { font-family: var(--font-display); font-weight: 800; font-size: 0.86rem; }
.bag-item__remove { border: none; background: none; color: var(--muted); font-size: 0.72rem; text-decoration: underline; padding: 2px 0; transition: color 0.3s; }
.bag-item__remove:hover { color: var(--accent); }
.bag-item__wa { display: inline-flex; align-items: center; gap: 5px; border: none; background: #1ead61; color: #fff; font-size: 0.63rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 11px; border-radius: 3px; transition: background 0.3s; }
.bag-item__wa svg { width: 13px; height: 13px; }
.bag-item__wa:hover { background: #178a4d; }
.drawer__foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); }
.drawer__note { font-size: 0.74rem; color: var(--muted); text-align: center; margin-bottom: 14px; }

/* ---------- Search ---------- */
.search { position: fixed; inset: 0; z-index: 85; background: rgba(13,11,10,0.82); backdrop-filter: blur(8px); display: none; align-items: flex-start; justify-content: center; }
.search[aria-hidden="false"] { display: flex; animation: fadeIn 0.3s both; }
.search__panel { width: min(760px, 92%); margin-top: 10vh; }
.search__field {
  display: flex; align-items: center; gap: 12px;
  background: var(--ivory);
  border-radius: 6px;
  padding: 6px 12px;
  box-shadow: var(--shadow-card);
  animation: modalUp 0.45s var(--ease) both;
}
.search__field svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.search__field input { flex: 1; border: none; outline: none; background: transparent; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); padding: 16px 4px; }
.search__results { margin-top: 18px; max-height: 60vh; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.search__empty { color: rgba(255,253,249,0.7); text-align: center; padding: 30px; font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; }
.search-res {
  display: flex; gap: 14px; align-items: center;
  background: var(--ivory);
  border-radius: 5px;
  padding: 10px;
  animation: modalUp 0.4s var(--ease) both;
}
.search-res img { width: 56px; height: 70px; object-fit: cover; border-radius: 3px; flex: none; }
.search-res__info { flex: 1; min-width: 0; }
.search-res__info h3 { font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; font-weight: 600; }
.search-res__info p { font-size: 0.74rem; color: var(--muted); }
.search-res__price { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; }
.search-res__view { border: none; background: var(--ink); color: var(--ivory); font-family: var(--font-display); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 14px; border-radius: 3px; transition: background 0.3s; white-space: nowrap; }
.search-res__view:hover { background: var(--accent); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 150%);
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 40px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s;
  font-family: var(--font-body);
}
.toast::before { content: "✓"; color: #4ade80; font-weight: 700; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- Focus / a11y ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
a:focus-visible, button:focus-visible { border-radius: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Keyframes ---------- */
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes waPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(30,173,97,0.45); } 50% { box-shadow: 0 0 0 12px rgba(30,173,97,0); } }
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .btn--header { display: none; }
  .hero__meta { display: none; }
  .arrivals-layout { grid-template-columns: 1fr; }
  .arrival-feature { grid-row: auto; min-height: 440px; }
  .pd { grid-template-columns: 1fr; }
  .pd__gallery-main { aspect-ratio: 4/5; }
}

@media (max-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .value-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; }
  .card-actions { transform: none; opacity: 1; }
  .wa-float { display: flex; width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .marquee__track span { font-size: 0.7rem; }
  .cta-banner__copy { font-size: 0.94rem; }
  .pd__meta { grid-template-columns: 1fr; }
  .product-grid { gap: 12px; }
  .card-body { padding-top: 12px; }
  .card-body h3 { font-size: 1.02rem; }
}

@media (max-width: 400px) {
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-btn--wa { padding: 10px 6px; font-size: 0.56rem; }
  .brand { font-size: 1.05rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}