:root {
  --bg: #F5F0E8;
  --bg-dark: #EDE5D8;
  --fg: #2C1810;
  --fg-light: #6B4F3A;
  --accent: #C9A96E;
  --accent-dark: #8B6914;
  --cream: #FAF7F2;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 8vw 60px;
  background: linear-gradient(160deg, #2C1810 0%, #3D2B1F 50%, #1A0F08 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.65);
  max-width: 460px;
  line-height: 1.7;
}
.hero-ornament {
  position: absolute;
  bottom: 60px;
  right: 8vw;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 8vw;
  background: var(--bg);
}
.manifesto-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--fg);
  line-height: 1.55;
  font-weight: 300;
  font-style: italic;
}

/* CRAFT */
.craft { padding: 80px 8vw 100px; background: var(--bg-dark); }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.craft-item { text-align: left; }
.craft-icon { margin-bottom: 20px; }
.craft-item h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 12px;
}
.craft-item p {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.65;
}

/* COLLECTIONS */
.collections {
  padding: 100px 8vw;
  background: var(--cream);
}
.collections-header { margin-bottom: 60px; }
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.collections h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  font-weight: 300;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.collection-card { text-align: left; }
.collection-image {
  height: 200px;
  margin-bottom: 16px;
  border-radius: 2px;
}
.collection-card h4 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 4px;
}
.collection-card p {
  font-size: 13px;
  color: var(--fg-light);
}

/* PHILOSOPHY */
.philosophy { padding: 100px 8vw; background: var(--fg); }
.philosophy-inner { max-width: 800px; margin: 0 auto; }
.philosophy-quote {
  margin-bottom: 80px;
  padding-left: 40px;
  border-left: 2px solid var(--accent);
}
.philosophy-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 28px);
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
}
.philosophy-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.1em;
}
.philosophy-pillars { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-size: 16px;
  color: rgba(245, 240, 232, 0.75);
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

/* CLOSING */
.closing {
  padding: 120px 8vw;
  background: linear-gradient(180deg, #3D2B1F 0%, #2C1810 100%);
  text-align: center;
}
.closing h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.25;
}
.closing-meta p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* FOOTER */
.site-footer {
  padding: 40px 8vw;
  background: #1A0F08;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.footer-tagline {
  display: block;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 60px 6vw 50px; }
  .hero-headline { font-size: 44px; }
  .craft-grid { grid-template-columns: 1fr; gap: 40px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .manifesto { padding: 70px 6vw; }
  .philosophy { padding: 70px 6vw; }
  .closing { padding: 80px 6vw; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
}