/* === TOKENS === */
:root {
  --sage: #8B9E7C;
  --sage-dark: #5E6E52;
  --cream: #F5F0E8;
  --stone: #B8AFA3;
  --ink: #1A1A18;
  --ink-light: #4A4A45;
  --warm-white: #FDFBF7;
}

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

/* === BASE === */
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 175, 163, 0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.header-nav {
  display: flex;
  gap: 36px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--sage-dark); }

/* === HERO === */
.hero {
  padding: 160px 40px 100px;
  background: var(--cream);
  border-bottom: 1px solid rgba(184, 175, 163, 0.2);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(52px, 5.5vw, 80px);
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-light);
  max-width: 420px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-swatch {
  display: flex;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.swatch-stripe { flex: 1; }
.sage { background: #8B9E7C; }
.cream { background: #F5F0E8; }
.stone { background: #B8AFA3; }
.sage-dark { background: #5E6E52; }
.hero-tagline-block {
  background: var(--sage);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
}
.tagline-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.4;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 40px;
  background: var(--warm-white);
}
.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.philosophy-label, .manifesto-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  justify-content: center;
}
.label-text {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
  font-weight: 500;
}
.label-rule {
  flex: 1;
  height: 1px;
  background: rgba(139, 158, 124, 0.4);
  max-width: 120px;
}
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 36px;
  border-left: 3px solid var(--sage);
  padding-left: 32px;
}
.philosophy-body {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
  display: block;
  margin-bottom: 12px;
}
.pillar-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* === COLLECTION === */
.collection {
  padding: 100px 40px;
  background: var(--cream);
  border-top: 1px solid rgba(184, 175, 163, 0.2);
}
.collection-inner { max-width: 1200px; margin: 0 auto; }
.collection-header {
  text-align: center;
  margin-bottom: 64px;
}
.collection-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  margin-bottom: 16px;
}
.collection-sub {
  font-size: 16px;
  color: var(--ink-light);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.product-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.product-image-block {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sage-bg { background: #C5CEB8; }
.stone-bg { background: #D6CFC5; }
.cream-bg { background: #EAE5DA; }
.product-abstract {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.abstract-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}
.abstract-circle.outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); }
.abstract-line {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.abstract-line.long { width: 160px; }
.abstract-line.short { width: 80px; }
.product-info { padding: 24px; }
.product-category {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 8px;
}
.product-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 20px;
  color: var(--ink-light);
}
.collection-note {
  text-align: center;
  font-size: 13px;
  color: var(--stone);
  margin-top: 48px;
  font-style: italic;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 40px;
  background: var(--warm-white);
}
.manifesto-inner { max-width: 1000px; margin: 0 auto; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.manifesto-icon { flex-shrink: 0; margin-top: 2px; }
.manifesto-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  background: var(--sage);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: rgba(253, 251, 247, 0.8);
  line-height: 1.7;
  margin-bottom: 56px;
}
.closing-visual { display: flex; justify-content: center; }
.fairway-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 2px solid rgba(253, 251, 247, 0.3);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  justify-content: center;
}
.badge-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.06em;
}
.badge-tagline {
  font-size: 10px;
  color: rgba(253, 251, 247, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(253, 251, 247, 0.5);
}
.footer-copy {
  font-size: 12px;
  color: rgba(253, 251, 247, 0.35);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-inner { padding: 16px 24px; }
  .header-nav { gap: 20px; }
  .hero { padding: 120px 24px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .philosophy { padding: 64px 24px; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 36px; }
  .philosophy-quote { padding-left: 20px; }
  .collection { padding: 64px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-brand { text-align: center; }
}