:root {
  --bg: #fbf6ef;
  --surface: #fffdf9;
  --surface-2: #f3eadf;
  --text: #231815;
  --muted: #6b5a50;
  --primary: #4b3327;
  --secondary: #9a2f23;
  --border: rgba(75, 51, 39, 0.12);
  --shadow: 0 14px 40px rgba(35, 24, 21, 0.12);
  --radius: 22px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf4 0%, #f6ede1 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .75rem 1rem; z-index: 99; }
.site-header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px);
  background: rgba(251, 246, 239, .9); border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; }
.brand { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.brand strong { display: block; font-size: 1.05rem; letter-spacing: .03em; }
.brand span { display: block; color: var(--muted); font-size: .92rem; }
.menu { display: flex; gap: 1.1rem; align-items: center; }
.menu a { font-weight: 600; color: var(--muted); }
.menu a:hover { color: var(--primary); }
.menu-toggle { display: none; border: 0; background: var(--surface); width: 48px; height: 48px; border-radius: 14px; box-shadow: var(--shadow); }
.lang-switch { display: flex; gap: .4rem; }
.lang-btn {
  border: 1px solid var(--border); background: var(--surface); color: var(--primary);
  padding: .55rem .75rem; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: var(--primary); color: #fff; }
.hero { position: relative; min-height: 88vh; display: grid; place-items: center; overflow: hidden; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(25,16,13,.72) 0%, rgba(25,16,13,.48) 42%, rgba(25,16,13,.18) 100%); }
.hero-content { position: relative; z-index: 1; padding: 6rem 0; color: #fff; max-width: 760px; }
.eyebrow, .section-tag {
  display: inline-flex; align-items: center; padding: .35rem .75rem; border-radius: 999px;
  background: rgba(255,255,255,.14); color: inherit; font-weight: 700; letter-spacing: .03em;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); line-height: .98; margin: 1rem 0; }
.hero-text { font-size: clamp(1rem, 2vw, 1.2rem); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .9rem 1.3rem;
  border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--secondary); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.section { padding: 5.5rem 0; }
.section h2 { font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.05; margin: 1rem 0 1rem; }
.section-intro { max-width: 68ch; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; }
.align-center { align-items: center; }
.card, .product-card, .contact-form, .contact-card, .social-card {
  background: rgba(255,255,255,.85); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.media-card { overflow: hidden; }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.feature-list article { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 1.1rem; }
.feature-list h3 { margin: 0 0 .35rem; font-size: 1rem; }
.products { background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.45)); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.product-card { padding: 1.4rem; }
.product-card h3 { margin-top: 0; font-size: 1.35rem; }
.product-card ul { padding-left: 1.1rem; margin: .8rem 0 0; }
.product-card.accent { background: linear-gradient(180deg, rgba(154,47,35,.12), rgba(255,255,255,.92)); }
.media-menu { padding: 0; overflow: hidden; }
.media-menu img { width: 100%; height: 100%; object-fit: cover; }
.delivery-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.delivery-list li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: .85rem 1rem; font-weight: 700;
}
.video-frame {
  position: relative; padding-top: 56.25%; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.gallery-item {
  border: 0; padding: 0; background: transparent; border-radius: 22px; overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.social-links, .contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.social-card, .contact-card { padding: 1.2rem; }
.social-card { font-weight: 800; text-align: center; }
.embed-fallback { padding: 2rem; text-align: center; }
.embed-fallback img { width: min(260px, 100%); margin: 0 auto 1rem; border-radius: 20px; }
.contact-form { padding: 1.4rem; display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--border); background: #fff; border-radius: 16px; padding: .9rem 1rem; color: var(--text);
}
.site-footer { padding: 1.6rem 0 2.4rem; border-top: 1px solid var(--border); background: rgba(255,255,255,.45); }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-wrap a { font-weight: 800; color: var(--primary); }
.whatsapp-float {
  position: fixed; right: 1rem; bottom: 1rem; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: #1f9d55; color: #fff; box-shadow: var(--shadow); z-index: 25;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
  position: absolute; top: 1rem; right: 1rem; width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; cursor: pointer;
}
@media (max-width: 980px) {
  .grid-2, .product-grid, .feature-list, .gallery-grid, .social-links, .contact-cards { grid-template-columns: 1fr 1fr; }
  .product-grid .media-menu { grid-column: span 2; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .menu {
    position: absolute; top: 84px; left: 1rem; right: 1rem; background: rgba(255,253,249,.98); border: 1px solid var(--border);
    box-shadow: var(--shadow); padding: 1rem; border-radius: 22px; display: none; flex-direction: column; align-items: flex-start;
  }
  .menu.open { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
  .lang-switch { margin-left: auto; }
  .grid-2, .product-grid, .feature-list, .gallery-grid, .social-links, .contact-cards { grid-template-columns: 1fr; }
  .product-grid .media-menu { grid-column: auto; }
  .hero { min-height: 82vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(25,16,13,.74), rgba(25,16,13,.45)); }
  .hero-content { padding-top: 7rem; }
  .gallery-item img { height: 240px; }
  .gallery-viewer img { max-height: 420px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
