/* ============================================================
   SU ARMADOR — style.css
   Editorial Architecture Magazine · Warm Premium Aesthetic
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --walnut:   #6B4F3A;
  --wood:     #A67C52;
  --cream:    #E9DFC8;
  --bone:     #F8F7F4;
  --sand:     #C8B89A;
  --dark:     #1A1512;
  --charcoal: #111111;
  --text:     #2D2420;
  --muted:    #7A6258;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --r:     3px;
  --ease:  0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--bone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- FADE-UP ---------- */
.fu {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fu.vis { opacity: 1; transform: translateY(0); }

/* ---------- SHARED ---------- */
.label-small {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 16px;
}
.label-small--light { color: var(--cream); opacity: 0.65; }

/* CTAs */
.cta-prim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  background: var(--walnut);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--r);
  transition: background var(--ease), transform var(--ease);
}
.cta-prim:hover { background: var(--dark); transform: translateY(-2px); }
.cta-prim--dark  { background: var(--dark); }
.cta-prim--dark:hover { background: var(--walnut); }
.cta-prim--light { background: var(--cream); color: var(--dark); }
.cta-prim--light:hover { background: #fff; transform: translateY(-2px); }

.cta-sec {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color var(--ease), border-color var(--ease);
}
.cta-sec:hover { color: var(--cream); border-color: rgba(255,255,255,0.65); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(233,223,200,0.3);
  border-radius: var(--r);
  transition: background var(--ease), border-color var(--ease);
}
.cta-ghost:hover { background: rgba(233,223,200,0.1); border-color: rgba(233,223,200,0.6); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(248,247,244,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(107,79,58,0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
}

/* Phone — left */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  transition: color var(--ease);
}
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-phone:hover { color: #fff; }
.nav.scrolled .nav-phone { color: var(--text); }
.nav.scrolled .nav-phone:hover { color: var(--walnut); }

/* Logo — center */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  justify-self: center;
}
.nav-logo-sa {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.95);
  line-height: 1;
  transition: color var(--ease);
}
.nav-logo-name {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color var(--ease);
}
.nav.scrolled .nav-logo-sa   { color: var(--walnut); }
.nav.scrolled .nav-logo-name { color: var(--muted); }

/* WA button — right */
.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 9px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.nav-wa svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-wa:hover { background: rgba(255,255,255,0.2); color: #fff; }
.nav.scrolled .nav-wa { background: var(--walnut); border-color: var(--walnut); color: var(--cream); }
.nav.scrolled .nav-wa:hover { background: var(--dark); border-color: var(--dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  justify-self: end;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.88);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--text); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 20px 24px;
  background: rgba(248,247,244,0.98);
  backdrop-filter: blur(14px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(107,79,58,0.1);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--walnut); }
.nav-mobile a:last-child { border-bottom: none; color: var(--walnut); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,10,7,0.88) 0%,
    rgba(14,10,7,0.42) 45%,
    rgba(14,10,7,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(233,223,200,0.65);
}
.hero-line {
  display: inline-block;
  width: 44px; height: 1px;
  background: rgba(233,223,200,0.45);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 600;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 22px;
  max-width: 720px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 34px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-badges span {
  padding: 5px 12px;
  border: 1px solid rgba(233,223,200,0.2);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.55);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  animation: scrollBob 2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 18px; height: 18px; }
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   MANIFIESTO
   ============================================================ */
.manifiesto {
  background: var(--cream);
  padding: 112px 40px;
}
.manifiesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mani-sup {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 0.6;
  margin-bottom: 36px;
}
.mani-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 30px;
  quotes: none;
}
.mani-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 38px;
}
.mani-line {
  width: 48px; height: 1px;
  background: var(--walnut);
  opacity: 0.35;
  margin: 0 auto;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios {
  background: var(--bone);
  padding: 112px 40px;
}
.serv-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 88px;
  align-items: start;
}

.serv-header {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
}
.serv-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.serv-header p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}

.serv-list { border-top: 1px solid rgba(107,79,58,0.13); }

.serv-row {
  display: grid;
  grid-template-columns: 50px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 22px 8px 22px 0;
  border-bottom: 1px solid rgba(107,79,58,0.13);
  transition: background var(--ease);
  border-radius: var(--r);
}
.serv-row:hover { background: rgba(107,79,58,0.04); }

.sr-num {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  color: var(--walnut);
  opacity: 0.55;
  letter-spacing: 0.06em;
  padding-top: 1px;
}
.sr-body { display: flex; flex-direction: column; gap: 4px; }
.sr-name { font-size: 15px; font-weight: 600; color: var(--dark); letter-spacing: 0.01em; }
.sr-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

.sr-arrow {
  font-size: 17px;
  color: var(--walnut);
  opacity: 0;
  transition: opacity var(--ease), transform var(--ease);
}
.serv-row:hover .sr-arrow { opacity: 1; transform: translateX(4px); }

/* ============================================================
   EDITORIAL SECTIONS (COCINAS / PLACARES)
   ============================================================ */
.editorial-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}

/* img-right: image goes to right column, content to left */
.editorial-sec--img-right .ed-img    { order: 2; }
.editorial-sec--img-right .ed-content { order: 1; }

.ed-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.ed-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.editorial-sec:hover .ed-img img { transform: scale(1.04); }

.ed-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--bone);
}
.editorial-sec--img-left .ed-content { background: var(--cream); }

.ed-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 18px;
}
.ed-content p {
  font-size: 14px;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 380px;
}
.ed-list { margin-bottom: 32px; }
.ed-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid rgba(107,79,58,0.1);
  line-height: 1.5;
}
.ed-list li::before { content: '—'; color: var(--walnut); font-size: 12px; flex-shrink: 0; }
.ed-list li:last-child { border-bottom: none; }

/* ============================================================
   CTA MID
   ============================================================ */
.cta-mid {
  background: var(--dark);
  padding: 112px 40px;
}
.cta-mid-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-mid-sup {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood);
  opacity: 0.85;
  margin-bottom: 18px;
}
.cta-mid h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 38px;
}
.cta-mid-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   CORPORATIVO
   ============================================================ */
.corporativo {
  background: var(--charcoal);
  padding: 112px 40px;
}
.corp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.corp-content .label-small { margin-bottom: 12px; }
.corp-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 20px;
}
.corp-content p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(233,223,200,0.6);
  margin-bottom: 32px;
}

.corp-imgs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.corp-img-big, .corp-img-sm {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
}
.corp-img-big { height: 340px; }
.corp-img-sm  { height: 180px; }
.corp-img-big img, .corp-img-sm img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.corp-img-big:hover img, .corp-img-sm:hover img { transform: scale(1.06); }

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria {
  background: var(--bone);
  padding: 112px 40px;
}
.gal-header {
  max-width: 1200px;
  margin: 0 auto 52px;
}
.gal-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}

.gal-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 10px;
}

.gi {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  border-radius: var(--r);
}
.gi-tall { grid-row: 1 / 3; }
.gi-wide { grid-column: 2 / 4; }

.gi img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.gi:hover img { transform: scale(1.07); }

.gi-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(14,10,7,0.72));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gi:hover .gi-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,6,5,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r);
}
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  padding: 8px;
  transition: color var(--ease);
}
.lb-close:hover { color: #fff; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 42px;
  padding: 12px 18px;
  transition: color var(--ease);
}
.lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

/* ============================================================
   PROCESO
   ============================================================ */
.proceso {
  background: var(--cream);
  padding: 112px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

/* Override: section needs full-bleed background */
.proceso {
  max-width: 100%;
}
.proceso-inner {
  max-width: 640px;
}

.proc-header { margin-bottom: 52px; }
.proc-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}

.proc-steps { border-top: 1px solid rgba(107,79,58,0.15); }

.proc-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(107,79,58,0.15);
}
.ps-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--walnut);
  opacity: 0.45;
  padding-top: 3px;
  letter-spacing: 0.05em;
}
.ps-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.ps-body p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.proceso-img {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  overflow: hidden;
  border-radius: var(--r);
  height: 580px;
  align-self: start;
}
.proceso-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   BENEFICIOS
   ============================================================ */
.beneficios {
  background: var(--bone);
  padding: 112px 40px;
}
.ben-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ben-header { margin-bottom: 56px; }
.ben-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}

.ben-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(107,79,58,0.13);
}
.ben-item {
  display: flex;
  gap: 18px;
  padding: 30px 32px 30px 0;
  border-bottom: 1px solid rgba(107,79,58,0.13);
}
.ben-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid rgba(107,79,58,0.13);
}
.ben-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--walnut);
  flex-shrink: 0;
  padding-top: 2px;
}
.ben-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.ben-item p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   REDES
   ============================================================ */
.redes {
  background: var(--dark);
  padding: 112px 40px;
}
.redes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.redes-inner > .label-small { color: var(--wood); opacity: 0.75; }
.redes-inner > h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 12px;
}
.redes-inner > p {
  font-size: 14px;
  color: rgba(233,223,200,0.5);
  margin-bottom: 52px;
}

.redes-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.red-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 32px;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 240px;
  transition: transform var(--ease);
}
.red-card:hover { transform: translateY(-4px); }

.rc-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.32) saturate(0.5);
  transition: transform 0.7s ease;
}
.red-card:hover .rc-bg { transform: scale(1.07); }
.red-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,5,0.88) 0%, rgba(8,6,5,0.2) 100%);
}

.rc-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-icon svg { width: 20px; height: 20px; color: #fff; }
.rc-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rc-platform {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.rc-handle {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.rc-cta {
  font-size: 12px;
  color: var(--cream);
  opacity: 0.65;
}
.red-card--ig .rc-icon { background: rgba(180,60,200,0.28); }
.red-card--tt .rc-icon { background: rgba(0,210,210,0.18); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bone);
  padding: 112px 40px;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-header { margin-bottom: 52px; }
.faq-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}

.faq-list { border-top: 1px solid rgba(107,79,58,0.13); }
.faq-item { border-bottom: 1px solid rgba(107,79,58,0.13); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--walnut); }

.fq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--walnut);
  opacity: 0.55;
  transition: transform 0.35s ease;
}
.faq-item.open .fq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding-bottom: 22px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  padding: 148px 40px;
  text-align: center;
  overflow: hidden;
}
.cf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cf-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cf-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,10,7,0.9) 0%, rgba(107,79,58,0.62) 100%);
}

.cf-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cf-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
}
.cf-title em { font-style: italic; color: var(--cream); }

.cf-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.cf-phone {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 38px;
  transition: opacity var(--ease);
}
.cf-phone:hover { opacity: 0.8; }
.cf-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(233,223,200,0.08);
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ft-sa {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cream);
  line-height: 1;
}
.ft-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.07em;
  line-height: 1.3;
}
.ft-tagline {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233,223,200,0.35);
  line-height: 1.4;
}

.ft-brand p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(233,223,200,0.45);
  max-width: 310px;
  margin-bottom: 24px;
}

.ft-social {
  display: flex;
  gap: 10px;
}
.ft-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233,223,200,0.12);
  border-radius: 50%;
  color: rgba(233,223,200,0.45);
  transition: color var(--ease), border-color var(--ease);
}
.ft-social a:hover { color: var(--cream); border-color: rgba(233,223,200,0.4); }
.ft-social svg { width: 15px; height: 15px; }

.ft-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-content: start;
}
.ft-links h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
  opacity: 0.6;
  margin-bottom: 18px;
}
.ft-links a {
  display: block;
  font-size: 13px;
  color: rgba(233,223,200,0.45);
  margin-bottom: 11px;
  transition: color var(--ease);
}
.ft-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 11px;
  color: rgba(233,223,200,0.28);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--wood); opacity: 0.55; transition: opacity var(--ease); }
.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.38);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.52); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .serv-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .serv-header { position: static; }

  .editorial-sec {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .editorial-sec--img-right .ed-img,
  .editorial-sec--img-right .ed-content { order: unset; }
  .ed-img { min-height: 380px; }
  .ed-content { padding: 56px 40px; }

  .corp-inner { grid-template-columns: 1fr; gap: 48px; }
  .corp-imgs { flex-direction: row; }
  .corp-img-big { flex: 2; height: 280px; }
  .corp-img-sm  { flex: 1; height: 280px; }

  .proceso {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .proceso-img {
    position: static;
    height: 360px;
    border-radius: var(--r);
  }

  .redes-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .ft-links { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-inner {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-phone, .nav-wa { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { padding: 0 20px 20px; }

  .hero-content { padding: 0 20px; }
  .hero-ctas { gap: 14px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.4rem); }

  .manifiesto { padding: 80px 20px; }
  .servicios  { padding: 80px 20px; }
  .cta-mid    { padding: 80px 20px; }
  .corporativo{ padding: 80px 20px; }
  .galeria    { padding: 80px 20px; }
  .proceso    { padding: 80px 20px; }
  .beneficios { padding: 80px 20px; }
  .redes      { padding: 80px 20px; }
  .faq        { padding: 80px 20px; }
  .cta-final  { padding: 100px 20px; }
  .footer     { padding: 60px 20px 0; }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .gi-tall { grid-row: 1; }
  .gi-wide { grid-column: 1 / 3; }

  .ben-cols { grid-template-columns: 1fr; }
  .ben-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .corp-imgs { flex-direction: column; }
  .corp-img-big { height: 260px; }
  .corp-img-sm  { height: 160px; }

  .cta-final { text-align: center; }
  .cf-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-ctas   { flex-direction: column; align-items: flex-start; }
  .hero-badges { display: none; }

  .gal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .gi-tall { grid-row: auto; }
  .gi-wide { grid-column: 1; }

  .redes-cards { gap: 12px; }
  .red-card { min-height: 200px; padding: 24px; }

  .cta-mid-btns { flex-direction: column; align-items: center; }
  .ft-links { grid-template-columns: 1fr; gap: 28px; }
}
