/* ═══════════════════════════════════════════════════════════════
   AURIC MILAN — styles.css  (FIXED v2)
   © 2026 AURIC MILAN. All rights reserved.
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── TOKENS ─── */
:root {
  --black:        #09090a;
  --charcoal:     #131210;
  --charcoal-mid: #1c1a17;
  --ivory:        #f4f0e8;
  --gold:         #c8a84b;
  --gold-lt:      #e0c478;
  --gold-dim:     #8a6d2d;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxury: cubic-bezier(0.76, 0, 0.24, 1);
  --max-w:  1560px;
  --gutter: clamp(24px, 5.5vw, 100px);
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  line-height: 1;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: none; }

/* ─── CURSOR ─── */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out);
  will-change: left, top;
}
#cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid rgba(200,168,75,.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .5s var(--ease-out), height .5s var(--ease-out), border-color .3s;
  will-change: left, top;
}
.cursor-grow #cursor      { width: 18px; height: 18px; opacity: .7; }
.cursor-grow #cursor-ring { width: 72px; height: 72px; border-color: rgba(200,168,75,.18); }

/* ─── PROGRESS BAR ─── */
#page-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 1px; z-index: 10000;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-lt));
  transform-origin: left; transform: scaleX(0); transition: transform .1s linear;
}

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity .8s var(--ease-luxury), visibility .8s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--serif); font-size: clamp(1.6rem,3.5vw,2.6rem);
  font-weight: 300; letter-spacing: .35em; color: var(--gold);
  animation: loaderPulse 1.8s ease-in-out infinite;
}
.loader-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderExpand 1.8s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes loaderExpand { 0%{width:0} 50%{width:160px} 100%{width:0} }

/* ─── NAVIGATION ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 30px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .6s var(--ease-luxury), background .6s var(--ease-luxury);
}
#nav.scrolled {
  padding: 18px var(--gutter);
  background: rgba(9,9,10,.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(200,168,75,.1);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-img { height: 40px; width: 40px; object-fit: contain; transition: transform .5s var(--ease-out); }
.nav-logo:hover .nav-logo-img { transform: scale(1.08) rotate(5deg); }
.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; letter-spacing: .22em; color: var(--gold); line-height: 1; }
.nav-brand-sub  { font-family: var(--sans); font-size: .4rem; font-weight: 400; letter-spacing: .58em; color: rgba(200,168,75,.5); text-transform: uppercase; }

.nav-center {
  display: flex; gap: 48px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-family: var(--sans); font-size: .56rem; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(244,240,232,.6); position: relative; padding-bottom: 3px; transition: color .3s;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .45s var(--ease-out);
}
.nav-center a:hover { color: var(--gold); }
.nav-center a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.nav-icon {
  width: 18px; height: 18px; color: rgba(244,240,232,.55);
  display: flex; align-items: center; justify-content: center; transition: color .3s;
}
.nav-icon:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--sans); font-size: .52rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 11px 24px;
  transition: background .3s;
}
.nav-cta:hover { background: var(--gold-lt); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 6px; align-items: flex-end;
}
.nav-hamburger span { display: block; height: 1px; background: var(--gold); transition: all .35s; }
.nav-hamburger span:nth-child(1) { width: 26px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 12px; }
.nav-hamburger.active span:nth-child(1) { width: 22px; transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { width: 22px; transform: rotate(-45deg) translate(5px,-5px); }

/* ─── MOBILE DRAWER ─── */
#mobile-drawer {
  position: fixed; inset: 0; z-index: 990;
  background: var(--black);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease-luxury);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
#mobile-drawer.open { clip-path: inset(0 0 0% 0); }
.drawer-item {
  font-family: var(--serif); font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 300; letter-spacing: .06em; color: rgba(244,240,232,.2);
  padding: 14px 0; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(200,168,75,.06); display: block;
  opacity: 0; transform: translateY(20px);
  transition: color .3s, transform .6s var(--ease-out), opacity .6s var(--ease-out);
}
#mobile-drawer.open .drawer-item { opacity: 1; transform: translateY(0); }
#mobile-drawer.open .drawer-item:nth-child(1) { transition-delay: .08s; }
#mobile-drawer.open .drawer-item:nth-child(2) { transition-delay: .16s; }
#mobile-drawer.open .drawer-item:nth-child(3) { transition-delay: .24s; }
#mobile-drawer.open .drawer-item:nth-child(4) { transition-delay: .32s; }
#mobile-drawer.open .drawer-item:nth-child(5) { transition-delay: .40s; }
#mobile-drawer.open .drawer-item:nth-child(6) { transition-delay: .48s; }
.drawer-item:hover { color: var(--gold); }

/* ─── UTILITY ─── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: .5rem; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase; color: var(--gold-dim);
}
.section-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-dim); }
.section-eyebrow.both::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-dim); }

/* ═══════════════════════════════════════════
   FIX #1 — REVEAL SYSTEM
   CRITICAL: Images inside [data-reveal] were
   invisible because opacity:0 was on the parent.
   Solution: only animate TEXT elements this way.
   Images use their own visible-by-default CSS.
   We make [data-reveal] not affect img children.
   ═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(44px); }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1 !important; transform: none !important; }

/* FIX: Images inside data-reveal parents must ALWAYS be visible */
[data-reveal] img,
[data-reveal] .cat-img,
[data-reveal] .ed-img,
[data-reveal] .product-img,
[data-reveal] .house-img,
[data-reveal] .world-img,
[data-reveal] .craft-main-img,
[data-reveal] .craft-detail-img {
  opacity: 1 !important;
}

/* ═══════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%; height: 100svh; min-height: 680px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; background: var(--black);
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  /* FIX: start visible so image always shows even before JS */
  opacity: .6;
  transform: scale(1.06);
  transition: transform 9s ease;
  will-change: transform;
}
#hero.loaded .hero-img { transform: scale(1); }

.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(9,9,10,.72) 0%, transparent 55%),
    linear-gradient(to top,    rgba(9,9,10,.85) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(9,9,10,.35) 0%, transparent 40%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: .03;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  padding: var(--gutter) var(--gutter) clamp(60px, 8vw, 100px);
  max-width: 900px;
}
/* Hero text starts invisible — JS animates in */
.hero-eyebrow {
  font-family: var(--sans); font-size: .52rem; font-weight: 400;
  letter-spacing: .55em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 26px; opacity: 0; transform: translateY(14px);
}
.hero-title {
  font-family: var(--serif); font-size: clamp(4.2rem, 10vw, 10rem);
  font-weight: 300; line-height: .9; letter-spacing: -.01em;
  color: var(--ivory); opacity: 0; transform: translateY(36px);
}
.hero-title em { font-style: italic; color: var(--gold-lt); display: block; }
.hero-subtitle {
  font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300; font-style: italic; letter-spacing: .08em;
  color: rgba(244,240,232,.5); margin-top: 22px;
  opacity: 0; transform: translateY(20px);
}
.hero-rule {
  width: 52px; height: 1px; background: var(--gold);
  margin: 34px 0; opacity: 0; transform: scaleX(0); transform-origin: left;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
}
.btn-primary {
  font-family: var(--sans); font-size: .56rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 16px 44px;
  display: inline-block; transition: background .3s, transform .3s var(--ease-out);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--sans); font-size: .54rem; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(244,240,232,.6);
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(244,240,232,.2);
  transition: color .3s, gap .3s, border-color .3s;
}
.btn-ghost::after { content: '→'; font-size: .85rem; }
.btn-ghost:hover { color: var(--gold); gap: 18px; border-color: var(--gold); }

/* Hero bottom strip */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(200,168,75,.12);
  /* FIX: start visible */
  opacity: 1;
}
.hero-strip-item {
  flex: 1; padding: 18px var(--gutter);
  display: flex; flex-direction: column; gap: 5px;
  border-right: 1px solid rgba(200,168,75,.08);
}
.hero-strip-item:last-child { border-right: none; }
.strip-label {
  font-family: var(--sans); font-size: .42rem; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gold-dim);
}
.strip-value {
  font-family: var(--serif); font-size: clamp(.82rem, 1.4vw, 1.1rem);
  font-weight: 300; font-style: italic; color: rgba(244,240,232,.55);
}

/* Scroll cue */
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 90px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeInUp 1s 2.5s both;
}
.hero-scroll span {
  font-family: var(--sans); font-size: .4rem; letter-spacing: .5em;
  color: rgba(200,168,75,.5); writing-mode: vertical-rl; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(200,168,75,.5) 0%, transparent 100%);
  animation: scrollDrop 2s 2.5s ease-in-out infinite;
}
@keyframes fadeInUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
@keyframes scrollDrop { 0%,100%{opacity:.5} 50%{opacity:.15} }

/* ═══════════════════════════════════════════
   SECTION 2 — WORLD OF AURIC
   world-of-auric.jpg — 1800×2400 (3:4)
   ═══════════════════════════════════════════ */
#world {
  background: var(--black);
  padding: clamp(100px, 13vw, 180px) var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
  max-width: var(--max-w); margin: 0 auto;
}
.world-image-col { position: relative; }
.world-img-frame { position: relative; aspect-ratio: 3 / 4; overflow: visible; }
.world-img-wrap  { width: 100%; height: 100%; overflow: hidden; }
.world-img {
  /* FIX: always visible — no opacity:0 here */
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.04); transition: transform 9s ease;
  display: block;
}
.world-img-wrap:hover .world-img { transform: scale(1); }
.world-img-deco {
  position: absolute; top: -18px; right: -18px; bottom: 18px; left: 18px;
  border: 1px solid rgba(200,168,75,.18); pointer-events: none; z-index: -1;
}
.world-stat-card {
  position: absolute; bottom: -36px; right: -36px;
  background: var(--charcoal-mid); border: 1px solid rgba(200,168,75,.15);
  padding: 26px 30px; z-index: 2; min-width: 170px;
}
.world-stat-card-num  { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }
.world-stat-card-label{ font-family: var(--sans); font-size: .42rem; font-weight: 400; letter-spacing: .4em; text-transform: uppercase; color: rgba(200,168,75,.5); margin-top: 8px; }

.world-text-col { padding-top: clamp(36px, 6vw, 90px); display: flex; flex-direction: column; gap: 34px; }
.world-headline {
  font-family: var(--serif); font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  font-weight: 300; line-height: 1.05; letter-spacing: .02em; color: var(--ivory);
}
.world-headline em { font-style: italic; color: var(--gold-lt); }
.world-body {
  font-family: var(--serif); font-size: clamp(.95rem, 1.4vw, 1.18rem);
  font-weight: 300; font-style: italic; line-height: 1.95;
  color: rgba(244,240,232,.5); max-width: 450px;
}
.world-stats-row {
  display: flex; gap: 40px;
  padding-top: 8px; border-top: 1px solid rgba(200,168,75,.1);
}
.stat-num   { font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--sans); font-size: .44rem; font-weight: 400; letter-spacing: .38em; text-transform: uppercase; color: rgba(244,240,232,.3); margin-top: 8px; }

/* ═══════════════════════════════════════════
   SECTION 3 — CATEGORIES
   FIX: Removed jewelry from grid-row:3 on
   a 2-row grid. Jewelry now spans cols 1-3
   on row 3 and grid auto-creates that row.
   ═══════════════════════════════════════════ */
#categories {
  background: var(--charcoal);
  padding: clamp(80px, 10vw, 120px) var(--gutter);
}
.categories-head {
  text-align: center; margin-bottom: clamp(48px, 6vw, 80px);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.categories-head h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-weight: 300; letter-spacing: .04em; color: var(--ivory);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* FIX: allow auto row 3 for jewelry */
  grid-template-rows: auto auto auto;
  gap: 4px;
  max-width: var(--max-w); margin: 0 auto;
}
.cat-card {
  position: relative; overflow: hidden; display: block;
}

/* watches — col1 row1 — 3:4 */
.cat-card[data-cat="watches"] { grid-column: 1; grid-row: 1; aspect-ratio: 3/4; }
/* bags — col2 row1 — 3:4 */
.cat-card[data-cat="bags"]    { grid-column: 2; grid-row: 1; aspect-ratio: 3/4; }
/* women — col3 rows 1+2 — 2:3 tall */
.cat-card[data-cat="women"]   { grid-column: 3; grid-row: 1/3; aspect-ratio: 2/3; }
/* men — col1 row2 — 3:2 landscape */
.cat-card[data-cat="men"]     { grid-column: 1; grid-row: 2; aspect-ratio: 3/2; }
/* eyewear — col2 row2 — 3:2 landscape */
.cat-card[data-cat="eyewear"] { grid-column: 2; grid-row: 2; aspect-ratio: 3/2; }
/* FIX jewelry: span all 3 cols on row 3 — wide banner */
.cat-card[data-cat="jewelry"] { grid-column: 1/4; grid-row: 3; aspect-ratio: 16/5; }

.cat-img {
  /* FIX: always fully visible */
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transform: scale(1.06); transition: transform 1.2s var(--ease-out);
  opacity: 1 !important;
}
.cat-card:hover .cat-img { transform: scale(1); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,10,.9) 0%, rgba(9,9,10,.15) 45%, transparent 72%);
  transition: background .5s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(9,9,10,.95) 0%, rgba(9,9,10,.3) 50%, rgba(9,9,10,.06) 80%);
}
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(18px, 2.8vw, 34px); z-index: 2;
  display: flex; flex-direction: column; gap: 7px;
}
.cat-title {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  font-weight: 400; letter-spacing: .05em; color: var(--ivory); line-height: 1;
  transition: color .3s;
}
.cat-card:hover .cat-title { color: var(--gold-lt); }
.cat-subtitle {
  font-family: var(--sans); font-size: .45rem; font-weight: 300;
  letter-spacing: .42em; text-transform: uppercase; color: var(--gold-dim);
}
.cat-cta {
  font-family: var(--sans); font-size: .46rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; margin-top: 5px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.cat-cta::after { content: '→'; }
.cat-card:hover .cat-cta { opacity: 1; transform: translateY(0); }

/* Jewelry special: left-aligned layout since it's wide */
.cat-card[data-cat="jewelry"] .cat-overlay {
  background: linear-gradient(to right, rgba(9,9,10,.88) 0%, rgba(9,9,10,.2) 55%, transparent 100%);
}
.cat-card[data-cat="jewelry"] .cat-info {
  top: 0; display: flex; flex-direction: column; justify-content: center; bottom: 0;
}
.cat-card[data-cat="jewelry"] .cat-title { font-size: clamp(1.8rem, 3.5vw, 3.8rem); }

/* ═══════════════════════════════════════════
   SECTION 4 — FEATURED
   product images: 1500×2000 → 3:4
   ═══════════════════════════════════════════ */
#featured {
  background: var(--black);
  padding: clamp(100px, 12vw, 155px) var(--gutter);
}
.featured-inner { max-width: var(--max-w); margin: 0 auto; }
.featured-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(48px, 6vw, 76px); flex-wrap: wrap; gap: 22px;
}
.featured-hl {
  font-family: var(--serif); font-size: clamp(2rem, 4.8vw, 4.6rem);
  font-weight: 300; letter-spacing: .03em; color: var(--ivory); line-height: 1.08;
}
.featured-hl em { font-style: italic; color: var(--gold-lt); }
.view-all {
  font-family: var(--sans); font-size: .52rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px; transition: gap .35s;
}
.view-all::after { content: '→'; }
.view-all:hover { gap: 18px; }

.featured-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.product-card  { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-img {
  /* FIX: always visible */
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
  transform: scale(1.05); transition: transform 1.3s var(--ease-out);
  opacity: 1 !important;
}
.product-card:hover .product-img { transform: scale(1); }
.product-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,10,.93) 0%, transparent 54%);
  transition: background .4s;
}
.product-card:hover .product-shade {
  background: linear-gradient(to top, rgba(9,9,10,.97) 0%, rgba(9,9,10,.18) 58%);
}
.product-info  { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(20px, 2.8vw, 36px); z-index: 2; }
.product-label { font-family: var(--sans); font-size: .43rem; font-weight: 400; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 9px; }
.product-name  { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 2rem); font-weight: 400; letter-spacing: .04em; color: var(--ivory); line-height: 1.15; }
.product-price {
  font-family: var(--serif); font-size: clamp(.88rem, 1.3vw, 1rem);
  font-weight: 300; font-style: italic; color: var(--gold); margin-top: 9px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.product-card:hover .product-price { opacity: 1; transform: translateY(0); }
.product-tag {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--sans); font-size: .4rem; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 6px 13px; z-index: 3;
}

/* ═══════════════════════════════════════════
   SECTION 5 — CRAFTSMANSHIP
   craft-main: 2000×2500 (4:5) | detail: 1:1
   ═══════════════════════════════════════════ */
#craft { background: var(--ivory); color: var(--black); }
.craft-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }

.craft-image-side { position: relative; overflow: hidden; }
.craft-main-img {
  /* FIX: fill the side with no hidden opacity */
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  opacity: 1 !important;
}
.craft-detail-wrap {
  position: absolute;
  bottom: clamp(24px, 4.5vw, 56px); right: clamp(-28px, -3.5vw, -46px);
  width: clamp(150px, 21vw, 270px); aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(9,9,10,.22);
  border: 6px solid var(--ivory); z-index: 2;
}
.craft-detail-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; opacity: 1 !important;
}

.craft-text-side {
  padding: clamp(56px, 8vw, 130px) clamp(44px, 7.5vw, 110px);
  display: flex; flex-direction: column; justify-content: center; gap: 34px;
}
.craft-eyebrow { color: var(--gold-dim) !important; }
.craft-eyebrow::before { background: var(--gold-dim) !important; }
.craft-headline {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  font-weight: 300; line-height: 1.08; letter-spacing: .02em; color: var(--charcoal);
}
.craft-headline em { font-style: italic; color: var(--gold-dim); }
.craft-body {
  font-family: var(--serif); font-size: clamp(.93rem, 1.25vw, 1.1rem);
  font-weight: 300; font-style: italic; line-height: 2.05;
  color: rgba(19,18,16,.55); max-width: 430px;
}
.craft-pillars {
  display: flex; flex-direction: column; gap: 16px;
  border-top: 1px solid rgba(19,18,16,.1); padding-top: 26px;
}
.craft-pillar { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: baseline; }
.pillar-num   { font-family: var(--serif); font-size: .8rem; color: var(--gold-dim); }
.pillar-text  { font-family: var(--sans); font-size: .53rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: rgba(19,18,16,.6); }
.craft-cta {
  font-family: var(--sans); font-size: .53rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 13px;
  border-bottom: 1px solid rgba(19,18,16,.22); padding-bottom: 11px;
  width: fit-content; transition: gap .3s, color .3s;
}
.craft-cta::after { content: '→'; }
.craft-cta:hover { gap: 19px; color: var(--gold-dim); }

/* ═══════════════════════════════════════════
   SECTION 6 — EDITORIAL
   Exact ratios: 2:3 / 16:9 / 1:1 / 4:3 / 2:3
   ═══════════════════════════════════════════ */
#editorial {
  background: var(--black);
  padding: clamp(100px, 12vw, 155px) var(--gutter);
}
.editorial-inner { max-width: var(--max-w); margin: 0 auto; }
.editorial-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px; margin-bottom: clamp(48px, 6vw, 76px);
}
.editorial-head h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4.8vw, 4.6rem);
  font-weight: 300; letter-spacing: .04em; color: var(--ivory); line-height: 1.1;
}
.editorial-head h2 em { font-style: italic; color: var(--gold-lt); }

.ed-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.ed-card { position: relative; overflow: hidden; }

/* ed-1: 2:3 portrait, left col, both rows */
.ed-card:nth-child(1) { grid-column: 1; grid-row: 1/3; aspect-ratio: 2/3; }
/* ed-2: 16:9 landscape, center top */
.ed-card:nth-child(2) { grid-column: 2; grid-row: 1; aspect-ratio: 16/9; }
/* ed-3: 1:1 square, right top */
.ed-card:nth-child(3) { grid-column: 3; grid-row: 1; aspect-ratio: 1/1; }
/* ed-4: 4:3 landscape, center bottom */
.ed-card:nth-child(4) { grid-column: 2; grid-row: 2; aspect-ratio: 4/3; }
/* ed-5: 2:3 portrait, right bottom */
.ed-card:nth-child(5) { grid-column: 3; grid-row: 2; aspect-ratio: 2/3; }

.ed-img {
  /* FIX: always visible */
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transform: scale(1.06); transition: transform 1.2s var(--ease-out);
  opacity: 1 !important;
}
.ed-card:hover .ed-img { transform: scale(1); }
.ed-overlay { position: absolute; inset: 0; background: rgba(9,9,10,.1); transition: background .4s; }
.ed-card:hover .ed-overlay { background: rgba(9,9,10,.03); }
.ed-chip {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--sans); font-size: .4rem; font-weight: 400;
  letter-spacing: .38em; text-transform: uppercase; color: var(--ivory);
  background: rgba(9,9,10,.55); backdrop-filter: blur(10px);
  padding: 7px 14px; border: 1px solid rgba(200,168,75,.18);
}

/* ═══════════════════════════════════════════
   SECTION 7 — HOUSE OF AURIC
   house-1 & house-2: 1200×1800 → 2:3
   ═══════════════════════════════════════════ */
#house { background: var(--charcoal-mid); padding: clamp(100px, 13vw, 175px) var(--gutter); }
.house-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 130px); align-items: center;
}
.house-text { display: flex; flex-direction: column; gap: 34px; }
.house-hl {
  font-family: var(--serif); font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  font-weight: 300; line-height: 1.06; letter-spacing: .03em; color: var(--ivory);
}
.house-hl em { font-style: italic; color: var(--gold-lt); }
.house-body {
  font-family: var(--serif); font-size: clamp(.93rem, 1.3vw, 1.1rem);
  font-weight: 300; font-style: italic; line-height: 2; color: rgba(244,240,232,.45); max-width: 450px;
}
.house-link {
  font-family: var(--sans); font-size: .52rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 13px;
  border-bottom: 1px solid rgba(200,168,75,.2); padding-bottom: 11px;
  width: fit-content; transition: gap .3s;
}
.house-link::after { content: '→'; }
.house-link:hover { gap: 19px; }

.house-images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: start; }
.house-img-wrap { overflow: hidden; aspect-ratio: 2/3; }
.house-img-wrap:nth-child(2) { margin-top: 52px; }
.house-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transform: scale(1.05); transition: transform 1.2s var(--ease-out);
  opacity: 1 !important;
}
.house-img-wrap:hover .house-img { transform: scale(1); }

/* ═══════════════════════════════════════════
   SECTION 8 — NEWSLETTER
   FIX: logo white-bg issue handled with mix-blend
   ═══════════════════════════════════════════ */
#newsletter {
  background: var(--black);
  padding: clamp(100px, 13vw, 190px) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
#newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 58% 50% at 50% 50%, rgba(200,168,75,.05) 0%, transparent 68%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative; z-index: 1;
  max-width: 620px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
/* FIX: if logo PNG has white bg, multiply blends it away on dark bg */
.newsletter-logo {
  width: clamp(170px, 26vw, 300px);
  aspect-ratio: 3/1; object-fit: contain;
  /* FIX white box: use mix-blend-mode so white bg disappears on dark */
  mix-blend-mode: screen;
  opacity: .9;
  filter: brightness(1.1);
}
.newsletter-hl {
  font-family: var(--serif); font-size: clamp(2rem, 4.6vw, 4rem);
  font-weight: 300; letter-spacing: .04em; color: var(--ivory); line-height: 1.16;
}
.newsletter-hl em { font-style: italic; color: var(--gold-lt); }
.newsletter-sub {
  font-family: var(--serif); font-size: clamp(.88rem, 1.25vw, 1.03rem);
  font-weight: 300; font-style: italic; color: rgba(244,240,232,.38);
  line-height: 1.85; max-width: 370px;
}
.newsletter-form {
  display: flex; align-items: stretch;
  width: 100%; max-width: 460px; margin-top: 10px;
  border: 1px solid rgba(200,168,75,.22); transition: border-color .3s;
}
.newsletter-form:focus-within { border-color: rgba(200,168,75,.55); }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,.03); border: none; outline: none;
  font-family: var(--sans); font-size: .56rem; font-weight: 300;
  letter-spacing: .17em; color: var(--ivory); padding: 17px 20px;
}
.newsletter-input::placeholder { color: rgba(244,240,232,.24); }
.newsletter-btn {
  background: var(--gold); border: none;
  font-family: var(--sans); font-size: .5rem; font-weight: 500;
  letter-spacing: .27em; text-transform: uppercase;
  color: var(--black); padding: 17px 26px;
  transition: background .3s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-lt); }
.newsletter-fine {
  font-family: var(--sans); font-size: .42rem; font-weight: 300;
  letter-spacing: .17em; color: rgba(244,240,232,.2);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer { background: var(--charcoal); border-top: 1px solid rgba(200,168,75,.1); }
.footer-upper {
  padding: clamp(56px, 8vw, 110px) var(--gutter) 52px;
  display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 44px;
  max-width: var(--max-w); margin: 0 auto;
  border-bottom: 1px solid rgba(244,240,232,.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }
.footer-logo-img  { width: 42px; height: 42px; object-fit: contain; }
.footer-brand-name { display: flex; flex-direction: column; gap: 2px; }
.footer-brand-name span:first-child { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; letter-spacing: .2em; color: var(--gold); line-height: 1; }
.footer-brand-name span:last-child  { font-family: var(--sans); font-size: .4rem; letter-spacing: .56em; color: rgba(200,168,75,.44); text-transform: uppercase; }
.footer-tagline { font-family: var(--serif); font-size: .95rem; font-weight: 300; font-style: italic; color: rgba(244,240,232,.28); line-height: 1.85; max-width: 215px; }
.footer-contact-block { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: .5rem; font-weight: 300;
  letter-spacing: .12em; color: rgba(244,240,232,.3); transition: color .3s;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-icon { color: var(--gold-dim); flex-shrink: 0; }
.footer-socials { display: flex; gap: 9px; margin-top: 4px; }
.footer-soc {
  width: 34px; height: 34px; border: 1px solid rgba(200,168,75,.17);
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,168,75,.52);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-out);
}
.footer-soc:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--sans); font-size: .47rem; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col ul li a {
  font-family: var(--sans); font-size: .52rem; font-weight: 300;
  letter-spacing: .15em; color: rgba(244,240,232,.34); transition: color .3s, letter-spacing .3s;
}
.footer-col ul li a:hover { color: var(--gold-lt); letter-spacing: .22em; }
.footer-lower {
  padding: 26px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  max-width: var(--max-w); margin: 0 auto;
}
.footer-copy { font-family: var(--sans); font-size: .45rem; font-weight: 300; letter-spacing: .2em; color: rgba(244,240,232,.18); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-family: var(--sans); font-size: .45rem; font-weight: 300; letter-spacing: .17em; color: rgba(244,240,232,.18); transition: color .3s; }
.footer-legal a:hover { color: var(--gold-dim); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-center { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }

  #world { grid-template-columns: 1fr; gap: 52px; }
  .world-img-frame  { max-width: 480px; }
  .world-stat-card  { right: 0; }
  .world-img-deco   { display: none; }
  .world-text-col   { padding-top: 0; }

  .house-inner { grid-template-columns: 1fr; gap: 52px; }
  .house-images { max-width: 480px; }

  .footer-upper { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 860px) {
  /* Categories: 2-col stack */
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .cat-card[data-cat="watches"] { grid-column: 1; grid-row: 1; aspect-ratio: 3/4; }
  .cat-card[data-cat="bags"]    { grid-column: 2; grid-row: 1; aspect-ratio: 3/4; }
  .cat-card[data-cat="women"]   { grid-column: 1; grid-row: 2; aspect-ratio: 3/4; }
  .cat-card[data-cat="men"]     { grid-column: 2; grid-row: 2; aspect-ratio: 3/4; }
  .cat-card[data-cat="eyewear"] { grid-column: 1; grid-row: 3; aspect-ratio: 3/4; }
  .cat-card[data-cat="jewelry"] { grid-column: 1/3; grid-row: 4; aspect-ratio: 16/7; }

  /* Jewelry left-align layout stays fine */

  /* Featured: 2 col */
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .product-card:nth-child(1) { grid-column: 1/3; aspect-ratio: 16/9; }

  /* Editorial: 2 col */
  .ed-grid { grid-template-columns: 1fr 1fr; grid-template-rows: unset; }
  .ed-card:nth-child(1) { grid-column: 1/3; grid-row: 1; aspect-ratio: 16/9; }
  .ed-card:nth-child(2) { grid-column: 1;   grid-row: 2; aspect-ratio: 1; }
  .ed-card:nth-child(3) { grid-column: 2;   grid-row: 2; aspect-ratio: 1; }
  .ed-card:nth-child(4) { grid-column: 1;   grid-row: 3; aspect-ratio: 1; }
  .ed-card:nth-child(5) { grid-column: 2;   grid-row: 3; aspect-ratio: 2/3; }

  /* Craft: stack */
  .craft-inner { grid-template-columns: 1fr; }
  .craft-image-side { aspect-ratio: 4/3; }
  .craft-detail-wrap { right: 16px; }

  .hero-strip { display: none; }
  .footer-upper { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(1) { grid-column: 1; aspect-ratio: 3/4; }
  .world-stats-row { flex-direction: column; gap: 26px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-upper { grid-template-columns: 1fr; }
  .footer-lower { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .house-images { grid-template-columns: 1fr; max-width: 100%; }
  .house-img-wrap:nth-child(2) { margin-top: 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { padding: 15px 20px; }
  .world-stat-card { position: static; margin-top: 20px; display: inline-block; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
