:root {
  --bg: #faf6ee;
  --bg-alt: #f2ece0;
  --fg: #1a1a18;
  --fg-muted: #5a5650;
  --fg-light: #8a857d;
  --accent: #b8933f;
  --accent-light: #d4b06a;
  --green: #1a3a2a;
  --green-light: #2d5c47;
  --cream: #faf6ee;
  --border: #e0d8c8;
}

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

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

body {
  background: var(--cream);
  color: var(--fg);
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: 2rem;
}

.site-header nav a {
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  background: rgba(26, 58, 42, 0.08);
  border: 1px solid rgba(26, 58, 42, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.18), 0 4px 12px rgba(0,0,0,0.08);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 58, 42, 0.85);
  color: rgba(250, 246, 238, 0.85);
  font-size: 0.6875rem;
  font-family: 'Lora', serif;
  font-style: italic;
  padding: 0.5rem 0.875rem;
  letter-spacing: 0.02em;
}

/* COLLECTIONS */
.collections {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}

.collections-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 3rem;
  letter-spacing: -0.015em;
}

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

.collection-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.collection-card:hover {
  box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
  transform: translateY(-2px);
}

.card-icon {
  margin-bottom: 1.25rem;
}

.collection-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.collection-card p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.manifesto-quote blockquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  line-height: 1.55;
  border-left: 3px solid var(--accent);
  padding-left: 1.75rem;
}

.manifesto-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.manifesto-body p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.manifesto-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--fg-light);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--green);
  padding: 5rem 2rem;
  text-align: center;
}

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

.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.closing p {
  color: rgba(250, 246, 238, 0.75);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.closing-statement {
  color: rgba(250, 246, 238, 0.9);
  font-style: italic;
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* FOOTER */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand .wordmark {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.footer-links span {
  font-size: 0.8125rem;
  color: var(--fg-light);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--fg-light);
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-frame img {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

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

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-links {
    flex-direction: column;
  }

  .header-inner {
    padding: 0.875rem 1.5rem;
  }

  .site-header nav {
    gap: 1.25rem;
  }

  .site-header nav a {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    gap: 0.5rem;
  }

  .tag {
    font-size: 0.6875rem;
    padding: 0.3rem 0.75rem;
  }
}