/* ===============================
   DULTERRA — OPCIÓN B
   "Organic Luxury"
   Tipografía: Cormorant Garamond + Montserrat
   =============================== */

/* ---------- Variables ---------- */
:root {
  --color-moss: #2D4A2D;
  --color-terracotta: #B87D5E;
  --color-cream: #F7F5F0;
  --color-gold: #C9A227;

  --primary: #8B5A2B;
  --primary-rgb: 139, 90, 43;
  --secondary: #B87D5E;
  --secondary-rgb: 184, 125, 94;
  --accent: #C9A227;
  --accent-rgb: 201, 162, 39;

  --bg: #F5F0EA;
  --bg-alt: #FFFFFF;
  --text: #3E2C1C;
  --text-light: #7A6B5D;

  --glass-bg: rgba(255, 253, 250, 0.78);
  --glass-border: rgba(139, 90, 43, 0.12);

  --shadow: 0 20px 60px rgba(62, 44, 28, 0.12);
  --shadow-soft: 0 8px 32px rgba(62, 44, 28, 0.06);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

/* ---------- Reset y base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Utilidades ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-cream { background: var(--bg); }
.section-light { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 18px;
  line-height: 1.15;
}

.section-header p {
  font-family: var(--font-sans);
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- Header móvil ---------- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
}

.mobile-logo {
  display: inline-flex;
  align-items: center;
}

.mobile-logo .logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-toggle:hover { background: rgba(255, 255, 255, 0.9); }

/* ---------- Navegación dock ---------- */
.main-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 24px;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.nav-logo .logo-img {
  height: 28px;
  width: auto;
  min-width: 100px;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: #fff;
}

.nav-links a i { font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoomSlide 8s ease-out forwards;
}

@keyframes heroZoomSlide {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin: 0 0 40px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.hero-indicators button {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-indicators button.active {
  background: #fff;
  width: 60px;
}

/* ---------- Cards de productos ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 22px;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 0 10px;
}

.card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ---------- B2B ---------- */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.b2b-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.b2b-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.b2b-card > i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.b2b-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 0 10px;
}

.b2b-card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Experiencia ---------- */
.experience-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.experience-image {
  height: 560px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.experience-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.exp-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.exp-number {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 42px;
}

.exp-step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0 0 4px;
}

.exp-step p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Proceso ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.process-step:last-child::after { display: none; }

.process-step i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0 0 6px;
}

.process-step p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Nosotros ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin: 0 0 20px;
}

.about-content p {
  font-family: var(--font-sans);
  color: var(--text-light);
  margin: 0 0 28px;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  color: var(--text);
  font-weight: 500;
}

.about-list li i {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
}

.contact-form {
  background: var(--bg-alt);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-block i {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-block h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0 0 4px;
}

.info-block p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
}

.footer-links h5,
.footer-social h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 20px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #fff; }

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* ---------- WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* ---------- Reveal animations ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .b2b-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step::after { display: none; }
}

@media (max-width: 1024px) {
  .experience-visual { grid-template-columns: 1fr; }
  .experience-image { height: 380px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-header { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    transform: none;
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 40px;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-logo {
    font-size: 2.4rem;
    margin: 0 0 40px;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: 14px 28px;
  }

  .nav-links a i { font-size: 1.3rem; }

  .section { padding: 84px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .b2b-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-indicators { bottom: 60px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; }
  .contact-form { padding: 28px; }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ===============================
   CLASES DE TEMA
   =============================== */

body.theme-earth {
  --primary: #8B5A2B;
  --primary-rgb: 139, 90, 43;
  --secondary: #B87D5E;
  --secondary-rgb: 184, 125, 94;
  --accent: #C9A227;
  --accent-rgb: 201, 162, 39;
  --bg: #F5F0EA;
  --bg-alt: #FFFFFF;
  --text: #3E2C1C;
  --text-light: #7A6B5D;
  --glass-bg: rgba(255, 253, 250, 0.78);
  --glass-border: rgba(139, 90, 43, 0.12);
  --shadow: 0 20px 60px rgba(62, 44, 28, 0.12);
  --shadow-soft: 0 8px 32px rgba(62, 44, 28, 0.06);
}

body.theme-forest {
  --primary: #2D4A2D;
  --primary-rgb: 45, 74, 45;
  --secondary: #5E7A5E;
  --secondary-rgb: 94, 122, 94;
  --accent: #C9A227;
  --accent-rgb: 201, 162, 39;
  --bg: #F0F3EF;
  --bg-alt: #FFFFFF;
  --text: #1E2E1E;
  --text-light: #5A6B5A;
  --glass-bg: rgba(247, 250, 245, 0.78);
  --glass-border: rgba(45, 74, 45, 0.12);
  --shadow: 0 20px 60px rgba(30, 46, 30, 0.12);
  --shadow-soft: 0 8px 32px rgba(30, 46, 30, 0.06);
}

body.theme-warm {
  --primary: #B87D5E;
  --primary-rgb: 184, 125, 94;
  --secondary: #2D4A2D;
  --secondary-rgb: 45, 74, 45;
  --accent: #C9A227;
  --accent-rgb: 201, 162, 39;
  --bg: #F9F4EF;
  --bg-alt: #FFFFFF;
  --text: #3E2A1F;
  --text-light: #8A7265;
  --glass-bg: rgba(255, 252, 249, 0.78);
  --glass-border: rgba(184, 125, 94, 0.12);
  --shadow: 0 20px 60px rgba(62, 42, 31, 0.12);
  --shadow-soft: 0 8px 32px rgba(62, 42, 31, 0.06);
}

body.theme-berry {
  --primary: #C41E3A;
  --primary-rgb: 196, 30, 58;
  --secondary: #8B5A2B;
  --secondary-rgb: 139, 90, 43;
  --accent: #D4A03C;
  --accent-rgb: 212, 160, 60;
  --bg: #FFF5F5;
  --bg-alt: #FFFFFF;
  --text: #3E1A1F;
  --text-light: #8A5A60;
  --glass-bg: rgba(255, 250, 250, 0.78);
  --glass-border: rgba(196, 30, 58, 0.12);
  --shadow: 0 20px 60px rgba(62, 26, 31, 0.12);
  --shadow-soft: 0 8px 32px rgba(62, 26, 31, 0.06);
}

body.theme-cream {
  --primary: #4A4A4A;
  --primary-rgb: 74, 74, 74;
  --secondary: #B87D5E;
  --secondary-rgb: 184, 125, 94;
  --accent: #C9A227;
  --accent-rgb: 201, 162, 39;
  --bg: #F5F3EF;
  --bg-alt: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.05);
}

body.theme-blossom {
  --primary: #A85D75;
  --primary-rgb: 168, 93, 117;
  --secondary: #C41E3A;
  --secondary-rgb: 196, 30, 58;
  --accent: #E8A5B8;
  --accent-rgb: 232, 165, 184;
  --bg: #FDF2F5;
  --bg-alt: #FFFFFF;
  --text: #3E1F28;
  --text-light: #8A5A68;
  --glass-bg: rgba(255, 250, 252, 0.78);
  --glass-border: rgba(168, 93, 117, 0.12);
  --shadow: 0 20px 60px rgba(62, 31, 40, 0.1);
  --shadow-soft: 0 8px 32px rgba(62, 31, 40, 0.05);
}

body.theme-field {
  --primary: #5A6B3A;
  --primary-rgb: 90, 107, 58;
  --secondary: #8B9A6B;
  --secondary-rgb: 139, 154, 107;
  --accent: #B87D5E;
  --accent-rgb: 184, 125, 94;
  --bg: #F7F8F2;
  --bg-alt: #FFFFFF;
  --text: #2E3620;
  --text-light: #6B755A;
  --glass-bg: rgba(252, 253, 248, 0.78);
  --glass-border: rgba(90, 107, 58, 0.12);
  --shadow: 0 20px 60px rgba(46, 54, 32, 0.1);
  --shadow-soft: 0 8px 32px rgba(46, 54, 32, 0.05);
}
