@font-face {
  font-family: 'Nexa';
  src: url('fonts/NexaLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Tipografía */
  --font-ui: 'Nexa', 'Montserrat', sans-serif;  /* rótulos, nav, botones */

  /* Paleta "Ton" — neutros cálidos beige */
  --gold: #B29079;        /* Brandy Rose — acento principal */
  --gold-light: #C9A98E;  /* Brandy claro — acento suave */
  --black: #3B2F26;       /* Espresso — texto/títulos primarios */
  --off-black: #E1DACA;   /* Chalk Beige — paneles claros (antes fondo oscuro) */
  --dark: #5A4B3E;        /* Marrón medio */
  --mid: #6E5F50;         /* Marrón intermedio */
  --muted: #7A6B5B;       /* Taupe — texto secundario */
  --light: #DAD0BF;       /* Beige — bordes y divisores */
  --cream: #EFE7DA;       /* Peach Cream — fondo cálido */
  --white: #F6F5EC;       /* White Beige — fondo base */
}

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

/* Nexa Light — capa de microtipografía en mayúsculas (rótulos, nav, botones) */
.hero-eyebrow, .sec-label, .nav-link, .nav-cta, .btn-primary, .btn-secondary,
.scroll-text, .strip-item, .stat-label, .svc-tag, .exp-label, .case-cat,
.testi-role, .member-role, .cta-eyebrow, .cta-main, .cta-ghost, .about-pill,
.rubros-label, .footer-p, .footer-ig, .hero-caption-label {
  font-family: var(--font-ui);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
}

/* ─── NAV ─────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  background: rgba(246, 245, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(178, 144, 121, 0.2);
  transition: padding 0.4s ease;
}
#nav.scrolled { padding: 18px 60px; }
.nav-logo {
  display: inline-flex; align-items: center;
  color: var(--black); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-logo:hover { color: var(--gold); }

/* Logo Dynamis */
.logo-mark { display: block; width: auto; }
.nav-logo .logo-mark { height: 40px; transition: opacity 0.3s ease; }
.nav-logo:hover .logo-mark { opacity: 0.6; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-link {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 0.5px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--black); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); background: var(--black);
  padding: 10px 22px; text-decoration: none;
  border: 0.5px solid var(--black);
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }

/* Hamburger toggle (móvil) */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--black); transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 80px 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 0.5px; background: var(--gold);
}
.hero-h1 {
  font-family: 'Varela', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300; line-height: 1.05;
  color: var(--black); margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-p {
  font-size: 14.5px; line-height: 2; color: var(--muted);
  max-width: 400px; margin-bottom: 48px; font-weight: 300;
}
.hero-actions { display: flex; gap: 24px; align-items: center; }
.btn-primary {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 36px; background: var(--black); color: var(--white);
  border: 0.5px solid var(--black); text-decoration: none;
  transition: all 0.3s ease; display: inline-block;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-secondary {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: all 0.3s ease; padding-bottom: 2px;
}
.btn-secondary:hover { color: var(--black); border-color: var(--black); }

.hero-right {
  background: var(--off-black);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
/* Slideshow del hero — 3 fotos al azar con fade lento */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 22%;
  opacity: 0; transition: opacity 2.5s ease-in-out;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
.hero-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28,21,15,0.9) 0%, rgba(28,21,15,0.55) 32%, rgba(28,21,15,0.12) 56%, transparent 72%);
}
.hero-lines-deco {
  position: absolute; top: 60px; right: 60px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.hero-line-deco { height: 0.5px; background: rgba(178,144,121,0.3); }
.hero-caption {
  padding: 52px 56px; position: relative; z-index: 2;
  border-top: 0.5px solid rgba(178,144,121,0.25); width: 100%;
}
.hero-caption-label {
  font-size: 12px; letter-spacing: 4px; color: var(--gold-light);
  text-transform: uppercase; margin-bottom: 12px;
}
.hero-caption-text {
  font-family: 'Varela', serif;
  font-size: 31px; font-weight: 300; color: var(--white); line-height: 1.25;
}
.hero-caption-text em { font-style: italic; color: var(--gold-light); }
.hero-caption-bio {
  font-size: 13.5px; line-height: 1.7; color: rgba(246,245,236,0.72);
  font-weight: 300; max-width: 460px; margin-top: 16px;
}
.hero-caption-ig {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(246,245,236,0.82); text-decoration: none;
  font-family: var(--font-ui); transition: color 0.3s ease;
}
.hero-caption-ig:hover { color: var(--gold-light); }
.hero-number {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Varela', serif;
  font-size: 200px; font-weight: 300;
  color: rgba(178,144,121,0.04); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
  will-change: transform;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-line {
  width: 40px; height: 0.5px; background: var(--muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; } 100% { left: 100%; }
}
.scroll-text { font-size: 10.5px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }

/* ─── STRIP (ticker) ──────────────────────────── */
.strip {
  background: #2A211A;   /* espresso más oscuro — se conecta con el hero */
  display: flex; overflow: hidden;
  border-bottom: 0.5px solid rgba(178,144,121,0.25);
}
.strip-track {
  display: flex; gap: 0;
  animation: stripScroll 48s linear infinite;
  white-space: nowrap;
}
.strip-item {
  padding: 24px 52px;
  font-size: 14px; font-weight: 300; letter-spacing: 5px;
  color: rgba(246,245,236,0.72);
  text-transform: uppercase; border-right: 0.5px solid rgba(246,245,236,0.1);
  display: flex; align-items: center; gap: 18px; flex-shrink: 0;
}
.strip-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STATS ───────────────────────────────────── */
.stats {
  background: var(--off-black);
  padding: 80px 60px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center; padding: 20px 30px;
  border-right: 0.5px solid rgba(178,144,121,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Varela', serif;
  font-size: 64px; font-weight: 300; line-height: 1;
  color: var(--gold); margin-bottom: 14px;
}
.stat-label {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
}

/* ─── SECTIONS BASE ───────────────────────────── */
section { padding: 120px 60px; }
.sec-label {
  font-size: 10.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.sec-label::before {
  content: ''; display: block;
  width: 30px; height: 0.5px; background: var(--gold);
}

/* ─── ABOUT ───────────────────────────────────── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  border: 0.5px solid var(--light);
}
.about-content .sec-label { margin-bottom: 22px; }
.about-h2 {
  font-family: 'Varela', serif;
  font-size: 42px; font-weight: 300; line-height: 1.1;
  color: var(--black); margin-bottom: 24px;
}
.about-h2 em { font-style: italic; color: var(--gold); }
.about-p {
  font-size: 14.5px; line-height: 2.1; color: var(--muted);
  font-weight: 300; margin-bottom: 16px;
}
.about-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.about-pill {
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 16px; border: 0.5px solid rgba(178,144,121,0.4);
  color: var(--muted);
}

/* ─── SERVICES ────────────────────────────────── */
.services { background: var(--white); }
.services-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.services-h {
  font-family: 'Varela', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1; color: var(--black);
}
.services-h em { font-style: italic; color: var(--gold); }
.services-count {
  font-family: 'Varela', serif;
  font-size: 72px; font-weight: 300; color: rgba(178,144,121,0.15); line-height: 1;
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc-card {
  padding: 40px 36px 36px;
  border: 0.5px solid var(--light);
  position: relative; overflow: hidden;
  transition: background 0.4s ease;
  cursor: none;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 0.5px; background: var(--gold);
  transition: width 0.5s ease;
}
.svc-card:hover { background: var(--cream); }
.svc-card:hover::before { width: 100%; }
.svc-icon { color: var(--gold); margin-bottom: 18px; }
.svc-icon svg { width: 38px; height: 38px; display: block; }
.svc-card.featured .svc-icon { color: var(--white); }
.svc-n { display: none; }
.svc-title {
  font-family: 'Varela', serif;
  font-size: 24px; font-weight: 400; color: var(--black);
  margin-bottom: 12px; line-height: 1.2;
}
.svc-p { font-size: 13.5px; line-height: 1.9; color: var(--muted); font-weight: 300; }
.svc-tag {
  display: inline-block; margin-top: 20px;
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border-bottom: 0.5px solid rgba(178,144,121,0.4);
  padding-bottom: 2px;
}
.svc-card.featured {
  background: var(--gold); grid-column: span 1;
  border-color: var(--gold);
}
.svc-card.featured .svc-n { color: var(--white); }
.svc-card.featured .svc-title { color: var(--white); }
.svc-card.featured .svc-p { color: rgba(255,255,255,0.78); }
.svc-card.featured .svc-tag { color: var(--white); border-bottom-color: rgba(255,255,255,0.5); }
.svc-card.featured::before { background: var(--white); }
.svc-card.featured:hover { background: var(--gold-light); }

/* ─── EXPERIENCE ──────────────────────────────── */
.experience-section {
  background: var(--off-black);
  padding: 120px 60px;
  position: relative; overflow: hidden;
}
.exp-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Varela', serif;
  font-size: 220px; font-weight: 300;
  color: rgba(178,144,121,0.03); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: 20px;
  will-change: transform;
}
.exp-inner { position: relative; z-index: 2; }
.exp-top { text-align: center; margin-bottom: 80px; }
.exp-label {
  font-size: 10.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.exp-h {
  font-family: 'Varela', serif;
  font-size: 54px; font-weight: 300; line-height: 1.1;
  color: var(--black); margin-bottom: 16px;
}
.exp-h em { font-style: italic; color: var(--gold); }
.exp-p { font-size: 14.5px; line-height: 2; color: var(--muted); font-weight: 300; max-width: 440px; margin: 0 auto; }
.exp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 0.5px solid rgba(178,144,121,0.2); }
.exp-step {
  padding: 40px 30px;
  border-right: 0.5px solid rgba(178,144,121,0.15);
  transition: background 0.3s ease;
}
.exp-step:last-child { border-right: none; }
.exp-step:hover { background: rgba(178,144,121,0.04); }
.exp-step-icon { color: var(--gold); margin-bottom: 20px; }
.exp-step-icon svg { width: 46px; height: 46px; display: block; }
.exp-step-n {
  font-family: 'Varela', serif;
  font-size: 40px; font-weight: 300;
  color: rgba(178,144,121,0.28); line-height: 1; margin-bottom: 16px;
}
.exp-step-t {
  font-size: 15.5px; font-weight: 400; color: var(--black);
  margin-bottom: 10px; letter-spacing: 0.5px;
}
.exp-step-p { font-size: 13.5px; line-height: 1.85; color: var(--muted); font-weight: 300; }
.exp-cta { text-align: center; margin-top: 56px; }

/* ─── PORTFOLIO ───────────────────────────────── */
.portfolio { background: var(--white); }
.portfolio-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 60px; flex-wrap: wrap;
}
.portfolio-h {
  font-family: 'Varela', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1; color: var(--black);
}
.portfolio-h em { font-style: italic; color: var(--gold); }
.portfolio-sub {
  font-size: 13.5px; line-height: 1.9; color: var(--muted);
  font-weight: 300; max-width: 320px;
}
.portfolio-sub em { color: var(--gold); font-style: italic; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.case {
  border: 0.5px solid var(--light); overflow: hidden;
  transition: transform 0.4s ease; cursor: none;
}
.case:hover { transform: translateY(-4px); }
.case-img {
  height: 468px; background: var(--off-black);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.case-img::before {
  content: attr(data-initials);
  font-family: 'Varela', serif;
  font-size: 114px; font-weight: 300; color: rgba(178,144,121,0.55);
  transition: transform 0.5s ease;
}
.case-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(178,144,121,0.12) 0%, transparent 65%);
}
.case:hover .case-img::before { transform: scale(1.12); }
.case-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
}
.case:hover .case-photo { transform: scale(1.05); }
.case-cat {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light);
  border: 0.5px solid rgba(178,144,121,0.4);
  padding: 5px 10px;
}
.case-info { padding: 22px 20px; border-top: 0.5px solid var(--light); }
.case-title {
  font-family: 'Varela', serif;
  font-size: 22px; font-weight: 400; color: var(--black); margin-bottom: 8px;
}
.case-desc { font-size: 13px; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* ─── TEAM (oculto a pedido) ──────────────────── */
.team { display: none; }
.team { background: var(--cream); }
.team-top { margin-bottom: 60px; }
.team-h {
  font-family: 'Varela', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1; color: var(--black);
}
.team-h em { font-style: italic; color: var(--gold); }
.team-sub {
  font-size: 13.5px; color: var(--muted); font-weight: 300;
  margin-top: 12px; line-height: 1.9; max-width: 520px;
}
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member-card {
  background: var(--white); border: 0.5px solid var(--light);
  overflow: hidden; transition: transform 0.4s ease;
}
.member-card:hover { transform: translateY(-4px); }
.member-avatar {
  height: 364px; background: var(--off-black);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.member-avatar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(178,144,121,0.08) 0%, transparent 70%);
}
.member-initials {
  font-family: 'Varela', serif;
  font-size: 68px; font-weight: 300; color: rgba(178,144,121,0.6);
  position: relative; z-index: 1;
}
.member-info { padding: 20px; border-top: 0.5px solid var(--light); }
.member-name { font-size: 15.5px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.member-role { font-size: 10.5px; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; }

/* ─── MOMENTOS / GALERÍA ──────────────────────── */
.gallery { background: var(--cream); }
.gallery-top { margin-bottom: 56px; max-width: 620px; }
.gallery-h {
  font-family: 'Varela', serif;
  font-size: 48px; font-weight: 300; line-height: 1.1; color: var(--black);
}
.gallery-h em { font-style: italic; color: var(--gold); }
.gallery-sub {
  font-size: 13.5px; color: var(--muted); font-weight: 300;
  margin-top: 14px; line-height: 1.9;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px; gap: 16px;
}
.gallery-item {
  overflow: hidden; border: 0.5px solid var(--light);
  position: relative; margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.g-big  { grid-column: 1 / span 2; grid-row: 1 / span 2; }  /* foto grupal (apaisada) */
.g-tall { grid-column: 3;          grid-row: 1 / span 2; }  /* retrato (vertical) */
.g-c    { grid-column: 1;          grid-row: 3; }
.g-d    { grid-column: 2;          grid-row: 3; }
.g-wide { grid-column: 3;          grid-row: 3; }

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--white); }
.testi-top { margin-bottom: 56px; }
.testi-h {
  font-family: 'Varela', serif;
  font-size: 44px; font-weight: 300; line-height: 1.1; color: var(--black);
}
.testi-h em { font-style: italic; color: var(--gold); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--cream); border: 0.5px solid var(--light);
  padding: 40px 34px; position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Varela', serif;
  font-size: 80px; color: rgba(178,144,121,0.2);
  position: absolute; top: 6px; left: 22px; line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(178,144,121,0.4); }
.testi-quote {
  font-family: 'Varela', serif;
  font-size: 20px; font-weight: 300; font-style: italic;
  line-height: 1.5; color: var(--dark);
  margin: 24px 0 28px; position: relative; z-index: 1;
}
.testi-author { display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-size: 14.5px; font-weight: 500; color: var(--black); }
.testi-role { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.testi-note {
  font-size: 12.5px; color: var(--muted); font-style: italic;
  text-align: center; margin-top: 40px;
}

/* ─── RUBROS ──────────────────────────────────── */
.rubros {
  padding: 60px;
  border-top: 0.5px solid var(--light);
  border-bottom: 0.5px solid var(--light);
  background: var(--white);
}
.rubros-label {
  font-size: 10.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 28px;
}
.rubros-row {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.rubro-item {
  padding: 0 32px;
  font-family: 'Varela', serif;
  font-size: 22px; font-weight: 300; color: var(--black);
  border-right: 0.5px solid var(--light);
  white-space: nowrap; line-height: 1;
}
.rubro-item:last-child { border-right: none; }
.rubro-item em { font-style: italic; color: var(--gold); }

/* ─── FAQ ─────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-top { margin-bottom: 48px; text-align: center; }
.faq .sec-label { justify-content: center; }
.faq-h {
  font-family: 'Varela', serif;
  font-size: 44px; font-weight: 300; line-height: 1.1; color: var(--black);
}
.faq-h em { font-style: italic; color: var(--gold); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid var(--light); }
.faq-q {
  width: 100%; background: none; border: none; cursor: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; text-align: left;
  font-family: 'Varela', serif;
  font-size: 22px; font-weight: 400; color: var(--black);
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  position: relative; flex-shrink: 0;
  width: 16px; height: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold);
  top: 50%; left: 50%; transition: transform 0.3s ease;
}
.faq-icon::before { width: 16px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-a p {
  font-size: 14.5px; line-height: 2; color: var(--muted);
  font-weight: 300; padding-bottom: 26px; max-width: 680px;
}

/* ─── CTA ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(rgba(33,25,19,0.84), rgba(33,25,19,0.92)), url("images/evento-4.jpg") center / cover no-repeat;
  padding: 140px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 0.5px solid rgba(201,169,142,0.14);
  border-radius: 50%;
  animation: ctaPulse 6s ease-in-out infinite;
}
.cta-bg2 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border: 0.5px solid rgba(201,169,142,0.22);
  border-radius: 50%;
  animation: ctaPulse 6s ease-in-out infinite 1s;
}
@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
  font-size: 10.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: block;
}
.cta-h {
  font-family: 'Varela', serif;
  font-size: 56px; font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.cta-h em { font-style: italic; color: var(--gold-light); }
.cta-p {
  font-size: 14.5px; line-height: 2; color: rgba(246,245,236,0.6);
  font-weight: 300; max-width: 380px; margin: 0 auto 48px;
}
.cta-btns { display: flex; gap: 20px; justify-content: center; align-items: center; }
.cta-main {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 40px; background: var(--gold); color: var(--white);
  border: 0.5px solid var(--gold); text-decoration: none;
  transition: all 0.3s ease;
}
.cta-main:hover { background: transparent; color: var(--gold); }
.cta-ghost {
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(246,245,236,0.7); text-decoration: none;
  border-bottom: 0.5px solid rgba(246,245,236,0.3);
  padding-bottom: 2px; transition: all 0.3s ease;
}
.cta-ghost:hover { color: var(--white); border-color: var(--white); }

/* ─── FOOTER ──────────────────────────────────── */
.site-footer {
  background: #211913;   /* espresso muy oscuro */
  color: rgba(246,245,236,0.7);
  padding: 84px 60px 36px;
  border-top: 0.5px solid rgba(201,169,142,0.18);
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1180px; margin: 0 auto 56px;
}
.footer-brand { max-width: 330px; }
.footer-logo-img { height: 42px; width: auto; display: block; margin-bottom: 22px; }
.footer-tagline {
  font-size: 13px; line-height: 1.85; color: rgba(246,245,236,0.5);
  font-weight: 300; margin-bottom: 26px;
}
.footer-ig {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(246,245,236,0.85); text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-ig:hover { color: var(--gold); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-h {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  font-size: 13.5px; color: rgba(246,245,236,0.6);
  text-decoration: none; padding: 7px 0; font-weight: 300;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding-top: 28px; border-top: 0.5px solid rgba(246,245,236,0.1);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; letter-spacing: 0.5px; color: rgba(246,245,236,0.42); }
.footer-credit {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,169,142,0.7);
}

/* ─── PÁGINAS LEGALES ─────────────────────────── */
.legal { max-width: 860px; margin: 0 auto; padding: 170px 60px 110px; }
.legal-head { margin-bottom: 52px; padding-bottom: 38px; border-bottom: 0.5px solid var(--light); }
.legal-title {
  font-family: 'Varela', serif; font-size: 48px; font-weight: 300;
  color: var(--black); line-height: 1.1; margin: 14px 0 16px;
}
.legal-updated { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.legal-body h2 {
  font-family: 'Varela', serif; font-size: 24px; font-weight: 400;
  color: var(--black); margin: 46px 0 14px;
}
.legal-body h3 { font-size: 15px; font-weight: 600; color: var(--black); margin: 26px 0 8px; }
.legal-body p, .legal-body li { font-size: 14.5px; line-height: 1.95; color: var(--mid); font-weight: 300; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 18px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--gold); text-decoration: underline; }
.legal-body strong { color: var(--black); font-weight: 600; }
.legal-contact {
  margin-top: 46px; padding: 28px 32px;
  background: var(--cream); border: 0.5px solid var(--light);
}
.legal-contact p { margin-bottom: 6px; }
@media (max-width: 900px) {
  .legal { padding: 120px 28px 76px; }
  .legal-title { font-size: 34px; }
}

/* ─── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(178,144,121,0.35);
  opacity: 0; transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.wa-float.visible { opacity: 1; transform: translateY(0) scale(1); }
.wa-float:hover { background: var(--gold-light); transform: translateY(-3px) scale(1.05); }

/* ─── ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeInUp 0.8s ease 0.2s both; }
.hero-h1 { animation: fadeInUp 0.8s ease 0.4s both; }
.hero-p { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-actions { animation: fadeInUp 0.8s ease 0.8s both; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  #nav { padding: 20px 28px; }
  #nav.scrolled { padding: 14px 28px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 60px;
    background: rgba(246, 245, 236, 0.98);
    backdrop-filter: blur(16px);
    border-left: 0.5px solid rgba(178,144,121,0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 13.5px; }
  .nav-cta { font-size: 13.5px; padding: 12px 26px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: auto;
    padding-top: 90px;
  }
  .hero-left { padding: 60px 28px 40px; }
  .hero-right { min-height: 60vh; }
  .scroll-indicator { display: none; }

  section { padding: 80px 28px; }
  .experience-section { padding: 80px 28px; }
  .cta-section { padding: 90px 28px; }
  .rubros { padding: 48px 28px; }

  .stats { padding: 56px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat-num { font-size: 52px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-left-num { font-size: 90px; margin-top: 0; }
  .about-h2 { font-size: 34px; }

  .services-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-h, .portfolio-h, .team-h, .testi-h, .faq-h { font-size: 34px; }
  .services-count { font-size: 56px; }
  .svc-grid { grid-template-columns: 1fr; }

  .exp-h { font-size: 38px; }
  .exp-bg-text { font-size: 120px; letter-spacing: 10px; }
  .exp-steps { grid-template-columns: 1fr 1fr; }
  .exp-step:nth-child(2) { border-right: none; }
  .exp-step:nth-child(1), .exp-step:nth-child(2) { border-bottom: 0.5px solid rgba(178,144,121,0.15); }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .gallery-h { font-size: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-tall, .g-big, .g-c, .g-d, .g-wide { grid-column: auto; grid-row: auto; }
  .g-big { grid-column: span 2; grid-row: span 2; }
  .g-wide { grid-column: span 2; }

  .cta-h { font-size: 38px; }
  .cta-bg { width: 380px; height: 380px; }
  .cta-bg2 { width: 260px; height: 260px; }

  .site-footer { padding: 64px 28px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; max-width: 360px; margin-bottom: 8px; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-caption { padding: 28px; }
  .hero-number { font-size: 140px; }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat { border-right: none; border-bottom: 0.5px solid rgba(178,144,121,0.12); padding-bottom: 32px; }
  .stat:last-child { border-bottom: none; }

  .exp-steps { grid-template-columns: 1fr; }
  .exp-step { border-right: none; border-bottom: 0.5px solid rgba(178,144,121,0.15); }
  .exp-step:last-child { border-bottom: none; }

  .portfolio-grid, .team-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-big { grid-column: auto; grid-row: span 2; }
  .g-wide { grid-column: auto; }

  .rubros-row { flex-direction: column; gap: 14px; }
  .rubro-item { border-right: none; padding: 0; }

  .cta-btns { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* ─── TOUCH: desactivar cursor custom ─────────── */
@media (hover: none), (pointer: coarse) {
  body, .svc-card, .case, .faq-q { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ─── ACCESIBILIDAD: reduce motion ────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .strip-track { animation: none; }
}

/* Focus visible para navegación por teclado */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
