/* ─────────────────────────────────────────────────────────────────────────────
   ZAINA — Main Stylesheet
   Designed in Chicago. Since 1999.
───────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600;1,700&family=Tenor+Sans&family=Jost:wght@200;300;400;500&display=swap');

/* ─── VARIABLES ─── */
:root {
  --obsidian:   #0A0A0A;
  --carbon:     #1C1C1C;
  --champagne:  #C9A96E;
  --silver:     #C8C8C8;
  --ivory:      #F5F3EF;
  --muted:      rgba(245, 243, 239, 0.45);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Tenor Sans', sans-serif;
  --font-body:    'Jost', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul { list-style: none; }

/* ─── GRAIN OVERLAY ─── */
body::after {
  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.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.32;
  mix-blend-mode: overlay;
}


/* ═══════════════════════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════════════════════ */

#loader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease);
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader.hidden {
  display: none;
}

.loader-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 12vw, 108px);
  letter-spacing: 0.08em;
  color: var(--champagne);
  opacity: 0;
  animation: rise 0.65s var(--ease) 0.2s forwards;
}


/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--champagne);
  transition: opacity 0.3s var(--ease);
}

.nav-logo:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.65;
  transition: opacity 0.3s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover          { opacity: 1; }
.nav-links a:hover::after   { width: 100%; }
.nav-links a.active         { opacity: 1; }
.nav-links a.active::after  { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.65;
  transition: opacity 0.3s var(--ease);
  cursor: pointer;
}

.nav-cart-btn:hover { opacity: 1; }

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--champagne);
  color: var(--obsidian);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.cart-count.visible { opacity: 1; }

.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════════════════════════════════════════════ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.mobile-menu-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--champagne);
}

.mobile-menu-close {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
  background: none;
  border: none;
}

.mobile-menu-close:hover { opacity: 1; }

.mobile-menu-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 9vw, 60px);
  font-weight: 300;
  color: var(--ivory);
  opacity: 0.8;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
  display: block;
  padding: 6px 0;
  line-height: 1.2;
}

.mobile-menu-links a:hover {
  color: var(--champagne);
  opacity: 1;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 48px;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}


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

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--carbon);
  z-index: 901;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(200, 200, 200, 0.07);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ivory);
}

.cart-drawer-close {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
  background: none;
  border: none;
}

.cart-drawer-close:hover { opacity: 1; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 36px;
}

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

.cart-empty-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 243, 239, 0.4);
}

.cart-empty-sub {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 200, 200, 0.06);
  align-items: start;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
}

.cart-item-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 6px;
  line-height: 1.2;
}

.cart-item-meta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.cart-item-price {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--champagne);
}

.cart-item-remove {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s var(--ease);
  background: none;
  border: none;
  padding: 4px 0;
}

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

.cart-drawer-footer {
  padding: 24px 36px 36px;
  border-top: 1px solid rgba(200, 200, 200, 0.07);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.cart-subtotal-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.7;
}

.cart-subtotal-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ivory);
}


/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--champagne);
  color: var(--obsidian);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn-primary:hover {
  background: var(--ivory);
  color: var(--obsidian);
}

.btn-outline {
  display: inline-block;
  padding: 15px 44px;
  background: transparent;
  color: var(--champagne);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--champagne);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn-outline:hover {
  background: var(--champagne);
  color: var(--obsidian);
}

.btn-full {
  width: 100%;
  display: block;
}


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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.45s; }


/* ═══════════════════════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════════════════════ */

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

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--obsidian);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.28;
  filter: contrast(1.15) brightness(0.65);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.05) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(88px, 19vw, 240px);
  letter-spacing: 0.04em;
  color: var(--champagne);
  line-height: 0.9;
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 1.3s var(--ease) 0.25s forwards;
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise 1.2s var(--ease) 0.75s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: heroRise 1s var(--ease) 1.3s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollPulse 2.2s ease-in-out 2s infinite;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FEATURED PRODUCT — HOMEPAGE
═══════════════════════════════════════════════════════════════════════════ */

.featured-product {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 88vh;
  align-items: stretch;
}

.featured-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.featured-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) brightness(0.82);
  transition: transform 0.9s var(--ease);
}

.featured-image-wrap:hover img { transform: scale(1.04); }

.featured-content {
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--carbon);
}

.featured-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}

.featured-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 76px);
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 16px;
}

.featured-price {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(200, 200, 200, 0.6);
  margin-bottom: 36px;
}

.featured-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 243, 239, 0.55);
  line-height: 1.7;
  margin-bottom: 52px;
  max-width: 320px;
  border-left: 1px solid rgba(201, 169, 110, 0.25);
  padding-left: 24px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BRAND STRIP
═══════════════════════════════════════════════════════════════════════════ */

.brand-strip {
  padding: 160px 40px;
  text-align: center;
  background: var(--obsidian);
  border-top: 1px solid rgba(200, 200, 200, 0.05);
  border-bottom: 1px solid rgba(200, 200, 200, 0.05);
}

.brand-strip-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 60px);
  color: var(--champagne);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   EMAIL CAPTURE
═══════════════════════════════════════════════════════════════════════════ */

.email-section {
  padding: 140px 40px;
  text-align: center;
  background: var(--carbon);
}

.email-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  color: var(--ivory);
  margin-bottom: 20px;
}

.email-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  color: rgba(245, 243, 239, 0.5);
  max-width: 460px;
  margin: 0 auto 52px;
  line-height: 1.9;
}

.email-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 200, 200, 0.14);
  border-right: none;
  padding: 16px 24px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.email-input::placeholder {
  color: rgba(200, 200, 200, 0.35);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.email-input:focus {
  border-color: rgba(201, 169, 110, 0.4);
}

.email-success {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 16px 0;
}


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

.site-footer {
  background: var(--obsidian);
  padding: 88px 80px 56px;
  border-top: 1px solid rgba(200, 200, 200, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.06em;
  color: var(--champagne);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.footer-tagline {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.footer-origin {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
}

.footer-heading {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.3s var(--ease);
  font-family: var(--font-body);
}

.footer-links a:hover { color: var(--ivory); }

.footer-social {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-social a {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
  position: relative;
}

.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s var(--ease);
}

.footer-social a:hover { color: var(--champagne); }
.footer-social a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(200, 200, 200, 0.06);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  font-family: var(--font-body);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover { color: var(--silver); }


/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════════════════════════════════════ */

.page-header {
  padding: calc(var(--nav-height) + 96px) 80px 64px;
  text-align: center;
  border-bottom: 1px solid rgba(200, 200, 200, 0.06);
}

.page-header-eyebrow {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.page-header-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(52px, 8vw, 96px);
  color: var(--ivory);
  line-height: 1;
}

.page-header-sub {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SHOP — FILTERS
═══════════════════════════════════════════════════════════════════════════ */

.shop-filters {
  padding: 48px 80px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(200, 200, 200, 0.06);
}

.filter-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
  margin-right: 8px;
}

.filter-btn {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 18px;
  border: 1px solid rgba(200, 200, 200, 0.1);
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--champagne);
  border-color: rgba(201, 169, 110, 0.35);
}


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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px 0;
  background: rgba(200, 200, 200, 0.04);
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--carbon);
  display: block;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.86);
  transition: transform 0.75s var(--ease), filter 0.55s var(--ease);
}

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

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
}

.product-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card-info { transform: translateY(0); }

.product-card-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 6px;
  line-height: 1.1;
}

.product-card-price {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(200, 200, 200, 0.6);
  margin-bottom: 14px;
}

.product-card-cta {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  position: relative;
  display: inline-block;
}

.product-card-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
}

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

/* Coming soon */
.product-card.coming-soon .product-card-image {
  filter: brightness(0.45) saturate(0.35);
}

.product-card.coming-soon:hover .product-card-image {
  filter: brightness(0.38) saturate(0.25);
}

.product-card.coming-soon .product-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card.coming-soon .product-card-bg::after {
  content: 'Z';
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 280px;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-label);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 6px 12px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   COMING SOON MODAL
═══════════════════════════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.modal {
  background: var(--carbon);
  max-width: 520px;
  width: 100%;
  padding: 64px 56px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.45s var(--ease);
  text-align: center;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s var(--ease);
  background: none;
  border: none;
}

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

.modal-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.modal-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.15;
}

.modal-dress-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--champagne);
  margin-bottom: 24px;
  opacity: 0.8;
}

.modal-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 243, 239, 0.55);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form .email-input {
  border-right: 1px solid rgba(200, 200, 200, 0.14);
  text-align: center;
}

.modal-form .email-input:focus {
  border-color: rgba(201, 169, 110, 0.4);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE — HERO
═══════════════════════════════════════════════════════════════════════════ */

.product-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

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

.product-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.58) contrast(1.1);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.2) 60%,
    transparent 100%
  );
}

.product-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  max-width: 640px;
}

.product-hero-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.product-hero-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 104px);
  color: var(--ivory);
  line-height: 0.95;
  margin-bottom: 20px;
}

.product-hero-price {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(200, 200, 200, 0.65);
  margin-bottom: 40px;
}

.product-hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE — DETAIL STORY
═══════════════════════════════════════════════════════════════════════════ */

.detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
}

.detail-section.reverse {
  direction: rtl;
}

.detail-section.reverse > * {
  direction: ltr;
}

.detail-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.detail-section:hover .detail-image-wrap img { transform: scale(1.04); }

.detail-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--obsidian);
}

.detail-section:nth-child(even) .detail-content {
  background: var(--carbon);
}

.detail-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}

.detail-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 42px);
  color: var(--ivory);
  line-height: 1.45;
  max-width: 420px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE — OPTIONS & DETAILS
═══════════════════════════════════════════════════════════════════════════ */

.product-details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 80px;
  background: var(--carbon);
  gap: 0;
}

.product-description {
  padding-right: 80px;
  border-right: 1px solid rgba(200, 200, 200, 0.07);
}

.product-desc-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}

.product-desc-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: rgba(245, 243, 239, 0.75);
  line-height: 1.85;
  margin-bottom: 48px;
}

.product-origin-line {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
  margin-bottom: 10px;
}

.product-shipping-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}

.product-returns-link {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  display: inline-block;
  transition: color 0.3s var(--ease);
  position: relative;
}

.product-returns-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s var(--ease);
}

.product-returns-link:hover { color: var(--champagne); }
.product-returns-link:hover::after { width: 100%; }

.product-options {
  padding-left: 80px;
}

.option-title {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}

.size-btn {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 200, 200, 0.12);
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  opacity: 0.6;
}

.size-btn:hover {
  border-color: rgba(201, 169, 110, 0.5);
  color: var(--champagne);
  opacity: 1;
}

.size-btn.selected {
  border-color: var(--champagne);
  color: var(--champagne);
  opacity: 1;
  background: rgba(201, 169, 110, 0.07);
}

.size-note {
  font-size: 12px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--muted);
  margin-bottom: 40px;
  margin-top: -32px;
}

.color-options {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}

.color-swatch-btn {
  width: 28px;
  height: 28px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s var(--ease);
}

.color-swatch-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.color-swatch-btn:hover { transform: scale(1.12); }

.color-swatch-btn.selected::after { border-color: var(--champagne); }

.color-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
  transition: color 0.3s var(--ease);
}

/* Sticky mobile bar */
.product-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  z-index: 700;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 200, 200, 0.08);
  gap: 16px;
}

.product-sticky-bar.visible { display: flex; }

.sticky-product-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ivory);
}

.sticky-price {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--silver);
  opacity: 0.7;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════════════ */

.about-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 80px) 80px 80px;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 65%, rgba(201,169,110,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 60px);
  color: var(--ivory);
  line-height: 1.45;
  max-width: 960px;
  position: relative;
  z-index: 1;
}

.about-hero-quote em {
  color: var(--champagne);
  font-style: italic;
}

.about-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 40px 140px;
}

.about-section {
  margin-bottom: 100px;
}

.about-section-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 32px;
}

.about-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--ivory);
  margin-bottom: 36px;
  line-height: 1.2;
}

.about-text {
  font-size: 19px;
  font-weight: 300;
  line-height: 2;
  color: rgba(245, 243, 239, 0.65);
  margin-bottom: 20px;
}

.about-hairline {
  width: 100%;
  height: 1px;
  background: rgba(200, 200, 200, 0.07);
  margin: 80px 0;
}

.about-chicago {
  text-align: center;
  padding: 128px 40px;
  background: var(--carbon);
  border-top: 1px solid rgba(200, 200, 200, 0.05);
  border-bottom: 1px solid rgba(200, 200, 200, 0.05);
}

.about-chicago-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SIZE GUIDE PAGE
═══════════════════════════════════════════════════════════════════════════ */

.size-guide-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px 140px;
}

.inner-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 84px);
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1;
}

.inner-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 64px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 88px;
}

.size-table th {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  font-weight: 400;
}

.size-table td {
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 243, 239, 0.65);
  border-bottom: 1px solid rgba(200, 200, 200, 0.05);
  font-family: var(--font-body);
}

.size-table td:first-child {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ivory);
}

.size-table tr:hover td {
  color: var(--ivory);
  background: rgba(201, 169, 110, 0.04);
}

.fit-notes {
  padding: 52px 48px;
  background: var(--carbon);
}

.fit-notes-title {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 36px;
}

.fit-note-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 200, 200, 0.06);
  align-items: flex-start;
}

.fit-note-item:last-child { border-bottom: none; }

.fit-note-dash {
  color: var(--champagne);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
}

.fit-note-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 243, 239, 0.7);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RETURNS PAGE
═══════════════════════════════════════════════════════════════════════════ */

.returns-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px 140px;
}

.returns-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  color: rgba(245, 243, 239, 0.65);
  line-height: 2;
  margin-bottom: 48px;
  max-width: 560px;
}

.returns-policy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  color: rgba(245, 243, 239, 0.65);
  line-height: 2;
  max-width: 560px;
  margin-bottom: 72px;
}

.returns-contact {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  color: rgba(245, 243, 239, 0.65);
  line-height: 2;
}

.returns-contact a {
  color: var(--champagne);
  position: relative;
  display: inline-block;
}

.returns-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  opacity: 0.4;
  transition: opacity 0.3s var(--ease);
}

.returns-contact a:hover::after { opacity: 1; }


/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════════════════════ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hairline {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.3), transparent);
}


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

@media (max-width: 1100px) {
  .nav { padding: 0 36px; }

  .featured-content { padding: 60px 48px 60px 48px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .product-details-section { padding: 100px 56px; }
  .product-description { padding-right: 56px; }
  .product-options { padding-left: 56px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

  /* Hero */
  .hero-wordmark { font-size: clamp(72px, 22vw, 120px); }
  .hero-tagline  { font-size: 9px; letter-spacing: 5px; }

  /* Featured */
  .featured-product {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .featured-image-wrap {
    height: 75vw;
    min-height: 360px;
  }
  .featured-content { padding: 52px 32px; }
  .featured-quote { margin-bottom: 36px; }

  /* Brand strip */
  .brand-strip { padding: 100px 24px; }

  /* Email */
  .email-section { padding: 100px 24px; }
  .email-form {
    flex-direction: column;
    max-width: 100%;
  }
  .email-form .email-input { border-right: 1px solid rgba(200, 200, 200, 0.14); }

  /* Footer */
  .site-footer { padding: 60px 24px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Shop */
  .page-header { padding: calc(var(--nav-height) + 56px) 24px 48px; }
  .shop-filters { padding: 36px 24px; }
  .product-grid { padding: 0; }

  /* Product */
  .product-hero-content { padding: 48px 28px; }
  .detail-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .detail-section.reverse { direction: ltr; }
  .detail-image-wrap { min-height: 56vw; height: 56vw; }
  .detail-content { padding: 52px 28px; }
  .detail-quote { font-size: clamp(22px, 5vw, 32px); max-width: 100%; }

  .product-details-section {
    grid-template-columns: 1fr;
    padding: 72px 28px;
    gap: 56px;
  }
  .product-description {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(200, 200, 200, 0.07);
    padding-bottom: 56px;
  }
  .product-options { padding-left: 0; }

  /* About */
  .about-hero { padding: calc(var(--nav-height) + 56px) 28px 56px; }
  .about-body  { padding: 72px 24px 100px; }
  .about-chicago { padding: 88px 24px; }

  /* Size / Returns */
  .size-guide-wrap,
  .returns-wrap { padding: 56px 24px 100px; }
  .fit-notes { padding: 36px 24px; }
  .modal { padding: 52px 32px; }
  .modal-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .size-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .size-btn { height: 38px; font-size: 9px; }
  .product-hero-name { font-size: clamp(44px, 14vw, 72px); }
  .about-hero-quote { font-size: clamp(22px, 7vw, 36px); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   THE EDIT — PUBLICATIONS PAGE
═══════════════════════════════════════════════════════════════════════════ */

.edit-subline {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
}

.articles-section {
  padding: 88px 80px 128px;
}

/* ── Featured Article ── */
.article-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 88px;
  border-bottom: 1px solid rgba(200, 200, 200, 0.07);
  margin-bottom: 80px;
}

.article-featured-visual {
  background: var(--carbon);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-featured-visual::after {
  content: 'Z';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 300px;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.article-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-category {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.article-title-featured {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-title-featured a {
  color: inherit;
  transition: color 0.35s var(--ease);
}

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

.article-date {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.article-excerpt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: rgba(245, 243, 239, 0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}

.article-read-link {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.article-read-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.35s var(--ease);
}

.article-read-link:hover::after,
.article-card:hover .article-read-link::after { width: 100%; }

/* ── Article Grid ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.article-card {
  padding: 56px 52px;
  background: var(--carbon);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.35s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.article-card:hover { background: #212121; }

.article-card .article-category { margin-bottom: 16px; }

.article-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.35s var(--ease);
}

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

.article-card .article-date { margin-bottom: 20px; }

.article-excerpt-sm {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(245, 243, 239, 0.45);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 32px;
}

/* ── Loading / Error states ── */
.articles-loading {
  text-align: center;
  padding: 80px 0;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Single Article Page ── */
.article-page-header {
  padding: calc(var(--nav-height) + 80px) 80px 60px;
  border-bottom: 1px solid rgba(200, 200, 200, 0.06);
  max-width: 860px;
}

.article-page-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 28px;
}

.article-page-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.article-page-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px 140px;
}

.article-page-body p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: rgba(245, 243, 239, 0.72);
  line-height: 2;
  margin-bottom: 32px;
}

.article-back-link {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  display: inline-block;
  margin-bottom: 80px;
  transition: color 0.3s var(--ease);
}

.article-back-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.35s var(--ease);
}

.article-back-link:hover { color: var(--champagne); }
.article-back-link:hover::after { width: 100%; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .articles-section { padding: 72px 48px 100px; }
  .article-featured { gap: 56px; }
}

@media (max-width: 768px) {
  .articles-section { padding: 60px 24px 88px; }

  .article-featured {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .article-featured-visual { aspect-ratio: 16/9; }

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

  .article-card { padding: 44px 28px; }

  .article-page-header { padding: calc(var(--nav-height) + 56px) 24px 48px; }

  .article-page-body { padding: 56px 24px 100px; }
  .article-page-body p { font-size: 18px; }
}
