:root {
  --bg-color: #faf6f2; /* Soft clay background */
  --clay-brown: #96705d;
  --clay-peach: #e0ab95;
  --clay-peach-light: #f5dfd5;
  --text-dark: #3a322e;
  --text-muted: #786c66;
  --white: #ffffff;
  --border-color: #ebdcd3;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background-color: rgba(250, 246, 242, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.brand {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--clay-brown);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--clay-brown);
}

/* Hero */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

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

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay-brown);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Buttons (Claymorphic Style) */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

.btn-clay {
  background-color: var(--clay-brown);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(150, 112, 93, 0.25), 
              inset 0 -4px 0 rgba(0,0,0,0.15);
}

.btn-clay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(150, 112, 93, 0.35), 
              inset 0 -4px 0 rgba(0,0,0,0.15);
}

.btn-clay:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(150, 112, 93, 0.25), 
              inset 0 0 0 rgba(0,0,0,0.15);
}

.btn-outline {
  background-color: var(--white);
  color: var(--clay-brown);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--clay-brown);
  transform: translateY(-2px);
}

/* Sections General */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Story Section */
.story-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.story-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(150, 112, 93, 0.1);
}

/* Shop Section */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.shop-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(150, 112, 93, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(150, 112, 93, 0.08);
}

.img-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  padding: 24px;
  flex-grow: 1;
}

.card-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.price {
  display: block;
  font-family: 'Fredoka', sans-serif;
  color: var(--clay-brown);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.card-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Classes Section Clay Panel */
.clay-panel {
  background-color: var(--clay-peach-light);
  border-radius: 32px;
  padding: 60px 40px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.05);
}

.clay-panel h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.clay-panel p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}
