:root {
  --orange: #f7a721;
  --orange-deep: #dc8511;
  --graphite: #565454;
  --ink: #242424;
  --ink-2: #303030;
  --white: #fff;
  --soft: #f7f6f3;
  --soft-2: #eeece7;
  --muted: #6f6d6b;
  --line: rgba(86, 84, 84, 0.15);
  --shadow: 0 22px 70px rgba(25, 24, 23, 0.12);
  --shadow-lg: 0 32px 90px rgba(20, 19, 18, 0.2);
  --radius: 26px;
  --radius-sm: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.68;
  overflow-x: hidden;
}
body.is-loading {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: "Manrope", Inter, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.75rem, 7vw, 6.7rem);
}
h2 {
  font-size: clamp(2.15rem, 4vw, 4.15rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
p {
  color: var(--muted);
}
.text-orange {
  color: var(--orange) !important;
}
.text-muted-vv {
  color: var(--muted) !important;
}
.bg-soft {
  background: var(--soft);
}
.section-pad {
  padding: clamp(74px, 9vw, 132px) 0;
}
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark p {
  color: rgba(255, 255, 255, 0.68);
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}
.skip-link:focus {
  top: 1rem;
}
/* Preloader */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #292827;
  transition:
    opacity 0.65s var(--ease),
    visibility 0.65s var(--ease);
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
  width: min(330px, 80vw);
}
.preloader-logo {
  width: 220px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
  animation: preloaderFloat 2s ease-in-out infinite;
}
.preloader-house {
  width: 76px;
  height: 58px;
  margin: 0 auto 20px;
  position: relative;
}
.preloader-house:before,
.preloader-house:after {
  content: "";
  position: absolute;
}
.preloader-house:before {
  width: 46px;
  height: 38px;
  left: 15px;
  bottom: 0;
  border: 4px solid var(--orange);
  border-top: 0;
  border-radius: 2px;
}
.preloader-house:after {
  width: 48px;
  height: 48px;
  left: 14px;
  top: 0;
  border-left: 4px solid var(--orange);
  border-top: 4px solid var(--orange);
  transform: rotate(45deg);
  border-radius: 3px;
}
.preloader-bar {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 42%;
  background: var(--orange);
  border-radius: inherit;
  animation: loadBar 1.35s var(--ease) infinite;
}
.preloader-copy {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
@keyframes loadBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(340%);
  }
}
@keyframes preloaderFloat {
  50% {
    transform: translateY(-6px);
  }
}
/* Header */
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ffc965);
  box-shadow: 0 0 18px rgba(247, 167, 33, 0.55);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 13px 0;
  transition: all 0.45s var(--ease);
}
.site-header:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 26, 0.18);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.site-header.is-scrolled {
  padding: 7px 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}
.site-header.is-scrolled:before {
  opacity: 1;
  background: rgba(40, 39, 38, 0.93);
}
.site-header .navbar {
  position: relative;
  z-index: 1;
}
.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
  transition: height 0.35s var(--ease);
}
.site-header.is-scrolled .brand-logo {
  height: 70px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.76) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 0.75rem !important;
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.42rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}
.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1);
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar-toggler-icon {
  filter: invert(1);
}
/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #202020;
  box-shadow: 0 14px 34px rgba(247, 167, 33, 0.27);
}
.btn-primary:hover {
  background: #ffb537;
  border-color: #ffb537;
  color: #161616;
  box-shadow: 0 18px 42px rgba(247, 167, 33, 0.36);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-dark {
  border-color: rgba(36, 36, 36, 0.3);
}
.btn-dark {
  background: #292827;
  border-color: #292827;
}
.btn-sm {
  padding: 0.62rem 1rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow:before {
  display: none;
}
.section-head p {
  font-size: 1.08rem;
}
/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #1e1d1c;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.hero-slide.is-active img {
  transform: scale(1.08);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 19, 18, 0.92) 0%,
      rgba(20, 19, 18, 0.74) 42%,
      rgba(20, 19, 18, 0.25) 72%,
      rgba(20, 19, 18, 0.38) 100%
    ),
    linear-gradient(0deg, rgba(20, 19, 18, 0.68), transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}
.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.55rem;
}
.hero-indicators span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.35s ease, transform 0.35s ease;
}
.hero-indicators span.is-active {
  background: var(--orange);
  transform: scaleX(1.06);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 126px;
  padding-bottom: 70px;
}
.hero h1 {
  max-width: 990px;
  margin-bottom: 1.45rem;
}
.hero h1 span {
  color: var(--orange);
}
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  font-weight: 700;
}
.hero-chip i {
  color: var(--orange);
  font-size: 1.1rem;
}
.hero-panel {
  position: absolute;
  right: 3vw;
  bottom: 110px;
  z-index: 3;
  width: min(390px, 34vw);
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(34, 33, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.hero-panel small {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}
.hero-panel strong {
  display: block;
  font-size: 1.38rem;
  margin: 0.45rem 0;
  color: #fff;
}
.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
@keyframes heroZoom {
  to {
    transform: scale(1.055);
  }
}
/* Cards & generic */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}
.premium-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 44px rgba(30, 29, 28, 0.06);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s ease;
  overflow: hidden;
}
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(247, 167, 33, 0.38);
}
.icon-orb {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(247, 167, 33, 0.12);
  color: var(--orange-deep);
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
  transition:
    transform 0.45s var(--ease),
    background 0.45s ease;
}
.premium-card:hover .icon-orb {
  transform: rotate(-6deg) scale(1.08);
  background: var(--orange);
  color: #222;
}
.feature-card {
  padding: 1.75rem;
}
.feature-card p {
  margin-bottom: 0;
}
.stats-band {
  padding: 30px 0;
  background: #2b2a29;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}
/* Model cards */
.model-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(28, 27, 26, 0.08);
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}
.model-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}
.model-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #ddd;
}
.model-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.model-card:hover .model-img-wrap img {
  transform: scale(1.055);
}
.model-img-wrap:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.52));
}
.model-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 900;
  color: #343332;
}
.model-price {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
}
.model-price small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.model-price strong {
  font-size: 1.35rem;
}
.model-body {
  padding: 1.5rem;
}
.model-body h3 {
  margin-bottom: 0.65rem;
}
.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1rem 0;
}
.spec-pill {
  padding: 0.72rem 0.4rem;
  border-radius: 14px;
  background: var(--soft);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--graphite);
}
.spec-pill i {
  display: block;
  color: var(--orange-deep);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.model-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.category-card {
  padding: 2rem;
  position: relative;
  isolation: isolate;
}
.category-card:after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(247, 167, 33, 0.12);
  z-index: -1;
}
.category-card.future {
  background: linear-gradient(145deg, #333231, #252423);
  color: #fff;
}
.category-card.future p {
  color: rgba(255, 255, 255, 0.62);
}
.category-status {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 167, 33, 0.15);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.filter-tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.35s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: #292827;
  color: #fff;
  border-color: #292827;
  transform: translateY(-2px);
}
.model-item.is-hidden {
  display: none;
}
/* Custom block */
.custom-home-block {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #292827 0%, #3b3938 62%, #4a4033 100%);
  color: #fff;
  padding: clamp(2rem, 5vw, 4.3rem);
  box-shadow: var(--shadow-lg);
}
.custom-home-block:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black);
}
.custom-home-block:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 80px solid rgba(247, 167, 33, 0.12);
  border-radius: 50%;
  right: -170px;
  top: -160px;
}
.custom-home-content {
  position: relative;
  z-index: 2;
}
.custom-home-block h2,
.custom-home-block h3 {
  color: #fff;
}
.custom-home-block p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 760px;
}
.custom-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.custom-point {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.custom-point i {
  color: var(--orange);
  font-size: 2rem;
}
.custom-point strong {
  display: block;
  margin: 0.45rem 0 0.15rem;
}
.custom-point span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}
/* Process */
.process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}
.process-card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--orange);
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.process-card:after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(247, 167, 33, 0.2);
  border-radius: 50%;
}
.process-card h3 {
  color: #fff;
}
.process-card p {
  margin: 0;
  font-size: 0.91rem;
}
/* Page hero */
.page-hero {
  position: relative;
  padding: 175px 0 100px;
  background: #292827;
  color: #fff;
  overflow: hidden;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 19, 18, 0.88) 0%, rgba(20, 19, 18, 0.72) 46%, rgba(20, 19, 18, 0.32) 76%, rgba(20, 19, 18, 0.48) 100%),
    linear-gradient(0deg, rgba(20, 19, 18, 0.68), transparent 52%);
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(247, 167, 33, 0.12), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    62px 62px,
    62px 62px;
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  max-width: 900px;
}
.page-hero p {
  font-size: 1.15rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
}
.breadcrumb-vv {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.breadcrumb-vv a:hover {
  color: var(--orange);
}
/* Model detail */
.model-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  background: #1d1c1b;
  color: #fff;
  overflow: hidden;
}
.model-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.model-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(20, 19, 18, 0.96) 0%,
      rgba(20, 19, 18, 0.5) 48%,
      rgba(20, 19, 18, 0.18) 100%
    ),
    linear-gradient(90deg, rgba(20, 19, 18, 0.66), transparent 58%);
}
.model-hero-content {
  position: relative;
  z-index: 2;
  padding: 175px 0 72px;
}
.model-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}
.model-hero p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 690px;
}
.model-quick {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.quick-pill {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
  font-weight: 800;
}
.quick-pill i {
  color: var(--orange);
  margin-right: 0.35rem;
}
.price-panel {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: end;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}
.price-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}
.price-panel strong {
  font-size: 1.75rem;
}
.gallery-shell {
  border-radius: 30px;
  overflow: hidden;
  background: #242322;
  box-shadow: var(--shadow-lg);
}
.gallery-shell .carousel-item {
  height: clamp(390px, 62vw, 710px);
}
.gallery-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-caption-vv {
  position: absolute;
  left: 1.2rem;
  right: auto;
  bottom: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 15px;
  background: rgba(30, 29, 28, 0.75);
  backdrop-filter: blur(12px);
  color: #fff;
}
.carousel-caption-vv strong {
  display: block;
}
.carousel-caption-vv span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  background-size: 45%;
  width: 48px;
  height: 48px;
}
.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--orange);
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 2rem;
}
.detail-card {
  padding: 1.8rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(30, 29, 28, 0.06);
}
.sticky-card {
  position: sticky;
  top: 104px;
}
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.spec-box {
  padding: 1rem;
  border-radius: 16px;
  background: var(--soft);
}
.spec-box small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}
.spec-box strong {
  font-size: 1.15rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.72rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
}
.check-list li:before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--orange-deep);
  font-weight: 900;
}
.include-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.include-card {
  padding: 1.3rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.include-card i {
  font-size: 1.35rem;
  color: var(--orange-deep);
}
.include-card h3 {
  margin: 0.8rem 0;
}
.plan-frame {
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #f2f0eb);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.plan-frame img {
  width: 100%;
  border-radius: 18px;
}
.faq-vv .accordion-item {
  border: 1px solid var(--line);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.faq-vv .accordion-button {
  font-weight: 800;
  padding: 1.15rem 1.25rem;
}
.faq-vv .accordion-button:not(.collapsed) {
  background: rgba(247, 167, 33, 0.09);
  color: #292827;
  box-shadow: none;
}
.faq-vv .accordion-button:focus {
  box-shadow: none;
}
.note-box {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--orange);
  background: rgba(247, 167, 33, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--muted);
}
/* Contact */
.contact-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 15px 48px rgba(30, 29, 28, 0.07);
}
.form-control,
.form-select {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border-color: var(--line);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(247, 167, 33, 0.15);
}
.form-label {
  font-weight: 800;
  color: #333;
}
.service-card {
  padding: 1.7rem;
}
/* Footer & floating */
.site-footer {
  padding: 70px 0 26px;
  background: #1d1c1b;
  color: #fff;
}
.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.58);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.site-footer a:hover {
  color: var(--orange);
}
.footer-logo {
  width: 240px;
  background: #fff;
  padding: 0.55rem 0.7rem;
  border-radius: 15px;
  margin-bottom: 1.2rem;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-copyright {
  justify-self: start;
}
.footer-developer {
  justify-self: center;
  text-align: center;
}

.footer-developer a {
  color: #f7a721;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.footer-developer a:hover,
.footer-developer a:focus-visible {
  color: #ffffff;
}

.footer-slogan {
  justify-self: end;
  text-align: right;
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  background: #25d366;
  color: #073b1e;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.32);
  transition: 0.35s var(--ease);
}
.whatsapp-float img {
  width: 26px;
  height: 26px;
  background: #1cab56;
  border-radius: 50%;
  padding: 4px;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.02);
  color: #073b1e;
  box-shadow: 0 24px 58px rgba(37, 211, 102, 0.42);
}
@media (max-width: 1199px) {
  .hero-panel {
    display: none;
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .site-header {
    background: rgba(40, 39, 38, 0.94);
    backdrop-filter: blur(12px);
  }
  .navbar-collapse {
    padding: 1rem 0;
  }
  .nav-link:after {
    display: none;
  }
  .hero-content {
    padding-top: 145px;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 10vw, 4.6rem);
  }
  .stats-band .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .custom-points,
  .include-columns {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .sticky-card {
    position: static;
  }
  .model-hero {
    min-height: 82svh;
  }
  .section-pad {
    padding: 78px 0;
  }
}
@media (max-width: 767.98px) {
  .process-list {
    grid-template-columns: 1fr;
  }
  .spec-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-shell .carousel-item {
    height: 440px;
  }
  .spec-list {
    grid-template-columns: 1fr;
  }
  .custom-home-block {
    border-radius: 26px;
  }
  .page-hero {
    padding: 145px 0 78px;
  }
}
@media (max-width: 575.98px) {
  .brand-logo {
    height: 43px;
  }
  .site-header.is-scrolled .brand-logo {
    height: 40px;
  }
  .hero-chip {
    width: 100%;
  }
  .hero-meta {
    gap: 0.65rem;
  }
  .model-actions .btn {
    width: 100%;
  }
  .spec-row {
    gap: 0.4rem;
  }
  .spec-pill {
    font-size: 0.7rem;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 0.75rem;
  }
  .whatsapp-float span {
    display: none;
  }
  .gallery-shell .carousel-item {
    height: 390px;
  }
  .model-quick {
    gap: 0.45rem;
  }
  .quick-pill {
    font-size: 0.78rem;
  }
  .price-panel {
    width: 100%;
    justify-content: space-between;
  }
  .preloader-logo {
    width: 190px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   Responsive hardening — móvil, tablet, laptop y escritorio
   ========================================================== */
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: 90px;
}
body {
  max-width: 100%;
  overflow-x: hidden;
}
main,
section,
header,
footer {
  min-width: 0;
  max-width: 100%;
}
.container,
.container-fluid {
  min-width: 0;
}
.row > * {
  min-width: 0;
}
.detail-grid > *,
.custom-points > *,
.include-columns > *,
.process-list > *,
.spec-list > *,
.model-actions > * {
  min-width: 0;
}
.premium-card,
.model-card,
.detail-card,
.contact-card,
.gallery-shell,
.plan-frame,
.custom-home-block {
  min-width: 0;
  max-width: 100%;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p,
a,
span,
li,
strong,
small {
  overflow-wrap: break-word;
}
section[id],
article[id],
div[id] {
  scroll-margin-top: 96px;
}
a,
button,
.btn,
.navbar-toggler {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid rgba(247, 167, 33, 0.72);
  outline-offset: 3px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 167, 33, 0.35);
}
.detail-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
}
.plan-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.gallery-shell .carousel-item {
  overflow: hidden;
}
.gallery-shell img {
  max-width: none;
}
.whatsapp-float {
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
}

@supports not (height: 100svh) {
  .hero {
    min-height: 100vh;
  }
  .model-hero {
    min-height: 92vh;
  }
}

@media (max-width: 1199.98px) {
  .hero-panel {
    display: none;
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
  }
  .whatsapp-float img {
    width: 29px;
    height: 29px;
  }
  .whatsapp-float span {
    display: none;
  }
  .site-header {
    background: rgba(40, 39, 38, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .navbar-collapse {
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem 0 0.5rem;
  }
  .navbar-nav {
    align-items: stretch !important;
  }
  .navbar-nav .nav-link {
    padding: 0.72rem 0.25rem !important;
  }
  .navbar-nav .btn {
    width: 100%;
    margin-top: 0.45rem;
  }
  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }
  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .sticky-card {
    position: static;
  }
  .custom-points,
  .include-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .model-hero {
    min-height: 82svh;
  }
  .model-hero-content {
    padding-top: 150px;
  }
  .section-pad {
    padding: 78px 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 66px 0;
  }
  .section-head {
    margin-bottom: 2.25rem;
  }
  .section-head p {
    font-size: 1rem;
  }
  .process-list,
  .custom-points,
  .include-columns {
    grid-template-columns: minmax(0, 1fr);
  }
  .detail-card,
  .contact-card {
    padding: 1.35rem;
  }
  .feature-card,
  .service-card {
    padding: 1.4rem;
  }
  .gallery-shell {
    border-radius: 22px;
  }
  .gallery-shell .carousel-item {
    height: auto;
    aspect-ratio: 4/3;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 16%;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 42px;
    height: 42px;
  }
  .carousel-caption-vv {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    max-width: calc(100% - 1.7rem);
    padding: 0.7rem 0.85rem;
  }
  .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plan-frame {
    padding: 0.7rem;
    border-radius: 22px;
  }
  .custom-home-block {
    border-radius: 24px;
    padding: 2rem 1.35rem;
  }
  .page-hero {
    padding: 132px 0 72px;
  }
  .model-hero-content {
    padding: 138px 0 58px;
  }
  .model-hero p {
    font-size: 1.03rem;
  }
  .footer-logo {
    max-width: 220px;
    width: 100%;
  }
  .footer-bottom {
    margin-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    text-align: center;
  }

  .footer-copyright,
  .footer-developer,
  .footer-slogan {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  :root {
    --radius: 22px;
    --radius-sm: 16px;
  }
  .container {
    --bs-gutter-x: 2rem;
  }
  h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }
  h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }
  h3 {
    font-size: 1.2rem;
  }
  .site-header {
    padding: 7px 0;
  }
  .brand-logo {
    height: 42px;
  }
  .site-header.is-scrolled .brand-logo {
    height: 39px;
  }
  .navbar-toggler {
    padding: 0.35rem 0.5rem;
  }
  .hero {
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 118px;
    padding-bottom: 54px;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
    margin-bottom: 1.15rem;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-meta {
    margin-top: 1.55rem;
    gap: 0.55rem;
  }
  .hero-chip {
    width: 100%;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    font-size: 0.88rem;
  }
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.135em;
    gap: 0.5rem;
  }
  .eyebrow:before {
    width: 22px;
  }
  .stats-band {
    padding: 18px 0;
  }
  .stat {
    padding: 0.9rem 0.55rem;
  }
  .stat strong {
    font-size: 2rem;
  }
  .stat span {
    font-size: 0.76rem;
    line-height: 1.35;
    display: block;
  }
  .model-card,
  .premium-card {
    border-radius: 22px;
  }
  .model-img-wrap {
    aspect-ratio: 4/3;
  }
  .model-body {
    padding: 1.25rem;
  }
  .model-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
  }
  .model-actions .btn {
    width: 100%;
  }
  .spec-row {
    gap: 0.4rem;
  }
  .spec-pill {
    font-size: 0.7rem;
    padding: 0.62rem 0.25rem;
  }
  .filter-tabs {
    gap: 0.45rem;
    margin-bottom: 1.65rem;
  }
  .filter-btn {
    padding: 0.62rem 0.82rem;
    font-size: 0.85rem;
  }
  .page-hero {
    padding: 116px 0 62px;
  }
  .page-hero h1,
  .model-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }
  .page-hero p {
    font-size: 1rem;
  }
  .breadcrumb-vv {
    font-size: 0.78rem;
    flex-wrap: wrap;
  }
  .model-hero {
    min-height: auto;
  }
  .model-hero-content {
    padding: 122px 0 48px;
  }
  .model-quick {
    gap: 0.4rem;
  }
  .quick-pill {
    font-size: 0.76rem;
    padding: 0.55rem 0.68rem;
  }
  .price-panel {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.85rem 1rem;
  }
  .price-panel strong {
    font-size: 1.5rem;
  }
  .gallery-shell .carousel-item {
    aspect-ratio: 1/1;
  }
  .carousel-caption-vv span {
    display: none;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 38px;
    height: 38px;
  }
  .detail-card,
  .contact-card {
    padding: 1.15rem;
    border-radius: 20px;
  }
  .spec-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .include-card {
    padding: 1.1rem;
  }
  .faq-vv .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .faq-vv .accordion-body {
    padding: 1rem;
  }
  .note-box {
    font-size: 0.9rem;
  }
  .custom-home-block {
    padding: 1.65rem 1.1rem;
  }
  .custom-point {
    padding: 1rem;
  }
  .site-footer {
    padding: 54px 0 22px;
  }
  .site-footer .row {
    --bs-gutter-y: 2rem;
  }
  .site-footer h3 {
    font-size: 1.05rem;
  }
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
  }
  .whatsapp-float img {
    width: 29px;
    height: 29px;
  }
  .whatsapp-float span {
    display: none;
  }
  .preloader-logo {
    width: min(190px, 65vw);
  }
  .preloader-copy {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 374.98px) {
  .container {
    --bs-gutter-x: 1.5rem;
  }
  h1,
  .hero h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.82rem;
  }
  .hero-content {
    padding-top: 108px;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.78rem 1rem;
  }
  .spec-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .model-price strong {
    font-size: 1.15rem;
  }
  .footer-logo {
    max-width: 190px;
  }
}

@media (max-width: 991.98px) and (max-height: 600px) and (orientation: landscape) {
  .hero,
  .model-hero {
    min-height: auto;
  }
  .hero-content {
    padding-top: 102px;
    padding-bottom: 42px;
  }
  .model-hero-content {
    padding-top: 108px;
    padding-bottom: 42px;
  }
  .hero-meta {
    margin-top: 1.1rem;
  }
  .hero-chip {
    padding: 0.62rem 0.8rem;
  }
  .page-hero {
    padding-top: 108px;
    padding-bottom: 58px;
  }
}

/* SEO local · experiencia emocional */
.local-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #1f1e1d;
}
.local-hero-media,
.local-closing-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local-hero-media { object-position: center 56%; }
.local-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,21,20,.86) 0%, rgba(22,21,20,.55) 46%, rgba(22,21,20,.16) 78%),
    linear-gradient(0deg, rgba(18,17,16,.72) 0%, transparent 48%);
}
.local-hero-content {
  position: relative;
  z-index: 2;
  padding: 165px 0 72px;
}
.local-hero h1 { max-width: 880px; font-size: clamp(3rem, 6.4vw, 6rem); }
.local-hero-dream {
  max-width: 790px;
  color: #fff;
  font-family: "Manrope", Inter, sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 700;
  line-height: 1.38;
  margin: 1rem 0 .6rem;
}
.local-hero-copy { max-width: 710px; color: rgba(255,255,255,.72); font-size: 1.06rem; }
.local-hero-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.6rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  font-size: .82rem;
  font-weight: 700;
}
.local-hero-note i { color: var(--orange); }
.local-story-section { overflow: hidden; }
.lead-local { font-size: 1.12rem; color: #4f4d4b; }
.local-story-image {
  position: relative;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.local-story-image > img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.local-story-image:after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(24,23,22,.8), transparent 46%);
}
.local-story-quote {
  position:absolute; z-index:2; left:clamp(1.3rem,4vw,2.6rem); right:clamp(1.3rem,4vw,2.6rem); bottom:clamp(1.4rem,4vw,2.5rem);
  color:#fff;
}
.local-story-quote span { display:block; color:rgba(255,255,255,.68); font-size:.9rem; margin-bottom:.25rem; }
.local-story-quote strong { display:block; font-family:"Manrope",Inter,sans-serif; font-size:clamp(1.35rem,2.5vw,2rem); line-height:1.2; }
.local-trust-list { display:grid; gap:.9rem; }
.local-trust-list > div {
  display:grid; grid-template-columns:48px 1fr; align-items:center; gap:.85rem;
  padding:1rem 1.05rem; border:1px solid var(--line); border-radius:18px; background:#fff;
}
.local-trust-list i { width:48px; height:48px; display:grid; place-items:center; border-radius:15px; background:rgba(247,167,33,.13); color:var(--orange-deep); font-size:1.2rem; }
.local-trust-list strong { display:block; color:var(--ink); }
.local-trust-list span { color:var(--muted); font-size:.9rem; }
.local-section-intro p { max-width:780px; }
.local-section-intro.center p { margin-inline:auto; }
.local-architecture-card {
  overflow:hidden; background:#fff; border:1px solid var(--line); border-radius:28px; box-shadow:0 18px 54px rgba(28,27,26,.07);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.local-architecture-card:hover { transform:translateY(-9px); box-shadow:var(--shadow); }
.local-architecture-image { display:block; aspect-ratio:16/10; overflow:hidden; }
.local-architecture-image img { width:100%; height:100%; object-fit:cover; transition:transform .75s var(--ease); }
.local-architecture-card:hover img { transform:scale(1.045); }
.local-architecture-body { padding:1.55rem; }
.local-architecture-body > span { color:var(--orange); font-size:.72rem; font-weight:900; letter-spacing:.12em; }
.local-architecture-body h3 { margin:.45rem 0 .65rem; }
.local-model-grid .model-card { height:100%; }
.local-pilot-section { border-top:1px solid rgba(86,84,84,.08); border-bottom:1px solid rgba(86,84,84,.08); }
.local-closing-cta {
  min-height:600px; position:relative; display:flex; align-items:flex-end; overflow:hidden; color:#fff; background:#222;
}
.local-closing-cta > img { object-position:center 58%; }
.local-closing-overlay { position:absolute; inset:0; background:linear-gradient(0deg,rgba(19,18,17,.94),rgba(19,18,17,.2) 72%),linear-gradient(90deg,rgba(19,18,17,.6),transparent 60%); }
.local-closing-content { position:relative; z-index:2; padding:90px 0; }
.local-closing-content h2 { max-width:850px; }
.local-closing-content p { max-width:700px; color:rgba(255,255,255,.72); font-size:1.08rem; }
.local-zone-pill {
  display:inline-flex; padding:.55rem .8rem; border:1px solid var(--line); border-radius:999px; font-size:.82rem; font-weight:800; background:#fff;
}
.local-service-list { list-style:none; padding:0; margin:0; display:grid; gap:.7rem; }
.local-service-list li { display:flex; gap:.6rem; align-items:flex-start; }
.local-service-list i { color:var(--orange-deep); margin-top:.18rem; }
.local-faq-card { height:100%; padding:1.4rem; border:1px solid var(--line); border-radius:20px; background:#fff; }
.zone-link-card {
  display:flex; min-height:64px; align-items:center; justify-content:center; text-align:center; padding:.75rem;
  border:1px solid var(--line); background:#fff; border-radius:16px; font-weight:800; transition:.3s var(--ease);
}
.zone-link-card:hover { transform:translateY(-4px); border-color:rgba(247,167,33,.55); color:var(--orange-deep); box-shadow:0 12px 30px rgba(28,27,26,.08); }
.footer-zone-links { display:flex; flex-wrap:wrap; gap:.42rem .65rem; margin-top:1rem; }
.footer-zone-links a { font-size:.76rem; color:rgba(255,255,255,.58); }
.footer-zone-links a:hover { color:var(--orange); }

@media (max-width: 991.98px) {
  .local-hero { min-height:720px; }
  .local-hero-content { padding:140px 0 58px; }
  .local-story-image, .local-story-image > img { min-height:440px; }
  .local-closing-cta { min-height:540px; }
}
@media (max-width: 767.98px) {
  .local-hero { min-height:760px; align-items:flex-end; }
  .local-hero-overlay { background:linear-gradient(0deg,rgba(20,19,18,.96) 0%,rgba(20,19,18,.62) 60%,rgba(20,19,18,.22) 100%); }
  .local-hero-content { padding:120px 0 44px; }
  .local-hero h1 { font-size:clamp(2.55rem,12vw,3.7rem); }
  .local-hero-dream { font-size:1.2rem; }
  .local-hero-note { border-radius:16px; align-items:flex-start; }
  .local-story-image, .local-story-image > img { min-height:380px; }
  .local-architecture-body { padding:1.25rem; }
  .local-closing-cta { min-height:590px; }
  .local-closing-content { padding:64px 0; }
}

/* =========================================================
   De la idea a tu hogar · sección animada páginas SEO locales
   ========================================================= */
.dream-build-section {
  position: relative;
  overflow: hidden;
}

.dream-build-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 167, 33, 0.12), rgba(247, 167, 33, 0) 70%);
  pointer-events: none;
}

.dream-build-copy {
  position: relative;
  z-index: 2;
}

.dream-build-copy h2 {
  max-width: 560px;
  margin-bottom: 1.1rem;
}

.dream-build-intro {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.build-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.build-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(86, 84, 84, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.build-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(86, 84, 84, 0.08);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.build-step h3 {
  margin: 0 0 0.15rem;
  font-size: 1.02rem;
}

.build-step strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.build-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.build-step.is-active {
  transform: translateX(6px);
  border-color: rgba(247, 167, 33, 0.48);
  background: #fff;
  box-shadow: 0 16px 38px rgba(37, 35, 32, 0.08);
}

.build-step.is-active .build-step-number {
  background: var(--orange);
  color: #272522;
  transform: scale(1.06);
}

.build-visual-shell {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(86, 84, 84, 0.12);
  border-radius: 36px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(86, 84, 84, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(86, 84, 84, 0.055) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.build-visual-shell::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -95px;
  bottom: -105px;
  border-radius: 50%;
  background: rgba(247, 167, 33, 0.09);
  filter: blur(1px);
  pointer-events: none;
}

.build-visual-label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.build-visual-label i {
  color: var(--orange-deep);
}

.build-visual-label strong {
  color: var(--ink);
}

.build-house-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 500px;
  overflow: visible;
}

.build-landscape,
.build-part,
.build-sketch-lines {
  transform-box: fill-box;
  transform-origin: center;
}

.build-landscape {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.build-sun {
  fill: rgba(247, 167, 33, 0.16);
}

.build-hill {
  fill: none;
  stroke: rgba(86, 84, 84, 0.16);
  stroke-width: 2;
  stroke-linecap: round;
}

.build-hill-back {
  stroke: rgba(247, 167, 33, 0.22);
}

.build-part {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.75s var(--ease);
}

.build-part-foundation {
  transition-delay: 0.04s;
}

.build-shadow {
  fill: rgba(42, 40, 37, 0.13);
}

.build-ground {
  fill: #dcd9d3;
}

.build-base {
  fill: #87827c;
}

.build-wall-side {
  fill: #dad7d1;
}

.build-wall-accent {
  fill: #565454;
}

.build-garage-wall {
  fill: #c7c3bd;
}

.build-roof-main,
.build-roof-left {
  fill: #3f3d3b;
}

.build-roof-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 2;
}

.build-window,
.build-door,
.build-garage-opening {
  stroke: #2f2e2c;
  stroke-width: 5;
}

.build-door {
  fill: #c18435;
}

.build-door-glass {
  fill: #474543;
}

.build-window-line {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 3;
}

.build-garage-opening {
  fill: #333230;
}

.build-path {
  fill: rgba(247, 167, 33, 0.22);
}

.build-plant {
  fill: #656a54;
}

.build-light {
  fill: var(--orange);
  filter: drop-shadow(0 0 8px rgba(247, 167, 33, 0.85));
}

.build-sketch-lines {
  opacity: 0;
  fill: none;
  stroke: rgba(247, 167, 33, 0.58);
  stroke-width: 2;
  stroke-dasharray: 14 12;
  transition: opacity 0.55s var(--ease);
}

.build-complete-message {
  position: relative;
  z-index: 3;
  max-width: 500px;
  margin: -0.2rem auto 0;
  padding: 1rem 1.1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.build-complete-message span {
  display: block;
  color: var(--ink);
  font-family: "Manrope", Inter, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.build-complete-message p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.build-visual-shell.stage-1 .build-landscape,
.build-visual-shell.stage-1 .build-part-foundation,
.build-visual-shell.stage-1 .build-sketch-lines,
.build-visual-shell.stage-2 .build-landscape,
.build-visual-shell.stage-2 .build-part-foundation,
.build-visual-shell.stage-2 .build-part-walls,
.build-visual-shell.stage-2 .build-sketch-lines,
.build-visual-shell.stage-3 .build-landscape,
.build-visual-shell.stage-3 .build-part-foundation,
.build-visual-shell.stage-3 .build-part-walls,
.build-visual-shell.stage-3 .build-part-roof,
.build-visual-shell.stage-3 .build-part-openings,
.build-visual-shell.stage-3 .build-sketch-lines,
.build-visual-shell.stage-4 .build-landscape,
.build-visual-shell.stage-4 .build-part-foundation,
.build-visual-shell.stage-4 .build-part-walls,
.build-visual-shell.stage-4 .build-part-roof,
.build-visual-shell.stage-4 .build-part-openings,
.build-visual-shell.stage-4 .build-part-finish {
  opacity: 1;
  transform: translateY(0);
}

.build-visual-shell.stage-4 .build-sketch-lines {
  opacity: 0;
}

.build-visual-shell.is-complete .build-complete-message {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .dream-build-section .col-lg-7 {
    align-self: stretch;
  }

  .build-visual-shell {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 991.98px) {
  .build-visual-shell {
    min-height: auto;
    margin-top: 0.5rem;
  }

  .build-house-svg {
    max-height: 460px;
  }
}

@media (max-width: 767.98px) {
  .dream-build-section::before {
    width: 300px;
    height: 300px;
    right: -160px;
    top: -110px;
  }

  .build-step {
    grid-template-columns: 42px 1fr;
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .build-step-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .build-step.is-active {
    transform: translateX(3px);
  }

  .build-visual-shell {
    padding: 1rem;
    border-radius: 26px;
  }

  .build-visual-label {
    margin: 0.1rem 0 0.45rem;
  }

  .build-house-svg {
    min-height: 320px;
  }
}

@media (max-width: 420px) {
  .build-visual-label {
    font-size: 0.68rem;
  }

  .build-house-svg {
    min-height: 280px;
  }

  .build-complete-message {
    padding-inline: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .build-part,
  .build-landscape,
  .build-sketch-lines,
  .build-complete-message,
  .build-step,
  .build-step-number {
    transition: none !important;
  }
}

/* Carrusel continuo de testimonios */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -300px;
  right: -270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 167, 33, 0.13), rgba(247, 167, 33, 0));
  pointer-events: none;
}

.testimonials-head {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-demo-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  max-width: 780px;
  margin-top: 0.85rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(247, 167, 33, 0.25);
  border-radius: 14px;
  background: rgba(247, 167, 33, 0.07);
  color: #6f6a64;
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: left;
}

.testimonial-demo-notice i {
  flex: 0 0 auto;
  margin-top: 0.08rem;
  color: #a86500;
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  margin-top: 2.2rem;
  overflow: hidden;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(28px, 7vw, 120px);
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.testimonial-marquee.is-ready .testimonial-marquee-track {
  animation: testimonial-marquee-scroll 105s linear infinite;
}

.testimonial-marquee-group {
  display: flex;
  flex: none;
  gap: 1.1rem;
  padding-right: 1.1rem;
}

.testimonial-card {
  display: flex;
  flex: 0 0 clamp(300px, 28vw, 390px);
  flex-direction: column;
  min-height: 285px;
  padding: 1.55rem;
  border: 1px solid rgba(86, 84, 84, 0.11);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  box-shadow: 0 15px 38px rgba(30, 29, 28, 0.065);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.testimonial-stars {
  display: inline-flex;
  gap: 0.16rem;
  color: #f7a721;
  font-size: 0.92rem;
}

.testimonial-rating strong {
  color: #3d3b39;
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-comment {
  flex: 1;
  margin: 0 0 1.45rem;
  color: #55514d;
  font-size: 0.95rem;
  line-height: 1.75;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(86, 84, 84, 0.09);
}

.testimonial-avatar {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 167, 33, 0.14);
  color: #8d5a05;
  font-size: 0.9rem;
  font-weight: 800;
}

.testimonial-person h3 {
  margin: 0 0 0.2rem;
  color: #2c2a28;
  font-size: 0.96rem;
  font-weight: 800;
}

.testimonial-person p {
  margin: 0;
  color: #77716b;
  font-size: 0.76rem;
  line-height: 1.4;
}

@keyframes testimonial-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767.98px) {
  .testimonial-marquee {
    margin-top: 1.7rem;
  }

  .testimonial-card {
    flex-basis: min(82vw, 330px);
    min-height: 275px;
    padding: 1.35rem;
    border-radius: 21px;
  }

  .testimonial-marquee.is-ready .testimonial-marquee-track {
    animation-duration: 120s;
  }

  .testimonial-demo-notice {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    display: none;
  }

  .testimonial-marquee.is-ready .testimonial-marquee-track {
    animation: none !important;
  }
}


/* Servicios ampliaciones, remodelaciones y piscinas */
.project-services-section {
  position: relative;
  overflow: hidden;
}
.project-services-section::before,
.service-showcase-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -220px;
  top: 40px;
  background: radial-gradient(circle, rgba(247, 167, 33, 0.12), transparent 68%);
  pointer-events: none;
}
.project-services-section .container,
.service-showcase-section .container {
  position: relative;
  z-index: 1;
}
.service-visual-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30, 29, 28, 0.07);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s ease;
}
.service-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(247, 167, 33, 0.38);
}
.service-visual-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft-2);
}
.service-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-visual-card:hover .service-visual-media img {
  transform: scale(1.045);
}
.service-visual-icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--orange-deep);
  font-size: 1.35rem;
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.18);
  backdrop-filter: blur(10px);
}
.service-visual-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}
.service-visual-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.8rem;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-visual-body h3 {
  margin-bottom: 0.75rem;
}
.service-visual-body p {
  margin-bottom: 1.15rem;
}
.service-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--ink);
  font-weight: 800;
}
.service-text-link i {
  color: var(--orange-deep);
  transition: transform 0.3s var(--ease);
}
.service-text-link:hover i {
  transform: translateX(5px);
}
#ampliaciones,
#remodelaciones,
#piscinas,
#preguntas-servicios,
#preguntas-frecuentes {
  scroll-margin-top: 120px;
}

/* Página y bloques de preguntas frecuentes */
.faq-page-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(247, 167, 33, 0.08), transparent 28%),
    #fff;
}
.faq-side-card {
  position: sticky;
  top: 125px;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 58px rgba(30, 29, 28, 0.08);
}
.faq-side-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.faq-cost-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
}
.faq-cost-box small,
.faq-cost-box span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
}
.faq-cost-box strong {
  display: block;
  margin: 0.25rem 0 0.55rem;
  color: var(--orange);
  font-family: "Manrope", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

@media (max-width: 991.98px) {
  .faq-side-card {
    position: static;
  }
  #ampliaciones,
  #remodelaciones,
  #piscinas,
  #preguntas-servicios,
  #preguntas-frecuentes {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 575.98px) {
  .service-visual-body {
    padding: 1.25rem;
  }
  .service-visual-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.15rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link {
    font-size: 0.82rem;
    padding-left: 0.52rem !important;
    padding-right: 0.52rem !important;
  }
  .nav-link::after {
    left: 0.52rem;
    right: 0.52rem;
  }
  .navbar-nav .btn {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.service-visual-actions {
  margin-top: auto;
  padding-top: 0.35rem;
}
.service-visual-actions .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .hero-indicators { bottom: 18px; }
}

/* ==========================================================
   Fix 2026-09-10 · overflow horizontal en Servicios / móvil
   ========================================================== */
.service-showcase-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow: clip;
}

.service-showcase-section::before {
  max-width: 100%;
}

.page-hero,
.service-showcase-section,
.service-showcase-section .container,
.service-showcase-section .row,
.service-showcase-section [class*="col-"] {
  min-width: 0;
  max-width: 100%;
}

.page-hero-media {
  max-width: none;
  min-width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header,
  .site-header .navbar,
  .site-header .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .navbar-brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .service-showcase-section::before {
    width: 300px;
    height: 300px;
    right: -145px;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    width: 100%;
  }

  .page-hero .container,
  .service-showcase-section .container {
    width: 100%;
  }
}
