/** Shopify CDN: Minification failed

Line 15:0 All "@import" rules must come first

**/
/* ===== RESET & TYPOGRAPHY ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
  --color-noir: #0a0a0a;
  --color-ivory: #f5f0eb;
  --color-champagne: #c9a96e;
  --color-champagne-light: #e8d5b0;
  --color-champagne-dark: #a8864a;
  --color-ash: #8a8a8a;
  --color-smoke: #2a2a2a;
  --color-mist: #d4cfc9;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --letter-ultra: 0.3em;
  --letter-mega: 0.5em;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-noir);
  color: var(--color-ivory);
  font-family: var(--font-sans);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
}

body.loading {
  overflow: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1;
}

em {
  font-style: italic;
}

::selection {
  background: var(--color-champagne);
  color: var(--color-noir);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-noir);
}

::-webkit-scrollbar-thumb {
  background: var(--color-champagne);
  border-radius: 3px;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.pre-logo {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: preFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.pre-line-container {
  width: 0;
  opacity: 0;
  animation: preLineExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.pre-sub {
  opacity: 0;
  transform: translateY(8px);
  animation: preFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.pre-curtain-top,
.pre-curtain-bottom {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--color-noir);
  z-index: 2;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.pre-curtain-top {
  top: 0;
  height: 50%;
  transform: translateY(0);
}

.pre-curtain-bottom {
  bottom: 0;
  height: 50%;
  transform: translateY(0);
}

.pre-curtain-top.reveal {
  transform: translateY(-100%);
}

.pre-curtain-bottom.reveal {
  transform: translateY(100%);
}

.pre-curtain-top::after,
.pre-curtain-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-champagne), var(--color-champagne-light), var(--color-champagne), transparent);
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.pre-curtain-top::after {
  bottom: 0;
}

.pre-curtain-bottom::after {
  top: 0;
}

.pre-curtain-top.reveal::after,
.pre-curtain-bottom.reveal::after {
  opacity: 1;
}

@keyframes preFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preLineExpand {
  to {
    width: 80px;
    opacity: 1;
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.hero-text {
  opacity: 0;
  transform: translateY(60px);
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-text-2 {
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-text-3 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.hero-line {
  width: 0;
  animation: lineGrow 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  to {
    width: 80px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  transition: all 0.7s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 0 3rem;
  }
}

.nav-scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15) !important;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-left {
  display: none;
}

@media (min-width: 768px) {
  .nav-left {
    display: flex;
  }
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.6);
  text-decoration: none;
  transition: color 0.5s ease;
}

.nav-link:hover {
  color: var(--color-champagne);
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-ivory);
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-logo-text {
    font-size: 1.75rem;
  }
}

.icon-btn {
  background: none;
  border: none;
  color: rgba(245, 240, 235, 0.6);
  cursor: pointer;
  transition: color 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  color: var(--color-champagne);
}

.icon-btn.mobile-toggle {
  display: flex;
}

@media (min-width: 768px) {
  .icon-btn.mobile-toggle {
    display: none;
  }
}

.icon-btn.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .icon-btn.hidden-mobile {
    display: flex;
  }
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 1rem;
  height: 1rem;
  background: var(--color-champagne);
  color: var(--color-noir);
  font-size: 9px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cart-count.hidden {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1) saturate(0.3);
}

.hero-overlay-1,
.hero-overlay-2,
.hero-overlay-3 {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay-1 {
  background: linear-gradient(to top, var(--color-noir), transparent, rgba(10, 10, 10, 0.5));
}

.hero-overlay-2 {
  background: linear-gradient(to right, rgba(10, 10, 10, 0.4), transparent, rgba(10, 10, 10, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.5rem;
  max-width: 100%;
}

.hero-line {
  height: 1px;
  background: rgba(201, 169, 110, 0.6);
  margin: 0 auto 2rem;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: var(--letter-mega);
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.8);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--color-ivory);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 8rem;
  }
}

.hero-heading em {
  color: rgba(201, 169, 110, 0.9);
}

.hero-subheading {
  font-size: 12px;
  color: rgba(245, 240, 235, 0.4);
  margin-top: 2rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 300;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 1rem 2.5rem;
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: var(--color-champagne);
  background: none;
  cursor: pointer;
  transition: all 0.7s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-champagne);
  color: var(--color-noir);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(0.25rem);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 2s ease 3.8s forwards;
  z-index: 10;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: var(--letter-mega);
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.6);
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.5), transparent);
}

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--color-noir);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 10px;
  letter-spacing: var(--letter-mega);
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.3);
  white-space: nowrap;
  margin: 0 2rem;
}

.marquee-dot {
  color: rgba(201, 169, 110, 0.2);
  margin: 0 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 10rem 3rem;
  }
}

.section-container {
  max-width: 1800px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}

.section-label {
  font-size: 10px;
  letter-spacing: var(--letter-mega);
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 4.5rem;
  }
}

.section-subtitle {
  color: var(--color-ash);
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  max-width: 28rem;
  margin-top: 1.5rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2rem;
  }
}

/* ===== PRODUCT CARD ===== */
.product-card {
  display: flex;
  flex-direction: column;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(40px);
}

.product-card.active {
  opacity: 1;
  transform: translateY(0);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--color-smoke);
  aspect-ratio: 3 / 4;
  margin-bottom: 1.25rem;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85) contrast(1.05) saturate(0.4);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: all 0.5s ease;
}

.product-card:hover .product-tag {
  transform: translateY(0);
  opacity: 1;
}

.tag-btn {
  display: inline-block;
  background: var(--color-champagne);
  color: var(--color-noir);
  font-size: 10px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 9px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.375rem 0.75rem;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 235, 0.9);
  transition: color 0.5s ease;
}

.product-card:hover .product-title {
  color: var(--color-champagne);
}

.product-material {
  font-size: 11px;
  color: rgba(138, 138, 138, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.product-price {
  font-family: var(--font-serif);
  color: rgba(201, 169, 110, 0.8);
  font-size: 1.125rem;
  white-space: nowrap;
}

/* ===== EDITORIAL SPLIT ===== */
.editorial-section {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 50vh;
}

@media (min-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
  }
}

.editorial-image {
  position: relative;
  overflow: hidden;
  height: 50vh;
}

@media (min-width: 1024px) {
  .editorial-image {
    height: auto;
  }
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7) contrast(1.1);
  transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-image:hover img {
  filter: grayscale(0%) brightness(0.7) contrast(1.1);
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(10, 10, 10, 0.3));
  display: none;
}

@media (min-width: 1024px) {
  .editorial-overlay {
    display: block;
  }
}

.editorial-content {
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
}

@media (min-width: 768px) {
  .editorial-content {
    padding: 5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .editorial-content {
    padding: 0;
  }
}

.editorial-text {
  max-width: 32rem;
}

.editorial-text p {
  color: var(--color-ash);
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.editorial-text p:last-child {
  color: rgba(138, 138, 138, 0.5);
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: var(--color-champagne);
  text-decoration: none;
  transition: color 0.5s ease;
}

.editorial-link:hover {
  color: var(--color-champagne-light);
}

.editorial-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.editorial-link:hover svg {
  transform: translateX(0.25rem);
}

/* ===== ATELIER STATS ===== */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .atelier-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.stat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(40px);
}

.stat-card.active {
  opacity: 1;
  transform: translateY(0);
}

.stat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.6) saturate(0.3);
}

.stat-card:hover .stat-image {
  transform: scale(1.05);
}

.stat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-noir), rgba(10, 10, 10, 0.2), transparent);
  z-index: 1;
}

.stat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  z-index: 2;
}

.stat-number {
  color: rgba(201, 169, 110, 0.6);
  font-family: var(--font-serif);
  font-size: 3.75rem;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  margin-top: 0.5rem;
}

/* ===== FEATURED PRODUCT ===== */
.featured-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-section {
    height: 100vh;
  }
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) saturate(0.3);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-noir), rgba(10, 10, 10, 0.3), transparent);
  z-index: 1;
}

.featured-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.6), transparent, rgba(10, 10, 10, 0.6));
  z-index: 1;
}

.featured-content {
  position: absolute;
  bottom: 4rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  max-width: 1800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .featured-content {
    bottom: 6rem;
    left: 3rem;
    right: auto;
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .featured-content {
    width: 40%;
  }
}

.featured-label {
  font-size: 10px;
  letter-spacing: var(--letter-mega);
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
  margin-bottom: 1rem;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .featured-title {
    font-size: 3.75rem;
  }
}

.featured-title em {
  color: rgba(201, 169, 110, 0.8);
}

.featured-desc {
  color: var(--color-ash);
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.featured-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.featured-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-champagne);
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.875rem 2rem;
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: var(--color-champagne);
  background: none;
  cursor: pointer;
  transition: all 0.7s ease;
}

.btn-add:hover {
  background: var(--color-champagne);
  color: var(--color-noir);
}

.btn-add svg {
  width: 13px;
  height: 13px;
}

/* ===== MAISON SECTION ===== */
.maison-section {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.maison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 6rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .maison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.maison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.maison-image {
  position: relative;
  overflow: hidden;
}

.maison-image-1 {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}

.maison-image-2 {
  aspect-ratio: 1;
}

.maison-image-3 {
  aspect-ratio: 1;
}

.maison-image-4 {
  grid-row: 2 / 4;
  aspect-ratio: 3 / 4;
}

.maison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.75);
  transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.maison-image:hover .maison-img {
  filter: grayscale(0%) brightness(0.75);
}

.maison-content h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .maison-content h2 {
    font-size: 3rem;
  }
}

.maison-content h2 em {
  color: rgba(201, 169, 110, 0.8);
}

.maison-content p {
  color: var(--color-ash);
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.maison-stats {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(201, 169, 110, 0.8);
}

.stat-item-label {
  font-size: 9px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.5);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(201, 169, 110, 0.15);
}

/* ===== PRESS QUOTE ===== */
.quote-section {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .quote-section {
    padding: 10rem 3rem;
  }
}

.quote-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(201, 169, 110, 0.2);
  margin: 0 auto 2rem;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(245, 240, 235, 0.8);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 2.5rem;
  }
}

.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-attr-line {
  width: 1px;
  height: 1.5rem;
  background: rgba(201, 169, 110, 0.3);
}

.quote-attr-text {
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.6);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.newsletter-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .newsletter-container {
    padding: 8rem 3rem;
  }

  .newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
  }
}

.newsletter-text p {
  color: var(--color-ash);
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.form-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-ivory);
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  transition: border-color 0.5s ease;
}

.form-input::placeholder {
  color: rgba(138, 138, 138, 0.3);
}

.form-input:focus {
  outline: none;
  border-color: rgba(201, 169, 110, 0.5);
}

.form-submit {
  background: var(--color-champagne);
  color: var(--color-noir);
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease;
  white-space: nowrap;
}

.form-submit:hover {
  background: var(--color-champagne-light);
}

.form-disclaimer {
  color: rgba(138, 138, 138, 0.3);
  font-size: 10px;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

/* ===== SHIMMER EFFECT ===== */
.shimmer {
  background: linear-gradient(110deg, transparent 25%, rgba(201, 169, 110, 0.08) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.featured-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 3.5rem;
  text-align: center;
  border: 1px solid transparent;
  transition: background 0.7s ease;
  cursor: pointer;
}

.featured-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.featured-item-icon {
  width: 28px;
  height: 28px;
  color: rgba(201, 169, 110, 0.4);
  margin-bottom: 1.25rem;
  transition: color 0.5s ease;
}

.featured-item:hover .featured-item-icon {
  color: var(--color-champagne);
}

.featured-item-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 235, 0.8);
  transition: color 0.5s ease;
}

.featured-item:hover .featured-item-title {
  color: var(--color-champagne);
}

.featured-item-material {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.5);
  margin-top: 0.5rem;
}

.featured-item-price {
  font-family: var(--font-serif);
  color: rgba(201, 169, 110, 0.7);
  margin-top: 0.75rem;
  display: inline-block;
}

/* ===== CART DRAWER ===== */
#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
  background: var(--color-noir);
  border-left: 1px solid rgba(201, 169, 110, 0.15);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.cart-close {
  background: none;
  border: none;
  color: var(--color-ash);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: var(--color-ivory);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.cart-empty-icon {
  width: 48px;
  height: 48px;
  color: rgba(138, 138, 138, 0.4);
  margin-bottom: 1rem;
}

.cart-empty-text {
  color: var(--color-ash);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.cart-empty-subtext {
  color: rgba(138, 138, 138, 0.6);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.cart-items {
  display: none;
  gap: 1.5rem;
}

.cart-items.show {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.cart-item-image {
  width: 80px;
  height: 96px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-smoke);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.3);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.8);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-qty {
  font-size: 10px;
  color: rgba(138, 138, 138, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.cart-item-price {
  font-family: var(--font-serif);
  color: rgba(201, 169, 110, 0.8);
  margin-top: 0.5rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(138, 138, 138, 0.3);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cart-item-remove:hover {
  color: var(--color-champagne);
}

.cart-footer {
  display: none;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 1.5rem;
  gap: 1rem;
}

.cart-footer.show {
  display: flex;
  flex-direction: column;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary-label {
  color: var(--color-ash);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.cart-summary-total {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-champagne);
}

.cart-notice {
  color: rgba(138, 138, 138, 0.5);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-checkout {
  width: 100%;
  background: var(--color-champagne);
  color: var(--color-noir);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease;
}

.cart-checkout:hover {
  background: var(--color-champagne-light);
}

#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-noir);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-ash);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--color-ivory);
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(245, 240, 235, 0.8);
  text-decoration: none;
  transition: color 0.5s ease;
}

.mobile-menu-link:hover {
  color: var(--color-champagne);
}

/* ===== TOAST ===== */
#toast-container {
  position: fixed;
  top: 6rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  #toast-container {
    top: 6rem;
    right: 1.5rem;
  }
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-smoke);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, fadeOut 0.5s ease 2.5s forwards;
  pointer-events: all;
}

.toast-icon {
  width: 14px;
  height: 14px;
  color: var(--color-champagne);
  flex-shrink: 0;
}

.toast-message {
  color: rgba(245, 240, 235, 0.8);
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  background: var(--color-noir);
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    padding: 6rem 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
  }
}

.footer-section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 235, 0.8);
  margin-bottom: 1.5rem;
}

.footer-section-label {
  font-size: 10px;
  letter-spacing: var(--letter-ultra);
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
  margin-bottom: 1.25rem;
}

.footer-section-text {
  color: rgba(138, 138, 138, 0.4);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(138, 138, 138, 0.5);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.5s ease;
}

.footer-link:hover {
  color: var(--color-champagne);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}

.footer-copyright {
  color: rgba(138, 138, 138, 0.25);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-policy-link {
  color: rgba(138, 138, 138, 0.25);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.5s ease;
}

.footer-policy-link:hover {
  color: rgba(138, 138, 138, 0.5);
}

/* ===== UTILITIES ===== */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .editorial-image {
    margin-bottom: 2rem;
  }

  .maison-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-grid {
    display: block;
  }
}

/* ===== UTILITY LAYER =====
   Reproduces the Tailwind utility classes still referenced in the markup
   (404 page, cart, product/collection pages, preloader, section wrappers)
   using the theme's own design tokens. Kept last so utilities win, matching
   how Tailwind composes. */

/* Display & position */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.block { display: block; }
.hidden { display: none; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.h-32 { height: 8rem; }
.h-\[1px\] { height: 1px; }
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }

/* Margin */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

/* Padding */
.pb-6 { padding-bottom: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

/* Gap & vertical rhythm */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-12 { gap: 3rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Typography */
.font-serif { font-family: var(--font-serif); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-6xl { font-size: 3.75rem; }
.text-\[9px\] { font-size: 9px; }
.tracking-mega { letter-spacing: var(--letter-mega); }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.text-center { text-align: center; }

/* Text colors */
.text-ivory { color: var(--color-ivory); }
.text-ivory\/80 { color: rgba(245, 240, 235, 0.8); }
.text-champagne { color: var(--color-champagne); }
.text-champagne\/50 { color: rgba(201, 169, 110, 0.5); }
.text-ash { color: var(--color-ash); }
.text-ash\/30 { color: rgba(138, 138, 138, 0.3); }
.text-ash\/50 { color: rgba(138, 138, 138, 0.5); }

/* Background colors */
.bg-noir { background-color: var(--color-noir); }
.bg-smoke { background-color: var(--color-smoke); }

/* Borders */
.border-b { border-bottom: 1px solid; }
.border-t { border-top: 1px solid; }
.border-champagne\/10 { border-color: rgba(201, 169, 110, 0.1); }
.divide-y > * + * { border-top: 1px solid; }
.divide-champagne\/10 > * + * { border-color: rgba(201, 169, 110, 0.1); }

/* Gradients (preloader hairline) */
.from-transparent { --grad-from: transparent; }
.via-champagne { --grad-via: var(--color-champagne); }
.to-transparent { --grad-to: transparent; }
.bg-gradient-to-r {
  background-image: linear-gradient(
    to right,
    var(--grad-from, transparent),
    var(--grad-via, transparent),
    var(--grad-to, transparent)
  );
}

/* Interaction */
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.hover\:text-champagne:hover { color: var(--color-champagne); }

/* Responsive (Tailwind md = min-width: 768px) */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:mt-32 { margin-top: 8rem; }
  .md\:mb-24 { margin-bottom: 6rem; }
  .md\:divide-y-0 > * + * { border-top-width: 0; }
  .md\:divide-x > * + * { border-left: 1px solid; }
}
