/* ---------- Tokens ---------- */
:root {
  --cream: #faf5eb;
  --cream-2: #f4ecdc;
  --cream-3: #efe4cd;
  --ink: #2c1810;
  --ink-2: #4a2f1c;
  --muted: #6b5240;
  --bronze: #a67341;
  --bronze-dark: #8b5a2b;
  --bronze-deep: #6b3f1f;
  --line: #e3d5b8;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(43,24,16,.06), 0 2px 8px rgba(43,24,16,.04);
  --shadow-md: 0 4px 12px rgba(43,24,16,.08), 0 12px 32px rgba(43,24,16,.06);
  --shadow-lg: 0 16px 40px rgba(43,24,16,.16);
  --sans: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px; line-height: 1;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-dark { background: var(--bronze-deep); color: #fff; }
.btn-dark:hover { background: var(--ink-2); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--bronze-deep); box-shadow: inset 0 0 0 2px var(--bronze-deep); }
.btn-outline:hover { background: var(--bronze-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { background: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); box-shadow: var(--shadow-md); }

/* ---------- Brand logo ---------- */
.brand-logo {
  height: 40px; width: auto; display: block;
}
.footer-logo {
  height: 160px; width: auto; margin: 0 auto 4px; display: block;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,245,235,.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(227,213,184,.5);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name {
  font-family: var(--sans); font-weight: 700; letter-spacing: 2px;
  font-size: 18px; color: var(--bronze-dark);
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 6px 2px; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--bronze); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none; width: 40px; height: 40px; flex-direction: column;
  gap: 5px; align-items: center; justify-content: center; margin-left: auto;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  text-align: center;
}
.hero-art {
  max-width: 900px; margin: 0 auto 24px;
}
.hero-art img { width: 100%; height: auto; mix-blend-mode: multiply; }
.hero-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 auto 20px;
  max-width: 900px;
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-2); max-width: 780px; margin: 0 auto 12px;
}
.hero-desc {
  font-size: 16px; color: var(--muted);
  max-width: 640px; margin: 0 auto 32px;
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-2); }
.section .wrap { text-align: center; }
.section-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 auto 12px;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 24px;
}
.section-title::before,
.section-title::after {
  content: ""; display: inline-block;
  width: 64px; height: 2px; flex: 0 0 64px;
  background: linear-gradient(to right, transparent, var(--bronze));
  border-radius: 2px;
}
.section-title::after {
  background: linear-gradient(to left, transparent, var(--bronze));
}
@media (max-width: 700px) {
  .section-title::before, .section-title::after { display: none; }
}
.section-lead {
  text-align: center; color: var(--muted);
  font-size: 17px; max-width: 720px; margin: 0 auto 56px;
}

/* ---------- Features ---------- */
.features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px; margin: 0 auto;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-media {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  aspect-ratio: 2 / 1;
  display: flex; align-items: center; justify-content: center;
}
.feature-media img { max-height: 170px; width: auto; object-fit: contain; }
.feature-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Steps ---------- */
.steps-wrap { position: relative; }
.steps-connector {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .55;
  z-index: 0;
}
.connector-main {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: draw-line 3s ease-out forwards;
  animation-delay: .2s;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
.steps {
  position: relative; z-index: 1;
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  counter-reset: steps;
}
.step {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px 28px;
  text-align: center;
}
.step-num {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 120px; font-weight: 800;
  color: rgba(166,115,65,.15); line-height: 1; pointer-events: none;
  letter-spacing: -0.05em;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bronze); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative;
  box-shadow: 0 8px 20px rgba(166,115,65,.35);
}
.step-icon svg { width: 26px; height: 26px; }
.step h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Gallery marquee ---------- */
.section-gallery .wrap { margin-bottom: 40px; }
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto;
  width: 320px; height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.marquee-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.marquee-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.marquee-item:hover img { transform: scale(1.05); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 700px) {
  .marquee-item { width: 240px; height: 180px; }
  .marquee-track { animation-duration: 30s; }
}

/* ---------- Collections ---------- */
.collections {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.col-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  text-align: left;
  padding: 0;
}
.col-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.col-cover {
  aspect-ratio: 4 / 3; background: var(--cream-2);
  position: relative; overflow: hidden;
}
.col-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.col-card:hover .col-cover img { transform: scale(1.06); }
.col-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(43,24,16,.75); color: #fff;
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; backdrop-filter: blur(4px);
}
.col-body { padding: 22px 22px 24px; }
.col-body h3 { margin: 0 0 6px; font-size: 20px; font-weight: 700; }
.col-body p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; }
.col-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--bronze-dark); font-weight: 600; font-size: 14px;
}
.col-link::after { content: "→"; transition: transform .2s ease; }
.col-card:hover .col-link::after { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream-3) 100%); text-align: center; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--cream-3); padding: 60px 0 40px; text-align: center; }
.footer-inner { max-width: 640px; }
.footer-name {
  font-family: var(--sans); font-weight: 700; letter-spacing: 4px;
  font-size: 22px; color: var(--bronze-dark); margin: 16px 0 6px;
}
.footer-tag { color: var(--ink-2); font-weight: 600; margin: 0 0 12px; }
.footer-desc { color: var(--muted); margin: 0 auto 28px; }
.footer hr { border: none; border-top: 1px solid var(--line); margin: 20px 0; }
.footer-fine { color: var(--muted); font-size: 13px; margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,10,5,.94);
  display: grid; grid-template-rows: auto 1fr auto;
  color: #fff;
}
.lightbox[hidden] { display: none; }
.lb-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 28px;
}
.lb-title { margin: 0; font-size: 22px; font-weight: 700; font-family: var(--sans); }
.lb-counter { margin: 4px 0 0; opacity: .7; font-size: 13px; }
.lb-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-stage {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px 24px; overflow: hidden;
}
.lb-stage img {
  max-width: min(1000px, 92vw);
  max-height: calc(100vh - 260px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-caption {
  margin: 14px 0 0; opacity: .85; font-size: 14px;
  max-width: 720px; text-align: center;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 32px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-thumbs {
  display: flex; gap: 10px; padding: 14px 20px 20px;
  overflow-x: auto; justify-content: flex-start;
  scrollbar-width: thin;
}
.lb-thumbs button {
  flex: 0 0 72px; height: 54px;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; background: rgba(255,255,255,.05);
  padding: 0;
}
.lb-thumbs button.active { border-color: var(--bronze); }
.lb-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Modal (callback) ---------- */
.modal {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(20,10,5,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 460px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-card h3 { margin: 0 0 6px; font-size: 22px; font-weight: 700; }
.modal-card .muted { margin: 0 0 20px; font-size: 14px; }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 22px; line-height: 1; color: var(--muted);
}
.modal-close:hover { background: var(--cream-2); }
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.form input, .form textarea {
  font: inherit; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink);
  transition: border-color .15s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--bronze); }
.form button { justify-self: stretch; text-align: center; justify-content: center; }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.08); background: var(--wa-dark); }

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .3s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .connector-main { animation: none; stroke-dashoffset: 0; }
}

/* Subtle floating on hero art */
.hero-art { animation: hero-float 6s ease-in-out infinite; }
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Pulse ring on floating WhatsApp */
.fab-wa::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%;
  background: var(--wa);
  opacity: .5;
  z-index: -1;
  animation: fab-pulse 2s ease-out infinite;
}
.fab-wa { position: fixed; }
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Step icon micro-bounce on load */
.step.in .step-icon {
  animation: step-pop .6s ease-out;
}
@keyframes step-pop {
  0%   { transform: scale(.6); }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 56px 0; }
  .section-lead { margin-bottom: 32px; font-size: 15px; }
  .features { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .feature-card { padding: 20px; }
  .feature-media { padding: 12px; aspect-ratio: 2.2 / 1; margin-bottom: 14px; }
  .feature-media img { max-height: 130px; }
  .feature-card h3 { font-size: 18px; }
  .feature-card p { font-size: 14px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { padding: 32px 22px 22px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 14px; }
  .step-num { font-size: 90px; top: -22px; }
  .steps-connector { display: none; }
  .collections { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .col-body { padding: 16px 18px 18px; }
  .col-body h3 { font-size: 17px; }
  .col-body p { font-size: 13px; margin-bottom: 10px; }
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 60px; }
  .brand-logo { height: 32px; }
  .brand-name { font-size: 16px; letter-spacing: 1.5px; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; background: var(--cream); padding: 20px 24px;
    border-bottom: 1px solid var(--line); gap: 16px;
  }
  .nav.open .btn { display: inline-flex; align-self: flex-start; margin: 0 24px 20px; }
  .hero { padding: 24px 0 56px; }
  .hero-title { font-size: 40px; line-height: 1.05; }
  .hero-sub { font-size: 17px; }
  .hero-desc { font-size: 15px; }
  .hero-art { margin-bottom: 20px; }
  .cta-buttons .btn, .hero-cta .btn { width: 100%; justify-content: center; }
  .footer { padding: 40px 0 32px; }
  .footer-logo { height: 100px; }
  .footer-name { font-size: 18px; letter-spacing: 3px; }
  .lb-thumbs button { flex-basis: 56px; height: 42px; }
  .lb-nav { width: 42px; height: 42px; font-size: 24px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .fab-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}
@media (max-width: 560px) {
  .collections { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .wrap { padding: 0 20px; }
}
