/* ==========================================================================
   Es Personal — Modern luxury redesign
   ========================================================================== */

:root {
  --black: #0e0e10;
  --black-2: #141417;
  --surface: #1a1a1f;
  --surface-2: #202027;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #ececed;
  --muted: #a4a4ac;
  --muted-2: #7c7c85;

  --gold: #c9a15a;
  --gold-2: #e6c988;
  --gold-soft: rgba(201, 161, 90, 0.14);
  --whatsapp: #25d366;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.1; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1508;
  box-shadow: 0 10px 30px -12px rgba(201, 161, 90, .6);
}
.btn-gold:hover { box-shadow: 0 16px 38px -12px rgba(201, 161, 90, .75); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #04310f;
  box-shadow: 0 10px 30px -12px rgba(37, 211, 102, .55);
}
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 14, 16, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-name-accent { color: var(--gold); margin-left: 2px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  position: relative;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta { padding: 11px 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/portada.webp") center 42% / cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,16,.9) 0%, rgba(14,14,16,.6) 46%, rgba(14,14,16,.32) 100%),
    linear-gradient(180deg, rgba(14,14,16,.3) 0%, rgba(14,14,16,.32) 38%, rgba(14,14,16,.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero-kicker {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #dcdcdf;
  max-width: 560px;
  margin: 0 0 38px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 100%{opacity:0;transform:translateY(10px)} }

/* ---------- Section helpers ---------- */
section { position: relative; }
.value, .services, .about, .coverage, .contact { padding: clamp(70px, 10vw, 130px) 0; }
.section-eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.section-head { max-width: 680px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
}
.section-sub { color: var(--muted); margin: 18px 0 0; font-size: 1.05rem; }

/* ---------- Value ---------- */
.value { background: var(--black-2); border-top: 1px solid var(--line); }
.value-inner { max-width: 940px; margin: 0 auto; text-align: center; }
.value-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.3;
  color: #f3f3f4;
}
.value-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.stat {
  padding: 32px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), transparent);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { display: block; margin-top: 12px; color: var(--muted); font-size: .95rem; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.service-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,20,23,.85));
}
.service-index {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(14,14,16,.55);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.service-body { padding: 28px 26px 30px; }
.service-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-text { color: var(--muted); font-size: .98rem; margin: 0 0 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s var(--ease);
}
.service-link span { transition: transform .3s var(--ease); }
.service-link:hover { gap: 14px; }

.service-card--cta {
  background: linear-gradient(150deg, var(--surface-2), var(--black-2));
  border-color: var(--gold-soft);
  display: flex;
}
.service-cta-inner {
  margin: auto;
  text-align: center;
  padding: 40px 30px;
}
.service-cta-inner .service-text { margin-bottom: 26px; }

/* ---------- About ---------- */
.about { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -14px; bottom: -22px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.8);
}
.about-badge-num { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.about-badge-text { display: block; font-size: .8rem; color: var(--muted); letter-spacing: .08em; }
.about-p { color: var(--muted); margin: 0 0 18px; }
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 26px 0 32px;
}
.about-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-size: .98rem;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

/* ---------- Coverage ---------- */
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}
.coverage-list li {
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 11px 22px;
  border-radius: 999px;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.coverage-list li:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Contact ---------- */
.contact { background: var(--black-2); border-top: 1px solid var(--line); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-lead { color: var(--muted); font-size: 1.08rem; margin: 18px 0 32px; max-width: 460px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-card-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; }
.contact-card-sub { color: var(--muted); font-size: .95rem; margin: 6px 0 26px; }
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form span {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .98rem;
  color: var(--text);
  background: var(--black-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.contact-form option { color: #111; }

/* ---------- FAQ ---------- */
.faq { background: var(--black); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq-item[open] { border-color: var(--gold-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .35s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-answer { padding: 0 26px 24px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 1rem; }
.faq-answer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Service detail pages
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 120px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,.55) 0%, rgba(14,14,16,.55) 40%, rgba(14,14,16,.95) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-bottom: 56px; max-width: 820px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.breadcrumb a { color: var(--muted); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
}
.page-hero-sub { color: #dcdcdf; font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 18px 0 0; max-width: 620px; }

.detail { padding: clamp(60px, 8vw, 110px) 0; }
.detail-narrow { max-width: 860px; margin: 0 auto; }
.detail-lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: #f2f2f3;
  margin: 0 0 48px;
}
.detail h2.block-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 12px;
}
.detail h3.block-sub {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-2);
  margin: 34px 0 10px;
}
.detail p { color: var(--muted); margin: 0 0 18px; }
.detail-block { margin-bottom: 8px; }

/* process steps */
.steps { display: grid; gap: 18px; margin: 30px 0 10px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.step:hover { border-color: var(--gold-soft); transform: translateX(4px); }
.step-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  flex-shrink: 0;
}
.step-body h4 { margin: 4px 0 6px; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--text); }
.step-body p { margin: 0; font-size: .98rem; }

/* feature list (why choose us) */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.feature {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--surface), transparent);
}
.feature strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--gold-2); margin-bottom: 6px; }
.feature span { color: var(--muted); font-size: .96rem; }

/* other services strip */
.more-services { padding: clamp(60px,8vw,100px) 0; background: var(--black-2); border-top: 1px solid var(--line); }
.more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.more-card {
  display: block;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.more-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.more-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin: 0 0 6px; }
.more-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.more-card span { display: inline-block; margin-top: 14px; color: var(--gold); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

/* detail CTA band */
.cta-band { padding: clamp(60px,8vw,100px) 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 700; margin: 0 0 16px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

@media (max-width: 880px) {
  .features { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .more-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- Legal pages ---------- */
.legal-page { padding: clamp(120px, 16vw, 170px) 0 clamp(60px, 8vw, 100px); }
.legal-narrow { max-width: 820px; margin: 0 auto; }
.legal-page .breadcrumb { margin-bottom: 22px; }
.legal-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin: 0 0 8px;
}
.legal-updated { color: var(--muted-2); font-size: .9rem; margin: 0 0 40px; }
.legal-page h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-2);
  margin: 40px 0 12px;
}
.legal-page h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--text); margin: 24px 0 8px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page p { margin: 0 0 16px; }
.legal-page ul { margin: 0 0 16px; padding-left: 4px; }
.legal-page ul li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.legal-page ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--gold); }
.legal-page a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-page strong { color: var(--text); }
.legal-note {
  border: 1px solid var(--gold-soft);
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 0 0 32px;
  color: var(--gold-2);
  font-size: .92rem;
}
.footer-nav a.is-legal { opacity: .85; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: var(--muted-2); font-size: .82rem; transition: color .3s var(--ease); }
.footer-legal a:hover { color: var(--gold); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 56px 24px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; max-width: 360px; }
.footer-logo { width: 46px; }
.footer-tagline { color: var(--muted); font-size: .95rem; margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-nav a { color: var(--muted); font-size: .88rem; letter-spacing: .08em; transition: color .3s var(--ease); }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .3s var(--ease);
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container { padding-top: 22px; padding-bottom: 22px; }
.footer-bottom span { color: var(--muted-2); font-size: .84rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: waPulse 2.4s infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.7);opacity:0} }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .about-badge { right: 10px; }
  .contact-card { max-width: 520px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px 34px;
    background: var(--black-2);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; }
  .nav-cta { margin-top: 8px; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .value-stats { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
