:root {
  --bg: #f3eee5;
  --cream: #fbf8f2;
  --paper: rgba(255, 252, 246, .76);
  --paper-solid: #fffaf2;
  --ink: #173c3d;
  --ink-2: #255a5c;
  --muted: #667773;
  --copper: #c37a4c;
  --sage: #879c81;
  --gold: #c2a15c;
  --sand: #d9cdb8;
  --line: rgba(23, 60, 61, .13);
  --shadow: 0 30px 90px rgba(23, 60, 61, .14);
  --shadow-soft: 0 20px 55px rgba(23, 60, 61, .09);
  --radius: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(195, 122, 76, .18), transparent 27%),
    radial-gradient(circle at 92% 0%, rgba(135, 156, 129, .23), transparent 28%),
    radial-gradient(circle at 50% 96%, rgba(194, 161, 92, .16), transparent 32%),
    linear-gradient(135deg, #f3eee5 0%, #fbf8f2 38%, #efe7da 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(23,60,61,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,60,61,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.page-glow {
  position: fixed;
  inset: auto -180px -260px auto;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: rgba(135, 156, 129, .25);
  filter: blur(80px);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  justify-items: center;
  padding: 22px clamp(18px, 5vw, 72px) 16px;
  border-bottom: 1px solid rgba(23, 60, 61, .08);
}

.brand img {
  width: clamp(250px, 27vw, 390px);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.6vw, 22px);
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(23,60,61,.10);
  border-radius: 999px;
  background: rgba(255, 250, 242, .52);
  box-shadow: 0 18px 55px rgba(23,60,61,.06);
}

.nav a {
  color: rgba(23, 60, 61, .82);
  padding: 11px 14px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 800;
}

.nav a:hover,
.nav .nav-cta {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  border-radius: 16px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.section,
.hero {
  padding-left: clamp(20px, 6vw, 96px);
  padding-right: clamp(20px, 6vw, 96px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 105px);
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 96px);
  right: clamp(20px, 6vw, 96px);
  top: 30px;
  bottom: 28px;
  border-radius: 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.32), rgba(255,255,255,.06)),
    radial-gradient(circle at 82% 22%, rgba(195,122,76,.13), transparent 28%);
  border: 1px solid rgba(255,255,255,.48);
  z-index: -1;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 15px;
  border: 1px solid rgba(195,122,76,.28);
  border-radius: 999px;
  background: rgba(255,250,242,.60);
  color: var(--copper);
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(195,122,76,.08);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .23em;
  font-size: .78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7.7rem);
  line-height: .86;
  letter-spacing: -.078em;
  max-width: 950px;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: .96;
  letter-spacing: -.058em;
}

h3 { font-size: 1.22rem; margin-bottom: 12px; }

.lead,
.section-heading p,
.statement-card p,
.editorial-copy p,
.service-tile p,
.experience-copy p,
.benefit-cards span,
.timeline p,
.faq p,
.contact-copy p,
.rich-list p {
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: var(--ink); box-shadow: 0 18px 38px rgba(23,60,61,.24); }
.btn.secondary { color: var(--ink); border-color: rgba(23,60,61,.16); background: rgba(255,255,255,.46); }
.btn.light { color: var(--ink); background: #fffaf2; box-shadow: 0 18px 38px rgba(0,0,0,.12); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,242,.50);
  box-shadow: var(--shadow-soft);
}

.metrics strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .9rem;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual {
  border-radius: 46px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.60);
  border-radius: 24px;
  background: rgba(255,250,242,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(23,60,61,.14);
}

.floating-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
  border-radius: 15px;
  color: #fff;
  background: var(--copper);
}

.floating-card small { color: var(--muted); }
.card-one { left: -28px; bottom: 58px; }
.card-two { right: -24px; top: 60px; }

.section { padding-top: 86px; padding-bottom: 86px; }

.section-heading { max-width: 930px; margin-bottom: 38px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }

.logo-statement { padding-top: 30px; }

.statement-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 82px);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255,250,242,.88), rgba(255,250,242,.58)),
    radial-gradient(circle at 96% 0%, rgba(135,156,129,.16), transparent 34%);
  box-shadow: var(--shadow);
  text-align: center;
}

.statement-card h2 {
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.statement-card p:last-child {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.editorial-grid,
.experience,
.contact,
.faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.stacked-images { position: relative; }
.main-img,
.experience-visual img {
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.mini-panel {
  position: absolute;
  left: -26px;
  right: 56px;
  bottom: -28px;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255,250,242,.86);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 22px 60px rgba(23,60,61,.13);
  backdrop-filter: blur(12px);
}

.mini-panel strong { display: block; margin-bottom: 5px; }
.mini-panel span { color: var(--muted); }

.rich-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}

.rich-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,242,.54);
}

.rich-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.rich-list strong { display: block; margin-bottom: 4px; }
.rich-list p { margin: 0; }

.service-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr .85fr .85fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
  margin-top: 45px;
}

.service-tile {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 34px;
  background: rgba(255,250,242,.68);
  box-shadow: var(--shadow-soft);
}

.service-tile::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(195,122,76,.10);
}

.service-tile.large {
  grid-row: span 2;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255,250,242,.86), rgba(255,250,242,.56)),
    radial-gradient(circle at 0 100%, rgba(135,156,129,.20), transparent 38%);
}

.service-tile.visual {
  padding: 0;
}

.service-tile.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile.dark {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(195,122,76,.45), transparent 36%),
    linear-gradient(135deg, #173c3d, #255a5c);
}

.service-tile.dark p { color: rgba(255,255,255,.78); }
.service-tile.dark::after { background: rgba(255,255,255,.10); }

.tile-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 20px;
  color: #fff;
  background: var(--copper);
  font-size: 1.8rem;
  box-shadow: 0 16px 34px rgba(195,122,76,.20);
}

.experience {
  align-items: center;
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
}

.benefit-cards div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,250,242,.54);
}

.benefit-cards strong { display: block; margin-bottom: 6px; }
.benefit-cards span { display: block; }

.dark-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin: 60px clamp(20px, 6vw, 96px);
  padding: clamp(34px, 5vw, 62px);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(195,122,76,.46), transparent 38%),
    linear-gradient(135deg, #173c3d, #234f51);
  box-shadow: var(--shadow);
}

.dark-band h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.dark-band .eyebrow { color: #e3c989; }

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

.premium-timeline div {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,250,242,.62);
  box-shadow: var(--shadow-soft);
}

.premium-timeline span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.faq {
  align-items: start;
}

.faq-grid { display: grid; gap: 14px; }

details {
  padding: 24px 26px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,250,242,.64);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

details p { margin: 14px 0 0; }

.contact {
  align-items: start;
}

.contact-note {
  display: inline-grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.46);
}

.contact-note span {
  color: var(--copper);
  font-weight: 900;
}

.contact-form {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.60);
  background: rgba(255,250,242,.75);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 900;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(23,60,61,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  color: var(--ink);
  padding: 15px 16px;
  font: inherit;
}

textarea { resize: vertical; }

input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(195,122,76,.30);
  border-color: var(--copper);
}

.form-note {
  margin: 16px 0 0;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 36px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer img {
  width: 180px;
  mix-blend-mode: multiply;
  margin-bottom: 8px;
}

.footer p { margin: 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .hero,
  .editorial-grid,
  .experience,
  .contact,
  .faq {
    grid-template-columns: 1fr;
  }

  .service-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-tile.large {
    grid-row: auto;
  }

  .premium-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-one { left: 20px; }
  .card-two { right: 20px; }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px 10px;
  }

  .brand img {
    width: 218px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    margin-top: 14px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,250,242,.88);
  }

  .nav.open { display: flex; }

  .nav a {
    text-align: center;
  }

  .hero {
    padding-top: 38px;
  }

  .hero::before {
    left: 14px;
    right: 14px;
    border-radius: 34px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .metrics,
  .service-showcase-grid,
  .premium-timeline {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin: 12px 0 0;
    min-width: 0;
  }

  .hero-visual {
    transform: none;
  }

  .mini-panel {
    position: static;
    margin-top: 14px;
  }

  .dark-band {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 20px;
    margin-right: 20px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Imágenes fotográficas premium sustituidas */
.hero-visual,
.main-img,
.experience-visual img,
.service-tile.visual img,
.stacked-images img,
.image-card img,
.split-media img {
  object-fit: cover;
}

.hero-visual,
.main-img,
.experience-visual img,
.stacked-images img,
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.service-tile.visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-visual-wrap,
.stacked-images,
.experience-visual,
.split-media,
.image-card {
  position: relative;
}

.hero-visual-wrap::after,
.stacked-images::after,
.experience-visual::after,
.split-media::after,
.image-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -18px;
  height: 42px;
  border-radius: 999px;
  background: rgba(23, 60, 61, .16);
  filter: blur(26px);
  z-index: -1;
}

.image-card img {
  border-radius: 32px;
  box-shadow: var(--shadow);
}


/* Reordenación estética solicitada: hero más equilibrado y sin texto pegado al margen */
.hero.premium-hero {
  display: block;
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: 70px;
}

.hero.premium-hero::before {
  left: clamp(20px, 4vw, 70px);
  right: clamp(20px, 4vw, 70px);
  top: 22px;
  bottom: 34px;
  border-radius: 52px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 650px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 38px;
  background: rgba(255, 250, 242, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(23, 60, 61, .10);
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(2.75rem, 5.3vw, 5.9rem);
  line-height: .92;
  letter-spacing: -.062em;
}

.hero-copy .lead {
  max-width: 590px;
}

.hero-visual-wrap {
  min-width: 0;
}

.hero-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 42px;
  transform: none;
  box-shadow: 0 34px 100px rgba(23, 60, 61, .18);
}

.metrics {
  max-width: 1080px;
  margin: clamp(26px, 4vw, 44px) auto 0;
  grid-template-columns: repeat(3, 1fr);
}

.metrics div {
  background: rgba(255, 250, 242, .68);
}

/* Nuevos bloques para evitar repetir la misma imagen varias veces */
.concept-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.62);
  background:
    radial-gradient(circle at 100% 0%, rgba(195,122,76,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,250,242,.86), rgba(255,250,242,.58));
  box-shadow: var(--shadow);
}

.concept-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(135, 156, 129, .18);
}

.concept-number {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 22px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
  font-size: 1.1rem;
}

.concept-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.concept-panel p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}

.concept-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.concept-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--ink-2);
}

.text-visual {
  display: grid;
  align-content: center;
  min-height: 260px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(195,122,76,.45), transparent 32%),
    linear-gradient(135deg, #173c3d, #285c5e);
}

.text-visual span {
  display: block;
  margin-bottom: 18px;
  color: #e3c989;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

.text-visual strong {
  display: block;
  max-width: 460px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
}

.value-band article {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.60);
  background: rgba(255,250,242,.66);
  box-shadow: var(--shadow-soft);
}

.value-band span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 17px;
  color: #fff;
  background: var(--copper);
  font-weight: 900;
}

.value-band h3 {
  margin-bottom: 10px;
}

.value-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Evitar sombras duplicadas de antiguos contenedores de imagen */
.hero-visual-wrap::after,
.stacked-images::after,
.split-media::after,
.image-card::after {
  display: none;
}

/* Móvil */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .metrics,
  .value-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero.premium-hero {
    padding-top: 28px;
  }

  .hero.premium-hero::before {
    left: 12px;
    right: 12px;
    border-radius: 32px;
  }

  .hero-copy {
    padding: 24px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/* Ajuste de la viñeta redondeada de "Servicios integrados..." */
.service-tile.visual.text-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 350px;
  padding: 34px 32px;
  overflow: hidden;
}

.service-tile.visual.text-visual::after {
  display: none;
}

.text-visual span {
  display: block;
  margin-bottom: 14px;
  max-width: 100%;
  font-size: 0.76rem;
  line-height: 1.3;
  letter-spacing: 0.18em;
  color: #e3c989;
}

.text-visual strong {
  display: block;
  max-width: 100%;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.25vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  word-break: normal;
  text-wrap: balance;
}

@media (min-width: 1121px) {
  .service-showcase-grid {
    align-items: stretch;
  }

  .service-tile.visual.text-visual {
    min-height: 100%;
  }

  .text-visual strong {
    max-width: 92%;
  }
}

@media (max-width: 1280px) {
  .text-visual strong {
    font-size: clamp(1.75rem, 2vw, 2.6rem);
  }
}

@media (max-width: 760px) {
  .service-tile.visual.text-visual {
    min-height: 230px;
    padding: 26px 24px;
    align-items: flex-start;
  }

  .text-visual span {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .text-visual strong {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.02;
    max-width: 100%;
  }
}


/* =========================================================
   Revisión premium final: composición, jerarquía y acabado
   ========================================================= */

body {
  text-rendering: optimizeLegibility;
}

.site-header {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  border-bottom: 0;
}

.site-header::after {
  content: "";
  display: block;
  width: min(900px, 80vw);
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, transparent, rgba(23,60,61,.14), transparent);
}

.brand img {
  filter: drop-shadow(0 14px 22px rgba(23,60,61,.08));
}

.nav {
  margin-top: 14px;
  padding: 8px;
  background: rgba(255,250,242,.74);
  backdrop-filter: blur(12px);
}

.nav a {
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav a:hover {
  transform: translateY(-1px);
}

.hero.premium-hero {
  padding-left: clamp(24px, 5vw, 88px);
  padding-right: clamp(24px, 5vw, 88px);
}

.hero-inner {
  grid-template-columns: minmax(380px, .9fr) minmax(520px, 1.1fr);
}

.hero-copy {
  background:
    linear-gradient(135deg, rgba(255,250,242,.92), rgba(255,250,242,.70)),
    radial-gradient(circle at 0 100%, rgba(195,122,76,.12), transparent 34%);
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.badge {
  font-size: .86rem;
}

.hero-visual {
  max-height: 660px;
}

.metrics {
  gap: 16px;
}

.metrics div {
  min-height: 112px;
  display: grid;
  align-content: center;
  border-color: rgba(255,255,255,.66);
  background:
    linear-gradient(135deg, rgba(255,250,242,.84), rgba(255,250,242,.58));
}

.metrics strong {
  color: var(--ink);
}

.statement-card {
  position: relative;
  overflow: hidden;
}

.statement-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(194,161,92,.20);
  border-radius: 34px;
  pointer-events: none;
}

.editorial-grid {
  align-items: stretch;
}

.editorial-copy,
.experience-copy,
.contact-copy {
  align-self: center;
}

.concept-panel {
  min-height: 100%;
  display: grid;
  align-content: center;
}

/* Servicios: tarjetas más ordenadas */
.services-showcase .section-heading h2,
.section-heading.centered h2 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-showcase-grid {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.service-tile {
  min-height: 280px;
}

.service-tile.large {
  grid-row: span 2;
}

.service-tile h3 {
  font-size: 1.35rem;
}

.service-tile p {
  font-size: 1rem;
}

.service-tile.visual.text-visual {
  min-height: 280px;
  justify-content: center;
}

.text-visual strong {
  font-size: clamp(1.9rem, 2vw, 2.6rem);
  line-height: 1.04;
  max-width: 96%;
}

/* Tarjeta de cuidado: evita cortes en pantalla y mejora legibilidad */
.service-tile.dark {
  min-height: 280px;
  display: grid;
  align-content: center;
}

.service-tile.dark h3 {
  max-width: 95%;
  line-height: 1.08;
}

.service-tile.dark p {
  max-width: 95%;
}

/* Nueva sección ideal para */
.ideal-section {
  padding-top: 60px;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.ideal-grid article {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,250,242,.78), rgba(255,250,242,.54));
  box-shadow: var(--shadow-soft);
}

.ideal-grid article::before {
  content: "";
  display: block;
  width: 44px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--copper);
}

.ideal-grid h3 {
  margin-bottom: 12px;
}

.ideal-grid p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

/* Bloque oscuro más premium */
.dark-band {
  position: relative;
  overflow: hidden;
}

.dark-band::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

/* FAQ más limpio */
.faq {
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 24px;
}

details {
  transition: transform .18s ease, box-shadow .18s ease;
}

details:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(23,60,61,.11);
}

/* Contacto mejor rematado */
.contact-form {
  border-radius: 38px;
}

.contact-form .btn.primary {
  margin-top: 4px;
}

.footer {
  margin-top: 20px;
  background: rgba(255,250,242,.34);
}

/* Evitar recortes horizontales y márgenes excesivos */
main {
  overflow: hidden;
}

.section {
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive final */
@media (max-width: 1180px) {
  .hero-inner,
  .editorial-grid,
  .experience,
  .contact,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-visual {
    max-height: none;
  }

  .service-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-tile.large {
    grid-row: auto;
  }

  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header::after {
    width: 100%;
  }

  .service-showcase-grid,
  .ideal-grid,
  .premium-timeline,
  .value-band {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .service-tile.dark,
  .service-tile.visual.text-visual {
    min-height: auto;
  }

  .text-visual strong {
    font-size: clamp(1.9rem, 7.5vw, 3rem);
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: auto;
  }

  .dark-band {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 200px;
  }

  .hero.premium-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    padding: 22px;
  }

  .badge {
    font-size: .78rem;
  }

  .eyebrow {
    letter-spacing: .16em;
  }

  h1 {
    letter-spacing: -.055em;
  }

  .statement-card,
  .concept-panel,
  .contact-form,
  .dark-band {
    border-radius: 28px;
  }

  .statement-card::before {
    display: none;
  }
}


/* ==========================================================================
   Añadidos: accesibilidad, datos de contacto, consentimiento RGPD,
   pie ampliado y páginas legales.
   ========================================================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 14px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Las imágenes conservan su proporción aunque lleven atributos width/height */
img { height: auto; }

/* El logotipo ya tiene fondo transparente: no necesita fusión de capas */
.brand img,
.footer img { mix-blend-mode: normal; }

.hero-note {
  margin: 18px 0 0;
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero-note a { color: var(--ink); font-weight: 800; text-decoration: underline; }

/* --- Datos de contacto --- */

.contact-direct {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-direct li {
  display: grid;
  gap: 2px;
  padding-left: 16px;
  border-left: 3px solid var(--sage);
}
.contact-direct > li > span {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
}
.contact-direct a {
  width: fit-content;
  font-weight: 800;
  color: var(--ink);
}
.contact-direct a:hover { text-decoration: underline; }

/* --- Formulario: consentimiento y antispam --- */

.contact-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  font-size: .87rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}
.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--copper);
}
.contact-form .consent a { text-decoration: underline; color: var(--ink); }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* --- Pie ampliado --- */

.footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
}
.footer h2 {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-brand img { width: 170px; margin-bottom: 10px; }
.footer-col { display: flex; flex-direction: column; gap: 7px; }
.footer-col a { width: fit-content; font-weight: 600; }
.footer-col a:hover { text-decoration: underline; }
.footer-col p { margin: 0; line-height: 1.6; }
.footer-col .cif { margin-top: 8px; font-weight: 800; color: var(--ink); }

.footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.footer .footer-links a { font-weight: 600; color: var(--muted); }
.footer .footer-links a:hover { color: var(--ink); }

.footer-bottom {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
}

@media (max-width: 900px) {
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer { grid-template-columns: 1fr; }
}

/* --- Páginas legales --- */

.legal {
  max-width: 76ch;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 72px);
}
.legal h1 { margin-top: 0; }
.legal h2 {
  margin-top: 2em;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}
.legal p,
.legal li { color: var(--muted); line-height: 1.75; }
.legal ul { padding-left: 1.15em; }
.legal a { color: var(--ink); font-weight: 700; text-decoration: underline; }
.legal .updated { font-size: .86rem; color: var(--sage); font-weight: 700; }
.legal .back { display: inline-block; margin-top: 42px; }

.thanks {
  min-height: 58vh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 72px);
}
.thanks p { max-width: 46ch; color: var(--muted); }
.thanks .btn { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media print {
  .site-header, .page-glow, .contact-form, .skip-link { display: none; }
  body { background: #fff; }
}
