*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: #F5ECD7;
  color: #2C1810;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === ANIMATIONS === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

main { animation: fadeIn .5s ease both; }
.anim-up   { animation: fadeSlideUp .7s ease both; }
.anim-up-1 { animation-delay: .1s; }
.anim-up-2 { animation-delay: .2s; }
.anim-up-3 { animation-delay: .3s; }
.anim-up-4 { animation-delay: .4s; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 clamp(16px,4vw,56px); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: #1C1008;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,236,215,.65);
  padding: 8px 16px; border-radius: 4px;
  text-decoration: none; transition: color .2s, background .2s; display: inline-block;
}
.nav-link:hover { color: #C9A84C; }
.nav-link.active { color: #C9A84C; }

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: #F5ECD7; border-radius: 2px;
  transition: all .3s;
}
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(28,16,8,.7);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 260px; height: 100vh;
  background: #1C1008; border-left: 1px solid rgba(201,168,76,.15);
  z-index: 1001; padding: 80px 24px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { padding: 14px 16px; font-size: .85rem; display: block; border-radius: 4px; }
.mobile-menu .nav-link:hover { background: rgba(201,168,76,.08); }

@media (max-width: 768px) {
  .nav-links   { display: none !important; }
  .menu-toggle { display: flex !important; }
}
@media (min-width: 769px) {
  .menu-toggle { display: none !important; }
  .mobile-menu, .mobile-overlay { display: none !important; }
}

/* === BUTTONS === */
.btn-primary {
  background: #C9A84C; color: #1C1008; border: none;
  padding: 14px 36px; border-radius: 2px;
  font-family: 'Raleway', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; display: inline-block; text-decoration: none;
}
.btn-primary:hover { background: #B8923E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }

.btn-secondary {
  background: transparent; color: #C9A84C;
  border: 1px solid #C9A84C; padding: 13px 34px; border-radius: 2px;
  font-family: 'Raleway', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; display: inline-block; text-decoration: none;
}
.btn-secondary:hover { background: rgba(201,168,76,.08); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; border: none;
  padding: 14px 32px; border-radius: 2px;
  font-family: 'Raleway', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all .3s; text-decoration: none;
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* === TYPOGRAPHY === */
.section-label {
  font-size: .68rem; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; color: #C9A84C; text-align: center;
  margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem,4vw,3rem); font-weight: 700;
  color: #1C1008; text-align: center; margin-bottom: 16px; line-height: 1.2;
}
.section-title.light { color: #F5ECD7; }
.section-subtitle {
  font-size: .95rem; color: #8B7355; text-align: center;
  max-width: 540px; margin: 0 auto 56px; line-height: 1.8; font-weight: 400;
}
.section-subtitle.light { color: rgba(245,236,215,.6); }

/* === DIVIDER === */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 48px;
}
.ornament-line { height: 1px; width: 60px; background: #C9A84C; opacity: .4; }
.ornament-diamond {
  width: 6px; height: 6px; background: #C9A84C;
  transform: rotate(45deg); opacity: .7;
}

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px clamp(20px,5vw,80px) 80px;
  background: #1C1008;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139,69,19,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(45,80,22,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; width: 100%; }
.hero-logo {
  width: clamp(120px,20vw,180px); height: auto;
  margin: 0 auto 40px; display: block;
  animation: fadeIn 1s ease both;
  filter: drop-shadow(0 8px 32px rgba(201,168,76,.2));
}
.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem,8vw,6rem); font-weight: 400; font-style: normal;
  color: #F5ECD7; line-height: 1; letter-spacing: -1px;
  margin-bottom: 8px; animation: fadeSlideUp .8s ease .2s both;
}
.hero-tagline span { color: #C9A84C; }
.hero-sub {
  font-size: .68rem; letter-spacing: 6px; text-transform: uppercase;
  color: rgba(245,236,215,.4); margin-bottom: 32px; font-weight: 600;
  animation: fadeSlideUp .8s ease .3s both;
}
.hero-desc {
  font-size: 1rem; color: rgba(245,236,215,.6); line-height: 1.8;
  max-width: 480px; margin: 0 auto 48px;
  animation: fadeSlideUp .8s ease .4s both;
}
.hero-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideUp .8s ease .5s both;
}
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: float 3s ease-in-out infinite; opacity: .3; text-decoration: none;
}
.scroll-indicator span { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: #C9A84C; }

/* === PARA QUIEN === */
.para-quien {
  padding: 96px clamp(20px,5vw,80px);
  background: #F5ECD7;
}
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2px; max-width: 960px; margin: 0 auto;
}
.value-card {
  background: #fff; padding: 40px 32px; text-align: center;
  border: 1px solid #E8D9BE; border-radius: 16px; transition: all .3s;
}
.value-card:hover { background: #1C1008; }
.value-card:hover .value-icon { color: #C9A84C; }
.value-card:hover h3 { color: #F5ECD7; }
.value-card:hover p { color: rgba(245,236,215,.5); }
.value-icon { font-size: 28px; margin-bottom: 16px; display: block; color: #8B4513; transition: color .3s; }
.value-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 700;
  color: #1C1008; margin-bottom: 10px; transition: color .3s;
}
.value-card p { font-size: .875rem; color: #8B7355; line-height: 1.7; transition: color .3s; }

/* === PRODUCTOS === */
.productos-section {
  padding: 96px clamp(20px,5vw,80px);
  background: #1C1008;
}
.productos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1px; max-width: 960px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,.15);
}
.producto-card {
  background: #231409; padding: 48px 32px; text-align: center;
  border: 1px solid rgba(201,168,76,.08); border-radius: 16px;
  transition: all .4s; cursor: default;
}
.producto-card:hover { background: #2D1B0E; border-color: rgba(201,168,76,.25); }
.producto-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 24px;
  background: rgba(201,168,76,.05);
  transition: all .4s;
}
.producto-card:hover .producto-placeholder {
  border-color: #C9A84C;
  background: rgba(201,168,76,.1);
}
.producto-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.2rem; font-weight: 700;
  color: #F5ECD7; margin-bottom: 10px;
}
.producto-card p { font-size: .85rem; color: rgba(245,236,215,.45); line-height: 1.7; margin-bottom: 20px; }
.producto-tag {
  font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: #C9A84C; font-weight: 600; opacity: .7;
}

/* === HISTORIA (nosotros) === */
.historia {
  padding: 120px clamp(20px,5vw,80px) 96px;
  background: #F5ECD7;
}
.historia-inner {
  max-width: 800px; margin: 0 auto;
}
.historia-inner p {
  font-size: 1rem; color: #5C3D2E; line-height: 1.9;
  margin-bottom: 24px; font-weight: 400;
}
.valores-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 24px; margin-top: 56px;
}
.valor-item {
  padding: 28px 24px; border-left: 2px solid #C9A84C;
}
.valor-item h4 {
  font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: 700;
  color: #1C1008; margin-bottom: 8px;
}
.valor-item p { font-size: .875rem; color: #8B7355; line-height: 1.7; }

/* === QUOTE SECTION === */
.quote-section {
  padding: 80px clamp(20px,5vw,80px);
  background: #2D1B0E; text-align: center;
}
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem,4vw,2.5rem); font-weight: 400; font-style: normal;
  color: #F5ECD7; line-height: 1.4; max-width: 700px; margin: 0 auto 16px;
}
.quote-text span { color: #C9A84C; }
.quote-author {
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,236,215,.35); font-weight: 600;
}

/* === CONTACTO PAGE === */
.contacto-page { padding: 120px clamp(20px,5vw,80px) 96px; background: #F5ECD7; }
.contacto-inner { max-width: 560px; margin: 0 auto; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.contact-card {
  background: #fff; border: 1px solid #E8D9BE; border-radius: 14px;
  padding: 24px 28px; display: flex; align-items: center; gap: 20px;
  text-decoration: none; color: inherit; transition: all .3s;
}
.contact-card:hover { border-color: #C9A84C; box-shadow: 0 8px 24px rgba(139,69,19,.08); transform: translateX(4px); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 2px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: #F5ECD7; border: 1px solid #E8D9BE;
}
.contact-card-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: .95rem; font-weight: 700; color: #1C1008; margin-bottom: 2px;
}
.contact-card-info p { font-size: .84rem; color: #8B7355; }
.contact-card-arrow { margin-left: auto; color: #C9A84C; font-size: 1rem; }

.social-section { margin-top: 40px; }
.social-section h3 {
  font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: 700;
  color: #1C1008; margin-bottom: 16px; text-align: center;
}
.social-links { display: flex; justify-content: center; gap: 12px; }
.social-btn {
  width: 48px; height: 48px; border: 1px solid #D4B896; border-radius: 2px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 20px; text-decoration: none; transition: all .3s; color: #8B7355;
}
.social-btn:hover { border-color: #C9A84C; color: #C9A84C; transform: translateY(-3px); }

/* === PRODUCTOS PAGE === */
.productos-page { padding: 120px clamp(20px,5vw,80px) 96px; background: #F5ECD7; }
.productos-page-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2px; max-width: 960px; margin: 0 auto;
}
.producto-page-card {
  background: #fff; border: 1px solid #E8D9BE;
  border-radius: 16px; overflow: hidden; transition: all .3s;
}
.producto-page-card:hover { box-shadow: 0 16px 40px rgba(139,69,19,.1); transform: translateY(-4px); }
.producto-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.producto-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.ph1 { background: linear-gradient(135deg, #3D2010, #5C3D2E); color: #C9A84C; }
.ph2 { background: linear-gradient(135deg, #1A2D0E, #2D5016); color: #A8C97C; }
.ph3 { background: linear-gradient(135deg, #2D1010, #5C1A1A); color: #C97C7C; }
.ph4 { background: linear-gradient(135deg, #2D2410, #5C4A1A); color: #C9B87C; }
.ph-icon { font-size: 48px; opacity: .6; }
.ph-text { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; opacity: .5; font-weight: 600; }
.producto-page-info { padding: 24px 28px; }
.producto-page-info h3 {
  font-family: 'DM Serif Display', serif; font-size: 1.2rem; font-weight: 700;
  color: #1C1008; margin-bottom: 8px;
}
.producto-page-info p { font-size: .875rem; color: #8B7355; line-height: 1.7; margin-bottom: 16px; }
.producto-material {
  font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: #8B4513; font-weight: 700; border-top: 1px solid #E8D9BE; padding-top: 14px;
}

/* === FOOTER === */
footer {
  padding: 40px clamp(20px,5vw,80px);
  background: #1C1008; border-top: 1px solid rgba(201,168,76,.12);
  text-align: center;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; display: inline-block; }
footer .copy { font-size: .75rem; color: rgba(245,236,215,.25); letter-spacing: 1px; }
footer .copy a { color: rgba(245,236,215,.4); text-decoration: none; }
footer .copy a:hover { color: #C9A84C; }

/* === HELPERS === */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
