:root {
  --color-terracotta: #c4613a;
  --color-rust: #d4896a;
  --color-cream: #f5ead6;
  --color-burnt: #b85a38;
  --color-dark: #3b1f12;
  --color-gold: #e8b878;
  --color-sienna: #a04e30;
  --color-sage: #8a9a7a;
  --font-serif: 'Playfair Display', serif;
  --font-lora: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

main { width: 100%; position: relative; z-index: 2; }

/* Bubble Field */
.bubble-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.1), transparent);
  animation: bubbleFloat 8s ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-50px) translateX(20px); }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 1rem;
  animation: titleFadeIn 0.8s ease-out;
}

@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--font-lora);
  font-size: 1.3rem;
  color: var(--color-burnt);
  font-style: italic;
}

/* Blob Grid */
.blob-grid {
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.blob-card {
  padding: 3rem 2rem;
  background-color: var(--color-cream);
  border: 3px solid var(--color-burnt);
  border-radius: 42% 58% 62% 38% / 55% 40% 60% 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: cardSlideIn 0.6s ease-out forwards;
  opacity: 0;
  min-height: 250px;
}

@keyframes cardSlideIn {
  from { opacity: 0; transform: translate(30px, 30px); }
  to { opacity: 1; transform: translate(0, 0); }
}

.card-1 { animation-delay: 0.1s; }
.card-2 { animation-delay: 0.2s; }
.card-3 { animation-delay: 0.3s; }
.card-4 { animation-delay: 0.4s; }
.card-5 { animation-delay: 0.5s; }
.card-6 { animation-delay: 0.6s; }

.blob-card:hover {
  border-color: var(--color-terracotta);
  box-shadow: 0 15px 40px rgba(197, 97, 58, 0.2);
  transform: translateY(-12px);
}

.blob-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}

.blob-card p {
  font-family: var(--font-lora);
  font-size: 1rem;
  color: var(--color-burnt);
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
  z-index: 3;
}

.features h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3rem;
}

.feature-blobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-blob {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  background-color: var(--color-cream);
  border: 2px solid var(--color-rust);
  border-radius: 55% 45% 52% 48% / 48% 55% 45% 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: featureFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes featureFadeIn {
  from { opacity: 0; scale: 0.8; }
  to { opacity: 1; scale: 1; }
}

.blob-f1 { animation-delay: 0.1s; }
.blob-f2 { animation-delay: 0.2s; }
.blob-f3 { animation-delay: 0.3s; }
.blob-f4 { animation-delay: 0.4s; }

.feature-blob:hover {
  border-color: var(--color-terracotta);
  box-shadow: 0 10px 30px rgba(197, 97, 58, 0.15);
  transform: scale(1.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.feature-blob h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-terracotta);
}

/* Collection Section */
.collection {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, rgba(255,255,255,0.9) 100%);
  text-align: center;
  position: relative;
  z-index: 3;
}

.collection h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3rem;
}

.collection-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.collection-item {
  background-color: white;
  padding: 2rem;
  border: 2px solid var(--color-rust);
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  text-align: center;
  transition: all 0.4s ease;
  animation: itemFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes itemFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.item-1 { animation-delay: 0.1s; }
.item-2 { animation-delay: 0.2s; }
.item-3 { animation-delay: 0.3s; }

.collection-item:hover {
  border-color: var(--color-terracotta);
  box-shadow: 0 12px 35px rgba(197, 97, 58, 0.2);
}

.item-label {
  display: inline-block;
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.collection-item p {
  font-family: var(--font-lora);
  color: var(--color-burnt);
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background-color: var(--color-cream);
  text-align: center;
  position: relative;
  z-index: 3;
}

.about h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.about p {
  font-family: var(--font-lora);
  font-size: 1.1rem;
  color: var(--color-burnt);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.cta-button {
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--color-burnt);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 97, 58, 0.3);
}

@media (max-width: 768px) {
  .blob-grid, .features, .collection, .about {
    padding: 3rem 1.5rem;
  }
  .blob-card, .feature-blob { min-height: 200px; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-terracotta); }
::-webkit-scrollbar-thumb:hover { background: var(--color-burnt); }
