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

:root {
  --warm-bg: #f5ede1;
  --warm-accent: #a67c52;
  --warm-dark: #3d2817;
  --warm-light: #faf7f2;
  --text-main: #2a2420;
  --text-sub: #6b5f55;
}

body {
  font-family: 'Merriweather', serif;
  background: var(--warm-bg);
  color: var(--text-main);
  line-height: 1.8;
}

/* HEADER */
.header-warm {
  background: linear-gradient(135deg, var(--warm-accent) 0%, #8b6f47 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.header-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.logo-warm {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tagline-warm {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* HERO */
.hero-warm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title-warm {
  font-size: 2.8rem;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-desc-warm {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero-cta-warm {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-warm {
  background: var(--warm-accent);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary-warm:hover {
  background: #8b6f47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 124, 82, 0.3);
}

.btn-secondary-warm {
  border: 2px solid var(--warm-accent);
  color: var(--warm-accent);
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-secondary-warm:hover {
  background: var(--warm-accent);
  color: white;
}

.hero-visual-warm {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
}

.book-stack {
  width: 200px;
  height: 300px;
  background: linear-gradient(135deg, var(--warm-accent) 0%, #8b6f47 100%);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 40px rgba(166, 124, 82, 0.2);
  animation: sway 4s ease-in-out infinite;
}

.book-stack::before,
.book-stack::after {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, #d4a574 0%, var(--warm-accent) 100%);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.book-stack::before {
  width: 180px;
  height: 280px;
  top: -10px;
  left: -20px;
  z-index: -1;
  opacity: 0.6;
}

.book-stack::after {
  width: 160px;
  height: 260px;
  top: -5px;
  left: 30px;
  z-index: -2;
  opacity: 0.4;
}

@keyframes sway {
  0%, 100% { transform: rotateZ(-2deg) translateY(0); }
  50% { transform: rotateZ(2deg) translateY(-10px); }
}

/* SECTION HEADERS */
.section-header-warm {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-warm {
  font-size: 2.4rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.section-header-warm p {
  font-size: 1rem;
  color: var(--text-sub);
  font-weight: 300;
}

/* COLLECTIONS */
.collections-warm {
  padding: 4rem 2rem;
  background: white;
}

.collections-grid-warm {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card-warm {
  padding: 2.5rem;
  border-radius: 8px;
  color: white;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.collection-card-warm:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(166, 124, 82, 0.3);
}

.collection-number {
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 1rem;
  font-family: 'Work Sans', sans-serif;
}

.collection-card-warm h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 1px;
}

.collection-count {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.8rem;
  font-family: 'Work Sans', sans-serif;
}

.collection-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ABOUT */
.about-warm {
  padding: 4rem 2rem;
  background: var(--warm-light);
}

.about-wrapper-warm {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid-warm {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.about-text-warm p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.stats-warm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card-warm {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--warm-accent);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-num {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warm-accent);
  margin-bottom: 0.3rem;
}

.stat-text {
  font-size: 0.85rem;
  color: var(--text-sub);
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0.5px;
}

/* MEMBERSHIPS */
.memberships-warm {
  padding: 4rem 2rem;
  background: white;
}

.membership-cards-warm {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.membership-card {
  background: var(--warm-light);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #e8ddd0;
  transition: all 0.3s;
  position: relative;
}

.membership-card:hover {
  border-color: var(--warm-accent);
  box-shadow: 0 8px 24px rgba(166, 124, 82, 0.1);
}

.featured-card {
  background: linear-gradient(135deg, var(--warm-accent) 0%, #8b6f47 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(166, 124, 82, 0.2);
}

.featured-card:hover {
  border-color: transparent;
  transform: scale(1.08);
}

.badge-hot {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--warm-accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

.featured-card .badge-hot {
  background: white;
  color: var(--warm-accent);
}

.membership-card h3 {
  font-size: 1.3rem;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-warm {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Work Sans', sans-serif;
}

.price-warm span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-sub);
}

.featured-card .price-warm span {
  color: rgba(255, 255, 255, 0.8);
}

.membership-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.membership-card li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #e0d5c8;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.featured-card li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.membership-card li:last-child {
  border-bottom: none;
}

.btn-join {
  width: 100%;
  background: var(--warm-accent);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-join:hover {
  background: #8b6f47;
  transform: translateY(-2px);
}

.featured-btn {
  background: white;
  color: var(--warm-accent);
}

.featured-btn:hover {
  background: #f5ede1;
}

/* CONTACT */
.contact-warm {
  padding: 4rem 2rem;
  background: var(--warm-light);
}

.contact-wrapper-warm {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid-warm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item-warm {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border-left: 3px solid var(--warm-accent);
}

.contact-item-warm h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--warm-accent);
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-item-warm p {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-item-warm a {
  color: var(--warm-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item-warm a:hover {
  color: #8b6f47;
}

/* MODAL */
.modal-warm {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content-warm {
  background: var(--warm-light);
  max-width: 500px;
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
  animation: slideUp 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.modal-close-warm {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-main);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.modal-close-warm:hover {
  opacity: 1;
}

.modal-content-warm h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.modal-content-warm p {
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}

.modal-content-warm form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content-warm input,
.modal-content-warm select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: white;
}

.modal-content-warm input::placeholder {
  color: #aaa;
}

.btn-submit-warm {
  background: var(--warm-accent);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-warm:hover {
  background: #8b6f47;
  transform: translateY(-2px);
}

/* FOOTER */
.footer-warm {
  background: var(--warm-dark);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content-warm {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col-warm h4 {
  font-family: 'Work Sans', sans-serif;
  color: var(--warm-accent);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-col-warm p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col-warm ul {
  list-style: none;
}

.footer-col-warm li {
  margin-bottom: 0.6rem;
}

.footer-col-warm a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-col-warm a:hover {
  color: var(--warm-accent);
}

.footer-bottom-warm {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-warm {
    grid-template-columns: 1fr;
  }

  .hero-visual-warm {
    display: none;
  }

  .about-grid-warm {
    grid-template-columns: 1fr;
  }

  .stats-warm {
    grid-template-columns: 1fr;
  }

  .featured-card {
    transform: scale(1);
  }

  .featured-card:hover {
    transform: scale(1.02);
  }

  .hero-title-warm {
    font-size: 2rem;
  }

  .section-title-warm {
    font-size: 1.8rem;
  }
}
