:root {
  --ivory: #FAF7F2;
  --cream: #F2EDE4;
  --burgundy: #6B1A2B;
  --burgundy-deep: #4A1220;
  --gold: #C4A47C;
  --gold-light: #D4B896;
  --charcoal: #1A1A1A;
  --warm-gray: #6B6560;
  --light-gray: #E8E2D9;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ─── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--light-gray);
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--burgundy);
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--burgundy); }

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--ivory);
}
.hero-image-block {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.hero-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 70px;
  background: var(--ivory);
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-lede {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 52px;
  max-width: 420px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Philosophy ─── */
.philosophy {
  background: var(--cream);
  padding: 120px 60px;
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.philosophy-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.philosophy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 80px;
  max-width: 900px;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar-icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ─── Collection ─── */
.collection {
  padding: 120px 60px;
  background: var(--ivory);
}
.collection-header {
  max-width: 600px;
  margin-bottom: 72px;
}
.collection-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.collection-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.collection-sub {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}
.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  max-width: 1200px;
}
.collection-card {
  background: var(--cream);
}
.card-featured {
  grid-row: span 1;
}
.card-image-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-featured .card-image-wrap {
  aspect-ratio: 3/4;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.collection-card:hover .card-img { transform: scale(1.03); }
.card-body {
  padding: 28px 28px 32px;
}
.card-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.card-featured .card-title { font-size: 28px; }
.card-desc {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.card-patterns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pattern-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid var(--light-gray);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ─── Provenance ─── */
.provenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--burgundy-deep);
  min-height: 80vh;
}
.provenance-image-wrap {
  overflow: hidden;
}
.provenance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.provenance-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 70px;
}
.provenance-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.provenance-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 32px;
  line-height: 1.1;
}
.provenance-body {
  font-size: 15px;
  color: rgba(250,247,242,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.provenance-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0 12px;
}
.provenance-founder {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.05em;
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--cream);
  padding: 100px 60px;
  text-align: center;
}
.testimonials-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.testimonials-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 60px;
  line-height: 1.15;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  padding: 32px;
  border: 1px solid var(--light-gray);
  background: var(--ivory);
}
.testimonial-accent {
  border-color: var(--gold);
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ─── Closing ─── */
.closing {
  background: var(--burgundy);
  padding: 120px 60px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-ornament {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 0.3em;
}
.closing-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 16px;
  color: rgba(250,247,242,0.7);
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.closing-tags span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196,164,124,0.4);
  padding: 6px 16px;
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal);
  padding: 60px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(250,247,242,0.4);
  margin-bottom: 28px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 28px;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: rgba(250,247,242,0.3);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-block { height: 50vh; }
  .hero-text-block { padding: 48px 28px; }
  .hero-headline { font-size: 48px; }
  .hero-stats { gap: 28px; }
  .philosophy { padding: 80px 28px; }
  .philosophy-body { grid-template-columns: 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 32px; }
  .collection { padding: 80px 28px; }
  .collection-grid { grid-template-columns: 1fr; }
  .provenance { grid-template-columns: 1fr; }
  .provenance-image-wrap { height: 50vh; }
  .provenance-text { padding: 48px 28px; }
  .testimonials { padding: 80px 28px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .closing { padding: 80px 28px; }
  .footer { padding: 48px 28px; }
  .footer-links { flex-direction: column; gap: 16px; }
}