/* === TOKENS === */
:root {
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --mahogany: #2A1810;
  --gold: #C49A3C;
  --gold-light: #D4B464;
  --clay: #C07A5A;
  --warm-grey: #6B5F52;
  --muted: #9B8E82;
  --rule: #DDD5C8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  color: var(--mahogany);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--cream-dark);
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--mahogany);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-rule {
  width: 4rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-grey);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--mahogany);
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--gold); color: var(--mahogany); }

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}

.hero-bottom {
  padding: 2rem 3rem 3rem;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* === COLLECTION === */
.collection {
  background: var(--mahogany);
  color: var(--cream);
  padding: var(--space-xl) 0;
}

.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.collection-label {
  margin-bottom: 4rem;
}

.collection .section-eyebrow {
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

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

.pillar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-icon {
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}

.pillar-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.65);
  line-height: 1.7;
}

.collection-materials {
  border-top: 1px solid rgba(250, 246, 239, 0.15);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.materials-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.materials-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.material-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.material-sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 50%;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.philosophy-quote {
  position: sticky;
  top: 4rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--mahogany);
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 2rem;
}

.ethos-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ethos-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  padding-top: 0.2rem;
}

.ethos-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mahogany);
  margin-bottom: 0.5rem;
}

.ethos-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--cream-dark);
  padding: var(--space-xl) 0;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.manifesto-eyebrow {
  display: block;
  margin-bottom: 2rem;
}

.manifesto-body {
  margin-bottom: 3rem;
}

.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--mahogany);
  margin-bottom: 0.5rem;
}

.manifesto-line.manifesto-emphasis {
  font-weight: 700;
  color: var(--clay);
}

.manifesto-sub {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}

.manifesto-sub p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.8;
  max-width: 600px;
}

/* === CLOSING === */
.closing {
  background: var(--mahogany);
  padding: var(--space-xl) 0;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.closing-headline em {
  font-style: italic;
  color: var(--gold);
}

.closing-divider {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.closing-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 3rem 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mahogany);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-meta {
  text-align: right;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--clay);
  margin-top: 0.25rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 5rem 2rem 3rem;
  }

  .hero-ornament { display: none; }

  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }

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

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-quote { position: static; }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-meta { text-align: center; }
}

@media (max-width: 480px) {
  .hero-inner,
  .collection-inner,
  .philosophy-inner,
  .manifesto-inner,
  .closing-inner,
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .ethos-item {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }
}