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

:root {
  --bg: #FAF7F2;
  --fg: #2C2420;
  --terracotta: #C4734A;
  --terracotta-light: #E8A882;
  --deep-blue: #1E3A5F;
  --olive: #7A8C6E;
  --warm-gray: #9B8E82;
  --light-cream: #F0EBE3;
  --stone: #D9D0C5;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 60% at 30% 40%, #E8C49A22 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 70%, #C4734A18 0%, transparent 55%),
    linear-gradient(160deg, #FAF7F2 0%, #F0E6D3 40%, #E8D5BC 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 8vw;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 8vw;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  opacity: 0.7;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 7rem 0;
  background: #F5F0E8;
  border-top: 1px solid var(--stone);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
}

.philosophy-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.label-line {
  flex: 1;
  height: 1px;
  background: var(--stone);
  max-width: 80px;
}

.label-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  white-space: nowrap;
}

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

.philosophy-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.philosophy-item p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

.philosophy-icon {
  margin-bottom: 1.25rem;
}

/* === COLLECTIONS === */
.collections {
  padding: 7rem 0 8rem;
  background: var(--bg);
}

.collections-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 6vw;
}

.collections-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1rem;
}

.collections-sub {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 400px;
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4vw;
}

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collection-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  background: var(--bg);
}

.collection-index {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.collection-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.collection-card p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.collection-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.collection-tags li {
  font-size: 0.75rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.collection-tags li::before {
  content: '— ';
  opacity: 0.5;
}

/* Clay card background */
.collection-card--clay .collection-card-bg {
  position: absolute;
  inset: 0;
  background: #E8D5BC;
}

.cc-clay-circle {
  position: absolute;
  border-radius: 50%;
  background: #C4734A;
  opacity: 0.12;
}
.cc-clay-1 { width: 55%; height: 55%; top: -10%; right: -15%; }
.cc-clay-2 { width: 35%; height: 35%; top: 15%; right: 10%; background: #D4896A; opacity: 0.1; }
.cc-clay-3 { width: 40%; height: 40%; bottom: 20%; left: -5%; background: #A05A30; opacity: 0.08; }

/* Linen card background */
.collection-card--linen .collection-card-bg {
  position: absolute;
  inset: 0;
  background: #F0EAD8;
}

.cc-linen-stripe {
  position: absolute;
  height: 2px;
  background: #D4C4A0;
  opacity: 0.5;
  left: 0; right: 0;
}
.cc-linen-1 { top: 15%; }
.cc-linen-2 { top: 30%; }
.cc-linen-3 { top: 45%; }
.cc-linen-4 { top: 60%; }

/* Light card background */
.collection-card--light .collection-card-bg {
  position: absolute;
  inset: 0;
  background: #EDE8F5;
}

.cc-light-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #1E3A5F 0%, transparent 70%);
  opacity: 0.08;
}
.cc-light-1 { width: 60%; height: 60%; top: -10%; left: 20%; }
.cc-light-2 { width: 35%; height: 35%; top: 25%; right: 10%; background: radial-gradient(circle, #1E3A5F 0%, transparent 70%); opacity: 0.06; }
.cc-light-3 { width: 45%; height: 45%; bottom: 15%; left: 10%; background: radial-gradient(circle, #C4734A 0%, transparent 70%); opacity: 0.06; }

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 0;
  background: #2C2420;
  color: #F0EBE3;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 6vw;
  text-align: center;
}

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

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #FAF7F2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 0.9rem;
  color: #9B8E82;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.manifesto-sig {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--terracotta-light);
  text-transform: uppercase;
}

/* === FOOTER === */
.footer {
  background: #1E1A16;
  color: #9B8E82;
  padding: 5rem 0 2.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: #FAF7F2;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #9B8E82;
}

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

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li {
  font-size: 0.8rem;
  color: #9B8E82;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col li:hover { color: #FAF7F2; }

.footer-bottom {
  border-top: 1px solid #2C2420;
  padding: 1.5rem 6vw 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: #6B5E54;
  letter-spacing: 0.1em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .collection-card {
    min-height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-content { padding: 0 6vw; }
}