:root {
  --charcoal: #241A15;
  --charcoal-deep: #17110D;
  --stone: #8C7B63;
  --wax: #EFE3C8;
  --cream: #F7F1E6;
  --white: #FFFFFF;
  --amber: #C97A2B;
  --amber-light: #E3A857;
  --wine: #7A2E2E;
  --ink: #4A3B2E;
  --ink-soft: #6B5D4E;
  --brand-font: 'Italiana', var(--serif);
  --serif: Cambria, Georgia, "Times New Roman", serif;
  --sans: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); margin: 0; color: var(--charcoal); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,241,230,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--wax);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--stone);
  transition: width 0.25s ease;
}
.nav a:not(.nav-cta):hover:after { width: 100%; }
.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 20px !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--wine); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 150px 24px 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,17,13,0.55) 0%, rgba(23,17,13,0.75) 60%, rgba(23,17,13,0.92) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-family: var(--brand-font);
  font-size: clamp(2.8rem, 7.5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--cream);
  line-height: 1.1;
}
.hero h1 .brand-sub {
  display: block;
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 6px;
  margin-top: 0.3em;
  color: var(--amber-light);
  opacity: 0.95;
}
.brand-divider {
  width: 64px;
  height: 1px;
  background: var(--wax);
  opacity: 0.6;
  margin: 22px auto 0;
}
.hero-sub {
  margin-top: 28px;
  font-size: 1.2rem;
  color: var(--white);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--amber);
  color: var(--charcoal-deep);
}
.btn-primary:hover { background: var(--amber-light); }
.btn-secondary {
  border: 1px solid var(--cream);
  color: var(--cream);
}
.btn-secondary:hover { background: rgba(247,241,230,0.12); }

/* Section kicker */
.section-kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 14px;
}

/* Stats strip */
.stats-strip {
  background: var(--cream);
  padding: 36px 0;
  border-top: 1px solid rgba(36,26,21,0.08);
  border-bottom: 1px solid rgba(36,26,21,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--amber);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* Custom branding banner */
.custom-brand { padding: 80px 0; background: var(--cream); }
.custom-brand-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.custom-brand-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.custom-brand-inner p { color: var(--ink-soft); font-size: 1.02rem; margin: 0 0 28px; }

/* FAQ */
.faq { padding: 90px 0; background: var(--cream); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 4px;
  padding: 0 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 0 0 22px; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }

/* Bio */
.bio { padding: 90px 0; background: var(--white); }
.bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}
.bio-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 20px; line-height: 1.25; }
.bio-text p { color: var(--ink-soft); font-size: 1.05rem; max-width: 62ch; margin: 0 0 16px; }

/* Philosophy */
.philosophy { background: var(--charcoal); padding: 90px 0; text-align: center; }
.philosophy-inner { max-width: 720px; margin: 0 auto; }
.philosophy-kicker { color: var(--amber-light); }
.philosophy blockquote {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--cream);
  line-height: 1.45;
}
.philosophy blockquote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber-light);
}
.philosophy-body { color: var(--wax); font-size: 1.02rem; opacity: 0.95; max-width: 56ch; margin: 0 auto; }

/* Product lines */
.lines { padding: 90px 0; background: var(--cream); }
.lines-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.line-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 2px 18px rgba(36,26,21,0.06); }
.line-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.line-body { padding: 30px 32px 34px; }
.line-tag {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.line-tag-eventos { background: rgba(122,46,46,0.12); color: var(--wine); }
.line-tag-hogar { background: rgba(201,122,43,0.14); color: var(--amber); }
.line-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.line-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 10px; }
.line-sizes { font-size: 0.88rem; font-style: italic; color: var(--stone); margin-top: 14px; }

.line-products {
  display: flex;
  gap: 12px;
  margin: 20px 0 4px;
}
.line-products figure {
  flex: 1;
  margin: 0;
  text-align: center;
}
.line-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}
.line-products figcaption {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--stone);
}

/* Segments tag list */
.segments { padding: 80px 0; background: var(--white); }
.segments-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.segments-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.segments-head p { color: var(--ink-soft); margin: 0; }
.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tag-list li { border-radius: 2px; overflow: hidden; height: 100%; }
.tag-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--serif);
  text-align: center;
  padding: 26px 14px;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.tag-list a:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Gallery / project sections */
.project-section { padding: 90px 0; }
.project-section.alt { background: var(--cream); }
.section-head {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 44px;
}
.section-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  border: 1px solid var(--stone);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--stone);
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.section-head p { margin: 0; color: var(--ink-soft); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  padding: 0;
  border: none;
  background: var(--charcoal);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.92; }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(36,26,21,0.88), transparent);
  color: var(--cream);
  font-size: 0.9rem;
  text-align: left;
  letter-spacing: 0.5px;
}

/* Methodology */
.methodology { padding: 90px 0; background: var(--white); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.method-num {
  display: block;
  font-family: var(--serif);
  font-weight: bold;
  font-size: 2.2rem;
  color: var(--wax);
  -webkit-text-stroke: 1px var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.method-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.method-step p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* Contact */
.contact { padding: 100px 0; background: var(--charcoal); color: var(--cream); text-align: center; }
.contact h2 { color: var(--cream); font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.contact-intro { color: var(--wax); max-width: 58ch; margin: 0 auto 50px; font-size: 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 380px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(247,241,230,0.06);
  border: 1px solid rgba(239,227,200,0.25);
  border-radius: 3px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card h3 { color: var(--amber-light); font-size: 1.3rem; margin-bottom: 2px; }
.contact-card .contact-role { color: var(--cream); opacity: 0.7; font-style: italic; font-size: 0.85rem; margin: 0 0 4px; }
.contact-card a { color: var(--cream); font-size: 0.98rem; }
.contact-card a:hover { color: var(--amber-light); }
.contact-card .whatsapp-link {
  margin-top: 8px;
  color: #6fcf97;
  font-weight: 600;
}
.contact-card .whatsapp-link:hover { color: #8fe0af; }
.contact-meta { margin-top: 40px; font-size: 0.9rem; color: var(--wax); opacity: 0.85; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Footer */
.site-footer { background: var(--charcoal-deep); color: var(--wax); padding: 28px 0; }
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
.footer-year { opacity: 0.7; margin: 0; }
.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--amber-light); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(23,17,13,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(239,227,200,0.1);
  color: var(--cream);
  border: 1px solid rgba(239,227,200,0.3);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(239,227,200,0.25); }
.lightbox-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 1.6rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Responsive */
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 32px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--wax);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .bio-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio-photo { max-width: 260px; }
  .lines-grid { grid-template-columns: 1fr; }
  .tag-list { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .method-steps { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.5rem; }
}

@media (max-width: 520px) {
  .tag-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
}
