*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --bg:        #F8F6F2;
  --surface:   #FFFFFF;
  --ink:       #1A1916;
  --ink-mid:   #4A4945;
  --ink-mute:  #9A9891;
  --gold:      #B89A6A;
  --gold-lt:   #D4BA94;
  --border:    rgba(26,25,22,0.12);
  --border-lt: rgba(26,25,22,0.06);
 
  --f-head: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', 'Helvetica Neue', sans-serif;
 
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
 
/* ─── Custom cursor ─── */
#cursor {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(26,25,22,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 0; height: 0; }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 60px; height: 60px; border-color: var(--gold); }
.nav-dark #cursor { background: #F8F6F2; }
.nav-dark #cursor-ring { border-color: rgba(248,246,242,0.4); }
 
/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s var(--ease-out),
              background 0.5s var(--ease-out),
              backdrop-filter 0.5s,
              padding 0.5s var(--ease-out),
              border-bottom 0.5s;
}
 
#navbar.scrolled {
  height: 60px;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
 
#navbar.nav-dark {
  color: #F8F6F2;
}
 
/* Logo */
.nav-logo {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-logo:hover::after { width: 100%; }
 
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
 
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
 
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; right: 50%;
  height: 1px;
  background: currentColor;
  transition: left 0.35s var(--ease-out), right 0.35s var(--ease-out);
}
.nav-links a:hover::after { left: 0; right: 0; }
 
/* Nav icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}
 
.nav-icon-btn {
  background: none;
  border: none;
  cursor: none;
  color: inherit;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.2s;
}
.nav-icon-btn:hover { opacity: 0.6; }
 
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  width: 14px; height: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
}
 
/* Announcement bar */
#announcement {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 36px;
  background: var(--ink);
  color: rgba(248,246,242,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
}
#announcement.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
#announcement span { color: var(--gold-lt); margin: 0 6px; }
 
/* offset body when announcement is visible */
body { padding-top: 0; }
 
/* ─── HERO ─── */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1A1916;
}
 
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,25,22,0.3) 0%, rgba(26,25,22,0.65) 60%, rgba(26,25,22,0.9) 100%);
  z-index: 1;
}
 
/* Geometric accent lines on hero */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: 15%; right: 12%;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, rgba(184,154,106,0.5), transparent);
  animation: lineGrow 1.8s 0.8s var(--ease-out) forwards;
}
.hero-lines::after {
  content: '';
  position: absolute;
  bottom: 20%; left: 8%;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,154,106,0.4), transparent);
  animation: lineGrowH 1.5s 1.2s var(--ease-out) forwards;
}
@keyframes lineGrow { to { height: 180px; } }
@keyframes lineGrowH { to { width: 120px; } }
 
/* Mosaic image grid behind hero */
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  animation: fadeIn 1.2s 0.1s var(--ease-out) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
 
.hero-mosaic-cell {
  background-size: cover;
  background-position: center;
  transition: transform 8s linear;
}
.hero-mosaic-cell:nth-child(1) { background-color: #2A2620; grid-column: 1; grid-row: 1 / 3; background-image: url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?w=600&q=80'); animation: slowZoom 14s ease-in-out infinite alternate; }
.hero-mosaic-cell:nth-child(2) { background-color: #332E28; background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=400&q=80'); animation: slowZoom 18s 2s ease-in-out infinite alternate-reverse; }
.hero-mosaic-cell:nth-child(3) { background-color: #201E1A; background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=400&q=80'); animation: slowZoom 16s 4s ease-in-out infinite alternate; }
.hero-mosaic-cell:nth-child(4) { background-color: #2E2923; background-image: url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=400&q=80'); animation: slowZoom 20s 1s ease-in-out infinite alternate-reverse; }
.hero-mosaic-cell:nth-child(5) { background-color: #252219; background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=400&q=80'); animation: slowZoom 15s 3s ease-in-out infinite alternate; }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
 
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 80px 100px;
  max-width: 780px;
}
 
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  animation: slideUp 0.8s 0.9s var(--ease-out) forwards;
}
 
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: #F8F6F2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
 
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: lineReveal 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.65s; font-style: italic; color: var(--gold-lt); }
.hero-title .line:nth-child(3) span { animation-delay: 0.8s; }
 
@keyframes lineReveal { to { transform: translateY(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
 
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(248,246,242,0.6);
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(12px);
  animation: slideUp 0.8s 1.2s var(--ease-out) forwards;
}
 
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(12px);
  animation: slideUp 0.8s 1.4s var(--ease-out) forwards;
}
 
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #F8F6F2;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F8F6F2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary:hover { color: var(--ink); }
.btn-primary span { position: relative; z-index: 1; }
 
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  color: rgba(248,246,242,0.75);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: none;
  padding: 0;
  transition: color 0.3s;
}
.btn-ghost-white:hover { color: rgba(248,246,242,1); }
.btn-ghost-white .arrow-line {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease-out);
}
.btn-ghost-white:hover .arrow-line { width: 44px; }
.btn-ghost-white .arrow-line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
 
/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: slideUp 0.8s 1.8s var(--ease-out) forwards;
}
.scroll-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.4);
  font-weight: 300;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px; height: 0;
  background: linear-gradient(to bottom, rgba(184,154,106,0.6), transparent);
  animation: scrollLine 1.5s 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 1; }
  60%  { height: 50px; opacity: 1; }
  100% { height: 50px; opacity: 0; }
}
 
/* ─── SECTION COMMON ─── */
.section {
  padding: 120px 80px;
}
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.1s var(--ease-out), transform 0.8s 0.1s var(--ease-out);
}
.in-view .section-eyebrow,
.in-view .section-title { opacity: 1; transform: translateY(0); }
 
/* ─── CATEGORIES ─── */
#categories {
  background: var(--surface);
  padding: 100px 80px;
}
 
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 3px;
  margin-top: 56px;
}
 
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.cat-card:nth-child(1) { grid-row: 1 / 3; }
 
.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.cat-card:hover .cat-img { transform: scale(1.04); }
 
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,0.75) 0%, rgba(26,25,22,0.1) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.cat-card:hover .cat-overlay { opacity: 0.9; }
 
.cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.cat-card:hover .cat-info { transform: translateY(-6px); }
 
.cat-name {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 300;
  color: #F8F6F2;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.cat-card:nth-child(1) .cat-name { font-size: 36px; }
 
.cat-link {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s var(--ease-out);
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }
.cat-link::after {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold-lt);
}
 
/* Category cards animated entrance */
.cat-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out),
    box-shadow 0.3s;
}
#categories.in-view .cat-card:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
#categories.in-view .cat-card:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
#categories.in-view .cat-card:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
#categories.in-view .cat-card:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
#categories.in-view .cat-card:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
 
/* ─── NEW ARRIVALS ─── */
#new-arrivals {
  background: var(--bg);
  padding: 100px 80px;
}
.arrivals-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.view-all {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  font-weight: 300;
  transition: color 0.3s, border-color 0.3s;
}
.view-all:hover { color: var(--gold); border-color: var(--gold); }
 
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
 
.product-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
#new-arrivals.in-view .product-card:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
#new-arrivals.in-view .product-card:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
#new-arrivals.in-view .product-card:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
#new-arrivals.in-view .product-card:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
 
.product-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #EDEAE4;
  margin-bottom: 16px;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center top;
  transition: transform 0.8s var(--ease-out), opacity 0.4s;
}
.product-img-alt {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.product-card:hover .product-img { opacity: 0; }
.product-card:hover .product-img-alt { opacity: 1; }
 
.product-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  gap: 8px;
}
.product-card:hover .product-actions { transform: translateY(0); }
 
.btn-atc {
  flex: 1;
  background: rgba(26,25,22,0.88);
  color: #F8F6F2;
  border: none;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 0;
  cursor: none;
  font-weight: 300;
  transition: background 0.3s;
}
.btn-atc:hover { background: var(--gold); }
 
.btn-wish {
  width: 40px;
  background: rgba(26,25,22,0.88);
  color: #F8F6F2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s;
}
.btn-wish:hover { background: rgba(184,154,106,0.9); }
 
.product-meta { padding: 0 4px; }
.product-brand {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 5px;
}
.product-name {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-price {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
}
 
/* ─── EDITORIAL BANNER ─── */
#editorial {
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #1A1916;
}
.editorial-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1600&q=85');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  transition: transform 0.3s ease-out;
}
.editorial-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
#editorial.in-view .editorial-content { opacity: 1; transform: translateY(0); }
 
.editorial-season {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  margin-bottom: 20px;
}
.editorial-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: #F8F6F2;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.editorial-title em { font-style: italic; color: var(--gold-lt); }
 
/* ─── MARQUEE ─── */
#marquee-strip {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.45);
  font-weight: 300;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }
 
/* ─── BRAND STORY ─── */
#story {
  background: var(--surface);
  padding: 140px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.story-text-wrap .section-eyebrow,
.story-text-wrap .section-title { text-align: left; }
.story-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  margin: 24px 0 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.25s var(--ease-out), transform 0.8s 0.25s var(--ease-out);
}
#story.in-view .story-body { opacity: 1; transform: translateY(0); }
 
.story-stats {
  display: flex;
  gap: 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.4s var(--ease-out), transform 0.8s 0.4s var(--ease-out);
}
#story.in-view .story-stats { opacity: 1; transform: translateY(0); }
 
.stat-num {
  font-family: var(--f-head);
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 300;
  margin-top: 6px;
}
 
.story-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 6px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s 0.2s var(--ease-out), transform 0.9s 0.2s var(--ease-out);
}
#story.in-view .story-img-grid { opacity: 1; transform: translateX(0); }
 
.story-img {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.story-img:nth-child(1) { grid-column: 1/3; background-image: url('https://images.unsplash.com/photo-1567401893414-76b7b1e5a7a5?w=800&q=80'); }
.story-img:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=400&q=80'); }
.story-img:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?w=400&q=80'); }
 
/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(248,246,242,0.5);
  padding: 80px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248,246,242,0.08);
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(248,246,242,0.9);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: 28px;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.3);
  font-weight: 400;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(248,246,242,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 10px; font-weight: 300; letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 10px; font-weight: 300; color: rgba(248,246,242,0.3); text-decoration: none; transition: color 0.25s; }
.footer-legal a:hover { color: rgba(248,246,242,0.6); }
 
/* ─── MENU OVERLAY ─── */
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-out);
  pointer-events: none;
  display: flex;
  align-items: center;
}
#menu-overlay.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}
.menu-inner {
  padding: 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.menu-nav-links { list-style: none; }
.menu-nav-links li {
  overflow: hidden;
  margin-bottom: 4px;
}
.menu-nav-links a {
  display: inline-block;
  font-family: var(--f-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  color: rgba(248,246,242,0.9);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out), color 0.3s;
}
.menu-nav-links a:hover { color: var(--gold-lt); }
#menu-overlay.open .menu-nav-links li:nth-child(1) a { transform: translateY(0); transition-delay: 0.15s; }
#menu-overlay.open .menu-nav-links li:nth-child(2) a { transform: translateY(0); transition-delay: 0.2s; }
#menu-overlay.open .menu-nav-links li:nth-child(3) a { transform: translateY(0); transition-delay: 0.25s; }
#menu-overlay.open .menu-nav-links li:nth-child(4) a { transform: translateY(0); transition-delay: 0.3s; }
#menu-overlay.open .menu-nav-links li:nth-child(5) a { transform: translateY(0); transition-delay: 0.35s; }
#menu-overlay.open .menu-nav-links li:nth-child(6) a { transform: translateY(0); transition-delay: 0.4s; }
 
.menu-right {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.5s var(--ease-out), transform 0.6s 0.5s var(--ease-out);
}
#menu-overlay.open .menu-right { opacity: 1; transform: translateY(0); }
 
.menu-featured-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 300;
}
.menu-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 40px;
}
.menu-feat-img {
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
}
.menu-feat-img:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1551488831-00ddcb6c6bd3?w=300&q=80'); }
.menu-feat-img:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1509631179647-0177331693ae?w=300&q=80'); }
 
.menu-close {
  position: absolute;
  top: 36px; right: 48px;
  background: none;
  border: none;
  cursor: none;
  color: rgba(248,246,242,0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--f-body);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: color 0.3s;
}
.menu-close:hover { color: rgba(248,246,242,0.9); }
.close-x {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 20px; height: 14px;
  position: relative;
}
.close-x span {
  display: block;
  width: 100%; height: 1px;
  background: currentColor;
  position: absolute;
  top: 50%; left: 0;
  transition: transform 0.3s var(--ease-out);
}
.close-x span:nth-child(1) { transform: rotate(45deg); }
.close-x span:nth-child(2) { transform: rotate(-45deg); }
 
/* hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger:hover span { width: 22px !important; }
 
/* scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }