:root {
  --bg: #faf6ef;
  --bg-alt: #f2ead9;
  --ink: #2b2118;
  --muted: #6f6252;
  --brand: #c0392b;
  --brand-dark: #93261c;
  --gold: #e0a13a;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(43, 33, 24, 0.12);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 33, 24, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  color: #fff; font-weight: 800; display: grid; place-items: center;
}
.brand-text { font-weight: 800; font-size: 1.15rem; }
.brand-text em { font-style: normal; color: var(--brand); }
.main-nav { display: flex; gap: 24px; }
.main-nav a { font-weight: 600; color: var(--muted); transition: color .2s; }
.main-nav a:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* Hero */
.hero { position: relative; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(224,161,58,.5), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(192,57,43,.6), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(147,38,28,.7), transparent 50%),
    linear-gradient(135deg, #2b2118, #4a2c22 60%, #6b2f22);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero-inner { padding: 90px 0 70px; text-align: center; }
.hero-kicker {
  display: inline-block; background: rgba(255,255,255,.15);
  padding: 6px 16px; border-radius: 999px; font-weight: 700; letter-spacing: .5px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; margin: 18px 0 16px; }
.hero-sub { max-width: 640px; margin: 0 auto 28px; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.hero-sub strong { color: var(--gold); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  font-weight: 700; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: #fff; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 1.9rem; color: var(--gold); }
.hero-stats span { font-size: .9rem; color: rgba(255,255,255,.85); }

/* Sections */
.section { padding: 70px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.section-head p { color: var(--muted); }
.section-head strong { color: var(--brand); }

.grid { display: grid; gap: 26px; }
.products { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* Product card */
.product {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s;
}
.product:hover { transform: translateY(-6px); }
.product-art { aspect-ratio: 4/3; width: 100%; }
.product-body { padding: 16px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-body p { font-size: .92rem; color: var(--muted); margin-bottom: 10px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-weight: 800; color: var(--brand); }
.product-tag {
  background: var(--bg-alt); color: var(--muted); font-size: .75rem;
  padding: 3px 10px; border-radius: 999px; font-weight: 600;
}

/* About */
.about-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 44px; }
.about-card { background: var(--card); padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.about-card h3 { margin-bottom: 8px; }
.about-card p { color: var(--muted); font-size: .95rem; }

.responsable {
  display: flex; gap: 22px; align-items: center; background: var(--card);
  padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 640px; margin: 0 auto; flex-wrap: wrap;
}
.resp-avatar {
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  color: #fff; font-weight: 800; font-size: 1.4rem; display: grid; place-items: center;
}
.resp-info h3 { margin-bottom: 4px; color: var(--brand); }
.resp-info p { color: var(--muted); }
.resp-info a { color: var(--brand); font-weight: 600; }

/* Branches */
.branches { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.branch {
  background: var(--card); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
}
.branch h3 { margin-bottom: 8px; }
.branch p { color: var(--muted); font-size: .95rem; margin-bottom: 6px; }
.branch .branch-icon { font-size: 1.6rem; }

/* Contact */
.contact-grid { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; align-items: start; }
.contact-info h3 { margin: 14px 0 6px; color: var(--brand); }
.contact-info a { font-weight: 600; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social {
  display: inline-flex; align-items: center; gap: 8px; background: var(--card);
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow); font-weight: 700;
  transition: transform .15s;
}
.social:hover { transform: translateY(-3px); }
.social span { font-size: 1.2rem; }
.contact-form { background: var(--card); padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #e2d7c4;
  font-family: inherit; font-size: .95rem; background: var(--bg);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); }
.form-msg { font-weight: 700; color: var(--brand); min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.85); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-inner .brand-text { color: #fff; }
.footer-inner p { font-size: .9rem; }

@media (max-width: 820px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    flex-direction: column; padding: 10px 22px; gap: 14px; border-bottom: 1px solid rgba(43,33,24,.1);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 60px 0 50px; }
}