/* ── Tokens ── */
:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE5;
  --fg: #2D2822;
  --fg-muted: #6B6259;
  --accent: #B85C38;
  --accent-warm: #C4714A;
  --sage: #7A9E7E;
  --gold: #C4A35A;
  --border: #E2D9CC;
  --white: #FFFFFF;
}

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

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

/* ── Nav ── */
.site-nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #E8D9C4 0%, #D4C4A8 50%, #C9B896 100%);
  padding: 2.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-product-img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(93, 67, 40, 0.25));
}

.hero-badge {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,255,255,0.7);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--fg);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 42ch;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 20px;
}

/* ── Provenance ── */
.provenance {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}

.provenance-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.provenance-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.provenance-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bg);
  margin-bottom: 2.5rem;
}

.provenance-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}

.provenance-pillars {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pillar-icon {
  color: var(--gold);
}

.pillar-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.4;
  text-align: center;
}

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

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

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45, 40, 34, 0.1);
}

.product-card--hero .product-img-wrap {
  background: linear-gradient(145deg, #E8D9C4 0%, #D4C4A8 100%);
}

.product-img-wrap {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}

.product-img {
  width: 100%;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.product-card-body {
  padding: 1.5rem;
}

.product-series {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: var(--bg-alt);
  color: var(--fg-muted);
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ── Process ── */
.process {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.2rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.process-tagline {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Testimonials ── */
.testimonials {
  padding: 5rem 2rem;
  background: var(--bg);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial--featured {
  background: var(--fg);
  border-color: var(--fg);
  transform: translateY(-1rem);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.testimonial--featured .testimonial-quote {
  color: var(--bg);
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.testimonial--featured .testimonial-author {
  color: rgba(250, 247, 242, 0.6);
}

/* ── Closing ── */
.closing {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.closing-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── Footer ── */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 4rem 2rem 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--bg);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-sep {
  color: rgba(250, 247, 242, 0.4);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.35);
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 4rem;
  }

  .hero-left { order: 1; }
  .hero-right { order: 2; }

  .hero-image-wrap {
    padding: 2rem 1.5rem 1rem;
  }

  .hero-product-img {
    max-width: 220px;
  }

  .hero-body { max-width: none; }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .testimonial--featured {
    transform: none;
    order: -1;
  }

  .provenance-pillars {
    gap: 2rem;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem 3rem;
  }

  .provenance {
    padding: 3.5rem 1.5rem;
  }

  .collections, .process, .testimonials {
    padding: 3.5rem 1.5rem;
  }
}