/* ============================================================
   lookbook.css — Kingdom Identity Collection Wholesale Catalog
   Brand: A Servant's Heart Studio
   Palette: warm cream / deep brown / terracotta / gold
   ============================================================ */

:root {
  --lb-bg: #FAF7F2;
  --lb-bg-alt: #F0EBE3;
  --lb-fg: #1A1410;
  --lb-fg-muted: #6B5F52;
  --lb-accent: #7C2D12;
  --lb-accent-warm: #A3521A;
  --lb-gold: #C4952A;
  --lb-cream: #FFFDF8;
  --lb-border: rgba(26, 20, 16, 0.12);
  --lb-shadow: 0 2px 16px rgba(26, 20, 16, 0.08);
  --lb-shadow-hover: 0 8px 32px rgba(26, 20, 16, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--lb-bg);
  color: var(--lb-fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────────────────── */
.lb-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lb-border);
}

.lb-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lb-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lb-fg);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.lb-nav-logo {
  font-size: 16px;
  color: var(--lb-accent);
}

.lb-nav-admin {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-fg-muted);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--lb-border);
  border-radius: 3px;
  transition: all 0.2s;
}

.lb-nav-admin:hover {
  background: var(--lb-cream);
  border-color: var(--lb-fg-muted);
  color: var(--lb-fg);
}

/* ── HERO ──────────────────────────────────────────────── */
.lb-hero {
  position: relative;
  padding: 100px 40px 90px;
  text-align: center;
  overflow: hidden;
}

.lb-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 149, 42, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124, 45, 18, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lb-hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.lb-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lb-accent);
  margin-bottom: 28px;
}

.lb-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--lb-fg);
  margin-bottom: 24px;
}

.lb-headline em {
  font-style: italic;
  color: var(--lb-accent);
}

.lb-lede {
  font-size: 17px;
  color: var(--lb-fg-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 40px;
}

.lb-hero-count {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 24px;
  background: var(--lb-cream);
  border: 1px solid var(--lb-border);
  border-radius: 100px;
}

.lb-count-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--lb-accent);
}

.lb-count-label {
  font-size: 13px;
  color: var(--lb-fg-muted);
}

/* ── DIVIDER ────────────────────────────────────────────── */
.lb-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
}

.lb-divider-line {
  flex: 1;
  height: 1px;
  background: var(--lb-border);
}

.lb-divider-text {
  font-size: 14px;
  color: var(--lb-gold);
}

/* ── PRODUCTS ───────────────────────────────────────────── */
.lb-products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.lb-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Product Card */
.lb-product-card {
  background: var(--lb-cream);
  border: 1px solid var(--lb-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--lb-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lb-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-hover);
}

.lb-card-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--lb-bg-alt);
  position: relative;
}

.lb-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lb-product-card:hover .lb-card-image {
  transform: scale(1.03);
}

.lb-card-image--placeholder {
  background: var(--lb-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-card-placeholder {
  font-size: 32px;
  color: var(--lb-border);
}

.lb-card-body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lb-card-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lb-fg-muted);
  margin-bottom: 8px;
}

.lb-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--lb-fg);
  margin-bottom: 10px;
}

.lb-card-desc {
  font-size: 14px;
  color: var(--lb-fg-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.lb-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--lb-border);
}

.lb-card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--lb-fg);
}

.lb-card-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
}

.lb-card-badge--low {
  background: rgba(196, 149, 42, 0.15);
  color: var(--lb-accent-warm);
}

.lb-card-badge--oos {
  background: rgba(107, 95, 82, 0.12);
  color: var(--lb-fg-muted);
}

/* ── EMPTY STATE ────────────────────────────────────────── */
.lb-empty {
  text-align: center;
  padding: 80px 20px;
}

.lb-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--lb-fg);
  margin-bottom: 12px;
}

.lb-empty-body {
  font-size: 15px;
  color: var(--lb-fg-muted);
  line-height: 1.7;
}

.lb-empty-body a {
  color: var(--lb-accent);
  text-decoration: underline;
}

/* ── WHOLESALE CTA ──────────────────────────────────────── */
.lb-cta {
  background: var(--lb-fg);
  color: var(--lb-cream);
  padding: 100px 40px;
  text-align: center;
}

.lb-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.lb-cta-ornament {
  font-size: 24px;
  color: var(--lb-gold);
  margin-bottom: 32px;
}

.lb-cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--lb-cream);
  margin-bottom: 20px;
}

.lb-cta-body {
  font-size: 16px;
  color: rgba(255, 253, 248, 0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.lb-cta-button {
  display: inline-block;
  background: var(--lb-accent);
  color: var(--lb-cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  transition: background 0.2s;
  margin-bottom: 24px;
}

.lb-cta-button:hover {
  background: var(--lb-accent-warm);
}

.lb-cta-email {
  font-size: 14px;
  color: rgba(255, 253, 248, 0.5);
  line-height: 1.7;
}

.lb-cta-email a {
  color: rgba(255, 253, 248, 0.7);
  text-decoration: underline;
}

.lb-cta-email a:hover {
  color: var(--lb-cream);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.lb-footer {
  padding: 32px 40px;
  background: var(--lb-bg-alt);
  border-top: 1px solid var(--lb-border);
}

.lb-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lb-footer-brand {
  font-size: 13px;
  color: var(--lb-fg);
}

.lb-footer-copy {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--lb-fg-muted);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .lb-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .lb-products-section {
    padding: 48px 24px 60px;
  }
  .lb-nav-inner,
  .lb-hero,
  .lb-cta,
  .lb-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .lb-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lb-products-section {
    padding: 40px 16px 60px;
  }
  .lb-hero {
    padding: 72px 20px 64px;
  }
  .lb-cta {
    padding: 72px 20px;
  }
  .lb-nav-inner {
    padding: 0 20px;
  }
  .lb-footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .lb-footer {
    padding: 24px 20px;
  }
}

@media (max-width: 400px) {
  .lb-card-body {
    padding: 18px 18px 20px;
  }
  .lb-headline {
    font-size: 48px;
  }
}