/* ═══════════════════════════════════════════════════════════════
   MAISON LIOR — Luxury Ecommerce Stylesheet
   Champagne gold · deep ink · cream whites · Playfair Display + Jost
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --cream: #fbf8f3;
  --cream-warm: #f4eee3;
  --ivory: #ece5d5;
  --linen: #e8e1d1;

  --ink: #0f0d0a;
  --ink-soft: #2a2622;
  --ink-light: #5a524a;
  --ink-muted: #8a8178;
  --ink-faint: #c5bdb0;

  --champagne: #b9995f;
  --champagne-deep: #8f7242;
  --champagne-light: #d9bc87;
  --gold-leaf: #c9a557;

  --line: #d9d1c1;
  --line-soft: #ebe3d3;

  /* Shadows & depth */
  --shadow-sm: 0 2px 10px -4px rgba(15, 13, 10, 0.08);
  --shadow-md: 0 12px 40px -16px rgba(15, 13, 10, 0.12);
  --shadow-lg: 0 40px 100px -40px rgba(15, 13, 10, 0.22);
  --shadow-champagne: 0 30px 80px -40px rgba(185, 153, 95, 0.3);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Jost', -apple-system, system-ui, sans-serif;

  /* Spacing grid */
  --page-px: clamp(20px, 4vw, 60px);
  --section-py: clamp(40px, 4vw, 64px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Film-grain overlay — breathes life into solids */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ───── Loading curtain ───── */
.loading-curtain {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  transition: opacity 1s ease 0.2s, visibility 1s ease 0.2s;
}
.loading-curtain.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-mark {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.loading-mark em {
  font-style: italic; font-weight: 400;
  color: var(--champagne-deep);
  margin-left: 0.25em;
}
.loading-line {
  width: 140px; height: 1px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.loading-line::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: var(--champagne);
  animation: load-sweep 1.6s ease-in-out infinite;
}
@keyframes load-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(340%); }
}

/* ───── Announcement bar ───── */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.announce-inner {
  max-width: 1400px; margin: 0 auto;
  font-weight: 300;
}

/* ───── Navigation ───── */
.nav {
  position: sticky;
  top: 39px; /* below announcement */
  background: rgba(251, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 40;
  transition: border-color 0.4s, background 0.4s;
}
.nav.scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(251, 248, 243, 0.98);
}
.nav-inner {
  max-width: 1480px; margin: 0 auto;
  padding: 22px var(--page-px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.nav-menu {
  display: none;
  width: 26px; height: 26px;
  flex-direction: column; justify-content: space-between;
}
.nav-menu span {
  display: block;
  height: 1px; width: 100%;
  background: var(--ink);
}
.nav-menu span:nth-child(2) { width: 70%; }

.nav-left, .nav-right {
  display: flex; gap: 32px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-link.accent {
  color: var(--champagne-deep);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 13px;
  font-family: var(--font-display);
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  display: flex; align-items: center; gap: 4px;
  justify-self: center;
  white-space: nowrap;
}
.logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne-deep);
  letter-spacing: 0.05em;
}

.nav-icon-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: color 0.3s;
  position: relative;
}
.nav-icon-btn:hover { color: var(--champagne-deep); }
.nav-icon-btn svg { width: 18px; height: 18px; }

.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--ink);
  color: var(--cream);
  font-size: 9px;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
  padding: 0 4px;
}

/* ───── Mobile menu ───── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 45;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  padding: 140px 40px 60px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}

/* ───── Buttons ───── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 400;
  transition: all 0.4s;
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); }
.btn-primary.btn-full { width: 100%; padding: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  padding: 16px 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border: 1px solid var(--ink);
  transition: all 0.4s;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost.btn-full { width: 100%; padding: 18px; }

.btn-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-link:hover { color: var(--champagne-deep); border-color: var(--champagne-deep); }

/* ───── Common typography ───── */
.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--champagne-deep);
  font-weight: 400;
}
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.italic { font-style: italic; color: var(--champagne-deep); font-weight: 400; }

.section-title { text-align: center; }
.section-title .eyebrow { display: block; margin-bottom: 20px; }
.section-sub {
  max-width: 560px; margin: 24px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ═══════════════════════════════════════════════════════════════
   HOME
   ═══════════════════════════════════════════════════════════════ */

.hero-home {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 110px) var(--page-px) clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero-home::before {
  content: '';
  position: absolute;
  top: 30%; right: -20%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(185, 153, 95, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 188, 135, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.2s backwards;
}
.hero-copy .eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--champagne);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  animation: fadeUp 1.1s 0.4s backwards;
}
.hero-copy h1 em {
  font-style: italic; color: var(--champagne-deep);
  font-weight: 400;
}
.hero-copy p.lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-light);
  max-width: 460px;
  margin-bottom: 44px;
  font-style: italic;
  animation: fadeUp 0.9s 0.6s backwards;
}
.hero-actions {
  display: flex; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.8s backwards;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 440px;
  max-height: 680px;
  background: linear-gradient(135deg, var(--linen) 0%, var(--ivory) 100%);
  overflow: hidden;
  animation: fadeIn 1.4s 0.6s backwards;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 20% 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
  pointer-events: none;
}
.hero-visual img, .hero-visual .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual .hero-caption {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 3;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-visual .hero-caption .eyebrow {
  color: var(--champagne-light); margin-bottom: 10px;
}
.hero-visual .hero-caption h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  font-style: italic;
}
.hero-corners {
  position: absolute; inset: 24px;
  pointer-events: none; z-index: 4;
}
.hero-corners::before, .hero-corners::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--champagne-light);
}
.hero-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(185, 153, 95, 0.2);
  border-bottom: 1px solid rgba(185, 153, 95, 0.2);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  padding: 0 40px;
  color: var(--cream);
  display: flex; align-items: center;
}
.marquee-track span::after {
  content: '◆';
  margin-left: 80px;
  font-size: 8px;
  color: var(--champagne);
  font-style: normal;
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Featured categories */
.categories-block {
  padding: var(--section-py) var(--page-px);
}
.category-grid {
  max-width: 1480px; margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.category-card {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--linen);
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover { transform: translateY(-4px); }
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9);
}
.category-card:hover img { transform: scale(1.06); filter: brightness(1); }
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.5) 0%, transparent 60%);
}
.category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
  color: var(--cream);
}
.category-card-content h3 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.category-card-content span {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.85;
}

/* Collection showcase */
.collection-strip {
  padding: var(--section-py) var(--page-px);
  background: var(--cream-warm);
}
.strip-inner { max-width: 1480px; margin: 0 auto; }
.strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 40px;
}
.strip-head h2 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; }
.strip-head h2 em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.strip-head .eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.strip-head .eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--champagne);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 28px;
}
.product-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover { transform: translateY(-6px); }
.product-img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--cream-warm) 0%, var(--linen) 100%);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badges {
  position: absolute;
  top: 18px; left: 18px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.badge {
  background: var(--cream);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 400;
}
.badge.accent {
  background: var(--champagne);
  color: var(--cream);
}
.product-info {
  padding: 0 4px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.product-subtitle {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  font-weight: 300;
}
.product-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}
.product-price.from::before {
  content: 'from ';
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-right: 6px;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════
   SHOP / CATEGORY PAGE
   ═══════════════════════════════════════════════════════════════ */

.shop-hero {
  padding: clamp(72px, 8vw, 120px) var(--page-px) clamp(44px, 5vw, 72px);
  text-align: center;
  background: var(--cream-warm);
}
.shop-hero-inner { max-width: 860px; margin: 0 auto; }
.shop-hero .eyebrow { display: block; margin-bottom: 20px; }
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400; line-height: 1;
  letter-spacing: -0.015em;
}
.shop-hero h1 em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.shop-hero p {
  max-width: 560px; margin: 20px auto 0;
  color: var(--ink-light);
  font-size: 16px;
}

.shop-body {
  padding: 60px var(--page-px) var(--section-py);
  max-width: 1480px; margin: 0 auto;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
  gap: 20px;
  flex-wrap: wrap;
}
.shop-count {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}
.shop-sort {
  display: flex; align-items: center; gap: 14px;
}
.shop-sort label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}
.shop-sort select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 6px 24px 6px 4px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%235a524a' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.shop-sort select:hover { border-color: var(--champagne); }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════════════════════ */

.pdp {
  max-width: 1480px; margin: 0 auto;
  padding: 60px var(--page-px) var(--section-py);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.pdp-gallery {
  display: flex; flex-direction: column; gap: 12px;
}
.pdp-main-img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--cream-warm) 0%, var(--linen) 100%);
  overflow: hidden;
  position: relative;
}
.pdp-main-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdp-main-img:hover img { transform: scale(1.03); }
.pdp-main-corners {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  z-index: 3;
}
.pdp-main-corners::before,
.pdp-main-corners::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--champagne-light);
}
.pdp-main-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.pdp-main-corners::after  { bottom: 0; right: 0; border-left: none; border-top: none; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--cream-warm);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  position: relative;
}
.pdp-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pdp-thumb.active { border-color: var(--champagne); }

.pdp-details {
  position: sticky; top: 120px;
  padding-top: 40px;
}
.pdp-breadcrumb {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.pdp-breadcrumb a { color: var(--ink-muted); }
.pdp-breadcrumb a:hover { color: var(--ink); }
.pdp-breadcrumb span { margin: 0 10px; color: var(--ink-faint); }

.pdp-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.pdp-name em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.pdp-subtitle {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 32px;
  font-style: italic;
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.pdp-price .strike {
  color: var(--ink-muted);
  text-decoration: line-through;
  font-size: 18px;
  margin-left: 12px;
}

.pdp-description {
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 15px;
}

.pdp-option-group { margin-bottom: 32px; }
.pdp-option-label {
  display: flex; justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.pdp-option-label strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.pdp-materials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pdp-material {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 14px 6px;
  transition: all 0.3s;
  text-align: center;
}
.pdp-material:hover { border-color: var(--champagne); transform: translateY(-2px); }
.pdp-material.active {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pdp-material-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: inset 0 -2px 5px rgba(0,0,0,0.15), inset 0 2px 5px rgba(255,255,255,0.4);
  border: 1px solid rgba(0,0,0,0.05);
}
.pdp-material-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.pdp-material-purity {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin-top: 2px;
}

.pdp-sizes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.pdp-size {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  transition: all 0.25s;
}
.pdp-size:hover { border-color: var(--champagne); }
.pdp-size.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.pdp-size.disabled {
  color: var(--ink-faint);
  text-decoration: line-through;
  cursor: not-allowed;
}

.pdp-lengths {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pdp-length {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-display);
  transition: all 0.25s;
}
.pdp-length:hover { border-color: var(--champagne); }
.pdp-length.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.pdp-actions { margin-top: 40px; }
.pdp-add {
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  border: 1px solid var(--ink);
  transition: all 0.4s;
  margin-bottom: 12px;
}
.pdp-add:hover:not(:disabled) { background: var(--champagne-deep); border-color: var(--champagne-deep); }
.pdp-add:disabled { opacity: 0.4; cursor: not-allowed; }

.pdp-mto-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px;
  border: 1px dashed var(--line);
  background: var(--cream-warm);
  font-style: italic;
}

.pdp-detail-row {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.pdp-detail-row h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--champagne-deep);
  font-weight: 400;
}
.pdp-meta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-size: 13px;
}
.pdp-meta-list dt {
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  margin-bottom: 4px;
}
.pdp-meta-list dd { color: var(--ink); font-weight: 400; }
.pdp-story {
  color: var(--ink-light); line-height: 1.85;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════════════ */

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 13, 10, 0.4);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: var(--cream);
  z-index: 61;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  padding: 30px 36px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.cart-drawer-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s;
}
.cart-drawer-close:hover { color: var(--champagne-deep); }
.cart-drawer-close svg { width: 16px; height: 16px; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 36px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  margin-bottom: 12px;
}
.cart-empty-subtitle {
  color: var(--ink-muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  aspect-ratio: 1;
  background: var(--cream-warm);
  overflow: hidden;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cart-item-info { display: flex; flex-direction: column; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.cart-item-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
}
.cart-item-qty button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-light);
  transition: color 0.2s;
}
.cart-item-qty button:hover { color: var(--champagne-deep); }
.cart-item-qty span {
  min-width: 20px; text-align: center;
  font-size: 13px; font-weight: 400;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 15px;
}

.cart-drawer-foot {
  padding: 24px 36px 36px;
  border-top: 1px solid var(--line-soft);
  background: var(--cream-warm);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-totals { margin-bottom: 16px; }
.cart-total-line {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 18px;
}
.cart-total-line strong { font-weight: 400; color: var(--ink); }
.cart-shipping-note {
  font-size: 11px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════════════════════ */

.checkout {
  max-width: 1280px; margin: 0 auto;
  padding: 60px var(--page-px) var(--section-py);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.checkout-form h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 40px;
}
.checkout-form h1 em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.checkout-section { margin-bottom: 48px; }
.checkout-section h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--champagne-deep);
  font-weight: 400;
}
.checkout-field {
  display: flex; flex-direction: column;
  margin-bottom: 20px;
}
.checkout-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.checkout-field input:focus,
.checkout-field textarea:focus,
.checkout-field select:focus { border-color: var(--champagne); }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.payment-methods { display: flex; gap: 10px; margin-bottom: 24px; }
.payment-method {
  flex: 1;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.payment-method:hover { border-color: var(--champagne); }
.payment-method.active { border-color: var(--ink); box-shadow: var(--shadow-sm); }

#stripe-element {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  min-height: 50px;
}

.checkout-summary {
  background: var(--cream-warm);
  padding: 40px;
  position: sticky; top: 120px;
}
.checkout-summary-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--champagne-deep);
  font-weight: 400;
  margin-bottom: 24px;
}
.checkout-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-light);
}
.checkout-summary-line strong {
  color: var(--ink);
  font-weight: 400;
  font-family: var(--font-display);
  font-size: 15px;
}
.checkout-summary-items {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.checkout-summary-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  align-items: center;
}
.checkout-summary-item-img {
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
}
.checkout-summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-summary-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
}
.checkout-summary-item-sub {
  font-size: 11px; color: var(--ink-muted);
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ═══════════════════════════════════════════════════════════════
   STORY / HERITAGE PAGE
   ═══════════════════════════════════════════════════════════════ */

.story-page {
  padding: var(--section-py) var(--page-px);
  max-width: 1480px; margin: 0 auto;
}
.story-hero {
  text-align: center;
  margin-bottom: 100px;
}
.story-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -0.02em;
}
.story-hero h1 em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.story-hero p {
  max-width: 660px; margin: 40px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-light);
  font-style: italic;
}

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: center;
}
.story-split-img {
  aspect-ratio: 4/5;
  background: var(--linen);
  overflow: hidden;
}
.story-split-img img { width: 100%; height: 100%; object-fit: cover; }
.story-split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.story-split-content h2 em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.story-split-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   ORDER CONFIRMATION
   ═══════════════════════════════════════════════════════════════ */

.order-conf {
  max-width: 780px; margin: 0 auto;
  padding: 100px var(--page-px) var(--section-py);
  text-align: center;
}
.order-conf-mark {
  width: 56px; height: 56px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne);
}
.order-conf-mark svg { width: 24px; height: 24px; }
.order-conf h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}
.order-conf h1 em { font-style: italic; color: var(--champagne-deep); font-weight: 400; }
.order-conf .order-number {
  font-family: var(--font-display);
  font-size: 18px; font-style: italic;
  color: var(--champagne-deep);
  margin-bottom: 20px;
}
.order-conf p.lead {
  color: var(--ink-light);
  max-width: 560px; margin: 0 auto 48px;
  line-height: 1.75;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px var(--page-px) 40px;
}
.footer-inner { max-width: 1480px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251, 248, 243, 0.12);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.footer-logo em { color: var(--champagne); font-style: italic; margin-left: 6px; font-weight: 400; }
.footer-tag {
  color: rgba(251, 248, 243, 0.55);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 300px;
}
.footer-newsletter p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--champagne);
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(251, 248, 243, 0.3);
  max-width: 320px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: var(--cream);
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(251, 248, 243, 0.4); }
.newsletter-form button {
  padding: 0 12px;
  color: var(--champagne);
  font-size: 20px;
  transition: color 0.3s;
}
.newsletter-form button:hover { color: var(--champagne-light); }

.footer-col h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--champagne);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  color: rgba(251, 248, 243, 0.65);
  padding: 7px 0;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(251, 248, 243, 0.4);
  letter-spacing: 0.12em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(251, 248, 243, 0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--cream);
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   EMPTY / LOADING STATES
   ═══════════════════════════════════════════════════════════════ */

.empty-state {
  text-align: center;
  padding: 120px 20px;
  max-width: 540px;
  margin: 0 auto;
}
.empty-state h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
}
.empty-state p {
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.skeleton {
  background: linear-gradient(90deg, var(--linen) 0%, var(--cream-warm) 50%, var(--linen) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-right { gap: 16px; }
  .nav-right > .nav-link { display: none; }
  .nav-menu { display: flex; }
  .hero-home { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 360px; aspect-ratio: 1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp-details { position: relative; top: 0; padding-top: 20px; }
  .checkout { grid-template-columns: 1fr; }
  .checkout-summary { position: relative; top: 0; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .nav-inner { padding: 16px var(--page-px); }
  .announce { font-size: 10px; padding: 10px 16px; }
  .logo { font-size: 18px; }
  .hero-home { padding-top: 40px; padding-bottom: 24px; }
  .hero-visual { aspect-ratio: 1; min-height: 320px; max-height: 460px; }
  .hero-visual .hero-caption { bottom: 22px; left: 22px; right: 22px; }
  .hero-visual .hero-caption h3 { font-size: 22px; }
  .marquee { padding: 20px 0; }
  .marquee-track span { font-size: 14px; padding: 0 24px; }
  .marquee-track span::after { margin-left: 48px; }
  .category-grid { grid-template-columns: 1fr; }
  .editorial-corners { inset: 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .product-name { font-size: 16px; }
  .product-price { font-size: 14px; }
  .shop-hero h1 { font-size: clamp(36px, 10vw, 54px); }
  .pdp-materials { grid-template-columns: repeat(2, 1fr); }
  .pdp-sizes { grid-template-columns: repeat(4, 1fr); }
  .pdp-meta-list { grid-template-columns: 1fr; gap: 14px; }
  .pdp-main-corners { inset: 12px; }
  .pdp-main-corners::before, .pdp-main-corners::after { width: 18px; height: 18px; }
  .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
  .pdp-details { padding-top: 16px; }
  .checkout-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .story-banner-lead::first-letter { font-size: 2.8em; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BTN LINK — LIGHT VARIANT
   ═══════════════════════════════════════════════════════════════ */

.btn-link-light {
  color: var(--cream);
  border-bottom-color: var(--champagne);
}
.btn-link-light:hover {
  color: var(--champagne-light);
  border-bottom-color: var(--champagne-light);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT NAME — REFINED HOVER
   ═══════════════════════════════════════════════════════════════ */

.product-name {
  position: relative;
  display: inline-block;
}
.product-name::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--champagne-deep);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-name::after { width: 32px; }

/* ═══════════════════════════════════════════════════════════════
   COLLECTION STRIP — CREAM VARIANT
   ═══════════════════════════════════════════════════════════════ */

.collection-strip--cream { background: var(--cream); }

/* ═══════════════════════════════════════════════════════════════
   EDITORIAL SPREAD
   ═══════════════════════════════════════════════════════════════ */

.editorial-spread {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--section-py) var(--page-px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.editorial-image {
  position: relative;
  aspect-ratio: 5/6;
  max-height: 680px;
  overflow: hidden;
  background: var(--linen);
}
.editorial-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-spread:hover .editorial-image img { transform: scale(1.03); }
.editorial-corners {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  z-index: 2;
}
.editorial-corners::before,
.editorial-corners::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--champagne-light);
}
.editorial-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.editorial-corners::after  { bottom: 0; right: 0; border-left: none; border-top: none; }

.editorial-copy { padding: 0 clamp(0px, 2vw, 40px); }
.editorial-copy .eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.editorial-copy .eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--champagne);
}
.editorial-copy h2 {
  margin-bottom: 28px;
}
.editorial-copy h2 em {
  font-style: italic;
  color: var(--champagne-deep);
  font-weight: 400;
}
.editorial-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-light);
  max-width: 480px;
  margin-bottom: 32px;
}

@media (max-width: 1100px) {
  .editorial-spread { grid-template-columns: 1fr; gap: 36px; }
  .editorial-image { max-height: 520px; aspect-ratio: 4/5; }
  .editorial-copy { padding: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   STORY BANNER
   ═══════════════════════════════════════════════════════════════ */

.story-banner {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 9vw, 120px) var(--page-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(185, 153, 95, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.story-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 45%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 188, 135, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.story-banner-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.story-banner .eyebrow {
  color: var(--champagne-light);
  display: block;
  margin-bottom: 28px;
}
.story-banner h2 {
  color: var(--cream);
  margin-bottom: 36px;
}
.story-banner h2 em {
  color: var(--champagne-light);
  font-style: italic;
  font-weight: 400;
}
.story-banner-lead {
  max-width: 580px;
  margin: 0 auto 40px;
  color: rgba(251, 248, 243, 0.78);
  line-height: 1.9;
  font-size: 17px;
  font-style: italic;
}
.story-banner-lead::first-letter {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 3.4em;
  float: left;
  line-height: 0.92;
  margin: 4px 10px 0 0;
  color: var(--champagne-light);
}
