/* ─── Global Resets & Typography ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
  --alabaster: #FCF9F2; /* Cream background */
  --charcoal: #36312E; /* Deep muted taupe/charcoal */
  --silver: #E8E1DA; /* Light earthy warm line */
  --stone: #A68A6B; /* Lighter brown for secondary texts */
  --mist: #DDD3C8; /* Muted brown */
  --warm: #F4EFE6; /* Warm cream */
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--alabaster);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
  cursor: none;
}

/* ─── Global Custom Cursor ─────────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--charcoal);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              background 0.35s ease,
              opacity 0.3s ease;
  mix-blend-mode: multiply;
}
#cursor.expanded {
  width: 72px;
  height: 72px;
  background: rgba(54,49,46,0.07);
  border: 1px solid rgba(54,49,46,0.25);
  mix-blend-mode: normal;
}
#cursor.on-dark {
  background: var(--alabaster);
  mix-blend-mode: normal;
}
#cursor.on-dark.expanded {
  background: rgba(252,249,242,0.08);
  border: 1px solid rgba(252,249,242,0.3);
}
#cursor-label {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.42rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
#cursor-label.visible { opacity: 1; }
#cursor-label.on-dark { color: var(--alabaster); }

/* hide default cursor everywhere */
a, button, [role="button"], .product-card,
.bento-large, .bento-small, .bento-medium,
.nav-link, .btn-ghost, .btn-ghost-light,
.accordion-trigger, .hotspot, .quick-card { cursor: none; }


h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── Layout Primitives ─────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 5rem; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 768px) {
  .grid-cols-2, .grid-cols-4 { grid-template-columns: 1fr; }
}

/* ─── Typography Utils ─────────────────────────────────────────────────── */
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-light { font-weight: 300; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.text-charcoal { color: var(--charcoal); }
.text-alabaster { color: var(--alabaster); }
.text-stone { color: var(--stone); }
.text-silver { color: var(--silver); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-alabaster { background-color: var(--alabaster); }
.bg-warm { background-color: var(--warm); }

/* ─── Buttons & Links ───────────────────────────────────────────────────── */
.nav-link {
  position: relative;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid currentColor;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  color: var(--charcoal);
  background: transparent;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--alabaster); }

.btn-ghost-light {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(249,249,246,0.6);
  color: var(--alabaster);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-ghost-light:hover { background: var(--alabaster); color: var(--charcoal); }

/* ─── Dropdown ───────────────────────────────────────────────────────────── */
.nav-group { position: relative; white-space: nowrap; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.dropdown-menu.right {
  left: auto;
  right: 0;
}
.nav-group:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  transition: background 0.3s, color 0.3s;
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--alabaster);
}

/* ─── Animations ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up { opacity: 0; animation: fadeUp 1s ease-out forwards; }
.anim-fade-in { opacity: 0; animation: fadeIn 1.1s ease-out forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-5 { animation-delay: 0.75s; }

/* ─── Hero Section ─────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(54,49,46,0.85) 0%, rgba(54,49,46,0.3) 60%, transparent 100%);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--alabaster);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

/* ─── Navbar & Footer ──────────────────────────────────────────────────── */
nav.fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background-color 0.4s, backdrop-filter 0.4s;
}

/* ─── Mobile Menu Toggle & Overlay ───────────────────────────────────────── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}
.mobile-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--alabaster);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu-overlay {
  display: none;
}

@media (max-width: 1024px) {
  .nav-main-container {
    display: flex !important;
    justify-content: space-between !important;
    position: relative;
    z-index: 50;
  }
  .desktop-nav-left, .desktop-nav-right {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; height: 100vh;
    padding-top: 80px;
    background: rgba(30,18,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 40;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .mobile-menu-content .nav-group {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-content .nav-link {
    font-size: 1rem;
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: var(--alabaster) !important;
  }
  .mobile-menu-content .nav-link::after {
    display: none;
  }
  .mobile-menu-content .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
    flex-direction: column;
  }
  .mobile-menu-content .nav-group.open .dropdown-menu {
    display: flex;
  }
  .mobile-menu-content .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.7) !important;
  }
  .mobile-menu-content > a.nav-link {
    margin-top: 1rem;
    align-self: flex-start;
    border-color: rgba(255,255,255,0.3) !important;
  }
}

.nav-backdrop {
  background-color: rgba(54, 49, 46, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

footer {
  background-color: var(--charcoal);
  color: var(--alabaster);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ─── Generic Utilities ─────────────────────────────────────────────────── */
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }

/* Product Cards & Media Hover */
.product-card, .article-card {
  cursor: pointer;
  position: relative;
}
.media-hover-wrap {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.media-hover-wrap img, .media-hover-wrap video {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.media-hover-wrap:hover img, .media-hover-wrap:hover video {
  transform: scale(1.05);
}

.product-img-wrapper {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.product-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

/* Bento Grid Treatments */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 1rem;
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
}
.bento-small, .bento-medium {
  position: relative;
  overflow: hidden;
}
.bento-small { grid-column: span 1; grid-row: span 1; }
.bento-medium { grid-column: span 2; grid-row: span 1; }
@media (max-width: 768px) {
  .bento-grid { display: flex; flex-direction: column; }
  .bento-large, .bento-small, .bento-medium { height: 350px; }
}

.bento-overlay {
  background: linear-gradient(to top, rgba(54,49,46,0.9), rgba(54,49,46,0.2), transparent);
}
.bento-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.bento-large:hover .bento-img, .bento-small:hover .bento-img, .bento-medium:hover .bento-img {
  transform: scale(1.05);
}

.bento-content {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  color: var(--alabaster);
  z-index: 10;
}

/* ─── Interactive Skin Care Collection ──────────────────────────────────── */
.collection-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  min-height: 620px;
  background: transparent;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
}

/* Left: Face Map Column */
.face-col {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}
.face-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-intro-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,14,9,0.88), rgba(22,14,9,0.18));
  pointer-events: none;
}

.collection-intro-copy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
}

.collection-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.collection-brand-list a {
  border: 1px solid rgba(252,249,242,0.22);
  color: var(--alabaster);
  padding: 0.7rem 0.9rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-brand-list a:hover {
  background: rgba(252,249,242,0.12);
}

/* Hotspot Dots */
.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.hotspot-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--alabaster);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hotspot-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(252,249,242,0.6);
  animation: hotspot-pulse 2.2s ease-in-out infinite;
}
.hotspot-ring-outer {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(252,249,242,0.25);
  animation: hotspot-pulse 2.2s ease-in-out infinite 0.4s;
}
@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.35); opacity: 0; }
}
.hotspot:hover .hotspot-inner,
.hotspot.active .hotspot-inner {
  background: var(--stone);
  transform: scale(1.25);
}
.hotspot-label {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--alabaster);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  background: rgba(54,49,46,0.65);
  padding: 3px 8px;
  backdrop-filter: blur(6px);
}
.hotspot:hover .hotspot-label,
.hotspot.active .hotspot-label { opacity: 1; }

/* Center: Accordion Menu Column */
.menu-col {
  background: var(--warm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
}
.collection-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.collection-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.collection-sub {
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 280px;
}

/* Accordion */
.accordion-item { border-bottom: 1px solid rgba(54,49,46,0.1); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.25s;
}
.accordion-trigger:hover,
.accordion-trigger.active { color: var(--stone); }
.accordion-chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--stone);
  flex-shrink: 0;
}
.accordion-trigger.active .accordion-chevron { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.accordion-body.open { max-height: 300px; }
.accordion-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
}
.accordion-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 4px 0 4px 0.75rem;
  border-left: 1px solid var(--mist);
  transition: border-color 0.2s, color 0.2s;
}
.accordion-links a:hover {
  border-color: var(--stone);
  color: var(--charcoal);
}

/* Right: Product Showcase Column */
.product-col {
  position: relative;
  background: #2C2825;
  overflow: hidden;
}
.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product-slide.visible { opacity: 1; }
.product-slide img {
  width: 95%;
  max-width: 550px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  transition: transform 0.65s ease;
  transform: translateY(12px) scale(1);
}
.product-slide.visible img {
  transform: translateY(0) scale(1);
}
.product-slide.visible:hover img {
  transform: translateY(-6px) scale(1.08);
}
.product-slide-label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
}
.product-slide-label p {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,249,242,0.45);
  margin-bottom: 0.25rem;
}
.product-slide-label h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--alabaster);
  font-weight: 400;
}

.product-slide-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.product-slide-links a {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(252,249,242,0.76);
  width: fit-content;
  border-bottom: 1px solid rgba(252,249,242,0.18);
  padding-bottom: 0.2rem;
}

.product-slide-links a:hover {
  color: var(--alabaster);
  border-bottom-color: rgba(252,249,242,0.6);
}

/* Mobile stacking */
@media (max-width: 900px) {
  .collection-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .face-col { min-height: 420px; }
  .product-col { min-height: 420px; }
  .menu-col { padding: 3rem 2rem; }
}

/* ─── Homepage Featured Products ───────────────────────────────────────── */
.featured-products-section {
  background: linear-gradient(180deg, var(--alabaster) 0%, #f7f1e8 100%);
  padding: 5.5rem 0;
}

.featured-products-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.featured-products-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
  color: var(--charcoal);
}

.featured-products-header h2 em {
  color: var(--stone);
  font-style: italic;
}

.featured-products-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.featured-products-copy p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(54,49,46,0.72);
  max-width: 460px;
}

.featured-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.featured-brand-pill {
  border: 1px solid rgba(54,49,46,0.12);
  padding: 0.75rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.featured-brand-pill:hover {
  background: var(--charcoal);
  color: var(--alabaster);
  border-color: var(--charcoal);
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.featured-product-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(54,49,46,0.08);
  padding: 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.featured-product-card small {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

.featured-product-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--stone), rgba(166,138,107,0.14));
  margin: 1rem 0 1.2rem;
}

.featured-product-card h3 {
  font-size: 1.55rem;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.featured-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.featured-product-meta p {
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(54,49,46,0.62);
}

.featured-product-meta span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  white-space: nowrap;
}

.featured-product-description {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(54,49,46,0.72);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.featured-product-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
}

.featured-product-actions span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.featured-product-actions a {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

.future-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.future-content-card {
  background: var(--warm);
  border: 1px solid rgba(54,49,46,0.08);
  padding: 1.75rem;
}

.future-content-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.future-content-card p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(54,49,46,0.72);
}

@media (max-width: 960px) {
  .featured-products-header,
  .featured-products-grid,
  .future-content-grid {
    grid-template-columns: 1fr;
  }
}

/* Catalog Landing Pages */
.catalog-landing-shell {
  padding: 0 4rem 100px;
}

.catalog-landing-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.catalog-landing-kicker {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.catalog-landing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.catalog-landing-title em {
  color: var(--stone);
  font-style: italic;
}

.catalog-landing-copy {
  max-width: 560px;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(54,49,46,0.72);
}

.catalog-landing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.catalog-landing-chips a {
  border: 1px solid rgba(54,49,46,0.14);
  padding: 0.75rem 0.95rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-landing-chips a:hover {
  background: var(--charcoal);
  color: var(--alabaster);
  border-color: var(--charcoal);
}

.catalog-landing-hero-media {
  background: #f4efe6;
  border: 1px solid rgba(54,49,46,0.08);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.catalog-landing-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0,0,0,0.1));
}

.catalog-landing-note {
  background: #fff;
  border: 1px solid rgba(54,49,46,0.08);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
}

.catalog-landing-note p {
  font-size: 0.76rem;
  line-height: 1.85;
  color: rgba(54,49,46,0.72);
}

.catalog-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.catalog-landing-card {
  background: #fff;
  border: 1px solid rgba(54,49,46,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.catalog-landing-card-image {
  background: #f6f0e8;
  aspect-ratio: 1 / 0.95;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: end;
  justify-content: center;
}

.catalog-landing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,0.1));
}

.catalog-landing-card-copy {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.catalog-landing-card-copy small {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

.catalog-landing-card-copy h2 {
  font-size: 1.5rem;
  line-height: 1.08;
}

.catalog-landing-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.catalog-landing-meta span {
  font-size: 0.7rem;
  line-height: 1.6;
  color: rgba(54,49,46,0.68);
}

.catalog-landing-meta strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.catalog-landing-card-copy p {
  font-size: 0.76rem;
  line-height: 1.85;
  color: rgba(54,49,46,0.72);
  flex: 1;
}

.catalog-landing-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.catalog-landing-actions span {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.catalog-landing-actions a {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

@media (max-width: 1024px) {
  .catalog-landing-hero,
  .catalog-landing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .catalog-landing-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


/* ── Pill Button (Global) ─────────────────────── */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--charcoal);
  border-radius: 100px;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.35s, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.pill-btn::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 100px;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.pill-btn:hover::before { transform: scaleX(1); }
.pill-btn:hover {
  color: var(--alabaster);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(54,49,46,0.14);
}
.pill-btn span { position: relative; z-index: 1; pointer-events: none; }
.pill-btn-gold { border-color: var(--gold); color: var(--gold); }
.pill-btn-gold::before { background: var(--gold); }
.pill-btn-gold:hover { color: var(--alabaster); }


/* --- CTA Bar Specific Fixes --- */
.cta-bar {
  display: flex !important;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-bar-title {
  flex: 1 1 50%;
  min-width: 250px;
}
.cta-bar .pill-btn {
  flex: 0 0 auto !important;
  max-width: max-content !important;
  white-space: nowrap;
}

/* Universal Nav Book Button Theming */
.nav-book-btn {
  border: 1px solid rgba(26,26,26,0.2) !important;
  transition: border-color 0.3s, color 0.3s;
  border-radius: 4px;
}
.text-alabaster.nav-book-btn, 
.text-alabaster .nav-book-btn,
.nav-backdrop.dark .nav-book-btn {
  border-color: rgba(253,252,248,0.2) !important;
}

nav.theme-dark .nav-book-btn { border-color: rgba(253,252,248,0.2) !important; }
nav.theme-light .nav-book-btn { border-color: rgba(26,26,26,0.2) !important; }
