/* =============================================
   LUXE LUSH — luxe-styles.css
   Design: Fashion editorial × B2B wholesale
   Palette: Off-black · Blush mauve · Ivory · Wine
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;0,6..96,900;1,6..96,400;1,6..96,700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root {
  --ink:       #0E0E0E;
  --ink-soft:  #1C1C1C;
  --wine:      #5C1F2E;
  --wine-lt:   #7A2B3D;
  --blush:     #C8A9B0;
  --blush-lt:  #E0CDD2;
  --ivory:     #FAF8F5;
  --ivory-dk:  #F0EDE8;
  --grey-mid:  #8E8E8E;
  --grey-lt:   #C4C4C4;
  --white:     #FFFFFF;
  --line:      rgba(14,14,14,0.1);
  --line-lt:   rgba(255,255,255,0.1);

  --display:  'Bodoni Moda', 'Times New Roman', serif;
  --body:     'Space Grotesk', system-ui, sans-serif;

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

  --r: 3px;
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--body); cursor: pointer; border: none; background: none; }

/* ── CONTAINER ─────────────────────────── */
.container { width: min(1300px, 92vw); margin-inline: auto; }
.container--wide { width: min(1500px, 96vw); margin-inline: auto; }
.container--narrow { width: min(900px, 90vw); margin-inline: auto; }

/* ── UTILS ─────────────────────────────── */
.tag {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.tag--blush { color: var(--blush); }
.tag--lt { color: rgba(255,255,255,0.4); }

/* ── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.btn--ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--ink:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn--wine {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn--wine:hover { background: var(--wine-lt); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--outline-lt {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-lt:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.solid {
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.navbar-inner {
  display: flex;
  align-items: stretch;
  height: 68px;
}

/* logo block */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 2.5rem;
  border-right: 1px solid var(--line-lt);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-mark {
  width: 32px; height: 32px;
  border: 1px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-right: 0.85rem;
}
.nav-brand-mark svg { color: var(--blush); }
.nav-brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-brand-text span {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  display: block;
}

/* links */
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 2rem;
  gap: 0;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.5rem; right: 1.5rem;
  height: 2px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* right actions */
.nav-actions {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 0.75rem;
  border-left: 1px solid var(--line-lt);
  flex-shrink: 0;
}
.nav-contact-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blush);
  transition: color 0.2s;
}
.nav-contact-pill:hover { color: var(--white); }
.nav-contact-pill svg { opacity: 0.7; }

/* burger */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 1.5rem;
  border-left: 1px solid var(--line-lt);
  cursor: pointer;
  height: 100%;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
}

/* ── MOBILE OVERLAY ─────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.mobile-nav-close:hover { border-color: var(--blush); }
.mobile-nav-close svg { color: var(--white); }
.mobile-nav a {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blush); }
.mobile-nav-foot {
  margin-top: 3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   HERO — EDITORIAL LOOKBOOK STRIP
═══════════════════════════════════════ */
.hero {
  background: var(--ink);
  padding-top: 68px; /* nav height */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* top editorial strip — the signature element */
.hero-strip {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  position: relative;
}
.hero-strip::-webkit-scrollbar { display: none; }
.hero-strip.dragging { cursor: grabbing; }

.hero-strip-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
}

/* each editorial frame */
.hero-frame {
  width: clamp(260px, 22vw, 340px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-frame:last-child { border-right: none; }
.hero-frame-inner {
  width: 100%; height: 100%;
  min-height: 440px;
  background: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.hero-frame:hover .hero-frame-inner { transform: scale(1.02); }
.hero-frame-inner img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-frame-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-frame-ph svg { color: rgba(200,169,176,0.2); }
.hero-frame-ph p {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,169,176,0.2);
}
.hero-frame-label {
  position: relative;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* big headline overlaid on strip */
.hero-headline {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 10;
}
.hero-headline h1 {
  font-family: var(--display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--white);
  mix-blend-mode: overlay;
  text-transform: uppercase;
}
.hero-headline h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
  mix-blend-mode: normal;
  font-size: 0.65em;
  letter-spacing: 0.04em;
}

/* bottom info bar */
.hero-bar {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.hero-bar-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hero-bar-stat {}
.hero-bar-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-bar-stat span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 2px;
  display: block;
}
.hero-bar-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}
.hero-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-hint svg { animation: nudge 2s ease-in-out infinite; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ═══════════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════════ */
.marquee-band {
  background: var(--wine);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.marquee-item svg { opacity: 0.5; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   ABOUT / INTRO SPLIT
═══════════════════════════════════════ */
.intro {
  padding: 8rem 0;
  background: var(--ivory);
}
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.intro-left {
  padding-right: 6rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-left h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 1rem 0 1.75rem;
}
.intro-left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
.intro-left .intro-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--grey-mid);
  margin-bottom: 2.25rem;
}
.intro-left .intro-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--ivory-dk);
  border-left: 3px solid var(--wine);
}
.intro-left .intro-note p {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.intro-left .intro-note svg { color: var(--wine); flex-shrink: 0; }

.intro-right {
  padding-left: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
.intro-stat-row {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.intro-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.intro-stat:last-child { border-bottom: none; padding-bottom: 0; }
.intro-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-mid);
  letter-spacing: 0.04em;
}
.intro-stat-value {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

/* ═══════════════════════════════════════
   CATALOGUE / CATEGORIES
═══════════════════════════════════════ */
.catalogue {
  background: var(--ink);
  padding: 7rem 0;
}
.catalogue-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.catalogue-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 0.75rem;
}
.catalogue-header p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--grey-mid);
  max-width: 360px;
}

/* masonry-inspired grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
}
.cat-card:hover .cat-card-img-wrap { transform: scale(1.04); }
.cat-card:hover .cat-card-overlay { opacity: 1; }
.cat-card:hover .cat-card-cta { transform: translateY(0); opacity: 1; }

.cat-card-img-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.55s var(--ease);
}
.cat-img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.cat-img-ph svg { opacity: 0.2; color: var(--blush-lt); }
.cat-img-ph p {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,176,0.2);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.1) 60%);
  opacity: 0.5;
  transition: opacity 0.4s var(--ease);
}
.cat-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
}
.cat-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.35rem;
  display: block;
}
.cat-card-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-lt);
  margin-top: 0.5rem;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

/* grid placements — editorial layout */
.cat-card--a { grid-column: 1 / 6;  grid-row: 1; min-height: 460px; }
.cat-card--b { grid-column: 6 / 9;  grid-row: 1; min-height: 460px; }
.cat-card--c { grid-column: 9 / 13; grid-row: 1 / 3; min-height: 460px; }
.cat-card--d { grid-column: 1 / 4;  grid-row: 2; min-height: 300px; }
.cat-card--e { grid-column: 4 / 7;  grid-row: 2; min-height: 300px; }
.cat-card--f { grid-column: 7 / 9;  grid-row: 2; min-height: 300px; }

/* ═══════════════════════════════════════
   TRADE TERMS BAND
═══════════════════════════════════════ */
.trade-band {
  background: var(--wine);
  padding: 4rem 0;
}
.trade-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trade-item {
  padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trade-item:first-child { padding-left: 0; }
.trade-item:last-child { border-right: none; }
.trade-item-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.trade-item-icon svg { color: rgba(255,255,255,0.7); }
.trade-item h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trade-item p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════
   HOW WE WORK — PROCESS
═══════════════════════════════════════ */
.process {
  padding: 8rem 0;
  background: var(--ivory);
}
.process .container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}
.process-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}
.process-left p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}
.process-left-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ivory-dk);
  position: relative;
}
.process-left-img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.process-left-img-ph svg { opacity: 0.25; color: var(--blush); }
.process-left-img-ph p {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  opacity: 0.5;
}

.process-right {
  padding-top: 1.5rem;
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.process-step:hover .process-step-num { background: var(--wine); color: var(--white); border-color: var(--wine); }

.process-step-num {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.process-step-content h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-step-content p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════
   PULL QUOTE
═══════════════════════════════════════ */
.pullquote {
  background: var(--ink);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -2rem; left: -1rem;
  font-family: var(--display);
  font-size: 25rem;
  font-weight: 900;
  color: rgba(200,169,176,0.04);
  line-height: 1;
  pointer-events: none;
}
.pullquote .container--narrow {
  text-align: center;
  position: relative;
  z-index: 1;
}
.pullquote blockquote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 2rem;
}
.pullquote blockquote strong { font-style: normal; font-weight: 700; color: var(--blush); }
.pullquote-source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why {
  padding: 8rem 0;
  background: var(--ivory-dk);
}
.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-left {
  padding-right: 5rem;
  border-right: 1px solid var(--line);
}
.why-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}
.why-left > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}
.why-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 2.5rem;
}
.why-img {
  aspect-ratio: 1;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
.why-img:first-child { aspect-ratio: 2/1; grid-column: 1 / -1; }
.why-img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.why-img-ph svg { opacity: 0.2; color: var(--blush); }
.why-img-ph p {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  opacity: 0.5;
}

.why-right {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.why-feature:last-child { border-bottom: none; }
.why-feature-icon {
  width: 44px; height: 44px;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.why-feature:hover .why-feature-icon { background: var(--wine); border-color: var(--wine); }
.why-feature:hover .why-feature-icon svg { color: var(--white); }
.why-feature-icon svg { color: var(--wine); transition: color 0.3s; }
.why-feature-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.why-feature-text p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  background: var(--ivory);
  padding: 8rem 0;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}
.contact-left > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--ivory-dk);
  border-left: 2px solid transparent;
  transition: border-color 0.25s;
}
.contact-item:hover { border-color: var(--wine); }
.contact-item-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--wine); }
.contact-item-text label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-lt);
  margin-bottom: 0.2rem;
}
.contact-item-text a,
.contact-item-text p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--wine); }

.contact-uen {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
}

/* form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.75rem;
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.contact-form > p {
  font-size: 0.8rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.8rem 1rem;
  font-family: var(--body);
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(92,31,46,0.08);
}
.fg textarea { resize: vertical; min-height: 110px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 5.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.footer-logo-mark {
  width: 30px; height: 30px;
  border: 1px solid rgba(200,169,176,0.35);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { color: var(--blush); }
.footer-logo-name strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-logo-name span {
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.footer-brand > p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.85rem;
}
.footer-domain {
  font-size: 0.7rem;
  color: var(--blush);
  opacity: 0.5;
}
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blush-lt); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.18); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--blush); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero-headline h1 { font-size: clamp(3rem, 9vw, 7rem); }

  .intro .container { grid-template-columns: 1fr; gap: 3.5rem; }
  .intro-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 3.5rem; }
  .intro-right { padding-left: 0; }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cat-card--a { grid-column: 1 / -1; grid-row: auto; min-height: 340px; }
  .cat-card--b { grid-column: 1; grid-row: auto; min-height: 260px; }
  .cat-card--c { grid-column: 2; grid-row: auto; min-height: 260px; }
  .cat-card--d { grid-column: 1; grid-row: auto; min-height: 220px; }
  .cat-card--e { grid-column: 2; grid-row: auto; min-height: 220px; }
  .cat-card--f { grid-column: 1 / -1; grid-row: auto; min-height: 200px; }

  .trade-band .container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .trade-item { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
  .trade-item:nth-child(even) { border-bottom: none; }

  .process .container { grid-template-columns: 1fr; gap: 3rem; }
  .process-left-img { aspect-ratio: 16/7; }

  .why .container { grid-template-columns: 1fr; }
  .why-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 3.5rem; }
  .why-right { padding-left: 0; }

  .contact .container { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 700px) {
  .hero-headline h1 { font-size: clamp(2.2rem, 10vw, 5rem); }
  .hero-bar { padding: 1rem 1.5rem; }
  .hero-bar-left { gap: 1.5rem; flex-wrap: wrap; }

  .trade-band .container { grid-template-columns: 1fr; }
  .trade-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
  .trade-item:last-child { border-bottom: none; }

  .cat-grid { grid-template-columns: 1fr; }
  .cat-card--a,
  .cat-card--b,
  .cat-card--c,
  .cat-card--d,
  .cat-card--e,
  .cat-card--f { grid-column: 1; min-height: 260px; }
  .cat-card--c { grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .frow { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-strip.dragging { cursor: default; }
}
