/* ============================================
   VICHÉ — Luxury Beauty Website
   ============================================ */

:root {
  --gold: #bc8228;
  --gold-light: #d4a84b;
  --gold-dark: #8f5f18;
  --gold-grad: linear-gradient(135deg, #e0b85a 0%, #c9952e 45%, #a67c22 100%);
  --gold-btn: linear-gradient(90deg, #d4a84b 0%, #bc8228 55%, #9a681c 100%);
  --cream: #f7f1e8;
  --cream-soft: #fbf7f1;
  --ink: #1a1a1a;
  --muted: #6b6560;
  --line: #e8e0d6;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --header-h: 88px;
  --announce-h: 38px;
  --shadow-soft: 0 12px 40px rgba(28, 20, 10, 0.08);
  --radius: 4px;
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse at top, #fffefb 0%, var(--cream-soft) 42%, #fff 100%);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-gold {
  background: var(--gold-btn);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(188, 130, 40, 0.28);
}

.btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(188, 130, 40, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.shop-link {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.shop-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ---------- Announcement ---------- */
.announce {
  position: relative;
  height: var(--announce-h);
  background: linear-gradient(90deg, #a67c22 0%, var(--gold) 40%, #d4a84b 50%, var(--gold) 60%, #a67c22 100%);
  background-size: 200% 100%;
  animation: announceSheen 10s linear infinite;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  overflow: hidden;
}

@keyframes announceSheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.announce-static {
  position: relative;
  z-index: 1;
}

.announce-track {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  padding-left: 1.75rem;
  animation: announceMarquee 32s linear infinite;
  opacity: 0.95;
}

.announce-track span {
  flex-shrink: 0;
}

@keyframes announceMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 901px) {
  .announce-static {
    display: none;
  }
  .announce-track {
    display: flex;
  }
  .announce {
    justify-content: flex-end;
  }
}

.announce-social {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  background: linear-gradient(90deg, transparent, rgba(166, 124, 34, 0.95) 18%);
  padding-left: 2rem;
}

.announce-social a {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  opacity: 0.95;
  transition: opacity 0.2s, transform 0.25s ease;
}

.announce-social a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.announce-social svg {
  width: 15px;
  height: 15px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 112px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

.main-nav > a,
.nav-dropdown > a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a.active,
.main-nav a:hover,
.nav-dropdown > a:hover {
  color: var(--gold);
}

.chevron {
  width: 10px;
  height: 7px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: var(--cream-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--gold);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--announce-h) - var(--header-h));
  min-height: 560px;
  overflow: hidden;
  background: #f3ebe1;
}

.hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 55%;
  animation: heroDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroDrift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, 1%); }
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 250, 240, 0.18) 48%,
    rgba(255, 236, 200, 0.28) 50%,
    rgba(255, 250, 240, 0.12) 52%,
    transparent 65%
  );
  background-size: 220% 100%;
  animation: heroShimmer 9s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

@keyframes heroShimmer {
  0%, 100% { background-position: 120% 0; opacity: 0.35; }
  50% { background-position: -20% 0; opacity: 0.7; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 238, 230, 0.62) 0%,
    rgba(245, 238, 230, 0.32) 28%,
    rgba(245, 238, 230, 0.08) 48%,
    transparent 64%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-motes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-motes span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(212, 168, 75, 0.55);
  transform: rotate(45deg);
  animation: moteFloat 11s ease-in-out infinite;
  opacity: 0;
}

.hero-motes span:nth-child(1) { left: 12%; top: 68%; animation-delay: 0s; }
.hero-motes span:nth-child(2) { left: 22%; top: 42%; width: 3px; height: 3px; animation-delay: 2.2s; }
.hero-motes span:nth-child(3) { left: 18%; top: 28%; animation-delay: 4.1s; }
.hero-motes span:nth-child(4) { left: 8%; top: 52%; width: 4px; height: 4px; animation-delay: 1.4s; }
.hero-motes span:nth-child(5) { left: 28%; top: 62%; width: 3px; height: 3px; animation-delay: 5.5s; }

@keyframes moteFloat {
  0% { transform: rotate(45deg) translateY(12px); opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.45; }
  100% { transform: rotate(45deg) translateY(-70px); opacity: 0; }
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  pointer-events: none;
}

.hero-content .btn,
.hero-content a {
  pointer-events: auto;
}

.hero-text {
  max-width: 34rem;
}

.hero-text.glass-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.65rem, 3vw, 2.1rem) clamp(1.75rem, 3.5vw, 2.75rem);
  background: linear-gradient(
    145deg,
    rgba(255, 252, 248, 0.55) 0%,
    rgba(255, 248, 238, 0.32) 45%,
    rgba(247, 241, 232, 0.42) 100%
  );
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-right-color: rgba(188, 130, 40, 0.18);
  border-bottom-color: rgba(188, 130, 40, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(188, 130, 40, 0.06),
    0 18px 50px rgba(40, 28, 12, 0.08);
  overflow: hidden;
}

.hero-text.glass-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 55%;
  height: 90%;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 70%
  );
  transform: rotate(8deg);
  pointer-events: none;
  animation: glassPanelGlint 7s ease-in-out infinite;
}

.hero-text.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 49%,
    rgba(232, 197, 106, 0.12) 51%,
    transparent 60%
  );
  transform: translateX(-140%) skewX(-14deg);
  animation: glassSweep 6.5s ease-in-out 1.2s infinite;
}

@keyframes glassPanelGlint {
  0%, 100% { opacity: 0.45; transform: rotate(8deg) translateX(0); }
  50% { opacity: 0.75; transform: rotate(8deg) translateX(8%); }
}

.hero-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin: 0 0 0.55rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise 0.9s ease 0.15s forwards;
}

.hero-text h1 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
}

.hero-line {
  display: block;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 1s ease 0.35s forwards;
}

.hero-brand {
  display: block;
  white-space: nowrap;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(100deg, #e8c56a 0%, #bc8228 42%, #8f5f18 78%, #d4a84b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 1.05s ease 0.55s forwards, brandSheen 7s ease-in-out 1.8s infinite;
}

@keyframes brandSheen {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-rule {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  opacity: 0;
  animation: heroRise 0.8s ease 0.75s forwards;
}

.hero-rule span {
  display: block;
  height: 1px;
  width: 0;
  background: var(--gold);
  animation: ruleGrow 0.9s ease 1s forwards;
}

.hero-rule span:last-of-type {
  animation-delay: 1.15s;
}

.hero-rule i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg) scale(0);
  display: block;
  flex-shrink: 0;
  animation: diamondPop 0.55s ease 1.2s forwards;
}

@keyframes ruleGrow {
  to { width: 40px; }
}

@keyframes diamondPop {
  to { transform: rotate(45deg) scale(1); }
}

.hero-lead {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin: 0 auto 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.95s ease 0.9s forwards;
}

.hero-cta {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.9s ease 1.1s forwards;
  overflow: hidden;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: ctaSweep 3.8s ease-in-out 2.2s infinite;
}

@keyframes ctaSweep {
  0%, 60% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-dark);
  opacity: 0;
  animation: heroRise 1s ease 1.6s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}

.hero-scroll-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.55; }
  50% { transform: scaleY(0.55); opacity: 1; }
}

/* ---------- Values ---------- */
.values {
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  color: var(--gold);
  transition: transform 0.45s ease;
}

.value-item:hover .value-icon svg {
  transform: scale(1.08);
  transition: transform 0.35s ease;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-item.visible .value-icon,
.value-item.reveal.visible .value-icon {
  animation: iconSoftPulse 3.2s ease-in-out infinite;
}

@keyframes iconSoftPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.value-item h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Section headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.ornament span {
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  transition: width 0.9s ease;
}

.ornament i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg) scale(0);
  display: block;
  flex-shrink: 0;
  transition: transform 0.45s ease 0.2s;
}

.section-heading.visible .ornament span,
.reveal.visible .ornament span,
.page-hero .ornament span {
  width: 56px;
}

.section-heading.visible .ornament i,
.reveal.visible .ornament i,
.page-hero .ornament i {
  transform: rotate(45deg) scale(1);
}

.page-hero .ornament {
  margin-inline: auto;
  margin-bottom: 1rem;
}

/* ---------- Collections ---------- */
.collections {
  padding: 4.5rem 0 3.5rem;
  background: var(--white);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.collection-card {
  text-align: center;
  transition: transform 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  background: var(--cream-soft);
}

.collection-img::after,
.product-media::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 252, 245, 0.55) 50%,
    rgba(232, 197, 106, 0.18) 53%,
    transparent 60%
  );
  transform: translateX(-130%) skewX(-16deg);
  animation: glassSweep 5.5s ease-in-out infinite;
}

.collection-card:nth-child(2) .collection-img::after,
.product-track .product-card:nth-child(2) .product-media::after { animation-delay: 0.7s; }
.collection-card:nth-child(3) .collection-img::after,
.product-track .product-card:nth-child(3) .product-media::after { animation-delay: 1.4s; }
.collection-card:nth-child(4) .collection-img::after,
.product-track .product-card:nth-child(4) .product-media::after { animation-delay: 2.1s; }
.collection-card:nth-child(5) .collection-img::after,
.product-track .product-card:nth-child(5) .product-media::after { animation-delay: 2.8s; }

.collection-card:hover .collection-img::after,
.product-card:hover .product-media::after {
  animation-duration: 1.6s;
}

@keyframes glassSweep {
  0%, 55% { transform: translateX(-130%) skewX(-16deg); opacity: 0; }
  60% { opacity: 1; }
  78% { transform: translateX(130%) skewX(-16deg); opacity: 0.85; }
  100% { transform: translateX(130%) skewX(-16deg); opacity: 0; }
}

.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-img img {
  transform: scale(1.05);
}

.collection-card h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.collection-card p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Best Sellers ---------- */
.bestsellers {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-soft) 100%);
}

.carousel-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4.4rem) / 5);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-track .product-card {
  scroll-snap-align: start;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 252, 248, 0.92) 100%);
  border: 1px solid rgba(232, 224, 214, 0.95);
  padding: 0 0 1.15rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  background: #f3ece3;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.45s ease;
  filter: drop-shadow(0 8px 16px rgba(80, 55, 20, 0.12));
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: var(--gold);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
}

.badge-new {
  background: var(--ink);
}

.product-card h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0 0.75rem;
  margin-bottom: 0.35rem;
}

.price {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.rating .stars {
  color: var(--gold);
  letter-spacing: 0.05em;
}

.rating.large .stars {
  font-size: 1rem;
}

.product-card .btn {
  width: calc(100% - 1.5rem);
  margin-inline: auto;
  padding: 0.7rem 1rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  color: var(--gold);
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

/* ---------- Luxury banner ---------- */
.luxury-banner {
  padding: 1rem 0 2.5rem;
  background: var(--cream-soft);
}

.banner-panel {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--gold-light);
  background-size: 110% auto;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background-size 8s ease;
}

.banner-panel.visible,
.banner-panel.reveal.visible {
  background-size: 100% auto;
  animation: bannerDrift 22s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
  from { background-position: 40% center; }
  to { background-position: 62% center; }
}

.banner-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 236, 220, 0.88) 0%,
    rgba(245, 236, 220, 0.55) 38%,
    rgba(245, 236, 220, 0.15) 65%,
    transparent 100%
  );
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
  max-width: 420px;
}

.banner-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.banner-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}

/* ---------- Info cards ---------- */
.info-cards {
  padding: 1rem 0 4rem;
  background: var(--cream-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.info-lead {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.check-list {
  list-style: none;
  margin-bottom: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--white);
  outline: 1px solid var(--gold);
}

.reviews-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.4rem 0 1rem;
}

.results-img {
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
}

.results-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--line);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  outline: none;
  background: var(--cream-soft);
}

.newsletter input:focus {
  border-color: var(--gold);
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
}

/* ---------- Instagram ---------- */
.instagram {
  padding: 4rem 0 3rem;
  background: var(--white);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.ig-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.ig-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.trust-item p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.footer-brand .logo {
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 112px;
  width: auto;
  object-fit: contain;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  justify-content: flex-start;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  background: var(--gold);
  color: var(--white);
  padding: 0.95rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
}

.legal-links {
  display: flex;
  gap: 1.25rem;
}

.legal-links a {
  opacity: 0.92;
  transition: opacity 0.2s;
}

.legal-links a:hover {
  opacity: 0.7;
}

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 10, 0.72);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.search-overlay[hidden] {
  display: none;
}

.search-form {
  width: min(90%, 560px);
}

.search-form input {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: none;
  border-bottom: 2px solid var(--gold);
  background: transparent;
  color: var(--white);
  font-size: 1.35rem;
  font-family: var(--serif);
  outline: none;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.search-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  z-index: 300;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-left.visible {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Luxury page polish */
.site-header {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.main-nav > a,
.nav-dropdown > a {
  position: relative;
}

.main-nav > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a.active::after {
  transform: scaleX(1);
}

.product-card {
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-img img {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-img {
  transition: transform 0.4s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.page-hero--visual .page-hero-media img {
  animation: pageHeroDrift 24s ease-in-out infinite alternate;
}

@keyframes pageHeroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .collections-grid,
  .product-track,
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-track {
    grid-auto-columns: minmax(220px, 78%);
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--announce-h) + var(--header-h)) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a,
  .nav-dropdown > a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 0.75rem;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .hero {
    height: calc(100vh - var(--announce-h) - var(--header-h));
    min-height: 480px;
  }

  .hero-content {
    text-align: center;
    align-items: flex-end;
    padding-bottom: 10%;
  }

  .hero-text {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-text.glass-panel {
    background: rgba(255, 250, 244, 0.78);
    max-width: min(100%, 26rem);
    margin-inline: auto;
  }

  .hero-brand {
    letter-spacing: 0.06em;
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .hero-text p,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-eyebrow {
    text-align: center;
  }

  .hero-rule {
    margin-inline: auto;
  }

  .hero-motes {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-bg-img {
    object-position: 78% 55%;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(245, 238, 230, 0.1) 0%,
      rgba(245, 238, 230, 0.5) 48%,
      rgba(245, 238, 230, 0.9) 100%
    );
  }

  .info-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid .value-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .announce {
    justify-content: center;
    padding: 0 1rem;
  }

  .announce-social {
    display: none;
  }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid,
  .trust-grid,
  .footer-grid,
  .ig-grid {
    grid-template-columns: 1fr;
  }

  .ig-grid {
    grid-template-columns: 1fr 1fr;
  }

  .banner-panel {
    min-height: 280px;
    background-position: 70% center;
  }

  .banner-content {
    max-width: 100%;
    background: rgba(247, 241, 232, 0.82);
    margin: 1rem;
    border-radius: 6px;
  }

  .carousel-btn {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter .btn {
    width: 100%;
  }
}

/* —— Inner pages —— */
.inner-page {
  background: var(--cream, #f7f1e8);
}

.page-hero {
  position: relative;
  padding: 4rem 0 3.25rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero--visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-bottom: none;
  background: var(--cream);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: saturate(0.82) brightness(1.06);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.55) 0%, rgba(247, 241, 232, 0.42) 50%, rgba(247, 241, 232, 0.7) 100%),
    linear-gradient(90deg, rgba(247, 241, 232, 0.25) 0%, transparent 28%, transparent 72%, rgba(247, 241, 232, 0.25) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0.5rem 0 0.75rem;
}

.page-lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-body {
  padding: 3rem 0 4.5rem;
}

.page-body .prose {
  max-width: 42rem;
  margin: 0 auto 1.15rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 300;
}

.page-body .prose a {
  color: var(--gold);
}

/* —— Blog article pages —— */
.blog-article {
  max-width: 740px;
  margin: 0 auto;
  color: var(--ink);
}

.blog-article .toc {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
}

.blog-article .toc h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.blog-article .toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.blog-article .toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
}

.blog-article .toc a:hover {
  color: var(--gold);
}

.blog-article h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 100px;
}

.blog-article h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.75rem 0 0.75rem;
  scroll-margin-top: 100px;
}

.blog-article p {
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

.blog-article a {
  color: var(--gold);
}

.blog-article .explore-box,
.blog-article .cta-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}

.blog-article .cta-box {
  text-align: center;
}

.blog-article .faq-list {
  margin-top: 1rem;
}

.inner-page .page-body:has(.blog-article) {
  background: var(--cream-soft);
}

.page-list {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  padding-left: 1.25rem;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.9;
}

.product-track.page-products {
  display: grid;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  overflow: visible;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-track.page-products .product-card {
  width: 100%;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.content-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.page-form .form-intro {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: normal;
  text-transform: none;
}

.content-grid .btn {
  margin-top: 0.5rem;
}

.page-form.narrow {
  max-width: 420px;
  margin: 0 auto;
}

.page-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-form input,
.page-form textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: #faf7f2;
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
}

.page-form input:focus,
.page-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.form-note {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--gold);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.04em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-top: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.blog-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

.blog-card:hover h3 {
  color: var(--gold);
}

.blog-card p {
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.blog-meta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* —— About page —— */
.about-page .page-body {
  padding: 0;
}

.about-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: var(--cream-soft);
}

.about-split-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

.about-kenburns img {
  animation: aboutKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes aboutKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-2%, 1%); }
}

.about-float-label {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  animation: aboutFloat 4.5s ease-in-out infinite;
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background:
    linear-gradient(135deg, #fffefb 0%, var(--cream) 55%, #f3ebe0 100%);
}

.about-split-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.about-split-copy p {
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 34rem;
}

.about-quote-band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.about-quote-media {
  position: absolute;
  inset: 0;
}

.about-quote-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 22, 18, 0.45) 0%, rgba(26, 22, 18, 0.62) 100%);
}

.about-quote-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.about-quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 44rem;
}

.about-quote-inner blockquote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.about-quote-inner .ornament span {
  background: rgba(255, 255, 255, 0.45);
}

.about-quote-inner .ornament i {
  background: var(--gold-light);
}

.about-pillars {
  padding: 5rem 0 4rem;
  background: var(--white);
}

.about-pillars .section-sub {
  margin-top: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 3rem;
}

.about-pillar {
  text-align: center;
}

.about-pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.15rem;
  color: var(--gold);
}

.about-pillar-icon svg {
  width: 100%;
  height: 100%;
}

.about-draw {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 1.1s ease;
}

.about-pillar.visible .about-draw,
.about-pillar.reveal.visible .about-draw {
  stroke-dashoffset: 0;
}

.about-draw.delay-path {
  transition-delay: 0.25s;
}

.about-pulse {
  transform-origin: center;
  opacity: 0.85;
}

.about-pillar.visible .about-pulse,
.about-pillar.reveal.visible .about-pulse {
  animation: aboutPulse 2.4s ease-in-out infinite;
}

@keyframes aboutPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.15); opacity: 1; }
}

.about-pillar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.about-pillar p {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-journey {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse at top, #fff 0%, var(--cream) 55%, #efe6da 100%);
}

.about-timeline {
  list-style: none;
  margin: 3rem auto 0;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 0;
  position: relative;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-light), var(--line));
}

.about-timeline li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  align-items: start;
}

.about-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  position: relative;
  z-index: 1;
  background: transparent;
}

.about-timeline h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.about-timeline p {
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.65rem;
  padding: 0.65rem;
  background: var(--ink);
}

.about-mosaic-item {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.about-mosaic-tall {
  grid-row: span 2;
}

.about-mosaic-wide {
  grid-column: span 2;
}

.about-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-mosaic-item:hover img {
  transform: scale(1.06);
}

.about-mosaic-item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.75rem;
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-mosaic-item:hover figcaption,
.about-mosaic-item.reveal.visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.about-close {
  padding: 5rem 0;
  text-align: center;
  background:
    linear-gradient(180deg, var(--cream-soft) 0%, #fff 100%);
}

.about-close-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.about-close-inner > p:not(.about-eyebrow) {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.about-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .content-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero--visual {
    min-height: 240px;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split-media {
    min-height: 320px;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .about-mosaic-tall {
    grid-row: span 1;
  }

  .about-mosaic-wide {
    grid-column: span 2;
  }

  .about-timeline::before {
    left: 0.95rem;
  }
}

@media (max-width: 640px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img,
  .hero-shimmer,
  .hero-brand,
  .hero-cta::after,
  .hero-motes span,
  .hero-scroll-line,
  .announce,
  .announce-track,
  .value-item.visible .value-icon,
  .banner-panel.visible,
  .page-hero--visual .page-hero-media img,
  .collection-img::after,
  .product-media::after,
  .hero-text.glass-panel::before,
  .hero-text.glass-panel::after {
    animation: none !important;
  }

  .hero-eyebrow,
  .hero-line,
  .hero-brand,
  .hero-rule,
  .hero-lead,
  .hero-cta,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-rule span {
    width: 48px !important;
  }

  .hero-rule i {
    transform: rotate(45deg) scale(1) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Blog article pages
   ============================================ */
body.blog-page {
  background: var(--cream-soft);
}

.blog-article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.blog-article {
  background: var(--white);
  padding: 2.5rem 2rem 3rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .blog-article {
    padding: 3rem 3.5rem 4rem;
  }
}

.blog-article .article-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-article h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.blog-article .toc {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 2.5rem;
}

.blog-article .toc h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.blog-article .toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.blog-article .toc li {
  margin: 0.4rem 0;
  font-size: 0.92rem;
  font-weight: 400;
}

.blog-article .toc a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.blog-article .toc a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.blog-article h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 100px;
}

.blog-article h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.75rem 0 0.75rem;
}

.blog-article p,
.blog-article li {
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 1.25rem 1.25rem;
}

.blog-article a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article .explore-box {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  margin: 2.5rem 0;
}

.blog-article .explore-box h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.blog-article .explore-box ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.blog-article .explore-box li {
  margin-bottom: 0.5rem;
}

.blog-article .article-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 1rem;
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  border: 1px solid var(--line);
}

.blog-article .article-cta h2 {
  margin-top: 0;
}

.blog-article .article-cta .btn {
  display: inline-block;
  margin: 0.5rem 0.4rem;
  padding: 0.85rem 1.5rem;
  background: var(--gold-btn);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-article .faq-section details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.blog-article .faq-section summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
  list-style: none;
}

.blog-article .faq-section summary::-webkit-details-marker {
  display: none;
}

.blog-article .faq-section details p {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.blog-hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}
