:root {
  --cream: #F5F0EB;
  --warm-white: #FDFBF8;
  --sand: #E8E0D6;
  --taupe: #B8A99A;
  --deep-taupe: #8A7A6C;
  --charcoal: #2C2824;
  --soft-charcoal: #4A433D;
  --gold: #C4A87C;
  --sage: #A8B5A0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* NAV */
.nav {
  padding: 2rem 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 248, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--charcoal);
}

.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--charcoal);
}

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--soft-charcoal);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--soft-charcoal);
  transform: translateY(-1px);
}

.btn-primary--light {
  background: var(--cream);
  color: var(--charcoal);
}

.btn-primary--light:hover {
  background: var(--sand);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: 1px solid var(--sand);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--taupe);
  background: var(--cream);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

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

.hero-overline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--soft-charcoal);
  max-width: 480px;
  line-height: 1.8;
}

.hero-accent {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.5;
}

/* PHILOSOPHY */
.philosophy {
  padding: 8rem 2.5rem;
  background: var(--cream);
}

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

.philosophy-statement h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--charcoal);
}

.philosophy-text p {
  font-size: 1rem;
  color: var(--soft-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.philosophy-pillars {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 4rem;
  border-top: 1px solid var(--sand);
}

.pillar {
  padding-right: 2rem;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  line-height: 1.8;
}

/* PRODUCTS */
.products {
  padding: 8rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.products-header {
  margin-bottom: 4rem;
}

.products-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--charcoal);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 40, 36, 0.07);
}

.product-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.product-card p {
  font-size: 0.85rem;
  color: var(--soft-charcoal);
  line-height: 1.7;
}

/* CONCIERGE */
.concierge {
  padding: 8rem 2.5rem;
  background: var(--charcoal);
  color: var(--cream);
}

.concierge-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.chat-bubble {
  padding: 1.5rem 2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 90%;
}

.chat-user {
  background: var(--soft-charcoal);
  color: var(--sand);
  align-self: flex-end;
}

.chat-ai {
  background: rgba(196, 168, 124, 0.15);
  color: var(--cream);
  border-left: 2px solid var(--gold);
}

.concierge-content .section-label {
  color: var(--gold);
}

.concierge-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.concierge-content p {
  font-size: 1rem;
  color: var(--sand);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* RITUAL */
.ritual {
  padding: 8rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ritual-content {
  max-width: 600px;
  margin-bottom: 4rem;
}

.ritual-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.ritual-lede {
  font-size: 1.05rem;
  color: var(--soft-charcoal);
  line-height: 1.8;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--sand);
}

.ritual-step {
  padding-right: 2rem;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.ritual-step p {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  line-height: 1.8;
}

/* CLOSING */
.closing {
  padding: 8rem 2.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.closing-content p {
  font-size: 1.05rem;
  color: var(--soft-charcoal);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.closing-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 2rem;
}

/* FOOTER */
.footer {
  padding: 4rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--sand);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--taupe);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
    gap: 3rem;
  }

  .hero-accent {
    align-self: flex-start;
  }

  .hero-badge {
    width: 150px;
    height: 150px;
  }

  .badge-number {
    font-size: 2.5rem;
  }

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

  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillar {
    padding-right: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand);
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .concierge-visual {
    order: 2;
  }

  .concierge-content {
    order: 1;
  }

  .ritual-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ritual-step {
    padding-right: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand);
  }

  .ritual-step:last-child {
    border-bottom: none;
  }

  .nav {
    padding: 1.5rem;
  }

  .philosophy,
  .products,
  .concierge,
  .ritual,
  .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    max-width: 100%;
    padding: 1.2rem 1.5rem;
  }
}