/* ============================================================
   InmoGlobalService — Minimalismo Premium Luminoso
   Blanco puro · Negro · Acento sage verde
   Inspiración: Zara Home, Axel Arigato, AD España
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --white:       #FFFFFF;
  --off:         #F6F5F1;
  --ink:         #111111;
  --ink-2:       #5F5F5F;
  --sage:        #4E6B5A;
  --sage-dark:   #3B5244;
  --sage-light:  #EBF0EC;
  --line:        #E2E1DA;
  --line-2:      #CBCAC2;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
  --pad:  clamp(20px, 4.5vw, 64px);
  --header-h: 74px;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ---- Utilidades ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(56px, 7vw, 108px) 0; }
.section.alt { background: var(--off); }

/* ---- Tipografía ---- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--sage);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--sage); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2); line-height: 1.8; }

/* ---- Botones ---- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 17px 32px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--white);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }

.btn-sage { background: var(--sage); border-color: var(--sage); }
.btn-sage:hover { background: transparent; color: var(--sage); border-color: var(--sage); }

.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-white:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.text-link {
  font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; position: relative; padding-bottom: 3px;
}
.text-link::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.text-link:hover::after { transform: scaleX(1); }
.text-link .arr { display: inline-block; transition: transform .35s var(--ease); }
.text-link:hover .arr { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s;
}
.site-header.elevated { box-shadow: 0 2px 24px rgba(17,17,17,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 38px; width: auto; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding: 4px 0; transition: color .3s;
}
.nav a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.nav-toggle { display: none; flex-direction: column; gap: 5.5px; background: none; border: 0; padding: 6px; z-index: 110; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; display: block; }

/* ============================================================
   HERO (vídeo full-height)
   ============================================================ */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  margin-top: var(--header-h); display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero video, .hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,.55) 0%, rgba(10,9,8,.28) 50%, rgba(10,9,8,.45) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: 0;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.hero-inner .eyebrow { color: rgba(255,255,255,.75); }
.hero-inner .eyebrow::before { background: rgba(255,255,255,.6); }
.hero h1 {
  font-size: clamp(1.35rem, 3.4vw, 3.1rem); color: var(--white);
  margin-top: 16px; max-width: 32ch; line-height: 1.16; letter-spacing: -0.005em;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  display: block; margin-top: 10px;
  font-size: .48em; color: rgba(255,255,255,.8); letter-spacing: 0;
}
.hero-sub { margin-top: 18px; color: rgba(255,255,255,.78); max-width: 46ch; font-size: clamp(.95rem, 1.4vw, 1.1rem); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-right { text-align: right; padding-bottom: 6px; }
.hero-scroll { writing-mode: vertical-rl; font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.statement-wrap h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.statement-wrap p { margin-top: 30px; }
.statement-wrap .text-link { margin-top: 42px; color: var(--sage); }

/* ============================================================
   SERVICE CARDS (3 columnas, index)
   ============================================================ */
.srv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); margin-top: clamp(50px, 7vw, 80px);
}
.srv-card { background: var(--white); display: flex; flex-direction: column; }
.srv-card figure { overflow: hidden; aspect-ratio: 3/4; }
.srv-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.srv-card:hover figure img { transform: scale(1.05); }
.srv-body { padding: clamp(24px, 3vw, 36px); border-top: 1px solid var(--line); flex: 1; display: flex; flex-direction: column; }
.srv-num { font-size: .68rem; letter-spacing: .24em; color: var(--ink-2); font-weight: 500; display: block; margin-bottom: 14px; }
.srv-body h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: 14px; }
.srv-body p { color: var(--ink-2); font-size: .95rem; flex: 1; }
.srv-body .text-link { margin-top: 26px; color: var(--sage); align-self: flex-start; }

/* ============================================================
   EXCLUSIVA MANIFESTO
   ============================================================ */
.excl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.excl-left h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.excl-left h2 em { font-style: italic; }
.excl-right p + p { margin-top: 18px; }
.excl-right .text-link { margin-top: 36px; color: var(--sage); }

/* ============================================================
   FULL-BLEED IMAGE
   ============================================================ */
.fullbleed { position: relative; height: clamp(380px, 60vh, 720px); overflow: hidden; }
.fullbleed img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); color: var(--white); padding: clamp(56px, 7vw, 108px) 0; }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: clamp(32px, 4vw, 64px); align-items: center; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); color: var(--white); max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,.6); margin-top: 18px; max-width: 46ch; }
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; flex-shrink: 0; }
.cta-phone { font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(255,255,255,.85); letter-spacing: .01em; transition: opacity .3s; }
.cta-phone:hover { opacity: .55; }
.cta-band .btn { background: var(--white); color: var(--ink); border-color: var(--white); }
.cta-band .btn:hover { background: transparent; color: var(--white); }

/* ============================================================
   GALERÍA (preview + página completa)
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(8px, 1.2vw, 16px); }
.g-item { overflow: hidden; position: relative; background: var(--off); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); display: block; }
.g-item:hover img { transform: scale(1.06); }
.g-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px; color: var(--white); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; background: linear-gradient(to top, rgba(10,9,8,.5), transparent); opacity: 0; transform: translateY(8px); transition: all .4s var(--ease); }
.g-item:hover .g-cap { opacity: 1; transform: none; }

.g-wide { grid-column: span 8; aspect-ratio: 16/10; }
.g-tall { grid-column: span 4; aspect-ratio: 3/4; }
.g-half { grid-column: span 6; aspect-ratio: 4/3; }
.g-full { grid-column: span 12; aspect-ratio: 21/9; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,9,8,.96); display: none; align-items: center; justify-content: center; padding: 28px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lb-close { position: absolute; top: 24px; right: 28px; background: none; border: 0; color: var(--white); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; }

/* ============================================================
   INTRO DE PÁGINAS INTERIORES
   ============================================================ */
.page-intro { margin-top: var(--header-h); padding: clamp(48px, 6vw, 96px) 0 clamp(36px, 4vw, 60px); border-bottom: 1px solid var(--line); }
.page-intro h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); margin-top: 24px; max-width: 18ch; }
.page-intro .lead { margin-top: 26px; }

/* ============================================================
   SERVICIOS (bloques alternados)
   ============================================================ */
.svc-alt { border-top: 1px solid var(--line); }
.svc-blk { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.svc-blk:nth-child(even) .svc-media { order: 2; }
.svc-media { overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); display: block; }
.svc-blk:hover .svc-media img { transform: scale(1.04); }
.svc-text { padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.svc-text .no { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-2); display: block; margin-bottom: 22px; }
.svc-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.svc-text p { color: var(--ink-2); margin-top: 22px; max-width: 46ch; }
.svc-feats { list-style: none; margin: 30px 0 36px; border-top: 1px solid var(--line); }
.svc-feats li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .93rem; color: var(--ink); display: flex; align-items: center; gap: 14px; }
.svc-feats li::before { content: ""; width: 5px; height: 5px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact-info { padding-top: 8px; }
.c-row { padding: 24px 0; border-bottom: 1px solid var(--line); }
.c-row:first-child { border-top: 1px solid var(--line); }
.c-label { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 8px; font-weight: 500; }
.c-value { font-size: 1.05rem; }
.c-value a { transition: color .3s; }
.c-value a:hover { color: var(--sage); }
.socials { display: flex; gap: 0; margin-top: 40px; border: 1px solid var(--line); }
.socials a { flex: 1; text-align: center; padding: 14px 10px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; transition: background .3s, color .3s; border-right: 1px solid var(--line); }
.socials a:last-child { border-right: 0; }
.socials a:hover { background: var(--ink); color: var(--white); }

/* Formulario */
.field { margin-bottom: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
.field label { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0;
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  transition: color .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--line-2); }
.field select { color: var(--ink-2); }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; }
.field textarea { resize: none; min-height: 90px; }
.contact-form { border-top: 1px solid var(--line); }
.contact-form .btn { margin-top: 36px; }
.form-ok { margin-top: 18px; font-size: .88rem; color: var(--sage); display: none; }
.form-ok.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); padding: clamp(44px, 5vw, 80px) 0 clamp(36px, 4vw, 60px); }
.footer-brand img { height: 36px; width: auto; filter: invert(1); margin-bottom: 20px; opacity: .85; }
.footer-brand p { font-size: .92rem; max-width: 36ch; line-height: 1.7; }
.footer-col h4 { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 22px; font-weight: 500; font-family: var(--sans); }
.footer-col a { display: block; padding: 7px 0; font-size: .93rem; color: rgba(255,255,255,.7); transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); letter-spacing: .04em; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1.05s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* Variantes direccionales */
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-left.in, .reveal-right.in { transform: none; }

/* Zoom suave de imágenes al revelarse */
.reveal img { transform: scale(1.07); transition: transform 1.5s var(--ease); }
.reveal.in img { transform: scale(1); }

/* Escalonado automático de hijos (grids, listas) — el JS asigna --i */
.reveal-stagger > * { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * 85ms); will-change: opacity, transform; }
.reveal-stagger.in > * { opacity: 1; transform: none; }

/* Línea del eyebrow que se dibuja al entrar */
.reveal .eyebrow::before, .reveal.eyebrow::before { width: 0; transition: width .8s var(--ease) .2s; }
.reveal.in .eyebrow::before, .reveal.in.eyebrow::before { width: 24px; }

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

/* ---- Checkbox privacidad ---- */
.field-check { border-bottom: 1px solid var(--line); padding: 22px 0; }
.check-label { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; font-size: .9rem; color: var(--ink-2); line-height: 1.6; }
.check-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box { width: 18px; height: 18px; min-width: 18px; border: 1px solid var(--line-2); display: inline-block; position: relative; margin-top: 2px; transition: border-color .3s, background .3s; }
.check-label:hover .check-box { border-color: var(--sage); }
.check-label input:checked ~ .check-box { background: var(--sage); border-color: var(--sage); }
.check-box::after { content: ""; position: absolute; top: 2px; left: 5px; width: 5px; height: 9px; border: 1.5px solid var(--white); border-left: 0; border-top: 0; transform: rotate(45deg) scale(0); transition: transform .2s; }
.check-label input:checked ~ .check-box::after { transform: rotate(45deg) scale(1); }

/* ============================================================
   RESPONSIVE — TABLET (< 900px)
   ============================================================ */
@media (max-width: 900px) {

  /* Nav panel lateral */
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--white); flex-direction: column; align-items: flex-start;
    justify-content: center; padding: 0 40px; gap: 26px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    border-left: 1px solid var(--line); z-index: 105;
    box-shadow: -8px 0 40px rgba(17,17,17,.08);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1rem; color: var(--ink); letter-spacing: .14em; padding: 6px 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }

  /* Grids que colapsan */
  .excl-grid,
  .contact-grid,
  .cta-band-inner,
  .footer-top { grid-template-columns: 1fr; }

  /* Servicios cards → 1 columna */
  .srv-grid { grid-template-columns: 1fr; gap: 1px; }
  .srv-card figure { aspect-ratio: 16/9; }

  /* Servicios alternados → imagen arriba, texto abajo */
  .svc-blk { grid-template-columns: 1fr; min-height: auto; }
  .svc-blk:nth-child(even) .svc-media { order: 0; }
  .svc-media { aspect-ratio: 3/2; }

  /* Galería → todo a ancho completo */
  .g-wide, .g-tall, .g-half, .g-full { grid-column: span 12; aspect-ratio: 4/3; }

  .footer-top { gap: 28px; }
  .cta-band-inner { gap: 28px; }
}

/* ============================================================
   RESPONSIVE — MÓVIL (< 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --header-h: 62px;
    --pad: 20px;
  }

  /* ---- Header ---- */
  .brand img { height: 32px; }

  /* ---- Secciones: menos padding ---- */
  .section { padding: 48px 0; }
  .section.alt { padding: 48px 0; }
  .page-intro { padding: 40px 0 32px; }

  /* ---- Hero ---- */
  .hero { height: 92dvh; min-height: 540px; align-items: flex-start; }
  .hero::after { background: linear-gradient(to bottom, rgba(10,9,8,.6) 0%, rgba(10,9,8,.28) 45%, rgba(10,9,8,.45) 100%); }
  .hero-inner { padding-bottom: 0; padding-top: clamp(28px, 7vh, 70px); align-items: flex-start; }
  .hero .eyebrow { font-size: .62rem; letter-spacing: .2em; }
  .hero h1 { font-size: clamp(1.2rem, 4.2vw, 1.5rem); margin-top: 10px; line-height: 1.22; }
  .hero-sub { font-size: .9rem; margin-top: 12px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 15px 20px; font-size: .7rem; }

  /* ---- Statement ---- */
  .statement-wrap { text-align: left; }
  .statement-wrap h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .statement-wrap .eyebrow { margin-bottom: 18px; }
  .statement-wrap p { margin-top: 20px; }
  .statement-wrap .text-link { margin-top: 28px; }

  /* ---- Servicios cards ---- */
  .srv-card figure { aspect-ratio: 4/3; }
  .srv-body { padding: 20px 16px 26px; }
  .srv-body h3 { font-size: 1.4rem; }
  .srv-num { margin-bottom: 10px; }

  /* ---- Exclusiva ---- */
  .excl-grid { gap: 28px; }
  .excl-left h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  /* ---- Full bleed ---- */
  .fullbleed { height: 260px; }

  /* ---- CTA band ---- */
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .cta-band p { font-size: .93rem; margin-top: 14px; }
  .cta-band-inner { gap: 28px; }
  .cta-band .btn { width: 100%; justify-content: center; }

  /* ---- Galería ---- */
  .gallery-grid { gap: 6px; }
  .g-wide, .g-tall, .g-half, .g-full { aspect-ratio: 3/2; }

  /* ---- Servicios (página interior) ---- */
  .svc-media { aspect-ratio: 4/3; }
  .svc-text { padding: 32px 20px 40px; }
  .svc-text h2 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .svc-text p { font-size: .93rem; margin-top: 16px; }
  .svc-feats li { font-size: .88rem; padding: 11px 0; }
  .svc-feats li gap { gap: 10px; }
  .svc-text .btn { width: 100%; justify-content: center; margin-top: 0; }

  /* ---- Page intro ---- */
  .page-intro h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); margin-top: 18px; }
  .page-intro .lead { font-size: .97rem; margin-top: 18px; }

  /* ---- Contacto ---- */
  .contact-grid { gap: 44px; }
  .c-row { padding: 18px 0; }
  .c-value { font-size: .97rem; }
  .socials { display: grid; grid-template-columns: 1fr 1fr; }
  .socials a { border-right: 1px solid var(--line); }
  .socials a:nth-child(even) { border-right: 0; }
  .socials a:nth-child(3),
  .socials a:nth-child(4) { border-top: 1px solid var(--line); }
  .field { padding: 16px 0; }
  .contact-form .btn { width: 100%; justify-content: center; }

  /* ---- Footer ---- */
  .footer-top { gap: 24px; padding: 40px 0 32px; }
  .footer-brand img { height: 30px; }
  .footer-brand p { font-size: .88rem; }
  .footer-col a { font-size: .9rem; padding: 5px 0; }
  .footer-bottom { flex-direction: column; gap: 4px; padding: 16px 0; }
  .footer-bottom p { font-size: .74rem; }
}
