/* ==========================================================================
   VELTORRA — base styles
   Premium, minimal, quiet.
   ========================================================================== */

:root {
  --black: #07090a;
  --black-soft: #111210;
  --ivory: #d9d4cc;
  --ivory-deep: #d8d1c6;
  --copper: #c17b3c;
  --copper-light: #d69a5c;
  --line: rgba(193, 123, 60, .28);
  --paper: #f3eee4;
  --stone: #e9e3d8;
  --cream: #f8f4eb;
  --darkline: rgba(20, 19, 16, .16);
  --page-x: clamp(24px, 5.05vw, 78px);
  --header-h: 90px;
  --benefits-h: 104px;

  --font-body: Manrope, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
}

section h2 {
  margin: 0;
}

/* Skip link ---------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ivory);
  color: var(--black);
  padding: 12px 18px;
  font-size: 14px;
  z-index: 200;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Shared -------------------------------------------------------------- */

.eyebrow {
  margin: 0 0 20px;
  color: var(--copper-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8e5529;
}

.lead {
  max-width: 485px;
  margin: 0;
  color: rgba(255, 255, 255, .81);
  font-size: 18px;
  line-height: 1.65;
}

.bg-light .lead,
.cta .lead {
  color: #57534b;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 62px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, .32);
  color: #e6e1d8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.button.primary {
  border-color: rgba(255, 255, 255, .14);
  background: #ac6a30;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  color: #fbf6ee;
}

.button.dark {
  color: #171815;
  border-color: #8f8a80;
}

.button:hover,
.button:focus-visible {
  border-color: var(--copper-light);
  color: #fff;
  background: rgba(193, 123, 60, .07);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #bd7a3c;
  color: #fff;
}

.button.dark:hover,
.button.dark:focus-visible {
  border-color: #171815;
  color: #171815;
  background: rgba(20, 19, 16, .05);
}

.arrow {
  font-size: 18px;
  font-weight: 200;
  opacity: .85;
}

.button .arrow {
  transition: transform .25s ease;
}

.button:hover .arrow,
.button:focus-visible .arrow {
  transform: translate(3px, -3px);
}

/* Nav -------------------------------------------------------------------- */

.site-head {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 104px 62px;
  grid-template-areas:
    "brand secondary actions"
    "primary primary primary";
  align-items: center;
  padding: 0 var(--page-x);
  background: linear-gradient(180deg, rgba(6, 7, 6, .58), rgba(6, 7, 6, .3) 64%, rgba(6, 7, 6, 0));
  border-bottom: 1px solid rgba(193, 123, 60, .38);
}

/* Blur lives on a pseudo-element: backdrop-filter on .site-head itself would
   make the header the containing block for the fixed .head-menu drawer,
   collapsing the mobile menu to its own padding height. */
.site-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  display: block;
  height: 84px;
  width: auto;
}

.head-menu {
  display: contents;
}

.head-secondary {
  grid-area: secondary;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(26px, 2.8vw, 46px);
  padding-right: clamp(30px, 3.6vw, 56px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(238, 233, 223, .8);
}

.head-secondary a {
  position: relative;
  padding: 9px 0;
  transition: color .2s ease;
}

.head-secondary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--copper-light);
  transition: right .28s ease;
}

.head-secondary a:hover,
.head-secondary a:focus-visible {
  color: #fff;
}

.head-secondary a:hover::after,
.head-secondary a:focus-visible::after {
  right: 0;
}

.head-primary {
  grid-area: primary;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-top: 1px solid rgba(193, 123, 60, .22);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--copper-light);
  transition: right .28s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.has-dropdown.is-open .nav-link::after {
  right: 0;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: color .2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: var(--copper-light);
}

.dropdown-toggle svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .2s ease;
}

.has-dropdown {
  position: relative;
}

.has-dropdown.is-open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: -18px;
  transform: translateY(8px);
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(8, auto);
  width: max-content;
  min-width: 264px;
  background: rgba(15, 16, 14, .97);
  border: 1px solid rgba(193, 123, 60, .32);
  border-top: 2px solid var(--copper);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .55);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.head-primary .nav-item:nth-last-child(-n+3) .dropdown-menu {
  left: auto;
  right: -16px;
}

.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(238, 233, 223, .82);
  white-space: nowrap;
  border-left: 1px solid transparent;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
  color: #fff;
  background: rgba(193, 123, 60, .1);
  border-left-color: var(--copper-light);
}

.head-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 224px;
  min-height: 56px;
  padding: 0 24px 0 30px;
  border: 1px solid rgba(193, 123, 60, .65);
  color: #e8e2d7;
  background: rgba(193, 123, 60, .07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  border-color: var(--copper-light);
  background: rgba(193, 123, 60, .08);
}

.nav-toggle {
  display: none;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ivory);
  transition: transform .2s ease, opacity .2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (hover: hover) and (min-width: 1181px) {
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown:hover .dropdown-toggle svg,
  .has-dropdown:focus-within .dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

@media (max-width: 1180px) {
  .site-head {
    grid-template-columns: 1fr auto;
    grid-template-rows: 80px;
    grid-template-areas: "brand actions";
  }

  .nav-toggle {
    display: flex;
  }

  .head-menu {
    display: block;
    position: fixed;
    inset: 81px 0 0 0;
    z-index: 20;
    background: var(--black-soft);
    padding: 6px var(--page-x) 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  body.nav-open .head-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .head-primary {
    display: block;
    border-top: 0;
  }

  .nav-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    font-size: 15px;
    letter-spacing: .12em;
    padding: 17px 0;
    align-self: auto;
  }

  .nav-link::after,
  .head-secondary a::after {
    display: none;
  }

  .dropdown-toggle {
    width: 46px;
    height: 46px;
  }

  .dropdown-menu,
  .head-primary .nav-item:nth-last-child(-n+2) .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: none;
    padding: 0 0 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    flex-basis: 100%;
  }

  .has-dropdown.is-open .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu li a {
    padding: 11px 0 11px 14px;
  }

  .head-secondary {
    display: block;
    padding: 20px 0 0;
    font-size: 13px;
    letter-spacing: .14em;
  }

  .head-secondary a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: rgba(255, 255, 255, .8);
  }
}

/* 01 — Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--black) url("/images/hero-house.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 68% 58% at 100% 0%, rgba(2, 3, 4, .5) 0%, transparent 62%),
    radial-gradient(ellipse 62% 52% at 100% 100%, rgba(2, 3, 4, .4) 0%, transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .16) 16%, transparent 30%),
    linear-gradient(90deg, rgba(3, 5, 6, .58) 0%, rgba(3, 5, 6, .22) 40%, transparent 65%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 90vw);
  margin-left: var(--page-x);
  padding: 100px 0 calc(var(--benefits-h) + 64px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(52px, 4.78vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.032em;
  color: var(--ivory);
  text-wrap: balance;
}

.accent-line {
  width: 50px;
  height: 2px;
  margin: 30px 0 26px;
  background: var(--copper);
}

.hero-disciplines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  max-width: 520px;
  margin-top: 30px;
}

.hero-disciplines li {
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(217, 212, 204, .13);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(233, 228, 220, .85);
  white-space: nowrap;
}

.hero-disciplines .idx {
  color: var(--copper-light);
  font-size: 11px;
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.benefits {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: var(--benefits-h);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  padding: 0 var(--page-x);
  border-top: 1px solid rgba(193, 123, 60, .42);
  background: linear-gradient(180deg, rgba(8, 10, 11, .88), rgba(4, 6, 7, .96));
  backdrop-filter: blur(10px);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 30px;
  border-left: 1px solid rgba(217, 212, 204, .13);
}

.benefit:first-child {
  padding-left: 0;
  border-left: 0;
}

.benefit:last-child {
  padding-right: 0;
}

.benefit-number {
  font-family: var(--font-display);
  color: var(--copper-light);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.benefit-body {
  display: grid;
  gap: 6px;
}

.benefit-title {
  color: #ece7de;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.3;
}

.benefit-sub {
  color: #8f8a80;
  font-size: 12px;
  line-height: 1.45;
}

/* 02 — Servicios ------------------------------------------------------------- */

.veltorra-services {
  --vs-cream: #f3eee4;
  --vs-ink: #171512;
  --vs-copy: #4f493f;
  --vs-copper: #9b5a28;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 51px var(--page-x) 37px;
  color: var(--vs-ink);
  background:
    radial-gradient(circle at 81% 8%, rgba(255, 255, 255, .44), transparent 26%),
    radial-gradient(circle at 12% 67%, rgba(188, 148, 104, .08), transparent 33%),
    var(--vs-cream);
  font-family: var(--font-body);
}

.veltorra-services::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.vs-shell {
  width: 100%;
  margin: 0 auto;
}

.vs-kicker {
  margin: 0;
  color: var(--vs-copper);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .245em;
  text-transform: uppercase;
}

.vs-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 64px;
  align-items: start;
  margin-top: 28px;
}

.vs-title {
  max-width: 810px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 4.12vw, 67px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}

.vs-lead {
  justify-self: end;
  width: 100%;
  max-width: 440px;
  margin: 32px 0 0;
  color: #39342e;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 222px 208px 208px;
  gap: 7px;
  margin-top: 50px;
}

.vs-card,
.vs-cta {
  position: relative;
  min-width: 0;
  clip-path: polygon(
    0 0,
    calc(100% - 7px) 0,
    100% 7px,
    100% 100%,
    7px 100%,
    0 calc(100% - 7px)
  );
}

.vs-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid transparent;
  padding: 66px 52px 26px 168px;
  background:
    linear-gradient(rgba(248, 244, 236, .47), rgba(248, 244, 236, .47)) padding-box,
    linear-gradient(135deg, rgba(156, 96, 46, .42), rgba(151, 101, 55, .23)) border-box;
  transition: background-color .28s ease;
}

.vs-card:hover {
  background:
    linear-gradient(rgba(255, 252, 246, .72), rgba(255, 252, 246, .72)) padding-box,
    linear-gradient(135deg, rgba(156, 96, 46, .67), rgba(151, 101, 55, .3)) border-box;
}

.vs-number {
  position: absolute;
  top: 14px;
  left: 28px;
  color: var(--vs-copper);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.vs-icon {
  position: absolute;
  top: 61px;
  left: 24px;
  width: 108px;
  height: 137px;
  color: var(--vs-copper);
  filter: drop-shadow(0 5px 6px rgba(79, 45, 22, .1));
}

.vs-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vs-icon .frame {
  fill: rgba(255, 253, 247, .34);
  stroke: rgba(154, 91, 40, .53);
  stroke-width: 1.1;
}

.vs-icon .art {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(1px 1px 0 rgba(255, 255, 255, .8))
    drop-shadow(0 1px 1px rgba(73, 36, 13, .25));
}

.vs-icon .art-fill {
  fill: rgba(155, 90, 40, .13);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vs-card-copy {
  width: 100%;
}

.vs-card-title {
  margin: 0 0 14px;
  color: #11100e;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.vs-card-text {
  max-width: 285px;
  margin: 0;
  color: var(--vs-copy);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.57;
}

.vs-arrow {
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: #a45d28;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.vs-arrow,
.vs-cta-button span {
  transition: transform .25s ease;
}

.vs-card:hover .vs-arrow,
.vs-cta:hover .vs-cta-button span {
  transform: translate(3px, -3px);
}

.vs-card--construction {
  padding-top: 55px;
}

.vs-card--construction .vs-icon {
  top: 50px;
}

.vs-card--construction .vs-card-text {
  max-width: 300px;
}

.vs-cta {
  grid-column: span 2;
  display: flex;
  align-items: center;
  min-height: 208px;
  padding: 40px 135px 40px 73px;
  color: #f7efe3;
  background:
    radial-gradient(circle at 91% 79%, rgba(171, 105, 51, .08), transparent 23%),
    radial-gradient(circle at 35% 15%, rgba(255, 255, 255, .035), transparent 31%),
    linear-gradient(118deg, #2a1d14, #20140e 75%);
  box-shadow: 7px 9px 14px rgba(56, 39, 25, .18);
}

.vs-cta::before,
.vs-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  clip-path: polygon(
    0 0,
    calc(100% - 7px) 0,
    100% 7px,
    100% 100%,
    7px 100%,
    0 calc(100% - 7px)
  );
}

.vs-cta::before {
  inset: 1px;
  border: 1px solid rgba(197, 136, 80, .55);
}

.vs-cta::after {
  inset: 9px;
  border: 1px solid rgba(197, 136, 80, .32);
}

.vs-cta-contours {
  position: absolute;
  top: -3px;
  right: 86px;
  width: 410px;
  height: 211px;
  color: #b3743f;
  opacity: .19;
}

.vs-cta-text {
  position: relative;
  z-index: 1;
  max-width: 630px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.015em;
}

.vs-cta-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 68px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid #bd7841;
  border-radius: 50%;
  color: #c58149;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  transform: translateY(-50%);
}

.vs-cta-button span {
  display: block;
}

@media (max-width: 1180px) {
  .vs-intro {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .vs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .vs-card,
  .vs-cta {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .veltorra-services {
    padding-top: 38px;
    padding-bottom: 22px;
  }

  .vs-kicker {
    font-size: 11px;
  }

  .vs-intro {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 23px;
  }

  .vs-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .vs-lead {
    justify-self: start;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.6;
  }

  .vs-grid {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 36px;
  }

  .vs-card {
    min-height: 210px;
    padding: 64px 38px 25px 148px;
  }

  .vs-icon {
    left: 18px;
    width: 102px;
  }

  .vs-number {
    left: 20px;
  }

  .vs-card-title {
    font-size: 17px;
  }

  .vs-card-text {
    font-size: 13.5px;
  }

  .vs-card--construction {
    padding-top: 59px;
  }

  .vs-cta {
    grid-column: span 1;
    min-height: 225px;
    padding: 40px 95px 40px 35px;
  }

  .vs-cta-text {
    font-size: 29px;
  }

  .vs-cta-button {
    right: 28px;
    width: 58px;
    height: 58px;
  }
}

/* 03 — Claridad --------------------------------------------------------------- */

.veltorra-clarity {
  --vc-bg: #111313;
  --vc-ivory: #ebe7df;
  --vc-muted: #b8b2a8;
  --vc-copper: #c67736;
  --vc-copper-line: rgba(198, 119, 54, .58);

  position: relative;
  width: 100%;
  min-height: 836px;
  overflow: hidden;
  color: var(--vc-ivory);
  background-color: var(--vc-bg);
  background-image:
    radial-gradient(circle at 22% 45%, rgba(255, 255, 255, .018), transparent 36%),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, .012), transparent 32%),
    linear-gradient(rgba(10, 12, 12, .06), rgba(10, 12, 12, .06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' fill='%23999' opacity='.09' filter='url(%23n)'/%3E%3C/svg%3E");
  background-blend-mode: screen, screen, normal, soft-light;
  font-family: var(--font-body);
  isolation: isolate;
}

.veltorra-clarity::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .05), transparent 18%, transparent 82%, rgba(0, 0, 0, .05)),
    radial-gradient(ellipse at 50% 50%, transparent 36%, rgba(0, 0, 0, .12) 100%);
}

.vc-shell {
  width: 100%;
  max-width: 1880px;
  min-height: 836px;
  margin: 0 auto;
  padding: 106px var(--page-x) 72px;
}

.vc-layout {
  display: grid;
  grid-template-columns: minmax(460px, .77fr) minmax(790px, 1.23fr);
  gap: 72px;
  align-items: start;
}

.vc-intro {
  padding-top: 1px;
}

.vc-kicker {
  margin: 0 0 28px;
  color: var(--vc-copper);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.vc-title {
  max-width: 590px;
  margin: 0;
  color: var(--vc-ivory);
  font-family: var(--font-display);
  font-size: clamp(67px, 4.45vw, 84px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.vc-accent {
  width: 82px;
  height: 2px;
  margin: 31px 0 31px;
  background: var(--vc-copper);
}

.vc-lead {
  max-width: 510px;
  margin: 0;
  color: var(--vc-ivory);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: -.02em;
}

.vc-seal {
  display: block;
  width: 164px;
  height: 164px;
  margin-top: 20px;
  object-fit: contain;
}

.vc-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-step {
  --vc-cut: 12px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 72px 1px minmax(0, 1fr) auto;
  column-gap: 28px;
  min-height: 148px;
  align-items: center;
  padding: 26px 30px;
  background: linear-gradient(135deg, rgba(198, 119, 54, .6), rgba(120, 88, 50, .34));
  clip-path: polygon(
    0 var(--vc-cut),
    var(--vc-cut) 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    var(--vc-cut) 100%,
    0 calc(100% - var(--vc-cut))
  );
  transition: background .28s ease;
}

.vc-step::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .016), transparent 46%),
    rgba(17, 19, 18, .97);
  clip-path: polygon(
    0 11px,
    11px 0,
    calc(100% - 19px) 0,
    100% 19px,
    100% calc(100% - 19px),
    calc(100% - 19px) 100%,
    11px 100%,
    0 calc(100% - 11px)
  );
}

.vc-step:hover {
  background: linear-gradient(135deg, rgba(198, 119, 54, .88), rgba(133, 97, 54, .5));
}

.vc-number {
  align-self: center;
  color: var(--vc-copper);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}

.vc-divider {
  align-self: stretch;
  width: 1px;
  min-height: 72px;
  margin: 4px 0;
  background: var(--vc-copper-line);
}

.vc-copy {
  min-width: 0;
}

.vc-step-title {
  margin: 0 0 8px;
  color: var(--vc-ivory);
  font-size: clamp(24px, 1.55vw, 30px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.vc-step-text {
  max-width: 560px;
  margin: 0;
  color: var(--vc-muted);
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.vc-tag {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(198, 119, 54, .5);
  background: rgba(198, 119, 54, .07);
  color: #d9a15e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1480px) {
  .vc-layout {
    grid-template-columns: minmax(410px, .72fr) minmax(680px, 1.28fr);
    gap: 50px;
  }

  .vc-step {
    grid-template-columns: 60px 1px minmax(0, 1fr) auto;
    column-gap: 22px;
  }

  .vc-lead {
    font-size: 21px;
  }
}

@media (max-width: 1180px) {
  .veltorra-clarity,
  .vc-shell {
    min-height: 0;
  }

  .vc-shell {
    padding-top: 92px;
    padding-bottom: 82px;
  }

  .vc-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .vc-title,
  .vc-lead {
    max-width: 720px;
  }

  .vc-seal {
    margin-top: 28px;
  }
}

@media (max-width: 720px) {
  .vc-shell {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .vc-kicker {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .vc-title {
    font-size: clamp(50px, 15vw, 68px);
  }

  .vc-accent {
    margin-block: 25px;
  }

  .vc-lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .vc-seal {
    width: 138px;
    height: 138px;
  }

  .vc-layout {
    gap: 54px;
  }

  .vc-step {
    --vc-cut: 9px;
    grid-template-columns: 44px 1px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 0;
    padding: 22px 18px 24px;
  }

  .vc-number {
    font-size: 32px;
  }

  .vc-divider {
    min-height: 64px;
    margin: 0;
  }

  .vc-step-title {
    font-size: 21px;
  }

  .vc-step-text {
    font-size: 16px;
  }

  .vc-tag {
    grid-column: 3;
    justify-self: start;
    margin-top: 14px;
    font-size: 10px;
  }

}

/* 04 — Aerotermia feature ------------------------------------------------------ */

.va-section {
  --va-ivory: #eee3d1;
  --va-ivory-muted: #c9bdab;
  --va-copper: #bb6838;
  --va-bronze: #9f724a;
  --va-line: rgba(182, 125, 76, .55);

  position: relative;
  width: 100%;
  min-height: 940px;
  overflow: hidden;
  isolation: isolate;
  color: var(--va-ivory);
  background: #090704 url("/images/aerothermal-blueprint.webp") center / cover no-repeat;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, .72);
}

.va-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 7, 4, .62) 0%, rgba(9, 7, 4, .3) 32%, transparent 52%),
    linear-gradient(0deg, rgba(9, 7, 4, .58), transparent 32%);
}

.va-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.va-stage {
  position: relative;
  width: min(100%, 1680px);
  min-height: 940px;
  margin: 0 auto;
  padding: 68px var(--page-x) 0;
}

.va-copy {
  position: relative;
  z-index: 3;
  width: 40%;
  max-width: 580px;
}

.va-kicker {
  margin: 0;
  color: var(--va-copper);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.va-kicker::after {
  content: "";
  display: block;
  width: 112px;
  height: 1px;
  margin-top: 25px;
  background: linear-gradient(90deg, var(--va-copper), rgba(187, 104, 56, .18));
}

.va-title {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--va-ivory);
  font-family: var(--font-display);
  font-size: clamp(52px, 4.18vw, 76px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.038em;
  text-wrap: balance;
}

.va-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 28px 0 24px;
  background: var(--va-copper);
}

.va-intro {
  max-width: 520px;
  margin: 0;
  color: var(--va-ivory-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: -.015em;
}

.va-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 348px;
  min-height: 54px;
  margin-top: 31px;
  padding: 0 25px 0 31px;
  border: 1px solid rgba(187, 104, 56, .88);
  color: var(--va-copper);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .19em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.va-cta span {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

.va-cta:hover {
  color: #120b06;
  background: var(--va-copper);
  transform: translateY(-2px);
}

.va-cta:focus-visible {
  outline: 2px solid var(--va-ivory);
  outline-offset: 4px;
}

.va-specs {
  position: absolute;
  z-index: 3;
  left: var(--page-x);
  right: var(--page-x);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 210px;
  border-top: 1px solid var(--va-line);
  border-bottom: 1px solid rgba(182, 125, 76, .26);
}

.va-specs::before,
.va-specs::after {
  content: "";
  position: absolute;
  left: -7px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--va-line);
  border-radius: 50%;
}

.va-specs::before {
  top: -7px;
}

.va-specs::after {
  bottom: -7px;
}

.va-spec {
  position: relative;
  min-width: 0;
  padding: 23px 46px 24px;
}

.va-spec + .va-spec {
  border-left: 1px solid var(--va-line);
}

.va-number {
  display: block;
  margin-bottom: 7px;
  color: var(--va-copper);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.va-spec h3 {
  margin: 0 0 8px;
  color: var(--va-ivory);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.va-spec p {
  max-width: 250px;
  margin: 0;
  color: var(--va-ivory-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -.015em;
}

.va-corner {
  position: absolute;
  right: -7px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--va-line);
  border-radius: 50%;
}

.va-corner::before,
.va-corner::after,
.va-specs::before,
.va-specs::after {
  box-shadow: 0 0 0 5px rgba(159, 114, 74, .035);
}

.va-corner--top {
  top: -7px;
}

.va-corner--bottom {
  bottom: -7px;
}

@media (max-width: 1180px) {
  .va-section,
  .va-stage {
    min-height: 1080px;
  }

  .va-copy {
    width: 52%;
  }

  .va-section {
    background-position: 72% center;
  }

  .va-section::before {
    background:
      linear-gradient(90deg, rgba(9, 7, 4, .74) 0%, rgba(9, 7, 4, .42) 38%, transparent 60%),
      linear-gradient(0deg, rgba(9, 7, 4, .62), transparent 34%);
  }

  .va-specs {
    grid-template-columns: repeat(2, 1fr);
    min-height: 326px;
  }

  .va-spec {
    padding: 25px 34px;
  }

  .va-spec:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--va-line);
  }

  .va-spec:nth-child(4) {
    border-top: 1px solid var(--va-line);
  }
}

@media (max-width: 760px) {
  .va-section,
  .va-stage {
    min-height: auto;
  }

  .va-stage {
    padding-top: 39px;
  }

  .va-copy {
    width: 100%;
    max-width: none;
  }

  .va-kicker {
    font-size: 10px;
    letter-spacing: .2em;
  }

  .va-title {
    max-width: 520px;
    font-size: clamp(48px, 14vw, 66px);
    line-height: .94;
  }

  .va-intro {
    max-width: 560px;
    font-size: 14px;
  }

  .va-cta {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }

  .va-section {
    background-position: 68% 18%;
    background-size: auto 62%;
  }

  .va-section::before {
    background:
      linear-gradient(180deg, rgba(9, 7, 4, .68) 0%, rgba(9, 7, 4, .4) 40%, rgba(9, 7, 4, .84) 72%);
  }

  .va-specs {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 260px;
  }

  .va-spec {
    padding: 24px 18px;
  }

  .va-spec + .va-spec,
  .va-spec:nth-child(3),
  .va-spec:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--va-line);
  }

  .va-number {
    font-size: 34px;
  }

  .va-corner {
    display: none;
  }
}

/* 05 — Método ------------------------------------------------------------------- */

.veltorra-process {
  --process-paper: #f6f3ed;
  --process-ink: #121311;
  --process-body: #30312f;
  --process-muted: #64645f;
  --process-gold: #a2762b;
  --process-rule: rgba(122, 105, 78, .22);

  position: relative;
  isolation: isolate;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 1717 / 916;
  min-height: 720px;
  margin-inline: auto;
  overflow: hidden;
  color: var(--process-ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .74), transparent 30%),
    linear-gradient(106deg, rgba(255, 255, 255, .3), transparent 48%),
    var(--process-paper);
}

.veltorra-process::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.veltorra-process__blueprint {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  clip-path: polygon(37.5% 0, 100% 0, 100% 54%, 37.5% 54%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0 37%, #000 42%),
    linear-gradient(180deg, #000 0 48%, transparent 56%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0 37%, #000 42%),
    linear-gradient(180deg, #000 0 48%, transparent 56%);
  mask-composite: intersect;
}

.veltorra-process__intro {
  position: absolute;
  top: 5.55cqw;
  left: 5.42cqw;
  width: 36.8cqw;
}

.veltorra-process__eyebrow {
  margin: 0 0 1.48cqw;
  color: var(--process-gold);
  font-size: .92cqw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.veltorra-process__title {
  margin: 0;
  color: var(--process-ink);
  font-family: var(--font-display);
  font-size: 5.55cqw;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.04em;
}

.veltorra-process__lead {
  width: 35cqw;
  margin: 1.72cqw 0 0;
  color: #555651;
  font-size: 1.34cqw;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -.02em;
}

.veltorra-process__track {
  position: absolute;
  z-index: 2;
  top: 29.08cqw;
  left: 6.68cqw;
  right: 5.26cqw;
  height: 1px;
  background: var(--process-gold);
}

.veltorra-process__track::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -.03cqw;
  width: .72cqw;
  height: .72cqw;
  border-top: 1px solid var(--process-gold);
  border-right: 1px solid var(--process-gold);
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: center;
}

.veltorra-process__node {
  position: absolute;
  top: 50%;
  width: 1.34cqw;
  aspect-ratio: 1;
  border: 1px solid var(--process-gold);
  border-radius: 50%;
  background: var(--process-paper);
  transform: translate(-50%, -50%);
}

.veltorra-process__node::after {
  content: "";
  position: absolute;
  inset: .24cqw;
  border-radius: inherit;
  background: var(--process-gold);
}

.veltorra-process__node:nth-child(1) { left: 0; }
.veltorra-process__node:nth-child(2) { left: 26.96%; }
.veltorra-process__node:nth-child(3) { left: 53.80%; }
.veltorra-process__node:nth-child(4) { left: 79.73%; }

.veltorra-process__steps {
  position: absolute;
  inset: 30.55cqw 0 auto;
  height: 19.3cqw;
}

.veltorra-process__step {
  position: absolute;
  top: 0;
  height: 100%;
  padding-right: 2.3cqw;
}

.veltorra-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--process-rule);
}

.veltorra-process__step:nth-child(1) {
  left: 5.82cqw;
  width: 20.50cqw;
}

.veltorra-process__step:nth-child(2) {
  left: 29.76cqw;
  width: 20.39cqw;
}

.veltorra-process__step:nth-child(3) {
  left: 53.58cqw;
  width: 19.63cqw;
}

.veltorra-process__step:nth-child(4) {
  left: 76.47cqw;
  width: 20cqw;
}

.veltorra-process__number {
  margin: -.06cqw 0 1.08cqw;
  font-family: var(--font-display);
  font-size: 5.10cqw;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.06em;
}

.veltorra-process__heading-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1.2cqw;
  margin-bottom: 1.36cqw;
  padding-right: 1.4cqw;
}

.veltorra-process__heading {
  margin: 0;
  color: var(--process-gold);
  font-size: .93cqw;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.veltorra-process__arrow {
  position: absolute;
  right: .02cqw;
  top: 50%;
  width: 1.45cqw;
  height: 1px;
  background: var(--process-gold);
  transform: translateY(-50%);
}

.veltorra-process__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: .55cqw;
  height: .55cqw;
  border-top: 1px solid var(--process-gold);
  border-right: 1px solid var(--process-gold);
  transform: translateY(-50%) rotate(45deg);
}

.veltorra-process__copy {
  max-width: 18.2cqw;
  margin: 0;
  color: var(--process-body);
  font-size: .96cqw;
  font-weight: 400;
  line-height: 1.79;
  letter-spacing: -.025em;
}

.veltorra-process__meta {
  position: absolute;
  left: 0;
  bottom: 1.12cqw;
  display: flex;
  align-items: center;
  gap: .82cqw;
  margin: 0;
  color: var(--process-muted);
  font-size: .78cqw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.veltorra-process__meta::before {
  content: "";
  width: 1.72cqw;
  height: 1px;
  background: var(--process-gold);
}

@media (max-width: 1199px) {
  .veltorra-process {
    aspect-ratio: auto;
    min-height: 0;
    padding: 64px 32px 56px;
  }

  .veltorra-process__blueprint {
    width: 150%;
    height: auto;
    opacity: .58;
    object-fit: contain;
    object-position: top right;
    clip-path: polygon(36% 0, 100% 0, 100% 42%, 36% 42%);
  }

  .veltorra-process__intro,
  .veltorra-process__track,
  .veltorra-process__steps {
    position: relative;
    inset: auto;
  }

  .veltorra-process__intro {
    width: min(720px, 100%);
  }

  .veltorra-process__eyebrow {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .veltorra-process__title {
    font-size: clamp(62px, 9vw, 92px);
  }

  .veltorra-process__lead {
    width: min(620px, 100%);
    margin-top: 28px;
    font-size: 20px;
  }

  .veltorra-process__track {
    left: 8px;
    right: auto;
    width: calc(100% - 16px);
    margin-top: 68px;
  }

  .veltorra-process__node {
    width: 18px;
  }

  .veltorra-process__node::after {
    inset: 4px;
  }

  .veltorra-process__track::after {
    width: 10px;
    height: 10px;
  }

  .veltorra-process__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    margin-top: 26px;
  }

  .veltorra-process__step,
  .veltorra-process__step:nth-child(n) {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 320px;
    padding: 24px 42px 38px 0;
  }

  .veltorra-process__step:nth-child(even) {
    padding-left: 42px;
  }

  .veltorra-process__step:nth-child(2)::after {
    display: none;
  }

  .veltorra-process__step:nth-child(-n+2) {
    border-bottom: 1px solid var(--process-rule);
  }

  .veltorra-process__number {
    margin-bottom: 20px;
    font-size: 78px;
  }

  .veltorra-process__heading-row {
    min-height: 20px;
    margin-bottom: 20px;
    padding-right: 28px;
  }

  .veltorra-process__heading {
    font-size: 14px;
  }

  .veltorra-process__arrow {
    width: 22px;
  }

  .veltorra-process__arrow::after {
    width: 8px;
    height: 8px;
  }

  .veltorra-process__copy {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.8;
  }

  .veltorra-process__meta {
    bottom: 30px;
    gap: 12px;
    font-size: 12px;
  }

  .veltorra-process__meta::before {
    width: 28px;
  }
}

@media (max-width: 699px) {
  .veltorra-process {
    padding: 42px 22px 38px;
  }

  .veltorra-process__blueprint {
    width: 220%;
    opacity: .42;
  }

  .veltorra-process__eyebrow {
    font-size: 11px;
    letter-spacing: .2em;
  }

  .veltorra-process__title {
    font-size: clamp(52px, 16vw, 74px);
    line-height: .94;
  }

  .veltorra-process__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .veltorra-process__track {
    margin-top: 54px;
  }

  .veltorra-process__node:nth-child(2) { left: 33.333%; }
  .veltorra-process__node:nth-child(3) { left: 66.666%; }
  .veltorra-process__node:nth-child(4) { left: 100%; }

  .veltorra-process__steps {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .veltorra-process__step,
  .veltorra-process__step:nth-child(n) {
    min-height: 300px;
    padding: 30px 0 56px;
    border-bottom: 1px solid var(--process-rule);
  }

  .veltorra-process__step:not(:last-child)::after {
    display: none;
  }

  .veltorra-process__step:last-child {
    border-bottom: 0;
  }

  .veltorra-process__number {
    font-size: 76px;
  }

  .veltorra-process__copy {
    max-width: 360px;
  }

  .veltorra-process__meta {
    bottom: 30px;
  }
}

/* 06 — Calidad ------------------------------------------------------------------- */

.concealed-quality {
  --cq-ivory: #f3f0e8;
  --cq-graphite: #171816;
  --cq-ink: #181916;
  --cq-brass: #a67832;
  --cq-light-rule: rgba(166, 120, 50, .34);
  --cq-dark-rule: rgba(209, 179, 125, .33);

  position: relative;
  isolation: isolate;
  container-type: inline-size;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  color: var(--cq-ink);
  background: var(--cq-ivory);
  font-family: var(--font-body);
}

.concealed-quality::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

.concealed-quality__hero {
  display: grid;
  grid-template-columns: 56.2% 43.8%;
  min-height: 29.1cqw;
  background: var(--cq-ivory);
}

.concealed-quality__intro {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 3.45cqw 5.35cqw 2.2cqw 3.55cqw;
  color: var(--cq-ivory);
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 255, 255, .045), transparent 28%),
    var(--cq-graphite);
  clip-path: polygon(0 0, 100% 0, 81.7% 100%, 0 100%);
  margin-right: -18.3%;
}

.concealed-quality__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.1cqw;
  margin: 0 0 1.65cqw;
  color: #bd8d43;
  font-size: .86cqw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.concealed-quality__eyebrow::after {
  content: "";
  width: 16.5cqw;
  height: 1px;
  background: linear-gradient(90deg, var(--cq-brass), transparent);
}

.concealed-quality__title {
  max-width: 38cqw;
  margin: 0;
  color: #f1eee7;
  font-family: var(--font-display);
  font-size: 4.6cqw;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.concealed-quality__subtitle {
  margin: 1.4cqw 0 0;
  color: #bcb2a0;
  font-family: var(--font-display);
  font-size: 1.65cqw;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
}

.concealed-quality__subtitle::after {
  content: "";
  display: block;
  width: 2.55cqw;
  height: 1px;
  margin-top: 1.35cqw;
  background: var(--cq-brass);
}

.concealed-quality__lead {
  max-width: 41cqw;
  margin: 1.18cqw 0 0;
  color: #efede7;
  font-size: .94cqw;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -.018em;
}

.concealed-quality__drawing {
  position: relative;
  min-width: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, .85), transparent 34%),
    var(--cq-ivory);
}

.concealed-quality__cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 26.2cqw;
  border-top: 1px solid rgba(109, 87, 52, .38);
}

.quality-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 1.45cqw 2.75cqw 1.05cqw;
  overflow: hidden;
  color: var(--cq-ink);
  background: var(--cq-ivory);
  text-align: center;
}

.quality-card + .quality-card {
  border-left: 1px solid rgba(119, 95, 57, .28);
}

.quality-card--dark {
  color: #f0ece4;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .045), transparent 32%),
    var(--cq-graphite);
}

.quality-card__topline {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1.25cqw;
}

.quality-card__number {
  flex: none;
  color: var(--cq-brass);
  font-family: var(--font-display);
  font-size: 2.08cqw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}

.quality-card__topline::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--cq-light-rule);
}

.quality-card--dark .quality-card__topline::after {
  background: var(--cq-dark-rule);
}

.quality-card__icon {
  display: grid;
  place-items: center;
  width: 9.55cqw;
  max-width: 164px;
  aspect-ratio: 1;
  margin: .25cqw 0 .55cqw;
  color: #514b40;
}

.quality-card--dark .quality-card__icon {
  color: #e4dfd4;
}

.quality-card__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-card__title {
  margin: 0;
  color: currentColor;
  font-size: .83cqw;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.quality-card__rule {
  width: 2.55cqw;
  height: 1px;
  margin: .65cqw 0 .65cqw;
  background: var(--cq-brass);
  opacity: .72;
}

.quality-card__copy {
  max-width: 17.5cqw;
  margin: 0;
  color: #3d3d38;
  font-size: .78cqw;
  font-weight: 400;
  line-height: 1.53;
  letter-spacing: -.015em;
}

.quality-card--dark .quality-card__copy {
  color: #e7e3da;
}

.quality-card__meta {
  width: 100%;
  margin: auto 0 0;
  padding-top: .75cqw;
  border-top: 1px solid var(--cq-light-rule);
  color: var(--cq-brass);
  font-size: .69cqw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.quality-card--dark .quality-card__meta {
  border-color: var(--cq-dark-rule);
  color: #c29047;
}

.concealed-quality__footer {
  position: relative;
  display: flex;
  min-height: 3cqw;
  align-items: center;
  padding: 0 3.55cqw;
  color: #be8c43;
  background: var(--cq-graphite);
  font-size: .66cqw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.concealed-quality__footer::before,
.concealed-quality__footer::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.9cqw;
  height: 1.9cqw;
  border-left: 1px solid rgba(166, 120, 50, .65);
  border-top: 1px solid rgba(166, 120, 50, .65);
}

.concealed-quality__footer::before {
  left: 1.3cqw;
  transform: translateY(-50%) rotate(-45deg);
}

.concealed-quality__footer::after {
  right: 1.3cqw;
  transform: translateY(-50%) rotate(135deg);
}

@media (max-width: 1100px) {
  .concealed-quality__hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .concealed-quality__intro {
    min-height: 590px;
    margin-right: 0;
    padding: 64px 54px 74px;
    clip-path: none;
  }

  .concealed-quality__eyebrow {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .concealed-quality__eyebrow::after {
    width: min(220px, 30vw);
  }

  .concealed-quality__title {
    max-width: 720px;
    font-size: clamp(68px, 10vw, 104px);
  }

  .concealed-quality__subtitle {
    margin-top: 28px;
    font-size: clamp(26px, 4vw, 38px);
  }

  .concealed-quality__subtitle::after {
    width: 42px;
    margin-top: 24px;
  }

  .concealed-quality__lead {
    max-width: 700px;
    margin-top: 22px;
    font-size: 17px;
  }

  .concealed-quality__drawing {
    display: none;
  }

  .concealed-quality__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-card {
    min-height: 500px;
    padding: 28px 42px 30px;
  }

  .quality-card:nth-child(3) {
    border-left: 0;
  }

  .quality-card:nth-child(n+3) {
    border-top: 1px solid rgba(119, 95, 57, .28);
  }

  .quality-card__number {
    font-size: 38px;
  }

  .quality-card__topline {
    gap: 22px;
  }

  .quality-card__icon {
    width: 170px;
    margin: 10px 0 14px;
  }

  .quality-card__title {
    font-size: 14px;
  }

  .quality-card__rule {
    width: 44px;
    margin: 13px 0;
  }

  .quality-card__copy {
    max-width: 340px;
    font-size: 15px;
  }

  .quality-card__meta {
    padding-top: 15px;
    font-size: 11px;
  }

  .concealed-quality__footer {
    min-height: 56px;
    padding-inline: 46px;
    font-size: 10px;
  }
}

@media (max-width: 660px) {
  .concealed-quality__intro {
    min-height: 0;
    padding: 46px 24px 54px;
  }

  .concealed-quality__eyebrow {
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.45;
  }

  .concealed-quality__title {
    font-size: clamp(54px, 17vw, 78px);
  }

  .concealed-quality__subtitle {
    font-size: 27px;
    line-height: 1.08;
  }

  .concealed-quality__lead {
    font-size: 16px;
  }

  .concealed-quality__cards {
    grid-template-columns: 1fr;
  }

  .quality-card,
  .quality-card:nth-child(n) {
    min-height: 470px;
    padding: 28px 24px 30px;
    border-left: 0;
    border-top: 1px solid rgba(119, 95, 57, .28);
  }

  .quality-card__copy {
    font-size: 15px;
  }

  .concealed-quality__footer {
    padding-inline: 32px;
    font-size: 8px;
    letter-spacing: .22em;
  }
}

/* 07 — Proyecto (caso) ------------------------------------------------------------- */

.veltorra-project {
  --vp-paper: #f1ede4;
  --vp-ink: #171815;
  --vp-night: #181916;
  --vp-brass: #9b7845;
  --vp-brass-soft: rgba(155, 120, 69, .52);
  --vp-rule: rgba(127, 99, 58, .43);

  position: relative;
  isolation: isolate;
  container-type: inline-size;
  display: grid;
  grid-template-columns: 53.409091% 46.590909%;
  width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  color: var(--vp-ink);
  background: var(--vp-night);
  font-family: var(--font-body);
}

.veltorra-project::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: .23;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 16%, rgba(78, 57, 31, .11) 0 .045cqw, transparent .055cqw),
    radial-gradient(circle at 72% 61%, rgba(255, 255, 255, .12) 0 .04cqw, transparent .05cqw),
    linear-gradient(115deg, transparent 0 49.5%, rgba(112, 91, 63, .05) 50%, transparent 50.5%);
  background-size: .82cqw .82cqw, 1.1cqw 1.1cqw, 2.4cqw 2.4cqw;
}

.veltorra-project__editorial {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 4.62cqw 3.52cqw 3.08cqw 3.66cqw;
  background:
    radial-gradient(circle at 15% 7%, rgba(255, 255, 255, .92), transparent 33%),
    radial-gradient(circle at 83% 73%, rgba(131, 94, 48, .055), transparent 35%),
    var(--vp-paper);
}

.veltorra-project__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.05cqw;
  margin: 0;
  color: var(--vp-brass);
  font-size: 1.13cqw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .11em;
}

.veltorra-project__eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-top: .15cqw;
  background: linear-gradient(90deg, var(--vp-brass-soft), var(--vp-brass-soft) 98%, transparent 98%);
}

.veltorra-project__eyebrow-mark {
  position: absolute;
  top: 5.93cqw;
  right: 6.96cqw;
  width: 1.25cqw;
  height: 1.25cqw;
}

.veltorra-project__eyebrow-mark::before,
.veltorra-project__eyebrow-mark::after {
  content: "";
  position: absolute;
  background: var(--vp-brass-soft);
}

.veltorra-project__eyebrow-mark::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.veltorra-project__eyebrow-mark::after {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}

.veltorra-project__title {
  max-width: 46cqw;
  margin: 2.58cqw 0 0;
  color: #171815;
  font-family: var(--font-display);
  font-size: 5.56cqw;
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.047em;
}

.veltorra-project__summary {
  position: relative;
  max-width: 37cqw;
  margin: 2.78cqw 0 0;
  padding-left: 2.42cqw;
  color: #20211e;
  font-size: 1.14cqw;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.veltorra-project__summary::before {
  content: "";
  position: absolute;
  left: .62cqw;
  top: .15cqw;
  width: 1px;
  height: 4.12cqw;
  background: var(--vp-brass-soft);
}

.veltorra-project__summary::after {
  content: "+";
  position: absolute;
  left: -.14cqw;
  top: -.82cqw;
  color: var(--vp-brass);
  font-family: Georgia, serif;
  font-size: 1.72cqw;
  font-weight: 300;
  line-height: 1;
}

.veltorra-project__facts {
  display: grid;
  grid-template-columns: 1.08fr .8fr .8fr .82fr;
  min-height: 11.72cqw;
  margin-top: 2.38cqw;
  border-top: 1px solid var(--vp-rule);
}

.project-fact {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 1.58cqw .62cqw .38cqw;
  text-align: center;
}

.project-fact + .project-fact {
  border-left: 1px solid rgba(127, 99, 58, .35);
}

.project-fact__label {
  color: var(--vp-brass);
  font-size: .77cqw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-fact__icon {
  display: grid;
  place-items: center;
  width: 5.45cqw;
  height: 5.75cqw;
  margin: .52cqw auto .02cqw;
  color: var(--vp-brass);
}

.project-fact__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.project-fact__value {
  margin: 0;
  color: #20211e;
  font-size: .96cqw;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.veltorra-project__bottom {
  display: grid;
  grid-template-columns: 17.38cqw 1px 1fr;
  gap: 1.66cqw;
  align-items: center;
  margin-top: 3.02cqw;
}

.veltorra-project__button {
  display: flex;
  height: 4.22cqw;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.28cqw 0 2.4cqw;
  border: 1px solid rgba(155, 120, 69, .75);
  color: var(--vp-brass);
  font-size: 1.08cqw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}

.veltorra-project__button:hover {
  color: var(--vp-paper);
  background: var(--vp-brass);
}

.veltorra-project__button:focus-visible {
  outline: 2px solid var(--vp-ink);
  outline-offset: 3px;
}

.veltorra-project__button-arrow {
  font-family: Georgia, serif;
  font-size: 1.42cqw;
  transform: translateY(-.08cqw);
}

.veltorra-project__bottom-rule {
  width: 1px;
  height: 4.22cqw;
  background: var(--vp-rule);
}

.veltorra-project__handover {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1.08cqw;
  color: #262722;
  font-size: .83cqw;
  line-height: 1.35;
  white-space: nowrap;
}

.veltorra-project__seal {
  flex: none;
  width: 3.55cqw;
  height: 3.55cqw;
  color: var(--vp-brass);
}

.veltorra-project__seal svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.veltorra-project__blueprint {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  color: #b69866;
  background:
    radial-gradient(circle at 23% 12%, rgba(255, 255, 255, .025), transparent 30%),
    radial-gradient(circle at 70% 66%, rgba(0, 0, 0, .24), transparent 42%),
    var(--vp-night);
}

.veltorra-project__blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(201, 174, 126, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 174, 126, .12) 1px, transparent 1px);
  background-size: 2.03cqw 2.03cqw;
  mask-image: radial-gradient(circle at 48% 44%, #000, transparent 78%);
}

.veltorra-project__blueprint-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 900px) {
  .veltorra-project {
    display: block;
    aspect-ratio: auto;
  }

  .veltorra-project__editorial {
    padding: 46px 28px 38px;
  }

  .veltorra-project__eyebrow {
    font-size: 14px;
  }

  .veltorra-project__eyebrow-mark {
    display: none;
  }

  .veltorra-project__title {
    max-width: 720px;
    margin-top: 34px;
    font-size: clamp(58px, 12vw, 92px);
  }

  .veltorra-project__summary {
    max-width: 650px;
    margin-top: 36px;
    padding-left: 32px;
    font-size: 18px;
  }

  .veltorra-project__summary::before {
    left: 8px;
    height: 72px;
  }

  .veltorra-project__summary::after {
    left: -2px;
    top: -14px;
    font-size: 26px;
  }

  .veltorra-project__facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }

  .project-fact {
    min-height: 230px;
    padding: 24px 12px 20px;
  }

  .project-fact:nth-child(3) {
    border-left: 0;
  }

  .project-fact:nth-child(n+3) {
    border-top: 1px solid var(--vp-rule);
  }

  .project-fact__label {
    font-size: 12px;
  }

  .project-fact__icon {
    width: 92px;
    height: 110px;
  }

  .project-fact__value {
    font-size: 16px;
  }

  .veltorra-project__bottom {
    grid-template-columns: minmax(230px, 310px) 1px 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .veltorra-project__button {
    height: 70px;
    padding-inline: 28px;
    font-size: 16px;
  }

  .veltorra-project__button-arrow {
    font-size: 22px;
  }

  .veltorra-project__bottom-rule {
    height: 70px;
  }

  .veltorra-project__handover {
    font-size: 13px;
    white-space: normal;
  }

  .veltorra-project__seal {
    width: 58px;
    height: 58px;
  }

  .veltorra-project__blueprint {
    aspect-ratio: 779 / 941;
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  .veltorra-project__title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .veltorra-project__summary {
    font-size: 16px;
  }

  .veltorra-project__facts {
    grid-template-columns: 1fr;
  }

  .project-fact,
  .project-fact:nth-child(n) {
    min-height: 210px;
    border-left: 0;
    border-top: 1px solid var(--vp-rule);
  }

  .veltorra-project__bottom {
    grid-template-columns: 1fr;
  }

  .veltorra-project__button {
    width: 100%;
  }

  .veltorra-project__bottom-rule {
    display: none;
  }

  .veltorra-project__blueprint {
    min-height: 500px;
  }
}

/* 08 — Zonas ----------------------------------------------------------------------- */

.service-area {
  --service-bg: #171816;
  --service-panel: #1d1e1b;
  --service-ink: #eee9df;
  --service-copy: #bcb8ad;
  --service-muted: #8c887f;
  --service-brass: #b78649;
  --service-brass-soft: rgba(183, 134, 73, .34);
  --service-rule: rgba(217, 192, 154, .16);

  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 941px;
  margin-inline: auto;
  overflow: hidden;
  color: var(--service-ink);
  background:
    radial-gradient(circle at 72% 37%, rgba(174, 126, 65, .075), transparent 31%),
    var(--service-bg);
  font-family: var(--font-body);
}

.service-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .13;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.service-area__main {
  display: grid;
  min-height: 700px;
  grid-template-columns: 42.75% 57.25%;
  border-bottom: 1px solid var(--service-rule);
}

.service-area__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 58px 64px 54px;
  border-right: 1px solid var(--service-rule);
}

.service-area__content::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 102px;
  background: var(--service-brass);
}

.service-area__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 42px;
  color: var(--service-brass);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.service-area__eyebrow::before {
  content: "08";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--service-brass-soft);
  border-radius: 50%;
  color: var(--service-ink);
  font-size: 9px;
  letter-spacing: .08em;
}

.service-area__eyebrow::after {
  content: "";
  width: 96px;
  height: 1px;
  background: var(--service-brass-soft);
}

.service-area__title {
  max-width: 600px;
  margin: 0;
  color: var(--service-ink);
  font-family: var(--font-display);
  font-size: clamp(64px, 5.05vw, 84px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.service-area__title em {
  display: block;
  color: var(--service-brass);
  font-style: italic;
  font-weight: 400;
}

.service-area__lead {
  max-width: 520px;
  margin: 34px 0 0;
  padding-left: 26px;
  border-left: 1px solid var(--service-brass);
  color: var(--service-copy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -.01em;
}

.service-area__scope {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: var(--service-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-area__scope::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--service-brass-soft);
}

.service-area__cta {
  display: inline-flex;
  width: fit-content;
  min-width: 246px;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: auto;
  padding: 0 22px 0 26px;
  border: 1px solid rgba(183, 134, 73, .72);
  color: var(--service-ink);
  background: rgba(183, 134, 73, .045);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .19em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}

.service-area__cta span:last-child {
  color: var(--service-brass);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-1px);
}

.service-area__cta:hover,
.service-area__cta:focus-visible {
  color: #171816;
  background: var(--service-brass);
  outline: none;
}

.service-area__cta:hover span:last-child,
.service-area__cta:focus-visible span:last-child {
  color: #171816;
}

.service-area__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .014), transparent 32%),
    #161717;
}

.service-area__visual::before {
  content: "Metropolitan service study · Valencia";
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 42px;
  color: var(--service-brass);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.service-area__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 44px;
  width: 82px;
  height: 1px;
  background: var(--service-brass-soft);
}

.service-area__map {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.service-area__index {
  display: grid;
  min-height: 241px;
  grid-template-columns: 1.12fr repeat(5, 1fr);
  grid-template-rows: repeat(2, minmax(120px, 1fr));
}

.service-area__index-title {
  display: flex;
  grid-row: 1 / 3;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 34px 28px 64px;
  border-right: 1px solid var(--service-rule);
}

.service-area__index-title span:first-child {
  color: var(--service-brass);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.service-area__index-title strong {
  max-width: 180px;
  color: var(--service-ink);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.025em;
}

.service-area__place {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px 20px;
  border-right: 1px solid var(--service-rule);
  border-bottom: 1px solid var(--service-rule);
}

.service-area__place:nth-child(n+7) {
  border-bottom: 0;
}

.service-area__place:nth-child(6),
.service-area__place:nth-child(11) {
  border-right: 0;
}

.service-area__place::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(183, 134, 73, .65);
  border-radius: 50%;
}

.service-area__place b {
  color: var(--service-ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.service-area__place small {
  color: var(--service-muted);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-area__place--primary {
  background: var(--service-brass);
}

.service-area__place--primary b,
.service-area__place--primary small {
  color: #171816;
}

.service-area__place--primary::after {
  border-color: #171816;
  background: #171816;
}

@media (max-width: 1120px) {
  .service-area {
    min-height: 0;
  }

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

  .service-area__content {
    min-height: 650px;
    padding: 52px 48px;
    border-right: 0;
    border-bottom: 1px solid var(--service-rule);
  }

  .service-area__title {
    max-width: 760px;
    font-size: clamp(62px, 9vw, 92px);
  }

  .service-area__visual {
    min-height: 650px;
  }

  .service-area__index {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto repeat(2, 116px);
  }

  .service-area__index-title {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 98px;
    flex-direction: row;
    align-items: end;
    padding: 26px 48px;
    border-right: 0;
    border-bottom: 1px solid var(--service-rule);
  }

  .service-area__index-title strong {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .service-area__content {
    min-height: 610px;
    padding: 38px 24px;
  }

  .service-area__eyebrow {
    margin-bottom: 34px;
    font-size: 9px;
  }

  .service-area__eyebrow::after {
    width: 36px;
  }

  .service-area__title {
    font-size: clamp(52px, 16vw, 76px);
  }

  .service-area__lead {
    margin-top: 26px;
    padding-left: 18px;
    font-size: 15px;
  }

  .service-area__scope {
    align-items: flex-start;
    font-size: 9px;
  }

  .service-area__cta {
    width: 100%;
  }

  .service-area__visual {
    min-height: 520px;
  }

  .service-area__index {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .service-area__index-title {
    grid-column: 1 / -1;
    min-height: 105px;
    padding: 24px;
  }

  .service-area__index-title strong {
    max-width: 150px;
    text-align: right;
  }

  .service-area__place {
    min-height: 104px;
    border-right: 1px solid var(--service-rule) !important;
    border-bottom: 1px solid var(--service-rule) !important;
  }

  .service-area__place:nth-child(odd) {
    border-right: 0 !important;
  }

  .service-area__place:nth-last-child(-n+2) {
    border-bottom: 0 !important;
  }
}

/* 09 — Confianza --------------------------------------------------------------------- */

.veltorra-trust {
  --vt-paper: #f2eee5;
  --vt-ink: #191a17;
  --vt-night: #161714;
  --vt-brass: #a2762b;
  --vt-brass-soft: rgba(162, 118, 43, .4);
  --vt-rule: rgba(122, 105, 78, .26);
  --vt-muted: #6a675e;

  position: relative;
  isolation: isolate;
  container-type: inline-size;
  overflow: hidden;
  padding: clamp(56px, 5cqw, 96px) var(--page-x) clamp(48px, 4.4cqw, 80px);
  color: var(--vt-ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, .8), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(162, 118, 43, .05), transparent 34%),
    var(--vt-paper);
  font-family: var(--font-body);
}

.veltorra-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .15;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

.veltorra-trust__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
  color: var(--vt-brass);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.veltorra-trust__eyebrow::before {
  content: "09";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--vt-brass-soft);
  border-radius: 50%;
  color: var(--vt-ink);
  font-size: 9px;
  letter-spacing: .08em;
}

.veltorra-trust__eyebrow::after {
  content: "";
  width: 96px;
  height: 1px;
  background: var(--vt-brass-soft);
}

.veltorra-trust__title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6cqw, 76px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.veltorra-trust__title em {
  color: var(--vt-brass);
  font-style: italic;
  font-weight: 400;
}

.veltorra-trust__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 3cqw, 56px);
  margin-top: clamp(36px, 3.4cqw, 60px);
  align-items: stretch;
}

.veltorra-trust__quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  margin: 0;
  padding: clamp(30px, 3.2cqw, 56px);
  color: #efe9dd;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, .05), transparent 30%),
    var(--vt-night);
}

.veltorra-trust__quote::before,
.veltorra-trust__quote::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(196, 149, 79, .55);
  border-style: solid;
  border-width: 0;
}

.veltorra-trust__quote::before {
  top: 13px;
  left: 13px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.veltorra-trust__quote::after {
  right: 13px;
  bottom: 13px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.veltorra-trust__mark {
  color: #c4954f;
  font-family: var(--font-display);
  font-size: clamp(58px, 4.4cqw, 84px);
  font-weight: 400;
  line-height: .4;
}

.veltorra-trust__quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2cqw, 36px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.02em;
  max-width: 21em;
}

.veltorra-trust__quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b98f4d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.veltorra-trust__quote figcaption::before {
  content: "";
  flex: none;
  width: 34px;
  height: 1px;
  background: rgba(196, 149, 79, .5);
}

.veltorra-trust__facts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--vt-rule);
}

.vt-fact {
  flex: 1;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--vt-rule);
}

.vt-fact__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.1cqw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--vt-brass);
  letter-spacing: -.03em;
}

.vt-fact__title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vt-fact__sub {
  margin: 6px 0 0;
  color: var(--vt-muted);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -.01em;
}

.vt-fact__tag {
  align-self: center;
  color: var(--vt-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .veltorra-trust__grid {
    grid-template-columns: 1fr;
  }

  .veltorra-trust__quote {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .veltorra-trust__eyebrow {
    font-size: 9px;
  }

  .veltorra-trust__eyebrow::after {
    width: 36px;
  }

  .veltorra-trust__quote {
    padding: 26px 22px;
    min-height: 0;
  }

  .vt-fact {
    grid-template-columns: 48px 1fr;
    padding: 16px 0;
  }

  .vt-fact__tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

/* 10 — FAQ --------------------------------------------------------------------------- */

.veltorra-faq {
  --vf-bg-card: rgba(18, 19, 17, .965);
  --vf-ivory: #d8cec0;
  --vf-copy: #b9b1a5;
  --vf-brass: #a8793e;
  --vf-brass-bright: #c08a46;
  --vf-brass-line: rgba(168, 121, 62, .66);

  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 941px;
  margin-inline: auto;
  overflow: hidden;
  color: var(--vf-ivory);
  background:
    radial-gradient(circle at 83% 34%, rgba(168, 121, 62, .042), transparent 34%),
    radial-gradient(circle at 5% 99%, rgba(168, 121, 62, .035), transparent 25%),
    linear-gradient(112deg, #0f100e 0%, #131411 54%, #0e0f0d 100%);
  font-family: var(--font-body);
}

.veltorra-faq::before {
  content: "";
  position: absolute;
  z-index: -4;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
  background-size: 31px 31px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, .48) 74%, transparent 100%);
}

.veltorra-faq::after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 42px;
  right: 45px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--vf-brass-line);
  border-radius: 50%;
  pointer-events: none;
}

.veltorra-faq__decoration {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.veltorra-faq__draft {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--vf-brass);
  opacity: .42;
  pointer-events: none;
}

.veltorra-faq__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 941px;
  grid-template-columns: 631px minmax(0, 1fr);
}

.veltorra-faq__intro {
  position: relative;
  min-width: 0;
  padding: 136px 58px 68px 112px;
}

.veltorra-faq__eyebrow {
  margin: 0;
  color: var(--vf-brass-bright);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .245em;
  text-transform: uppercase;
}

.veltorra-faq__title {
  width: 550px;
  max-width: none;
  margin: 34px 0 0;
  color: var(--vf-ivory);
  font-family: var(--font-display);
  font-size: 95px;
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.045em;
  transform: scaleX(.84);
  transform-origin: left top;
}

.veltorra-faq__lead {
  max-width: 397px;
  margin: 29px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--vf-brass-line);
  color: var(--vf-copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
}

.veltorra-faq__index {
  position: relative;
  display: flex;
  align-items: center;
  gap: 19px;
  width: 461px;
  margin: 38px 0 0 -112px;
  padding: 22px 0 0 112px;
  border-top: 1px solid rgba(168, 121, 62, .57);
  color: var(--vf-brass);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .205em;
  text-transform: uppercase;
}

.veltorra-faq__index::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid var(--vf-brass-line);
  border-radius: 50%;
  background: radial-gradient(circle, var(--vf-brass-bright) 0 2px, transparent 3px);
}

.veltorra-faq__panel {
  width: 100%;
  min-width: 0;
  padding: 98px 147px 48px 44px;
}

.veltorra-faq__item {
  --vf-item-cut: 13px;
  position: relative;
  isolation: isolate;
  min-height: 66px;
  margin: 0 0 17px;
  overflow: hidden;
  color: var(--vf-ivory);
  background: linear-gradient(135deg, rgba(192, 138, 70, .88), rgba(114, 84, 46, .72));
  clip-path: polygon(
    0 var(--vf-item-cut),
    var(--vf-item-cut) 0,
    calc(100% - 22px) 0,
    100% 22px,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    var(--vf-item-cut) 100%,
    0 calc(100% - var(--vf-item-cut))
  );
  transition: filter .25s ease, transform .25s ease;
}

.veltorra-faq__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .013), transparent 46%),
    var(--vf-bg-card);
  clip-path: polygon(
    0 12px,
    12px 0,
    calc(100% - 21px) 0,
    100% 21px,
    100% calc(100% - 21px),
    calc(100% - 21px) 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}

.veltorra-faq__item[open] {
  min-height: 274px;
  margin-bottom: 27px;
  background: linear-gradient(135deg, rgba(192, 138, 70, .96), rgba(123, 88, 46, .84));
}

.veltorra-faq__item:last-of-type {
  margin-bottom: 0;
}

.veltorra-faq__summary {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 66px;
  grid-template-columns: 59px minmax(0, 1fr) 44px;
  gap: 29px;
  align-items: center;
  padding: 0 35px 0 36px;
  color: var(--vf-ivory);
  cursor: pointer;
  list-style: none;
}

.veltorra-faq__summary::-webkit-details-marker {
  display: none;
}

.veltorra-faq__item[open] .veltorra-faq__summary {
  min-height: 132px;
  align-items: start;
  padding-top: 35px;
}

.veltorra-faq__number {
  display: flex;
  height: 34px;
  align-items: center;
  border-right: 1px solid rgba(168, 121, 62, .42);
  color: var(--vf-brass-bright);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.veltorra-faq__question {
  align-self: center;
  width: 128%;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.022em;
  transform: scaleX(.78);
  transform-origin: left center;
}

.veltorra-faq__item[open] .veltorra-faq__question {
  align-self: start;
  margin-top: -4px;
  max-width: 790px;
  transform-origin: left top;
}

.veltorra-faq__item:nth-of-type(5) .veltorra-faq__question {
  width: 145%;
  transform: scaleX(.69);
}

.veltorra-faq__toggle {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  align-self: center;
  justify-self: end;
  border: 1px solid rgba(192, 138, 70, .82);
  border-radius: 50%;
  color: var(--vf-brass-bright);
  background: rgba(10, 11, 9, .18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .012);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.veltorra-faq__item[open] .veltorra-faq__toggle {
  align-self: start;
}

.veltorra-faq__toggle::before,
.veltorra-faq__toggle::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1px;
  background: currentColor;
}

.veltorra-faq__toggle::after {
  transform: rotate(90deg);
  transition: opacity .2s ease, transform .2s ease;
}

.veltorra-faq__item[open] .veltorra-faq__toggle::after {
  opacity: 0;
  transform: rotate(0);
}

.veltorra-faq__answer {
  position: relative;
  z-index: 2;
  margin: 0 94px 0 125px;
  padding: 23px 0 33px;
  border-top: 1px solid rgba(168, 121, 62, .58);
  color: var(--vf-copy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -.006em;
}

.veltorra-faq__answer strong {
  color: var(--vf-ivory);
  font-weight: 500;
}

.veltorra-faq__summary:hover .veltorra-faq__question,
.veltorra-faq__summary:focus-visible .veltorra-faq__question {
  color: #fff8ec;
}

.veltorra-faq__summary:hover .veltorra-faq__toggle,
.veltorra-faq__summary:focus-visible .veltorra-faq__toggle {
  color: #151612;
  background: var(--vf-brass-bright);
}

.veltorra-faq__summary:focus-visible {
  outline: 1px solid var(--vf-brass-bright);
  outline-offset: -5px;
}

.veltorra-faq__panel-footer {
  width: 300px;
  margin: 75px 0 0;
  margin-left: auto;
  color: var(--vf-brass);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .26em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1220px) {
  .veltorra-faq,
  .veltorra-faq__inner {
    min-height: 0;
  }

  .veltorra-faq__inner {
    grid-template-columns: 1fr;
  }

  .veltorra-faq__intro {
    padding: 72px 60px 54px;
  }

  .veltorra-faq__title {
    width: 880px;
    max-width: 780px;
    transform: none;
  }

  .veltorra-faq__lead {
    max-width: 640px;
  }

  .veltorra-faq__index {
    width: min(100%, 640px);
    margin-left: -60px;
    padding-left: 60px;
  }

  .veltorra-faq__panel {
    padding: 0 60px 72px;
  }

  .veltorra-faq__panel-footer {
    margin-top: 44px;
  }

  .veltorra-faq__draft {
    opacity: .22;
  }
}

@media (max-width: 700px) {
  .veltorra-faq__intro {
    padding: 45px 22px 43px;
  }

  .veltorra-faq__eyebrow {
    font-size: 10px;
    line-height: 1.4;
  }

  .veltorra-faq__title {
    width: auto;
    margin-top: 25px;
    font-size: clamp(57px, 18vw, 82px);
    transform: none;
  }

  .veltorra-faq__lead {
    font-size: 15px;
  }

  .veltorra-faq__index {
    width: calc(100% + 22px);
    margin-left: -22px;
    padding-left: 22px;
    font-size: 9px;
  }

  .veltorra-faq__panel {
    padding: 0 18px 48px;
  }

  .veltorra-faq__item {
    --vf-item-cut: 10px;
  }

  .veltorra-faq__summary {
    min-height: 74px;
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    gap: 13px;
    padding: 0 17px;
  }

  .veltorra-faq__item[open] .veltorra-faq__summary {
    min-height: 120px;
    padding-top: 28px;
  }

  .veltorra-faq__number {
    height: 30px;
    font-size: 19px;
  }

  .veltorra-faq__question {
    width: 100%;
    font-size: 20px;
    line-height: 1.2;
    transform: none;
  }

  .veltorra-faq__item:nth-of-type(5) .veltorra-faq__question {
    width: 100%;
    transform: none;
  }

  .veltorra-faq__toggle {
    width: 34px;
    height: 34px;
  }

  .veltorra-faq__answer {
    margin: 0 18px 0 72px;
    padding: 20px 0 29px;
    font-size: 14px;
  }

  .veltorra-faq__panel-footer {
    margin-top: 38px;
    font-size: 9px;
  }

  .veltorra-faq__draft {
    display: none;
  }

  .veltorra-faq__decoration {
    opacity: .8;
    object-position: 70% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .veltorra-faq__item,
  .veltorra-faq__toggle,
  .veltorra-faq__toggle::after {
    transition: none;
  }
}

/* 11 — Contacto + footer -------------------------------------------------------------- */

.cta {
  padding: clamp(60px, 8vw, 90px) var(--page-x) clamp(50px, 6vw, 70px);
  background: linear-gradient(135deg, #faf6ee, #efe9dc);
  color: #171815;
  border-bottom: 1px solid var(--darkline);
}

.cta .eyebrow {
  color: #8e5529;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 660px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  margin-top: 20px;
  align-items: start;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.cta-copy .lead {
  margin-top: 26px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-pills span,
.contact-pills a {
  border: 1px solid #a59f94;
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 12px;
  color: #4a463f;
}

.form {
  border: 1px solid rgba(20, 19, 16, .3);
  background: rgba(255, 255, 255, .38);
  padding: clamp(28px, 3.2vw, 40px);
}

.field {
  padding: 18px 0 7px;
  border-bottom: 1px solid rgba(20, 19, 16, .18);
  transition: border-color .2s ease;
}

.form .field:first-child {
  padding-top: 0;
}

.field:focus-within {
  border-bottom-color: var(--copper);
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #555047;
  margin: 0 0 12px;
}

.field--hidden {
  display: none;
}

.field--required label::after {
  content: " *";
  color: #a4552e;
  font-size: 12px;
}

.field__optional {
  margin-left: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #9a948a;
}

.field select,
.field input,
.field textarea {
  display: block;
  width: 100%;
  height: 30px;
  background: none;
  border: 0;
  border-radius: 0;
  color: #0f0e0c;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.field.is-invalid {
  border-bottom-color: #a4552e;
}

.field.is-invalid label {
  color: #a4552e;
}

.form-error {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #a4552e;
}

.form-error[hidden] {
  display: none;
}

.form-success {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #4f7a5a;
}

.form-success[hidden] {
  display: none;
}

.form-hint {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6353;
}

/* Contact form mode switch (WhatsApp / Email) ---------------------------- */

/* Language switcher (header) --------------------------------------------- */

.lang-switch {
  display: flex;
  align-items: center;
  margin-right: 18px;
  border: 1px solid rgba(193, 123, 60, .3);
}

.lang-switch a {
  padding: 7px 11px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  color: #9d968a;
  transition: color .2s ease, background .2s ease;
}

.lang-switch a + a {
  border-left: 1px solid rgba(193, 123, 60, .3);
}

.lang-switch a:hover {
  color: #e9e4da;
}

.lang-switch a.is-active {
  color: #0d0e0c;
  background: var(--copper);
}

@media (max-width: 1180px) {
  .lang-switch { margin-right: 12px; }
}

.form-modes {
  display: flex;
  margin-bottom: 30px;
  border: 1px solid rgba(20, 19, 16, .28);
}

.form-mode {
  flex: 1;
  padding: 13px 10px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #55503f;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}

.form-mode + .form-mode {
  border-left: 1px solid rgba(20, 19, 16, .28);
}

.form-mode:hover {
  color: #17150f;
}

.form-mode.is-active {
  background: var(--copper);
  color: #fff;
}

.form--wa #field-phone,
.form--wa #field-email,
.form--wa .upload {
  display: none;
}

.form .form-modes + .field {
  padding-top: 0;
}

.form.form--wa .button {
  margin-top: 26px;
}

.field select {
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555047' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 14px;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7d766b;
  font-weight: 500;
}

.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
}

.field textarea {
  resize: vertical;
  height: auto;
  min-height: 30px;
  line-height: 1.5;
}

.field select option {
  background: #fff;
  color: #171815;
}

.upload {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 26px 0;
  border: 1px dashed rgba(20, 19, 16, .4);
  padding: 0 18px;
  color: #4f4a42;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease;
}

.upload:hover,
.upload:focus-within {
  border-color: rgba(20, 19, 16, .6);
}

.upload input {
  display: none;
}

.form .button {
  width: 100%;
  justify-content: space-between;
  margin: 0;
}

.veltorra-footer {
  --ft-brass: #b78649;
  --ft-rule: rgba(193, 123, 60, .22);
  --ft-ink: #e9e4da;
  --ft-muted: #8f8a80;

  position: relative;
  isolation: isolate;
  padding: clamp(56px, 5vw, 84px) var(--page-x) 0;
  color: var(--ft-ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(183, 134, 73, .05), transparent 32%),
    #0b0c0a;
  border-top: 1px solid rgba(193, 123, 60, .38);
  font-family: var(--font-body);
}

.veltorra-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to top, #000, transparent 80%);
}

.veltorra-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .9fr .9fr;
  gap: clamp(36px, 4vw, 72px);
  align-items: start;
}

.veltorra-footer__brand img {
  display: block;
  height: 58px;
  width: auto;
}

.veltorra-footer__tagline {
  max-width: 340px;
  margin: 26px 0 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: #cfc9bd;
}

.veltorra-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 220px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 22px 0 26px;
  border: 1px solid rgba(183, 134, 73, .65);
  background: rgba(183, 134, 73, .06);
  color: var(--ft-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.veltorra-footer__cta span:last-child {
  color: var(--ft-brass);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.veltorra-footer__cta:hover,
.veltorra-footer__cta:focus-visible {
  color: #14150f;
  background: var(--ft-brass);
}

.veltorra-footer__cta:hover span:last-child,
.veltorra-footer__cta:focus-visible span:last-child {
  color: #14150f;
}

.veltorra-footer__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 20px;
  color: var(--ft-brass);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.veltorra-footer__heading::after {
  content: "";
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--ft-rule);
}

.veltorra-footer__col a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  letter-spacing: .01em;
  color: rgba(233, 228, 218, .76);
  transition: color .18s ease;
}

.veltorra-footer__col a:hover,
.veltorra-footer__col a:focus-visible {
  color: var(--copper-light);
}

.veltorra-footer__col li {
  display: block;
}

.veltorra-footer__note {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(233, 228, 218, .76);
}

.veltorra-footer__note--muted {
  color: var(--ft-muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 220px;
}

.veltorra-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  margin-top: clamp(44px, 4.6vw, 68px);
  padding: 22px 0 28px;
  border-top: 1px solid var(--ft-rule);
  color: var(--ft-muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.veltorra-footer__bottom a {
  color: var(--ft-muted);
  transition: color .18s ease;
}

.veltorra-footer__bottom a:hover,
.veltorra-footer__bottom a:focus-visible {
  color: var(--copper-light);
}

.veltorra-footer__services-line {
  letter-spacing: .08em;
}

@media (max-width: 1050px) {
  .veltorra-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .veltorra-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .veltorra-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .veltorra-footer__services-line {
    display: none;
  }

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

/* Responsive ----------------------------------------------------------------- */

@media (max-width: 1050px) {
  :root {
    --benefits-h: auto;
  }

  .hero {
    background-position: 65% center;
  }

  .hero-copy {
    width: min(560px, 62vw);
    padding-bottom: 260px;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 18px var(--page-x);
  }

  .benefit {
    padding: 16px 22px;
  }

  .benefit:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(217, 212, 204, .16);
  }

  .benefit:nth-child(4) {
    border-top: 1px solid rgba(217, 212, 204, .16);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 720px) {
  :root {
    --page-x: 22px;
  }

  .hero {
    min-height: 1040px;
    background-size: auto 66%;
    background-position: 59% 22%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 7, .55) 0%, rgba(4, 6, 7, .72) 45%, #060809 77%),
      linear-gradient(90deg, rgba(3, 5, 6, .82), rgba(3, 5, 6, .1));
  }

  .header-cta {
    display: none;
  }

  .brand img {
    height: 64px;
  }

  .hero-copy {
    width: auto;
    margin-right: var(--page-x);
    padding-top: 60px;
    padding-bottom: 330px;
  }

  .hero-copy h1 {
    max-width: 480px;
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1.05;
  }

  .lead {
    max-width: 430px;
    font-size: 16px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 360px);
  }

  .button,
  .button.primary {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 22px;
    font-size: 11px;
    letter-spacing: .1em;
  }

  .benefits {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .benefit,
  .benefit:nth-child(3),
  .benefit:nth-child(4) {
    padding: 14px 0;
    border-top: 1px solid rgba(217, 212, 204, .14);
    border-left: 0;
  }

  .benefit:first-child {
    border-top: 0;
  }

  .benefit-number {
    font-size: 26px;
  }

  .hero-disciplines {
    gap: 0 22px;
  }

  .hero-disciplines li {
    font-size: 11px;
    letter-spacing: .12em;
  }

}
