:root {
  --ink: #17130f;
  --paper: #f6f2ec;
  --paper-strong: #fffaf2;
  --muted: #756b5f;
  --line: rgba(23, 19, 15, 0.14);
  --gold: #b58a52;
  --ignis: #b64a37;
  --vestis: #b99a6a;
  --shadow: 0 26px 80px rgba(23, 19, 15, 0.18);
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(15, 13, 11, 0.86);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(18px);
  color: var(--paper-strong);
}

.site-logo img {
  width: 132px;
  height: 36px;
  object-fit: contain;
  filter: invert(1) brightness(1.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-family {
  position: relative;
}

.nav-family summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  opacity: 0.84;
}

.nav-family summary::-webkit-details-marker {
  display: none;
}

.nav-family summary::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-family[open] summary,
.nav-family summary:hover,
.nav-family summary:focus-visible {
  opacity: 1;
}

.nav-family[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-family__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  min-width: 260px;
  padding: 8px;
  border: 1px solid rgba(23, 19, 15, 0.1);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  color: #17130f;
  backdrop-filter: blur(22px);
}

.nav-family__menu a {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #17130f;
  opacity: 1;
}

.nav-family__menu a:hover,
.nav-family__menu a:focus-visible {
  background: rgba(178, 137, 79, 0.14);
}

.nav-family__menu span {
  font-weight: 750;
  letter-spacing: 0.08em;
}

.nav-family__menu small {
  color: rgba(23, 19, 15, 0.66);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
}

.nav-toggle {
  display: none;
}

.nav-contact {
  padding: 10px 15px;
  border: 1px solid rgba(255, 250, 242, 0.42);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 118px clamp(22px, 5vw, 76px) 74px;
  background: #060504;
  color: var(--paper-strong);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.74));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroImageFadeIn 1600ms ease forwards;
}

@keyframes heroImageFadeIn {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 0.82; transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(260px, 54vw);
  margin: 0 auto 26px;
  filter: invert(1) brightness(1.9);
}

.hero:not(.hero--about) .hero-logo {
  width: min(360px, 68vw);
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

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

h1,
h2 {
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid rgba(23, 19, 15, 0.2);
  border-radius: 2px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: #080604;
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 250, 242, 0.42);
  color: var(--paper-strong);
}

.hero-brand-actions .button--brand {
  min-width: 142px;
  background: rgba(255, 250, 242, 0.94);
  border-color: rgba(255, 250, 242, 0.94);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 1px 2px #000, 0 0 7px rgba(0, 0, 0, 0.96) !important;
}

.hero-brand-actions .button--brand:hover,
.hero-brand-actions .button--brand:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.78) !important;
}

.intro-band,
.active-lines,
.value-section,
.process-section,
.examples-section,
.coming-section,
.cta-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 4vw, 68px);
}

.intro-band {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(27px, 3.5vw, 48px);
  text-align: center;
}

.intro-band p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

.active-lines > .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.line-card {
  position: relative;
  min-height: min(54vw, 520px);
  overflow: hidden;
  border-radius: 4px;
  background: #0f0c09;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.line-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 520ms ease, opacity 520ms ease;
}

.line-card:hover .line-card__image,
.line-card:focus-visible .line-card__image {
  transform: scale(1.045);
  opacity: 0.86;
}

.line-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.02) 55%);
}

.line-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 48px);
  color: var(--paper-strong);
}

.line-card__logo {
  position: absolute;
  top: clamp(24px, 2.4vw, 38px);
  left: clamp(24px, 2.4vw, 38px);
  z-index: 2;
  width: clamp(118px, 10vw, 154px);
  height: clamp(62px, 6vw, 82px);
  object-fit: contain;
  object-position: left top;
  filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.58));
}

.line-card__title {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
}

.line-card__text {
  max-width: 520px;
  color: rgba(255, 250, 242, 0.86);
  line-height: 1.58;
}

.line-card__link {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.value-grid,
.process-list,
.example-grid,
.coming-grid {
  display: grid;
  gap: 14px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article,
.process-list li,
.example-grid article,
.coming-grid a,
.coming-grid div {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

.value-grid article {
  padding: 26px;
}

.process-section {
  background: #17130f;
  color: var(--paper-strong);
}

.process-section--page {
  min-height: calc(100svh - 76px);
  padding-top: clamp(150px, 15vh, 190px);
}

.process-section--page .section-heading {
  width: min(980px, 100%);
}

.process-intro {
  max-width: 760px;
  margin: 20px 0 0;
}

.process-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.process-section p,
.process-section span {
  color: rgba(255, 250, 242, 0.7);
}

.process-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.06);
  border-color: rgba(255, 250, 242, 0.12);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
}

.examples-section {
  background: var(--paper-strong);
}

.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-grid article {
  padding-bottom: 24px;
  overflow: hidden;
}

.example-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 22px;
}

.example-grid h3,
.example-grid p {
  margin-inline: 22px;
}

.coming-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.coming-grid a,
.coming-grid div {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 22px;
  text-align: center;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.coming-grid a:hover,
.coming-grid a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.coming-grid img {
  width: min(150px, 80%);
  max-height: 86px;
  object-fit: contain;
}

.coming-grid span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  background: #0f0c09;
  color: var(--paper-strong);
}

.cta-section p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.75);
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 22px;
  background: #070604;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-footer span {
  color: rgba(255, 250, 242, 0.58);
}

@media (max-width: 1180px) {
  .value-grid,
  .process-list,
  .coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-grid,
  .example-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    position: absolute;
    inset: 68px 0 auto;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(15, 13, 11, 0.98);
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.1);
  }

  .nav-family {
    width: 100%;
  }

  .nav-family summary {
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.1);
  }

  .nav-family__menu {
    position: static;
    min-width: 0;
    margin: 6px 0 10px;
    box-shadow: none;
  }

  .nav-family__menu a {
    padding: 13px 14px;
    border-bottom-color: rgba(23, 19, 15, 0.08);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 250, 242, 0.35);
    background: transparent;
    color: var(--paper-strong);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 86vh;
    padding-top: 112px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .value-grid,
  .process-list,
  .coming-grid {
    grid-template-columns: 1fr;
  }

  .line-card {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img {
    animation: none;
    opacity: 0.82;
  }
}

/* Dirección visual limpia: jerarquía amplia, controles suaves y CTA tipo cápsula. */
:root {
  --radius-card: 28px;
  --radius-panel: 22px;
  --shadow-soft: 0 18px 60px rgba(23, 19, 15, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  height: 58px;
  padding-block: 9px;
  background: rgba(20, 18, 16, 0.76);
  backdrop-filter: blur(24px) saturate(1.15);
}

.site-nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.nav-contact,
.nav-toggle {
  border-radius: 999px;
}

.hero {
  min-height: max(680px, 92svh);
  padding-top: 104px;
}

.hero-media img.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  animation: domvsHeroCarousel 30s infinite;
}

.hero-media img.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-media img.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-media img.hero-slide:nth-child(3) { animation-delay: 12s; object-position: 58% center; }
.hero-media img.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-media img.hero-slide:nth-child(5) { animation-delay: 24s; }

@keyframes domvsHeroCarousel {
  0% { opacity: 0; transform: scale(1.025); }
  3%, 17% { opacity: 0.86; }
  20% { opacity: 0; transform: scale(1.075); }
  100% { opacity: 0; transform: scale(1.075); }
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 42%, rgba(0, 0, 0, 0.66));
}

.hero-content {
  width: min(1040px, 100%);
}

h1,
h2 {
  font-weight: 650;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 7.2vw, 6.5rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 800px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.hero-local-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -12px auto 26px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-local-proof span {
  color: var(--gold);
}

.button {
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-transform: none;
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.1);
}

.button--solid {
  background: #9a7547;
  border-color: #9a7547;
  color: #fff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.intro-band,
.active-lines,
.value-section,
.process-section,
.examples-section,
.coming-section,
.cta-section {
  padding-block: clamp(72px, 9vw, 126px);
}

.intro-band {
  padding-block: clamp(27px, 3.5vw, 48px);
}

.active-lines {
  padding-block: clamp(36px, 4.5vw, 63px);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.line-grid {
  gap: clamp(22px, 3vw, 38px);
}

.line-card {
  height: clamp(420px, 34vw, 520px);
  min-height: clamp(420px, 34vw, 520px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.line-card__image {
  opacity: 1;
  transform: scale(1.002);
}

.line-card:hover .line-card__image,
.line-card:focus-visible .line-card__image {
  opacity: 1;
  transform: scale(1.025);
}

.line-card__overlay {
  background: linear-gradient(0deg, rgba(16, 15, 14, 0.86), rgba(16, 15, 14, 0.02) 68%);
}

.line-card__body {
  gap: 16px;
  padding: 0 0 32px;
}

.line-card__title,
.line-card__text,
.line-card__link {
  margin-inline: clamp(28px, 4vw, 48px);
}

.line-card__title {
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.line-card__link {
  border: 0;
  color: #f0c98f;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.value-grid article,
.process-list li,
.example-grid article,
.coming-grid a,
.coming-grid div {
  border-radius: var(--radius-panel);
}

.value-grid article,
.example-grid article,
.coming-grid a,
.coming-grid div {
  border-color: transparent;
  box-shadow: 0 10px 36px rgba(23, 19, 15, 0.06);
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-list li {
  min-height: 170px;
}

.cta-section {
  margin: clamp(18px, 3vw, 40px);
  border-radius: var(--radius-card);
}

@media (max-width: 720px) {
  .site-header { height: 58px; }
  .site-nav { inset-block-start: 58px; }
  .hero { min-height: 88svh; padding-top: 96px; }
  .hero-local-proof { display: none; }
  .line-card { height: min(78svh, 580px); min-height: 520px; }
  .process-list { grid-template-columns: 1fr; }
  .process-section--page { padding-top: 112px; }
  .cta-section { margin: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img.hero-slide { display: none; animation: none; }
  .hero-media img.hero-slide:first-child { display: block; opacity: 0.86; transform: none; }
}

/* Logotipo principal con mayor presencia en la cabecera DOMVS. */
.site-header {
  height: 92px;
  padding-block: 10px;
}

.site-logo img {
  width: 264px;
  height: 72px;
}

.hero {
  padding-top: 138px;
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
  }

  .site-logo img {
    width: 200px;
    height: 56px;
  }

  .site-nav {
    inset-block-start: 76px;
  }

  .hero {
    padding-top: 112px;
  }
}

/* Portada corporativa alineada con el lenguaje visual de VESTIS. */
.hero.hero--home {
  place-items: end start;
  min-height: 100svh;
  padding: 138px clamp(24px, 4.5vw, 72px) clamp(36px, 5vw, 68px);
}

.hero--home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.82) 0%, rgba(11, 9, 7, 0.58) 34%, rgba(11, 9, 7, 0.12) 76%),
    linear-gradient(180deg, rgba(11, 9, 7, 0.32), transparent 38%, rgba(11, 9, 7, 0.64));
}

.hero--home .hero-content {
  width: min(760px, 100%);
  margin: 0;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.88), 0 1px 5px rgba(0, 0, 0, 0.92);
}

.hero.hero--home .hero-logo {
  width: min(340px, 72vw);
  margin: 0 0 24px;
  object-position: left center;
  filter: invert(1) brightness(1.9) drop-shadow(0 0 16px rgba(255, 255, 255, 0.34));
}

.hero--home h1 {
  max-width: 760px;
  margin-inline: 0;
  font-size: clamp(3.2rem, 5.7vw, 6.2rem);
}

.hero--home .hero-lead {
  max-width: 700px;
  margin-inline: 0;
}

.hero--home .hero-local-proof,
.hero--home .hero-actions {
  justify-content: flex-start;
}

.hero--home .hero-local-proof {
  margin-inline: 0;
}

@media (max-width: 720px) {
  .hero.hero--home {
    min-height: 100svh;
    padding: 104px 20px 30px;
  }

  .hero.hero--home .hero-logo {
    width: min(250px, 68vw);
    margin-bottom: 18px;
  }

  .hero--home h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }
}

/* Cabecera corporativa alineada con el patrón visual de VESTIS. */
.site-header {
  min-height: 112px;
  height: auto;
  padding-block: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  width: auto;
  height: 80px;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.62)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.28));
}

.site-nav {
  gap: clamp(22px, 2.2vw, 36px);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero.hero--home .hero-logo {
  width: min(22rem, 84vw);
  max-height: 14rem;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255, 255, 255, 0.58)) drop-shadow(0 0 38px rgba(255, 255, 255, 0.26));
}

@media (max-width: 720px) {
  .site-header {
    min-height: 96px;
    padding-block: 16px;
  }

  .site-logo img {
    height: 64px;
  }

  .site-nav {
    inset-block-start: 96px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero.hero--home {
    padding-top: 124px;
  }
}
