/* ==========================================
   ZORA — AI-Powered Fashion E-Commerce
   Typography: Cormorant Garamond + DM Sans
   Palette: Ivory #f7f3ed / Charcoal #141414 / Bronze gold #b8965a
   ========================================== */

:root {
  --bg: #f7f3ed;
  --bg-warm: #f2ece3;
  --bg-deep: #e8e0d5;
  --fg: #141414;
  --fg-mid: #4a4a4a;
  --fg-light: #7a7a7a;
  --accent: #b8965a;
  --accent-light: #d4b97a;
  --accent-dark: #8a6d3a;
  --white: #ffffff;
  --border: rgba(20,20,20,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--fg);
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

.hero__lede {
  font-size: 1.05rem;
  color: var(--fg-mid);
  max-width: 42ch;
  line-height: 1.7;
}

/* Hero Visual */
.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__model-figure {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* CSS Model Silhouette */
.model__silhouette {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model__head {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, #c4976a, #8a6d3a);
  position: relative;
}

.model__head::after {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 24px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(160deg, #c9a86c, #a07840);
}

.model__torso {
  width: 64px;
  height: 90px;
  background: linear-gradient(180deg, #f0e6d2, #e8dcc8);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  margin-top: -2px;
  border-radius: 2px;
}

.model__legs {
  width: 60px;
  height: 130px;
  background: linear-gradient(180deg, #e8e0d5, #ddd5c8);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 2px 2px;
}

/* Jewelry on model */
.model__jewelry {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 260px;
}

.jewelry__earring {
  position: absolute;
  top: 46px;
  width: 10px;
  height: 20px;
  background: linear-gradient(135deg, #d4b97a, #8a6d3a);
  border-radius: 0 0 50% 50%;
}

.jewelry__earring--left { left: 12px; }
.jewelry__earring--right { right: 12px; }

.jewelry__necklace {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 30px;
  border: 2px solid var(--accent);
  border-top: none;
  border-radius: 0 0 50% 50%;
}

.model__clothing {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 220px;
}

.clothing__blouse {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 88px;
  background: linear-gradient(160deg, #f5ede0, #e8dcc8);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

/* Ambient glow */
.hero__ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(184,150,90,0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Hero stat row */
.hero__stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-light);
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Manifesto ── */
.manifesto {
  padding: 7rem 3rem;
  background: var(--fg);
}

.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--bg-warm);
  margin-bottom: 0.5rem;
}

.manifesto__line--accent {
  color: var(--accent);
  font-style: italic;
}

/* ── Categories ── */
.categories {
  padding: 8rem 3rem;
}

.categories__header {
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.section__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.categories__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

/* Category Cards */
.category-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-card__glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 0;
}

.category-card--jewelry .category-card__glow {
  background: radial-gradient(ellipse, rgba(184,150,90,0.3) 0%, transparent 70%);
}

.category-card--clothing .category-card__glow {
  background: radial-gradient(ellipse, rgba(200,180,150,0.25) 0%, transparent 70%);
}

.category-card--shoes .category-card__glow {
  background: radial-gradient(ellipse, rgba(160,140,100,0.25) 0%, transparent 70%);
}

.category-card__body {
  padding: 2rem 2rem 2.5rem;
  border-top: 1px solid var(--border);
}

.category-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.category-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.category-card__desc {
  font-size: 0.9rem;
  color: var(--fg-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-card__detail {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-light);
}

/* Jewelry Mockup */
.jewelry-mockup {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 180px;
}

.mockup__ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid;
}

.mockup__ring--1 {
  width: 38px;
  height: 38px;
  top: 60px; left: 20px;
  border-color: #d4b97a;
  background: radial-gradient(circle, rgba(212,185,122,0.3), transparent 70%);
}

.mockup__ring--2 {
  width: 28px;
  height: 28px;
  top: 90px; left: 55px;
  border-color: #c9a86c;
}

.mockup__ring--3 {
  width: 22px;
  height: 22px;
  top: 70px; right: 20px;
  border-color: #b8965a;
}

.mockup__chain {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 40px;
  border: 2px solid #c9a86c;
  border-top: none;
  border-radius: 0 0 40px 40px;
}

.mockup__pendant {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 20px;
  background: linear-gradient(135deg, #d4b97a, #8a6d3a);
  clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

.mockup__earring-pair {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
}

.mockup__earring {
  width: 10px;
  height: 24px;
  background: linear-gradient(180deg, #d4b97a, #8a6d3a);
  border-radius: 0 0 50% 50%;
}

/* Clothing Mockup */
.clothing-mockup {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mockup__garment--top {
  width: 90px;
  height: 70px;
  background: linear-gradient(160deg, #f5ede0, #e8dcc8);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  border-radius: 2px;
  position: relative;
}

.mockup__garment--top::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  border-radius: 0 0 12px 12px;
  background: rgba(184,150,90,0.3);
}

.mockup__garment--bottom {
  width: 80px;
  height: 85px;
  background: linear-gradient(180deg, #ddd5c8, #cec5b8);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 2px 2px;
}

.mockup__texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(184,150,90,0.05) 4px,
    rgba(184,150,90,0.05) 5px
  );
}

/* Shoes Mockup */
.shoes-mockup {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.mockup__shoe {
  position: relative;
}

.mockup__shoe--1 {
  width: 60px;
  height: 80px;
}

.shoe__heel {
  position: absolute;
  bottom: 0; left: 0;
  width: 10px;
  height: 35px;
  background: linear-gradient(180deg, #c9a86c, #8a6d3a);
  border-radius: 2px 2px 0 0;
}

.shoe__upper {
  position: absolute;
  bottom: 30px; left: 8px;
  width: 50px;
  height: 35px;
  background: linear-gradient(160deg, #d4b97a, #a07840);
  clip-path: polygon(0% 60%, 30% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-radius: 2px;
}

.shoe__toe {
  position: absolute;
  bottom: 0; left: 10px;
  width: 48px;
  height: 32px;
  background: linear-gradient(180deg, #c9a86c, #8a6d3a);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-radius: 2px 8px 0 0;
}

.mockup__shoe--2 {
  width: 60px;
  height: 45px;
}

.shoe__flat-upper {
  position: absolute;
  bottom: 12px; left: 0;
  width: 60px;
  height: 28px;
  background: linear-gradient(160deg, #e8dcc8, #d4c8b0);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  border-radius: 4px 12px 2px 2px;
}

.shoe__flat-sole {
  position: absolute;
  bottom: 0; left: 0;
  width: 60px;
  height: 14px;
  background: linear-gradient(180deg, #b8965a, #8a6d3a);
  border-radius: 2px 4px 2px 2px;
}

/* ── Philosophy ── */
.philosophy {
  padding: 8rem 3rem;
  background: var(--bg-warm);
}

.philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy__rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 3rem;
}

.philosophy__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 4rem;
  max-width: 700px;
}

.philosophy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.philosophy__col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.philosophy__col-text {
  font-size: 0.9rem;
  color: var(--fg-mid);
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  padding: 8rem 3rem;
  text-align: center;
}

.closing__inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2rem;
}

.closing__divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}

.closing__body {
  font-size: 1rem;
  color: var(--fg-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ── Footer ── */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--fg-light);
}

.footer__meta {
  text-align: right;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--fg-light);
}

.footer__location {
  font-size: 0.75rem;
  color: var(--fg-light);
  margin-top: 0.25rem;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    order: -1;
  }

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

  .philosophy__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .manifesto,
  .categories,
  .philosophy,
  .closing {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .footer__meta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2.5rem;
  }

  .hero__stat-num {
    font-size: 1.5rem;
  }

  .closing__headline {
    font-size: 2rem;
  }

  .nav__links {
    display: none;
  }
}