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

:root {
  --pink:        #f4abe7;
  --pink-mid:    #e87fd8;
  --pink-light:  #fce8f9;
  --dark:        #262525;
  --dark-soft:   #3d3c3c;
  --white:       #ffffff;
  --gray-50:     #fafafa;
  --gray-100:    #f4f4f4;
  --gray-200:    #e8e8e8;
  --gray-300:    #d0d0d0;
  --gray-500:    #8a8888;

  --font-title:  'Saira', sans-serif;
  --font-body:   'DM Sans', sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(38,37,37,.06);
  --shadow-md: 0 8px 32px rgba(38,37,37,.10);
  --shadow-lg: 0 24px 64px rgba(38,37,37,.13);

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .3s var(--ease);

  --mw:    1200px;
  --sp:    clamp(64px, 8vw, 112px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  border: none;
  background: none;
}

.wrapper { max-width: var(--mw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section  { padding-block: var(--sp); }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.eyebrow--light { color: rgba(244,171,231,.7); }

h1,h2,h3,h4 { font-family: var(--font-title); line-height: 1.1; }

.h-display {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.h-section {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.h-card {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.body-lg { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; color: var(--dark-soft); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--gray-500); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.btn--primary {
  background: var(--pink);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--pink-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,171,231,.5);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn--ghost-dark {
  border: 1.5px solid var(--dark);
  color: var(--dark);
}
.btn--ghost-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ─── HEADER ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 28px;
}
.header.scrolled {
  background-color: rgba(38,37,37,.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding-block: 16px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header__logo { flex-shrink: 0; }
.header__logo img { height: 36px; width: auto; transition: var(--t); }
.logo-dark  { display: none; }
.logo-light { display: block; }
.logo-pink  { display: none; }
.header.scrolled .logo-dark  { display: none;  }
.header.scrolled .logo-pink  { display: block; }
.header.scrolled .logo-light { display: none;  }

.header__nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav__link {
  padding: 8px 16px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border-radius: var(--r-full);
  transition: var(--t);
  position: relative;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.header.scrolled .nav__link { color: rgba(255,255,255,.7); }
.header.scrolled .nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link.active { color: var(--white); }
.header.scrolled .nav__link.active { color: var(--white); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  transform: translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  transition-delay: 0s;
}
/* Puente invisible entre el trigger y el dropdown para no perder hover */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition-delay: 0s;
}
/* Retraso al salir para dar tiempo de llegar al dropdown */
.nav__dropdown {
  transition-delay: 80ms;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--dark-soft);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav__dropdown a:hover { background: var(--gray-100); color: var(--dark); }
.nav__dropdown a svg { color: var(--gray-500); flex-shrink: 0; }

.header__cta { margin-left: auto; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.header.scrolled .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — panel lateral */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 100vw);
  background: var(--dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.45);
}
.mobile-nav.open { transform: translateX(0); }

/* overlay detrás del panel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 199;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-nav__logo { height: 30px; width: auto; }
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.mobile-nav__close:hover { background: rgba(255,255,255,.14); }
.mobile-nav__close svg { stroke: var(--white); }

.mobile-nav__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 0;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: -.01em;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.mobile-nav__link:hover,
.mobile-nav__link.active { color: var(--white); }
.mobile-nav__link.active { color: var(--pink); }
.mobile-nav__link svg { transition: transform .25s var(--ease); flex-shrink: 0; }
.mobile-nav__link.accordion-open svg { transform: rotate(180deg); }

/* sub-items de Servicios */
.mobile-nav__sub {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav__sub.open { display: flex; }
.mobile-nav__sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px 11px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-nav__sub a:last-child { border-bottom: none; }
.mobile-nav__sub a svg { flex-shrink: 0; opacity: .6; }
.mobile-nav__sub a:hover { color: var(--pink); background: rgba(244,171,231,.05); }
.mobile-nav__sub a:hover svg { opacity: 1; }

.mobile-nav__divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 8px 24px;
}

.mobile-nav__footer {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-nav__footer .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  /* placeholder – replace with background-image: url(assets/hero.jpg) */
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(38,37,37,.75) 0%,
    rgba(38,37,37,.55) 50%,
    rgba(38,37,37,.30) 100%
  );
}
.hero__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--pink);
}
.hero__title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--pink);
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pink);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%;  }
}

/* Services strip in hero bottom */
.hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__strip-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.hero__strip-inner::-webkit-scrollbar { display: none; }
.hero__strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  flex-shrink: 0;
  color: rgba(255,255,255,.7);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: var(--t);
  cursor: default;
}
.hero__strip-item svg { opacity: .7; }
.hero__strip-item:last-child { border-right: none; }
.hero__strip-item:hover { color: var(--pink); background: rgba(244,171,231,.06); }
.hero__strip-item:hover svg { opacity: 1; }

/* ─── INTRO ─────────────────────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.intro__img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-200);
}
.intro__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
  font-family: var(--font-title);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro__img-accent {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 180px;
  height: 180px;
  background: var(--pink);
  border-radius: var(--r-lg) 0 0 0;
  opacity: .6;
}
.intro__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  color: var(--dark);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.intro__content { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.intro__title { margin-bottom: 0; }
.intro__list { display: flex; flex-direction: column; gap: 12px; }
.intro__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-soft);
}
.intro__list-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services { background: var(--gray-50); }
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--pink-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--t);
}
.service-card:hover .service-card__icon {
  background: var(--pink);
}
.service-card__title { font-size: 20px; }
.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.service-card__tag {
  font-size: 12px;
  color: var(--gray-500);
  background: var(--gray-100);
  border-radius: var(--r-full);
  padding: 4px 12px;
  transition: var(--t);
}
.service-card:hover .service-card__tag { background: var(--pink-light); color: var(--dark-soft); }
.service-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: auto;
  transition: var(--t);
}
.service-card:hover .service-card__link { color: var(--dark); gap: 10px; }

/* ─── WHY US ────────────────────────────────────────────────── */
.why { background: var(--white); }
.why__head { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: clamp(40px, 5vw, 64px); }
.why__head .h-section { margin-block: 12px; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px 24px;
  border-radius: var(--r-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--t);
}
.why-card:hover { border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-light); }
.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.why-card h3 { font-size: 17px; font-weight: 600; }
.why-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ─── STATS ─────────────────────────────────────────────────── */
.stats { background: var(--dark); }
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat {
  padding: clamp(40px, 5vw, 64px) 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-title);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

/* ─── GALLERY STRIP ─────────────────────────────────────────── */
.section--gallery { padding-top: var(--sp); }
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 12px;
}
.gallery-strip__item {
  background: var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.gallery-strip__item:first-child { grid-row: span 2; }
.gallery-strip__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--pink);
  padding-block: clamp(64px, 8vw, 96px);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__text .h-section { margin-block: 8px; }
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--gray-50); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 32px; }
.contact__info .h-section { margin-block: 8px; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--dark-soft);
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: var(--pink-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}
.contact__detail strong { display: block; font-size: 13px; color: var(--gray-500); font-weight: 500; margin-bottom: 2px; }

/* Form */
.form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form__title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field--full { grid-column: span 2; }
.form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form__select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a8888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form__textarea { resize: vertical; min-height: 100px; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--pink-mid);
  box-shadow: 0 0 0 3px var(--pink-light);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--gray-300); }
.form__submit { margin-top: 8px; width: 100%; justify-content: center; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding-top: clamp(64px, 7vw, 96px);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__logo { width: auto; max-width: 200px; object-fit: contain; }
.footer__desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.footer__social { display: flex; gap: 8px; margin-top: 4px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--t);
}
.footer__social-link:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(244,171,231,.08);
}
.footer__col h4 {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__col ul a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width .25s var(--ease);
  flex-shrink: 0;
}
.footer__col ul a:hover { color: var(--white); }
.footer__col ul a:hover::before { width: 12px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  gap: 24px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: var(--t); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ─── DIVIDER / HELPERS ─────────────────────────────────────── */
.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { text-align: center; max-width: 600px; margin-inline: auto; }
.section__head .h-section { margin-block: 10px; }
.gap-sm { gap: 8px; }
.mt-auto { margin-top: auto; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid      { grid-template-columns: repeat(2, 1fr); }
  .stats__inner   { grid-template-columns: repeat(2, 1fr); }
  .stat           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(2n){ border-right: none; }
  .footer__main   { grid-template-columns: 1fr 1fr; }
  .intro          { grid-template-columns: 1fr; }
  .intro__img     { aspect-ratio: 16/9; }
  .contact__inner { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .header__nav    { display: none; }
  .header__cta    { display: none; }
  .hamburger      { display: flex; }
  .mobile-nav-overlay { display: block; pointer-events: none; }
  .mobile-nav-overlay.open { pointer-events: all; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__grid      { grid-template-columns: 1fr; }
  .stats__inner   { grid-template-columns: 1fr; }
  .gallery-strip  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-strip__item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer__main   { grid-template-columns: 1fr; }
  .services__head { flex-direction: column; align-items: flex-start; }
  .form__grid     { grid-template-columns: 1fr; }
  .form__field--full { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__strip    { display: none; }
  /* prevent horizontal overflow globally */
  body { overflow-x: hidden; }
  .wrapper { overflow-x: hidden; }
  /* hero home: dar espacio suficiente para que el eyebrow no quede bajo el header */
  .hero { align-items: center; padding-top: 100px; }
}
