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

:root {
  --bg: #f9f6f1;
  --bg-warm: #f3ede4;
  --fg: #1c1a18;
  --accent: #b8805a;
  --accent-light: #d4a57e;
  --muted: #8a7f72;
  --border: #e2d9cf;
  --white: #ffffff;
  --card-bg: #fffcf8;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, .logo, .footer-logo {
  font-family: 'Cormorant Garamond', serif;
}

/* === SITE HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px, 5vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.site-header nav {
  display: flex;
  gap: 36px;
}

.site-header nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--fg); }

/* === HERO === */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(184, 128, 90, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-warm);
}

.image-placeholder, .card-placeholder, .placeholder-inner, .philosophy-image, .closing-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #e8ddd2 100%);
  color: var(--accent);
}

.image-placeholder .placeholder-inner {
  flex-direction: column;
  gap: 12px;
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.placeholder-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  opacity: 0.6;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--fg);
}

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

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

/* === COLLECTIONS === */
.collections {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 60px);
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-placeholder {
  background: linear-gradient(135deg, #ede5db 0%, #d9cec2 100%);
  aspect-ratio: 4/3;
}

.card-body {
  padding: 28px 32px 36px;
}

.card-body h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--fg);
}

.card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 60px);
  background: var(--bg);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
  padding-left: 28px;
  border-left: 2px solid var(--accent);
}

.philosophy-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  padding-left: 28px;
}

.philosophy-image {
  aspect-ratio: 3/4;
  border-radius: 4px;
}

.philosophy-image .placeholder-inner {
  border-radius: 4px;
}

/* === JOURNEY === */
.journey {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 60px);
  background: var(--white);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--bg-warm);
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.15;
}

.closing-inner > p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.closing-image {
  aspect-ratio: 16/7;
  border-radius: 4px;
}

/* === FOOTER === */
footer {
  background: var(--fg);
  color: var(--bg-warm);
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 60px) 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(243, 237, 228, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.link-heading {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 20px;
}

.link-group a {
  display: block;
  font-size: 0.875rem;
  color: rgba(243, 237, 228, 0.55);
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 300;
  transition: color 0.2s;
}

.link-group a:hover { color: var(--bg); }

.footer-bottom {
  border-top: 1px solid rgba(243, 237, 228, 0.1);
  padding-top: 28px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(243, 237, 228, 0.3);
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header nav { display: none; }

  .hero-inner,
  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual { order: -1; }
  .hero-image-frame { aspect-ratio: 4/3; }

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

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.25rem;
  }
}