:root {
  --bg: #f4efe6;
  --fg: #2a2118;
  --accent: #8b7355;
  --accent-light: #c4a870;
  --muted: #9a8565;
  --border: #d4c5a9;
  --surface: #ece6dc;
}

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

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

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
}
.hero-frame {
  display: flex;
  justify-content: center;
}
.frame-outer {
  padding: 16px;
  background: var(--fg);
  box-shadow: 0 8px 40px rgba(42,33,24,0.15);
}
.frame-inner { background: var(--surface); }
.frame-image-placeholder svg { display: block; width: 100%; height: auto; }

/* Gallery */
.gallery {
  padding: 80px 48px;
  background: var(--surface);
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item { display: flex; flex-direction: column; gap: 12px; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-img {
  background: var(--surface);
  overflow: hidden;
}
.gallery-img svg { display: block; width: 100%; height: auto; }
.gallery-caption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* Philosophy */
.philosophy {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.philosophy-body {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* Collections */
.collections {
  padding: 80px 48px;
  background: var(--surface);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.collection-card { display: flex; flex-direction: column; gap: 16px; }
.collection-icon svg { width: 60px; height: 60px; }
.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
}
.collection-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-sub { font-size: 12px; color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .hero-headline { font-size: 44px; }
  .gallery { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; }
  .philosophy { padding: 60px 24px; }
  .collections { padding: 60px 24px; }
  .collections-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
}

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