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

:root {
  --ivory: #FAF7F2;
  --ivory-dark: #F2EDE4;
  --charcoal: #1C1917;
  --charcoal-mid: #3D3530;
  --terracotta: #B85C38;
  --terracotta-light: #D4785A;
  --gold: #C9A96E;
  --gold-light: #E2CA99;
  --sage: #7A8C6E;
  --blush: #C4937A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* === TYPOGRAPHY === */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4vw;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: 8rem 4vw 4rem;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob-1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(200,148,110,0.4) 0%, transparent 70%);
  top: -10%;
  right: -15%;
}

.hero-blob-2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(ellipse, rgba(184,92,56,0.25) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  max-width: 520px;
}

.hero-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 2rem;
  color: var(--charcoal-mid);
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 1;
}

.hero-shape {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.shape-ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(201,169,110,0.2);
}

.shape-ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(184,92,56,0.25);
}

.shape-ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(201,169,110,0.35);
}

.shape-core {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(184,92,56,0.4);
}

.shape-glyph {
  font-size: 1.8rem;
  color: white;
  line-height: 1;
}

.hero-stat-row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}

.hero-stats {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 4vw;
  background: var(--charcoal);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* === CATEGORIES === */
.categories {
  padding: 8rem 4vw;
  background: var(--ivory);
}

.section-header {
  margin-bottom: 5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--ivory-dark);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.category-card--beauty::before { background: var(--terracotta); }
.category-card--fashion::before { background: var(--gold); }
.category-card--jewelry::before { background: var(--sage); }

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,25,23,0.08);
}

.category-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Beauty orb */
.cat-orb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
}

.cat-orb-beauty {
  background: radial-gradient(circle at 35% 35%, var(--terracotta-light), var(--terracotta));
  box-shadow: 0 0 40px rgba(184,92,56,0.35);
}

.cat-orb-fashion {
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  box-shadow: 0 0 40px rgba(201,169,110,0.35);
}

.cat-orb-jewelry {
  background: radial-gradient(circle at 35% 35%, var(--sage), #5A6C4E);
  box-shadow: 0 0 40px rgba(122,140,110,0.35);
}

.cat-lines {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-line {
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: var(--charcoal);
  opacity: 0.12;
}

.cat-line-2 { width: 38px; }
.cat-line-3 { width: 44px; }

.cat-accordion {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--charcoal);
  opacity: 0.15;
  width: 48px;
}

.cat-bar-2 { width: 36px; }
.cat-bar-3 { width: 42px; }

.cat-gem {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 50px;
  height: 50px;
}

.gem-facet {
  position: absolute;
  background: rgba(201,169,110,0.25);
}

.gem-facet-1 {
  width: 50px; height: 50px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.gem-facet-2 {
  width: 40px; height: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  top: 5px; left: 5px;
  background: rgba(201,169,110,0.4);
}
.gem-facet-3 {
  width: 30px; height: 30px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  top: 10px; left: 10px;
  background: rgba(201,169,110,0.15);
}

.category-body {
  flex: 1;
}

.category-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.category-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--charcoal-mid);
  margin-bottom: 1rem;
}

.category-origin {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* === ORIGINS === */
.origins {
  padding: 8rem 4vw;
  background: var(--charcoal);
  color: var(--ivory);
}

.origins-header {
  margin-bottom: 4rem;
}

.origins-header .section-eyebrow { color: var(--gold-light); }
.origins-header .section-title { color: var(--ivory); }

.origins-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.origins-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(250,247,242,0.7);
  max-width: 440px;
}

.origins-map {
  position: relative;
  height: 200px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.1);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 12px rgba(184,92,56,0.6);
  transform: translate(-50%, -50%);
}

.map-dot span {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
  font-weight: 400;
}

.map-dot-1 { top: 25%; left: 75%; }
.map-dot-2 { top: 40%; left: 65%; }
.map-dot-3 { top: 42%; left: 50%; }
.map-dot-4 { top: 60%; left: 22%; }
.map-dot-5 { top: 28%; left: 48%; }

.origins-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-item {}

.value-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.value-item p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(250,247,242,0.55);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 7rem 4vw;
  background: var(--ivory-dark);
}

.phil-inner {
  max-width: 900px;
  margin: 0 auto;
}

.phil-rule {
  height: 1px;
  background: rgba(201,169,110,0.25);
  margin-bottom: 3rem;
}

.phil-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.phil-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}

.phil-detail p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
}

.phil-gap {
  margin-top: 1.2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* === CLOSING === */
.closing {
  padding: 10rem 4vw;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(201,169,110,0.6);
  margin-top: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.site-footer {
  padding: 4rem 4vw 2.5rem;
  background: var(--ivory);
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--charcoal-mid);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.3);
  margin: 0 auto 1.5rem;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(28,25,23,0.35);
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .hero-content { grid-column: 1; }
  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-shape { width: 140px; height: 140px; }
  .hero-stat-row { flex-direction: row; gap: 1.5rem; }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .origins-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .origins-values {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .phil-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .nav-links { display: none; }
}