/* Base */
:root {
  --bg: #f5f0e8;
  --ink: #0f1c2e;
  --ink-light: #3a4a5c;
  --gold: #c8a86b;
  --gold-light: #e2cf9a;
  --paper: #fdfaf5;
  --rule: #d4c9b5;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Cormorant Garamond', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-tagline {
  font-family: var(--body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 780px;
  margin: 0 auto;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--body);
  font-size: 1.25rem;
  color: var(--ink-light);
  max-width: 580px;
  margin: 1.5rem auto 0;
  font-weight: 300;
  line-height: 1.8;
}

/* Section label */
.section-label {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
}

/* Philosophy */
.philosophy {
  background: var(--paper);
  padding: 5rem 2rem;
}

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

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

.philosophy-col { text-align: center; }

.philosophy-icon {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: var(--serif);
  margin-bottom: 1rem;
}

.philosophy-col h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.philosophy-col p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* Process */
.process {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Collection */
.collection {
  background: var(--ink);
  padding: 5rem 2rem;
}

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

.collection .section-label { color: var(--gold-light); }

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

.collection-item {
  border: 1px solid rgba(200,168,107,0.3);
  padding: 2rem 1.5rem;
  text-align: center;
}

.collection-ornament {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.2rem;
}

.collection-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.collection-item p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
}

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

.testimonials-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-family: var(--body);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--ink-light);
}

/* Closing */
.closing {
  padding: 5rem 2rem;
  text-align: center;
}

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

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

.closing-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}

.closing-rule.bottom { margin: 2rem auto 0; }

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-family: var(--body);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .site-nav { padding: 1.5rem 1.5rem; }
  .nav-tagline { display: none; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .hero-headline { font-size: 2rem; }
  .philosophy { padding: 3rem 1.5rem; }
  .philosophy-columns { grid-template-columns: 1fr; gap: 2rem; }
  .process { padding: 3rem 1.5rem; }
  .collection { padding: 3rem 1.5rem; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { padding: 3rem 1.5rem; }
  .testimonial blockquote { font-size: 1.1rem; }
  .closing { padding: 3rem 1.5rem; }
  .step-num { font-size: 2rem; min-width: 40px; }
}

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