@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap");

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --morado-inst: #3f245f;
  --morado-med: #6d4b8e;
  --lila: #b79acf;
  --lavanda: #e9dff1;
  --oro: #c89b4b;
  --oro-suave: #d8b97a;
  --beige: #f5f1eb;
  --gris: #5b5661;
  --humo: #fcfaf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --maxw: 1240px;
  --r: 18px;
  --shadow: 0 18px 50px -28px rgba(255, 0, 106, .35);
  --shadow-soft: 0 10px 30px -20px rgba(63, 36, 95, .3);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--gris);
  background: var(--beige);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--oro);
  color: var(--humo);
}

/* ─── Typography ────────────────────────────────────────────── */
h2 {
  font-family: "Handgone", var(--serif);
  font-weight: lighter;
}

h1, h2, h3, h4 {
  color: var(--morado-inst);
  line-height: 1.08;
  letter-spacing: .2px;
}

h1, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
}

.gold {
  color: var(--oro);
}

/* ─── Layout Utilities ──────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 18px;
  display: inline-block;
}

.section {
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
}

.lead {
  font-size: clamp(16px, 2.1vw, 18px);
  max-width: 62ch;
  color: var(--gris);
}

.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}

.rule:after, .rule:before {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oro-suave), transparent);
  flex: 1 1;
}

.rule i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oro);
  flex: none;
}

.rule.left {
  justify-content: flex-start;
}

.rule.left:after {
  display: none;
}

.rule.left:before {
  flex: 0 0 90px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s, color .4s;
  will-change: transform;
}

.btn-gold {
  background: var(--oro);
  color: var(--humo);
  box-shadow: 0 10px 26px -12px rgba(200, 155, 75, .7);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -14px rgba(200, 155, 75, .85);
  background: #bb8d3e;
}

.btn-outline {
  border-color: var(--morado-med);
  color: var(--morado-inst);
  background: transparent;
}

.btn-outline:hover {
  background: var(--morado-inst);
  color: var(--humo);
  transform: translateY(-3px);
}

.btn-ghost-light {
  border-color: hsla(0, 0%, 100%, .5);
  color: var(--humo);
}

.btn-ghost-light:hover {
  background: var(--humo);
  color: var(--morado-inst);
  transform: translateY(-3px);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, .7);
}

.btn-wa:hover {
  background: #1eb959;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -14px rgba(37, 211, 102, .85);
}

/* ─── Decorative blobs ──────────────────────────────────────── */
.blob {
  display: none;
}

.deco-left {
  left: 0;
  top: 0;
}

.deco-left, .deco-right {
  position: fixed;
  height: 55vh;
  width: auto;
  pointer-events: none;
  z-index: 5;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.deco-right {
  right: 0;
  bottom: 0;
}

/* ─── Header / Nav ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsla(30, 40%, 98%, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 155, 75, .18);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease), background .4s;
}

.header.scrolled {
  box-shadow: 0 8px 30px -22px rgba(63, 36, 95, .45);
  background: hsla(30, 40%, 98%, .92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  transition: height .4s var(--ease);
}

.header.scrolled .nav {
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-fruit {
  height: 46px;
  width: auto;
  transition: height .4s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(63, 36, 95, .18));
}

.header.scrolled .brand-fruit {
  height: 38px;
}

.brand-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--morado-inst);
  letter-spacing: 1.5px;
  line-height: 1;
}

.brand-text small {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 4.5px;
  color: var(--oro);
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .6px;
  color: var(--morado-inst);
  position: relative;
  padding: 4px 0;
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--oro);
  transition: width .35s var(--ease);
}

.nav-links a:hover {
  color: var(--oro);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--morado-inst);
  border-radius: 2px;
  transition: .35s var(--ease);
}

.burger.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 74px;
  overflow: hidden;
}

.slider {
  z-index: 0;
}

.slide, .slider {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transition: opacity 1.5s var(--ease);
  transform: scale(1.06);
}

.slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
  0%  { transform: scale(1.06); }
  to  { transform: scale(1.14); }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(63, 36, 95, .86), rgba(63, 36, 95, .62) 42%, rgba(109, 75, 142, .3));
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--humo);
  max-width: 760px;
  padding: 40px 0;
}

.hero-logo {
  height: auto;
  width: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero .kicker {
  color: var(--oro-suave);
  display: block;
  text-align: center;
  padding-bottom: 50px;
  padding-top: -10px;
}

.hero h1 {
  color: var(--humo);
  font-size: clamp(19px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: .5px;
  padding-left: 20px;
  padding-right: 20px;
}

.hero h1 .gold {
  color: var(--oro-suave);
  padding-left: 20px;
}

.hero-headline {
  font-family: "Handgone", var(--serif);
  font-size: clamp(19px, 2.6vw, 36px);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  letter-spacing: 10px;
}

.hero-headline, .hero-line-gold, .hero-line-white {
  font-weight: 400;
}

.hero-line-white {
  color: #fff;
}

.hero-line-gold {
  color: var(--oro-suave);
}

.hero .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--lavanda);
  margin-top: 14px;
  line-height: 1.25;
}

.hero .blurb, .hero .sub {
  padding-left: 20px;
  padding-right: 20px;
}

.hero .blurb {
  font-size: 16px;
  color: hsla(30, 40%, 98%, .9);
  max-width: 56ch;
  margin-top: 22px;
  font-weight: 300;
}

.hero .blurb strong {
  font-weight: 600;
  color: var(--humo);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  margin-left: 20px;
}

.dots {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.dots button {
  width: 34px;
  height: 3px;
  border: none;
  border-radius: 3px;
  background: hsla(30, 40%, 98%, .4);
  cursor: pointer;
  transition: background .4s;
}

.dots button.active {
  background: var(--oro);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  right: 32px;
  z-index: 3;
  color: hsla(30, 40%, 98%, .7);
  font-size: 10px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint:after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--oro), transparent);
  animation: drop 1.8s infinite;
}

@keyframes drop {
  0%  { transform: scaleY(0);  transform-origin: top;    }
  50% { transform: scaleY(1);  transform-origin: top;    }
  51% {                        transform-origin: bottom; }
  to  { transform: scaleY(0);  transform-origin: bottom; }
}

/* ─── Intro / Nosotros ──────────────────────────────────────── */
.intro {
  background: var(--humo);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
}

.intro h2 {
  font-size: clamp(20px, 4.6vw, 32px);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 18px;
  gap: 18px;
}

.pillar {
  background: var(--beige);
  border: 1px solid rgba(200, 155, 75, .2);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--oro);
}

.pillar .ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--morado-inst);
  margin-bottom: 14px;
}

.pillar .ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--oro-suave);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h4 {
  font-size: 23px;
  margin-bottom: 4px;
}

.pillar p {
  font-size: 13.5px;
  color: var(--gris);
}

/* ─── Services ──────────────────────────────────────────────── */
.services {
  background: var(--beige);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(20px, 4.6vw, 32px);
}

.section-head .rule {
  justify-content: center;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}

.svc {
  background: var(--humo);
  border: 1px solid rgba(109, 75, 142, .12);
  border-radius: var(--r);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}

.svc.in {
  opacity: 1;
  transform: translateY(0);
}

.svc:not(.in).d1 { transition-delay: .06s; }
.svc:not(.in).d2 { transition-delay: .14s; }
.svc:not(.in).d3 { transition-delay: .22s; }
.svc:not(.in).d4 { transition-delay: .3s;  }

.svc:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--oro), var(--oro-suave));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.svc.in:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc.in:hover:before {
  transform: scaleX(1);
}

.svc .badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: radial-gradient(circle at 30% 30%, var(--morado-med), var(--morado-inst));
  box-shadow: 0 0 0 5px rgba(200, 155, 75, .12);
  transition: transform .45s var(--ease);
}

.svc.in:hover .badge {
  transform: rotate(-8deg) scale(1.06);
}

.svc .badge svg {
  width: 27px;
  height: 27px;
  stroke: var(--oro-suave);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc h4 {
  font-size: 21px;
  line-height: 1.12;
  margin-bottom: 8px;
}

.svc p {
  font-size: 13px;
  color: var(--gris);
  margin-bottom: 16px;
  min-height: 54px;
}

.svc .more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--oro);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .3s;
}

.svc .more svg {
  width: 14px;
  height: 14px;
  stroke: var(--oro);
  transition: transform .3s;
}

.svc.in:hover .more {
  gap: 11px;
}

.svc.in:hover .more svg {
  transform: translateX(3px);
}

.svc.expanded {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  grid-gap: 28px;
  gap: 28px;
  transform: none !important;
  box-shadow: 0 20px 50px -20px rgba(63, 36, 95, .28);
  border-color: rgba(200, 155, 75, .4);
  cursor: default;
}

.svc.expanded:before {
  transform: scaleX(1);
}

.svc.expanded:hover {
  transform: none;
}

.svc-base {
  display: flex;
}

.svc-base, .svc-extra {
  flex-direction: column;
}

.svc-extra {
  display: none;
  gap: 16px;
}

.svc.expanded .svc-extra {
  display: flex;
  animation: svcFadeIn .5s var(--ease) .15s both;
}

@keyframes svcFadeIn {
  0%  { opacity: 0; transform: translateX(14px); }
  to  { opacity: 1; transform: translateX(0);    }
}

.svc-extra img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.svc-detail {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gris);
}

.svc-close {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: 1.5px solid rgba(63, 36, 95, .22);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--morado-inst);
  cursor: pointer;
  transition: background .3s, color .3s;
}

.svc-close:hover {
  background: var(--morado-inst);
  color: var(--humo);
}

.svc-grid.has-expanded .svc:not(.expanded) {
  opacity: .55;
  transform: scale(.97);
}

.svc-grid.has-expanded .svc:not(.expanded):hover {
  opacity: .75;
  transform: scale(.97) translateY(-4px);
}

.svc.placeholder {
  border-style: dashed;
  opacity: .45;
  cursor: default;
}

.svc.placeholder:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(109, 75, 142, .12);
}

.svc.placeholder:before {
  display: none;
}

.svc-grid.has-expanded .svc.placeholder {
  opacity: .25;
  transform: scale(.97);
}

/* ─── Why Us ────────────────────────────────────────────────── */
.why {
  background: var(--humo);
  overflow: hidden;
}

.why-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.why-head h2 {
  font-size: clamp(20px, 4.6vw, 32px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  gap: 24px;
}

.why-card {
  padding: 30px 26px;
  border-left: 2px solid var(--oro-suave);
  background: linear-gradient(180deg, rgba(233, 223, 241, .35), transparent);
}

.why-card .num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 700;
  color: var(--lila);
  line-height: 1;
  margin-bottom: 8px;
}

.why-card h4 {
  font-size: 21px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
}

.why-card strong {
  color: var(--oro);
}

/* ─── Method / Process ──────────────────────────────────────── */
.method {
  background: var(--lavanda);
  overflow: hidden;
}

.method .section-head {
  max-width: 720px;
}

.method .section-head h2 {
  font-size: clamp(20px, 4.6vw, 32px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 18px;
  gap: 18px;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--oro), var(--oro), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step .node {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: var(--humo);
  border: 2px solid var(--oro);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--morado-inst);
  box-shadow: 0 10px 26px -14px rgba(63, 36, 95, .5);
  transition: transform .45s var(--ease), background .45s, color .45s;
}

.step:hover .node {
  transform: translateY(-6px) scale(1.05);
  background: var(--morado-inst);
  color: var(--oro-suave);
}

.step h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--gris);
}

/* ─── Portfolio / Folio ─────────────────────────────────────── */
.folio {
  background: var(--humo);
}

.folio-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.folio-head h2 {
  font-size: clamp(20px, 4.6vw, 32px);
}

.masonry {
  column-count: 3;
  column-gap: 18px;
}

.tile {
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.tile img {
  width: 100%;
  transition: transform .9s var(--ease);
}

.tile:after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--humo);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  background: linear-gradient(0deg, rgba(63, 36, 95, .75), transparent 55%);
  opacity: 0;
  transition: opacity .5s;
}

.tile:hover img {
  transform: scale(1.08);
}

.tile:hover:after {
  opacity: 1;
}

.folio-quote {
  margin-top: 50px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--morado-inst);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.3;
}

.folio-quote .gold {
  font-style: normal;
  font-weight: 600;
}

/* ─── Quotes ────────────────────────────────────────────────── */
.quotes {
  background: var(--morado-inst);
  text-align: center;
  overflow: hidden;
}

.quote-stage {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote {
  position: absolute;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  font-family: "RetroFloral", var(--serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  color: var(--humo);
  max-width: 18ch;
  line-height: 1.12;
}

.quote.active {
  opacity: 1;
  transform: translateY(0);
}

.quote .gold, .quotes .mini {
  color: var(--oro-suave);
}

.quotes .mini {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 5px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 34px;
}

/* ─── CTA ───────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--beige), var(--lavanda));
  text-align: center;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(20px, 4.6vw, 32px);
  max-width: 18ch;
  margin: 0 auto;
}

.cta p {
  max-width: 54ch;
  margin: 22px auto 0;
  font-size: 17px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact {
  background: var(--morado-inst);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
}

.contact h2 {
  color: var(--humo);
  font-size: clamp(20px, 4.6vw, 32px);
}

.contact .kicker {
  color: var(--oro-suave);
}

.contact .info p {
  color: hsla(30, 40%, 98%, .82);
  font-size: 15px;
  font-weight: 300;
}

.channels {
  margin-top: 30px;
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--humo);
  font-size: 14px;
}

.channel .ci {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: hsla(0, 0%, 100%, .08);
  border: 1px solid hsla(40, 55%, 66%, .4);
  flex: none;
}

.channel .ci svg {
  width: 20px;
  height: 20px;
  stroke: var(--oro-suave);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel a:hover {
  color: var(--oro-suave);
}

.contact .closing {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--lavanda);
  line-height: 1.4;
}

.contact .closing .gold {
  font-style: normal;
  color: var(--oro-suave);
}

/* ─── Form ──────────────────────────────────────────────────── */
.form {
  background: var(--humo);
  border-radius: var(--r);
  padding: 38px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--morado-inst);
  margin-bottom: 7px;
}

.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(109, 75, 142, .25);
  border-radius: 12px;
  background: var(--beige);
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--morado-inst);
  transition: border-color .3s, box-shadow .3s;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--oro);
  box-shadow: 0 0 0 3px rgba(200, 155, 75, .15);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-note {
  font-size: 11.5px;
  color: var(--gris);
  text-align: center;
  margin-top: 14px;
}

.form-ok {
  display: none;
  background: rgba(37, 211, 102, .12);
  border: 1px solid #25d366;
  color: #1a7a3c;
  padding: 14px;
  border-radius: 12px;
  font-size: 13.5px;
  text-align: center;
  margin-bottom: 16px;
}

.form-ok.visible {
  display: block;
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: #2c1942;
  color: hsla(30, 40%, 98%, .7);
  padding: 64px 0 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-gap: 40px;
  gap: 40px;
  margin-bottom: 40px;
}

.foot-logo {
  height: 180px;
  width: auto;
  margin-bottom: 16px;
}

.foot-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--lavanda);
  max-width: 34ch;
}

footer h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oro-suave);
  margin-bottom: 18px;
}

footer li {
  margin-bottom: 10px;
}

footer a {
  font-size: 14px;
  font-weight: 300;
}

footer a:hover {
  color: var(--oro-suave);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid hsla(40, 55%, 66%, .35);
  transition: .35s;
}

.socials a:hover {
  background: var(--oro);
  border-color: var(--oro);
}

.socials svg {
  width: 18px;
  height: 18px;
  stroke: var(--oro-suave);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:hover svg {
  stroke: var(--morado-inst);
}

.foot-tag {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--oro-suave);
  font-size: 18px;
  margin: 14px 0 30px;
}

.foot-bottom {
  border-top: 1px solid hsla(40, 55%, 66%, .2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

/* ─── WhatsApp Float ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .92);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .4s var(--ease);
  animation: wapulse 2.6s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes wapulse {
  0%  { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6), 0 0 0 0   rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6), 0 0 0 16px rgba(37, 211, 102, 0); }
  to  { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6), 0 0 0 0   rgba(37, 211, 102, 0); }
}

/* ─── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .masonry {
    column-count: 2;
  }
  .deco-left, .deco-right {
    height: 38vh;
  }
}

@media (max-width: 880px) {
  .deco-left, .deco-right {
    height: 28vh;
  }
  .burger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--humo);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(63, 36, 95, .5);
    padding: 40px;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 18px;
  }
  .nav-cta .btn {
    display: none;
  }
  .contact-grid, .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline:before {
    display: none;
  }
  .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    text-align: left;
    grid-gap: 18px;
    gap: 18px;
    align-items: start;
    border-left: 1.5px solid var(--oro-suave);
    margin-left: 34px;
    padding: 18px 0 18px 30px;
  }
  .step .node {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .masonry {
    column-count: 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form {
    padding: 26px;
  }
  .foot-grid, .pillars {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    gap: 32px;
  }
  .hero {
    min-height: 92vh;
  }
  .scroll-hint {
    display: none;
  }
  .svc.expanded {
    grid-column: 1 / -1;
    grid-row: span 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .svc.expanded .svc-extra {
    animation: svcFadeIn .4s var(--ease) both;
  }
  .svc-extra img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 420px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions .btn, .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :after, :before {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
