:root {
  /* Desaturated Macaron Palette */
  --rose-quartz: #e5c3c6;
  --sage-mist: #a8b5a2;
  --misty-lilac: #b8b2bb;
  --alabaster-white: #f2f0e6;
  --ultra-light-champagne: #fcf9f2;
  
  /* Accents */
  --brushed-gold: #c5a059;
  --deep-slate: #3a3a3a;
  --text-muted: #7a7a7a;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  background-color: var(--alabaster-white);
  color: var(--deep-slate);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-style: italic;
}

header {
  padding: 1.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(242, 240, 230, 0.85);
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--deep-slate);
}

nav a {
  color: var(--deep-slate);
  text-decoration: none;
  margin-left: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

.hero h1, .hero p, .hero a {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.hero p {
  max-width: 500px;
  font-size: 1rem;
  margin-bottom: 4rem;
  font-family: var(--font-sans);
}

.btn {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--brushed-gold);
  color: var(--brushed-gold);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover {
  background: var(--brushed-gold);
  color: #fff;
  letter-spacing: 0.3em;
}

section {
  padding: 12rem 10%;
}

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

.collection-card {
  text-align: center;
}

.color-swatch {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 2rem;
  border-radius: 50%;
  box-shadow: 20px 40px 60px rgba(0,0,0,0.03);
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.collection-card:hover .color-swatch {
  transform: scale(1.05) translateY(-10px);
}

.texture-lab {
  background: var(--ultra-light-champagne);
  text-align: center;
}

.texture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.texture-item {
  background: #fff;
  padding: 8rem 2rem;
  border: 1px solid rgba(197, 160, 89, 0.1);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

footer {
  padding: 6rem 10%;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
