/* TK+ Ecuador — Landing Page
   Editorial Luxury / Dark Wood palette */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0b0906;
  --bg-alt: #131009;
  --surface: #17130d;
  --surface-2: #1d1811;
  --line: rgba(245, 239, 232, 0.09);
  --line-strong: rgba(245, 239, 232, 0.16);
  --text: #f4eee4;
  --text-dim: #cfc3b3;
  --muted: #8f8171;
  /* Acento: verde botánico muestreado de las plantas de la foto "escalera con jardín" */
  --gold: #a6c256;
  --gold-soft: #8aa543;
  --gold-dim: rgba(166, 194, 86, 0.14);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0b0906; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.serif {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: var(--gold-dim);
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-delay-1.visible { transition-delay: .1s; }
.reveal-delay-2.visible { transition-delay: .2s; }
.reveal-delay-3.visible { transition-delay: .3s; }
.reveal-delay-4.visible { transition-delay: .4s; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 6px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: var(--pad) var(--pad) var(--pad) 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .5s var(--ease-soft), background .5s var(--ease-soft), border-color .5s var(--ease-soft);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: #171008;
}
.btn-primary:hover { background: #b6d167; }
.btn-primary .btn-icon { background: rgba(11, 9, 6, 0.14); color: #171008; }

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
  padding: 13px 24px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(244, 238, 228, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .5s var(--ease-soft);
}
.btn:hover .btn-icon { transform: translate(3px, -2px) scale(1.06); }
.btn-icon svg { width: 15px; height: 15px; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 8px 22px;
  border-radius: 100px;
  background: rgba(19, 16, 9, 0.66);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.55);
  transition: background .5s var(--ease-soft), border-color .5s var(--ease-soft);
  max-width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  letter-spacing: 0.01em;
  margin-right: 6px;
}

.nav-logo .mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #171008;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 9px 14px;
  border-radius: 100px;
  transition: color .4s var(--ease-soft), background .4s var(--ease-soft);
}
.nav-links a:hover { color: var(--text); background: rgba(244,238,228,0.06); }

.nav-cta { margin-left: 8px; }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(244,238,228,0.08);
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.nav-burger span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: var(--text);
  transition: transform .5s var(--ease-soft), opacity .3s var(--ease-soft);
}
.nav-burger span:nth-child(1) { transform: translateY(-4px); }
.nav-burger span:nth-child(2) { transform: translateY(4px); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(11,9,6,0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease-soft);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--text-dim);
  padding: 12px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft), color .3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: .05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .25s; }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.09);
  transition: transform 3.5s var(--ease);
}
.hero-media.loaded img,
.hero-media.loaded video { transform: scale(1); }

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,7,5,0.55) 0%, rgba(9,7,5,0.25) 30%, rgba(8,6,4,0.55) 68%, #0b0906 100%),
    linear-gradient(90deg, rgba(8,6,4,0.55) 0%, rgba(8,6,4,0.05) 45%, rgba(8,6,4,0.05) 55%, rgba(8,6,4,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 32px;
  bottom: 90px;
  z-index: 2;
  display: flex;
  gap: 46px;
}
.hero-stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: var(--gold);
  font-weight: 400;
}
.hero-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  left: 32px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: cueMove 2.2s var(--ease) infinite;
}
@keyframes cueMove {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Marquee ---------- */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marqueeScroll 34s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 34px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------- Manifesto (editorial split) ---------- */
.manifesto {
  padding: 160px 0;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.manifesto h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 22px;
}
.manifesto h2 em { color: var(--gold); font-style: italic; }

.manifesto-right { padding-top: 8px; }
.manifesto-right p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 52ch;
}
.manifesto-right p + p { margin-top: 22px; }

.manifesto-signoff {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.manifesto-signoff .initial {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}
.manifesto-signoff .role { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.manifesto-signoff .name { font-size: 14px; font-weight: 600; }

/* ---------- Gallery (asymmetrical bento) ---------- */
.gallery { padding: 40px 0 170px; }
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.gallery-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin-top: 20px;
  max-width: 14ch;
}
.gallery-head p { max-width: 34ch; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--text-dim);
  padding: 10px 20px; border-radius: 100px;
  background: transparent; border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: color .4s var(--ease-soft), background .4s var(--ease-soft), border-color .4s var(--ease-soft);
}
.filter:hover { color: var(--text); border-color: var(--muted); }
.filter.active { background: var(--gold); color: #171008; border-color: var(--gold); }

/* Collection grid */
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.piece {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  isolation: isolate;
}
.piece.hide { display: none; }
.piece img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft);
}
.piece:hover img { transform: scale(1.06); }
.piece figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(0deg, rgba(9,7,5,0.9) 0%, rgba(9,7,5,0.1) 48%, transparent 70%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-soft), transform .5s var(--ease-soft);
}
.piece:hover figcaption { opacity: 1; transform: translateY(0); }
.p-tag {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 6px; display: block;
}
.p-title { font-family: 'Fraunces', serif; font-size: 19px; color: var(--text); line-height: 1.2; }

.col-empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 15px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(6, 4, 3, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease-soft);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-stage {
  max-width: 1000px; width: 100%;
  display: flex; flex-direction: column; gap: 18px;
}
.lb-stage img {
  width: 100%; max-height: 76vh; object-fit: contain;
  border-radius: 14px;
  transform: scale(0.98); opacity: 0;
  transition: transform .5s var(--ease-soft), opacity .5s var(--ease-soft);
}
.lightbox.open .lb-stage img { transform: scale(1); opacity: 1; }
.lb-cap {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
}
.lb-tag {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 6px;
}
.lb-title { font-family: 'Fraunces', serif; font-size: 22px; color: var(--text); display: block; }
.lb-meta { font-size: 13px; color: var(--muted); display: block; margin-top: 4px; }
.lb-count { font-size: 12px; letter-spacing: 0.08em; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.lb-close, .lb-nav {
  position: fixed;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(244,238,228,0.08); border: 1px solid var(--line-strong);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 82;
  transition: background .4s var(--ease-soft), transform .4s var(--ease-soft);
}
.lb-close:hover, .lb-nav:hover { background: rgba(244,238,228,0.16); }
.lb-close { top: 26px; right: 26px; }
.lb-close svg { width: 20px; height: 20px; }
.lb-nav svg { width: 20px; height: 20px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ---------- Process ---------- */
.process { padding: 60px 0 170px; }
.process-head { max-width: 60ch; margin-bottom: 70px; }
.process-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin-top: 20px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.p-step {
  background: var(--bg);
  padding: 42px 30px 38px;
  transition: background .5s var(--ease-soft);
}
.p-step:hover { background: var(--surface); }
.p-step .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 30px;
}
.p-step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 14px;
}
.p-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- Quote ---------- */
.quote-section {
  padding: 60px 0 170px;
}
.quote-box {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
  text-align: center;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 70px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.quote-box p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.4;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--text);
}
.quote-cite {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Contact (split) ---------- */
.contact { padding: 0 0 40px; }
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(155deg, var(--surface) 0%, var(--bg-alt) 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.contact-left { padding: 80px 64px; }
.contact-left h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
  margin-top: 20px;
  max-width: 13ch;
}
.contact-left p {
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 42ch;
}
.contact-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.contact-right {
  padding: 80px 56px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.c-item { display: flex; gap: 18px; align-items: flex-start; }
.c-item .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.c-item .ic svg { width: 17px; height: 17px; }
.c-item .lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.c-item .val { font-size: 15px; font-weight: 500; }
.c-item .val a:hover { color: var(--gold); }

/* ---------- Instagram strip ---------- */
.ig-strip {
  margin-top: 40px;
  padding: 34px 0;
}
.ig-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ig-strip-left { display: flex; align-items: center; gap: 16px; }
.ig-strip-left .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.ig-strip-left .ic svg { width: 19px; height: 19px; }
.ig-strip-left b { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 400; display:block; }
.ig-strip-left span { font-size: 13px; color: var(--muted); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-size: 19px; }
.footer-brand .mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: #171008;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-tag { max-width: 30ch; margin-top: 14px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 8px; }
  .nav-logo { margin-right: 0; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 100px 0; }

  .col-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: 1fr; }

  .contact-panel { grid-template-columns: 1fr; }
  .contact-left { padding: 56px 30px; }
  .contact-right { padding: 40px 30px; border-left: none; border-top: 1px solid var(--line); }

  .hero-stats { position: static; margin-top: 56px; padding: 0 32px; gap: 30px; }
  .hero { flex-direction: column; padding-bottom: 60px; }
  .scroll-cue { display: none; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero h1 { max-width: 100%; }
  .hero-stats { gap: 30px; flex-wrap: wrap; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 40px; }

  .col-grid { grid-template-columns: 1fr; }
  .piece figcaption { opacity: 1; transform: none; }
  .filters { gap: 8px; }
  .filter { padding: 9px 16px; font-size: 12.5px; }
  .lightbox { padding: 16px; }
  .lb-close { top: 14px; right: 14px; width: 46px; height: 46px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-cap { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===================================================================
   Marca + bloques de confianza (v2)
   =================================================================== */

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 40;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0,0,0,0.3);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.6); }
.wa-float:active { transform: scale(0.96); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: 0.55;
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-pulse { animation: none; opacity: 0; } }

/* ---------- Maderas ---------- */
.woods { padding: 40px 0 150px; }
.woods-head { max-width: 62ch; margin-bottom: 60px; }
.woods-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px); margin-top: 20px; letter-spacing: -0.01em;
}
.woods-head p { margin-top: 18px; color: var(--muted); font-size: 15.5px; line-height: 1.7; max-width: 52ch; }
.woods-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.wood {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--surface);
  transition: transform .5s var(--ease-soft), border-color .5s var(--ease-soft);
}
.wood:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.wood .swatch {
  height: 120px; position: relative;
}
.wood .swatch::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(95deg, rgba(0,0,0,0.10) 0 2px, transparent 2px 9px), repeating-linear-gradient(93deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay; opacity: .7;
}
.wood .swatch.teca    { background: linear-gradient(120deg,#c08a4e,#8a5a2e); }
.wood .swatch.guayacan{ background: linear-gradient(120deg,#7f7443,#463f22); }
.wood .swatch.roble   { background: linear-gradient(120deg,#cda874,#a67c46); }
.wood .swatch.laurel  { background: linear-gradient(120deg,#a26a3f,#6f3f22); }
.wood .swatch.chanul  { background: linear-gradient(120deg,#ab5e3f,#723523); }
.wood .w-body { padding: 20px 20px 24px; }
.wood h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 21px; margin-bottom: 8px; }
.wood p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- Testimonios ---------- */
.tst { padding: 40px 0 150px; border-top: 1px solid var(--line); }
.tst-head { text-align: center; max-width: 40ch; margin: 0 auto 62px; }
.tst-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px); margin-top: 18px; letter-spacing: -0.01em;
}
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst-card {
  border: 1px solid var(--line); border-radius: 22px;
  background: var(--surface); padding: 34px 30px 30px;
  display: flex; flex-direction: column; gap: 20px;
}
.tst-stars { display: flex; gap: 4px; color: var(--gold); }
.tst-stars svg { width: 16px; height: 16px; }
.tst-card blockquote {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 19px; line-height: 1.5; color: var(--text);
}
.tst-by { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.tst-by .n { font-size: 14px; font-weight: 600; }
.tst-by .p { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq { padding: 40px 0 150px; }
.faq-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start;
}
.faq-intro h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px); margin-top: 20px; letter-spacing: -0.01em;
}
.faq-intro p { margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 34ch; }
.faq-intro .btn { margin-top: 30px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--text);
  transition: color .35s var(--ease-soft);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item .plus {
  position: relative; width: 18px; height: 18px; flex-shrink: 0;
}
.faq-item .plus::before, .faq-item .plus::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform .4s var(--ease-soft), opacity .4s var(--ease-soft);
}
.faq-item .plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item .plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { overflow: hidden; }
.faq-answer p {
  padding: 0 0 28px; color: var(--text-dim); font-size: 15px; line-height: 1.8; max-width: 56ch;
}
.faq-item[open] summary { color: var(--gold); }

@media (max-width: 980px) {
  .woods-grid { grid-template-columns: repeat(3, 1fr); }
  .tst-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .woods-grid { grid-template-columns: 1fr 1fr; }
  .wa-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}
