:root {
  --ink: #101820;
  --ink-2: #172331;
  --paper: #ffffff;
  --warm: #fbfaf7;
  --cream: #f2eee6;
  --gold: #c8a45d;
  --gold-2: #efd38f;
  --terracotta: #a55d42;
  --muted: #68707a;
  --line: rgba(16, 24, 32, .12);
  --shadow: 0 24px 70px rgba(16, 24, 32, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--warm);
}

body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; line-height: 1.75; }
h1, h2, h3 { margin: 0; letter-spacing: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: .98; }
h1 { font-size: clamp(3.5rem, 8vw, 8rem); max-width: 900px; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { line-height: 1.16; }

.shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section.light { background: var(--paper); }
.section.soft { background: var(--warm); }
.section.dark { background: var(--ink); color: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}
.section-kicker {
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dark .section-kicker { color: var(--gold-2); }
.section-copy { color: var(--muted); font-size: 1.02rem; }
.dark .section-copy { color: rgba(255, 255, 255, .72); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
}
.topbar.is-scrolled,
.topbar.solid {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-color: rgba(16, 24, 32, .1);
  padding: 10px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 154px;
}
.brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .22));
}
.topbar.is-scrolled .brand img,
.topbar.solid .brand img { filter: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar.is-scrolled .nav-links,
.topbar.solid .nav-links { color: var(--ink); }
.nav-links a { opacity: .9; }
.nav-links a:hover { color: var(--gold-2); opacity: 1; }
.topbar.is-scrolled .nav-links a:hover,
.topbar.solid .nav-links a:hover { color: var(--terracotta); }
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
  opacity: .9;
}
.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-group:hover .nav-parent,
.nav-group:focus-within .nav-parent { color: var(--gold-2); opacity: 1; }
.topbar.is-scrolled .nav-group:hover .nav-parent,
.topbar.solid .nav-group:hover .nav-parent,
.topbar.is-scrolled .nav-group:focus-within .nav-parent,
.topbar.solid .nav-group:focus-within .nav-parent { color: var(--terracotta); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  z-index: 120;
  min-width: 248px;
  display: grid;
  gap: 0;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(16, 24, 32, .1);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu a {
  padding: 12px 13px;
  border-bottom: 1px solid rgba(16, 24, 32, .08);
  opacity: 1;
}
.nav-submenu a:last-child { border-bottom: 0; }
.nav-submenu a:hover {
  color: var(--terracotta);
  background: rgba(16, 24, 32, .04);
}
.nav-actions { display: inline-flex; align-items: center; gap: 10px; }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
  color: var(--paper);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nav-cta:hover,
.button:hover { transform: translateY(-2px); }
.topbar.is-scrolled .nav-cta,
.topbar.solid .nav-cta,
.button.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}
.topbar.is-scrolled .language-switch,
.topbar.solid .language-switch {
  border-color: rgba(16, 24, 32, .18);
  background: rgba(16, 24, 32, .04);
}
.language-switch button {
  min-width: 44px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .86);
  font: inherit;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}
.flag {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 12px;
  flex: 0 0 18px;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, .18), 0 1px 3px rgba(0, 0, 0, .16);
}
.flag-es { background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%); }
.flag-ro { background: linear-gradient(to right, #002b7f 0 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66% 100%); }
.flag-pl { background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%); }
.flag-pt { background: linear-gradient(to right, #006600 0 42%, #ff0000 42% 100%); }
.flag-pt::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffcc00;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, .18);
}
.flag-en {
  background:
    linear-gradient(0deg, transparent 38%, #fff 38% 62%, transparent 62%),
    linear-gradient(90deg, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(0deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 45%, #c8102e 45% 55%, transparent 55%),
    linear-gradient(32deg, transparent 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    linear-gradient(-32deg, transparent 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    #012169;
}
.topbar.is-scrolled .language-switch button,
.topbar.solid .language-switch button { color: var(--ink); }
.language-switch button.active {
  background: var(--gold);
  color: var(--ink);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar.is-scrolled .menu-toggle,
.topbar.solid .menu-toggle { color: var(--ink); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 150px 0 52px;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: heroFade 14s infinite;
  z-index: -3;
}
.hero-bg.one { background-image: url("../images/hero/hero-1.webp"); }
.hero-bg.two { background-image: url("../images/hero/hero-2.webp"); animation-delay: 7s; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .78), rgba(16, 24, 32, .36) 48%, rgba(16, 24, 32, .1)),
    linear-gradient(0deg, rgba(16, 24, 32, .85), rgba(16, 24, 32, .08) 58%, rgba(16, 24, 32, .24));
}
@keyframes heroFade {
  0%, 46% { opacity: 1; transform: scale(1); }
  54%, 100% { opacity: 0; transform: scale(1.03); }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  gap: 44px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.hero-lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-panel {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(16, 24, 32, .56);
  backdrop-filter: blur(16px);
  padding: 24px;
  display: grid;
  gap: 22px;
}
.metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.metric strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold-2);
  font-size: 2.6rem;
  line-height: 1;
}
.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}
.capability:nth-child(2) { background: rgba(82, 107, 91, .08); }
.capability:nth-child(3) { background: rgba(200, 164, 93, .12); }
.capability:nth-child(4) { background: rgba(165, 93, 66, .08); }
.capability .num {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 40px;
}
.capability h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.capability p { color: var(--muted); font-size: .92rem; }

.delivery-scope {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .92), rgba(251, 250, 247, .86)),
    url("../images/process/etapa-3.webp") center/cover no-repeat;
}
.scope-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .62fr);
  gap: 34px;
  align-items: stretch;
}
.scope-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 34px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(16, 24, 32, .1);
  box-shadow: 0 24px 70px rgba(16, 24, 32, .12);
}
.scope-copy h2 { font-size: clamp(2.1rem, 4.4vw, 4.8rem); }
.scope-copy p { color: var(--muted); max-width: 720px; }
.scope-cards {
  display: grid;
  gap: 14px;
}
.scope-card {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 26px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 48px rgba(16, 24, 32, .18);
}
.scope-card:nth-child(2) { background: #1d2b2d; }
.scope-card:nth-child(3) { background: #252424; }
.scope-card span {
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}
.scope-card h3 {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .95rem;
}
.scope-card p {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.process {
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ee 100%);
}
.process-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.process-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
}
.process-nav button {
  min-height: 44px;
  border: 1px solid rgba(16, 24, 32, .12);
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: left;
  padding: 0 14px;
  text-transform: uppercase;
  cursor: pointer;
}
.process-nav button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.process-track {
  display: grid;
  gap: 26px;
}
.process-step {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .48fr);
  gap: 34px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(16, 24, 32, .1);
}
.process-step:nth-child(even) {
  grid-template-columns: minmax(320px, .48fr) minmax(0, .85fr);
}
.process-step:nth-child(even) .process-media { order: 2; }
.process-media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.process-step.visible .process-media { opacity: 1; transform: translateY(0); }
.process-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 32, .04), rgba(16, 24, 32, .62));
}
.process-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}
.process-badge span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.process-copy {
  max-width: 540px;
  display: grid;
  gap: 18px;
}
.process-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .98;
}
.process-copy p { color: var(--muted); }
.process-points { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 12px; }
.process-points li { display: grid; grid-template-columns: 14px 1fr; gap: 12px; font-weight: 700; line-height: 1.5; }
.process-points li::before { content: ""; width: 8px; height: 8px; margin-top: 8px; background: var(--terracotta); }

.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 82px;
  gap: 14px;
}
.masonry-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(16, 24, 32, .1);
}
.masonry-card.large { grid-column: span 7; grid-row: span 6; }
.masonry-card.tall { grid-column: span 5; grid-row: span 6; }
.masonry-card.wide { grid-column: span 6; grid-row: span 4; }
.masonry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.masonry-card:hover img { transform: scale(1.035); }
.masonry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0), rgba(16, 24, 32, .68));
}
.masonry-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--paper);
}
.masonry-caption b {
  color: var(--gold-2);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.masonry-caption p { margin-top: 8px; color: rgba(255, 255, 255, .82); }

.feature-section {
  background:
    linear-gradient(180deg, rgba(16, 24, 32, .94), rgba(16, 24, 32, .98)),
    radial-gradient(circle at 15% 0%, rgba(200, 164, 93, .24), transparent 38%);
  color: var(--paper);
}
.feature-section .section-kicker { color: var(--gold-2); }
.feature-section .section-copy { color: rgba(255, 255, 255, .72); }
.feature-cinema {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.feature-card {
  position: relative;
  min-height: 340px;
  grid-column: span 4;
  overflow: hidden;
  background: #0b0d0f;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}
.feature-card.hero-feature {
  grid-column: span 8;
  min-height: 500px;
}
.feature-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  padding: 10px;
  background: #101820;
  transform: scale(1);
  transition: transform .75s ease, filter .75s ease;
}
.feature-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}
.feature-card > div {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.feature-card b {
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.feature-card h3 {
  max-width: 540px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.8rem);
  color: var(--paper);
}
.feature-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, .76);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.material-card {
  background: var(--paper);
  border: 1px solid rgba(16, 24, 32, .1);
  min-height: 300px;
  display: grid;
  grid-template-rows: 150px 1fr;
  box-shadow: 0 16px 40px rgba(16, 24, 32, .08);
}
.material-card img { width: 100%; height: 100%; object-fit: contain; padding: 18px; background: #f7f7f3; }
.material-card div { padding: 20px; display: grid; gap: 8px; align-content: start; }
.material-card b { color: var(--terracotta); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.material-card p { color: var(--muted); font-size: .9rem; }

.property-tools {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.realestate-preview { background: #fff; }
.estate-showcase {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(300px, .45fr);
  gap: 0;
  min-height: 470px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.estate-showcase img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}
.estate-showcase > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px;
}
.estate-showcase span {
  color: var(--gold-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.estate-showcase h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1;
}
.estate-showcase p { color: rgba(255, 255, 255, .74); }

.property-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 160px 0 72px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.property-hero > img,
.property-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
.property-hero-media {
  pointer-events: none;
}
.property-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .82), rgba(16, 24, 32, .2) 62%),
    linear-gradient(0deg, rgba(16, 24, 32, .8), rgba(16, 24, 32, .04));
}
.property-hero-content {
  position: relative;
  z-index: 2;
}
.property-hero-content h1 { max-width: 980px; }
.property-trust {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-row div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}
.trust-row div:last-child { border-right: 1px solid rgba(255, 255, 255, .12); }
.trust-row strong {
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}
.trust-row span {
  color: rgba(255, 255, 255, .68);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.listing-toolbar button,
.listing-actions button {
  min-height: 42px;
  border: 1px solid rgba(16, 24, 32, .16);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 14px;
  cursor: pointer;
}
.listing-toolbar button.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.listing-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
  background: var(--paper);
  border: 1px solid rgba(16, 24, 32, .1);
  box-shadow: 0 18px 50px rgba(16, 24, 32, .1);
  overflow: hidden;
}
.listing-media {
  position: relative;
  min-height: 430px;
  border: 0;
  padding: 0;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
}
.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}
.listing-media:hover img { transform: scale(1.035); }
.listing-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 10px;
  background: rgba(16, 24, 32, .76);
  color: var(--gold-2);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.listing-body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
}
.listing-location {
  color: var(--terracotta);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.listing-title-row {
  display: grid;
  gap: 10px;
}
.listing-title-row h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  line-height: 1.04;
}
.listing-title-row strong {
  color: var(--ink);
  font-size: 1.15rem;
}
.listing-body p { color: var(--muted); font-size: .95rem; }
.listing-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.listing-specs span,
.property-modal-specs span {
  border: 1px solid rgba(16, 24, 32, .12);
  background: #fbfaf7;
  padding: 7px 9px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.listing-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.listing-disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: .88rem;
}
.property-service {
  background: var(--warm);
}
.service-split {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(360px, .78fr);
  gap: 44px;
}
.service-steps {
  display: grid;
  gap: 14px;
}
.service-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  row-gap: 8px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(16, 24, 32, .1);
}
.service-steps span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}
.service-steps h3,
.service-steps p {
  grid-column: 2;
}
.service-steps p {
  color: var(--muted);
  min-width: 0;
}
.property-contact {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: center;
}
.property-agent {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.property-agent img {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}
.property-agent p {
  color: rgba(255, 255, 255, .74);
  margin: 16px 0 24px;
}
.property-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  padding: 22px;
  background: rgba(16, 24, 32, .72);
}
.property-modal.open {
  display: grid;
  place-items: center;
}
.property-modal-panel {
  position: relative;
  width: min(1180px, calc(100vw - 44px));
  max-height: calc(100svh - 44px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .48fr);
  background: var(--paper);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .32);
  overflow: hidden;
}
.property-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.5rem;
}
.property-modal-media {
  position: relative;
  min-height: 660px;
  background: var(--ink);
}
.property-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 54px;
  border: 0;
  background: rgba(16, 24, 32, .72);
  color: var(--paper);
  font-size: 2.2rem;
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.gallery-count {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(16, 24, 32, .74);
  color: var(--paper);
  font-weight: 900;
}
.property-modal-info {
  max-height: calc(100svh - 44px);
  overflow: auto;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 38px;
}
.property-modal-info h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}
.property-modal-location {
  color: var(--terracotta);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.property-modal-price {
  font-size: 1.4rem;
}
.property-modal-info p { color: var(--muted); }
.property-modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.property-modal-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.property-modal-features li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}
.property-modal-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--gold);
}
.property-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.property-thumbs button {
  height: 70px;
  border: 2px solid transparent;
  padding: 0;
  background: var(--ink);
  cursor: pointer;
  opacity: .72;
}
.property-thumbs button.active {
  border-color: var(--gold);
  opacity: 1;
}
.property-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-note { color: var(--muted); max-width: 640px; }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.property-card {
  background: var(--paper);
  border: 1px solid rgba(16, 24, 32, .1);
  box-shadow: 0 16px 42px rgba(16, 24, 32, .08);
  overflow: hidden;
}
.property-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.property-card-body { padding: 22px; display: grid; gap: 12px; }
.property-card-body b { color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; }
.property-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.property-meta span {
  border: 1px solid rgba(16, 24, 32, .12);
  padding: 6px 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-hero {
  min-height: 76svh;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .82), rgba(16, 24, 32, .28)),
    url("../images/hero/hero-2.webp") center/cover no-repeat;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(300px, .5fr);
  gap: 44px;
  align-items: center;
}
.statement {
  background: var(--ink);
  color: var(--paper);
  padding: 36px;
  box-shadow: var(--shadow);
}
.statement p { color: rgba(255, 255, 255, .78); margin-top: 18px; }
.contact-agents {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-agent {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
}
.contact-agent img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1px solid rgba(239, 211, 143, .5);
}
.contact-agent b {
  display: block;
  color: var(--paper);
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.contact-agent span {
  display: block;
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-agent p {
  margin-top: 8px;
  font-size: .9rem;
  line-height: 1.45;
}
.contact-agent a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--paper);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.team-card {
  background: var(--paper);
  border: 1px solid rgba(16, 24, 32, .1);
  padding: 30px;
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 42px rgba(16, 24, 32, .08);
}
.team-card b { color: var(--terracotta); letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; }

.model-hero {
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 150px 0 76px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .92), rgba(16, 24, 32, .5) 56%, rgba(16, 24, 32, .2)),
    url("../images/process/etapa-3.webp") center/cover no-repeat;
}
.model-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .44fr);
  gap: 42px;
  align-items: end;
}
.model-hero-card {
  border: 1px solid rgba(239, 211, 143, .36);
  background: rgba(16, 24, 32, .66);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}
.model-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.model-hero-card div { padding: 22px; }
.model-hero-card b {
  display: block;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.model-hero-card p { color: rgba(255, 255, 255, .78); }
.model-layer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.model-layer-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(16, 24, 32, .1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(251, 250, 247, .98)),
    linear-gradient(90deg, rgba(200, 164, 93, .18), transparent);
  box-shadow: 0 16px 44px rgba(16, 24, 32, .08);
}
.model-layer-card span,
.model-proof-grid b {
  display: inline-flex;
  color: var(--terracotta);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.model-layer-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.model-layer-card p { color: var(--muted); font-size: .96rem; }
.model-video-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #101820, #1a2736 55%, #2c2520);
}
.steel-house-frame {
  position: relative;
  margin-top: 34px;
  padding: 96px 34px 42px;
  isolation: isolate;
}
.frame-roof {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 132px;
  z-index: 0;
}
.frame-roof::before,
.frame-roof::after {
  content: "";
  position: absolute;
  top: 56px;
  width: 52%;
  height: 8px;
  background: linear-gradient(90deg, #d7e1e8, #8799a8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}
.frame-roof::before {
  left: 0;
  transform: rotate(-19deg);
  transform-origin: right center;
}
.frame-roof::after {
  right: 0;
  transform: rotate(19deg);
  transform-origin: left center;
}
.frame-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  gap: 28px;
  align-items: stretch;
  padding: 38px;
  border: 8px solid #c8d3dc;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px) 0 0 / 76px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}
.frame-stud,
.frame-brace {
  position: absolute;
  pointer-events: none;
  background: rgba(215, 225, 232, .55);
  z-index: -1;
}
.frame-stud {
  top: 0;
  bottom: 0;
  width: 6px;
}
.stud-1 { left: 24%; }
.stud-2 { left: 50%; }
.stud-3 { left: 76%; }
.frame-brace {
  width: 7px;
  height: 120%;
  top: -10%;
  transform-origin: center;
}
.brace-left { left: 16%; transform: rotate(-19deg); }
.brace-right { right: 16%; transform: rotate(19deg); }
.frame-slab {
  height: 12px;
  margin: 0 6% 0;
  background: linear-gradient(90deg, #6d7781, #e1e7eb, #6d7781);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .35);
}
.video-bay {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(239, 211, 143, .4);
  background: rgba(11, 13, 15, .74);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}
.portrait-bay {
  justify-items: center;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050607;
  overflow: hidden;
}
.video-embed.portrait {
  width: min(100%, 310px);
  aspect-ratio: 9 / 16;
}
.video-embed iframe,
.video-embed video {
  display: block;
  width: 100%;
  height: 100%;
}
.video-embed video {
  background: #050607;
  object-fit: contain;
}
.video-link-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050607;
}
.video-link-card.portrait {
  width: min(100%, 310px);
  aspect-ratio: 9 / 16;
}
.video-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.72);
  transition: transform .35s ease, filter .35s ease;
}
.video-link-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.08) brightness(.82);
}
.play-mark {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
}
.play-mark { font-size: 0; }
.video-caption {
  display: grid;
  gap: 8px;
  width: 100%;
}
.video-caption span {
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.video-caption h3 { color: var(--paper); font-size: 1.12rem; }
.video-caption p { color: rgba(255, 255, 255, .68); font-size: .94rem; }
.model-proof {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.model-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.model-proof-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(16, 24, 32, .1);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(16, 24, 32, .08);
}
.model-proof-grid h3 { margin-bottom: 12px; }
.model-proof-grid p { color: var(--muted); font-size: .94rem; }

.kit-hero {
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 150px 0 76px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .88), rgba(16, 24, 32, .48) 58%, rgba(16, 24, 32, .2)),
    url("../images/kits/velora-kit-2-dormitorios-45m.png") center 18%/cover no-repeat;
}
.kit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .36fr);
  gap: 42px;
  align-items: end;
}
.kit-hero-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(239, 211, 143, .36);
  background: rgba(16, 24, 32, .7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}
.kit-hero-card strong {
  display: block;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: .8;
}
.kit-hero-card span {
  color: var(--paper);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kit-hero-card p { color: rgba(255, 255, 255, .72); font-size: .92rem; }
.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.kit-card {
  display: grid;
  grid-template-columns: minmax(220px, .44fr) minmax(0, 1fr);
  min-height: 420px;
  border: 1px solid rgba(16, 24, 32, .1);
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(16, 24, 32, .1);
  overflow: hidden;
}
.kit-cover {
  display: block;
  min-height: 420px;
  background: #e9e5dc;
  overflow: hidden;
}
.kit-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.kit-card:hover .kit-cover img { transform: scale(1.03); }
.kit-body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
}
.kit-body > span {
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kit-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}
.kit-price {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fbfaf7;
}
.kit-price span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kit-price strong {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.1;
}
.kit-body p { color: var(--muted); }
.kit-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kit-specs b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 24, 32, .12);
  color: var(--ink);
  background: #fbfaf7;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.kit-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kit-actions a:first-child {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}
.kit-note {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, .75fr);
  gap: 44px;
  align-items: center;
}
.kit-note-text {
  padding: 32px;
  border: 1px solid rgba(16, 24, 32, .1);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(16, 24, 32, .08);
}
.kit-note-text p { color: var(--muted); }

.contact-form {
  position: relative;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, var(--gold), rgba(185, 106, 67, .45), rgba(16, 24, 32, .18)) border-box;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  box-shadow: 0 28px 80px rgba(16, 24, 32, .16);
  border: 1px solid transparent;
}
.contact-form::after {
  content: "sales@veloragp.com";
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(16, 24, 32, .42);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(220px, .55fr);
  gap: 18px;
  align-items: end;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(16, 24, 32, .1);
}
.form-intro span {
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.form-intro h3 {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.form-intro p {
  color: var(--muted);
  font-size: .92rem;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 32, .16);
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  min-height: 48px;
  border-radius: 0;
}
textarea {
  min-height: 128px;
  resize: vertical;
}
.file-field input[type="file"] {
  padding: 10px;
  background: #fff;
  border-style: dashed;
}
.file-field input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 12px;
  cursor: pointer;
}
.file-field small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.footer {
  background: #0b0d0f;
  color: rgba(255, 255, 255, .74);
  padding: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) repeat(3, minmax(160px, .32fr));
  gap: 32px;
}
.footer-logo { width: 140px; margin-bottom: 18px; }
.footer h3 {
  color: var(--paper);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer a { display: block; margin: 9px 0; color: rgba(255, 255, 255, .72); }
.footer small { display: block; margin-top: 28px; color: rgba(255, 255, 255, .45); }

.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 90; }
.wa-trigger {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: #1f9d58;
  color: var(--paper);
  font: inherit;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  cursor: pointer;
}
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: end;
  justify-content: end;
  padding: 20px;
  background: rgba(16, 24, 32, .42);
}
.wa-modal.open { display: flex; }
.wa-panel {
  width: min(420px, calc(100vw - 40px));
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 24, 32, .1);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.wa-panel-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.wa-close { border: 0; background: var(--ink); color: var(--paper); width: 34px; height: 34px; cursor: pointer; }
.wa-option {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 32, .12);
  background: #fbfaf7;
}
.wa-option b { color: var(--terracotta); }
.wa-option span { color: var(--muted); font-size: .9rem; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.open {
    position: fixed;
    inset: 76px 20px auto;
    display: grid;
    gap: 0;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    padding: 14px;
  }
  .nav-links.open a { padding: 14px; border-bottom: 1px solid var(--line); }
  .nav-group {
    display: grid;
    align-items: stretch;
  }
  .nav-parent {
    padding: 14px;
    color: var(--terracotta);
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
  }
  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu a {
    padding: 12px 14px;
    color: var(--ink);
  }
  .hero-grid,
  .model-hero-grid,
  .kit-hero-grid,
  .section-head,
  .process-layout,
  .split,
  .model-proof,
  .kit-note,
  .scope-grid,
  .estate-showcase,
  .service-split,
  .property-contact,
  .property-modal-panel { grid-template-columns: 1fr; }
  .process-nav { position: relative; top: auto; grid-template-columns: repeat(4, 1fr); }
  .process-step,
  .process-step:nth-child(even) { grid-template-columns: 1fr; min-height: auto; }
  .process-step:nth-child(even) .process-media { order: initial; }
  .capabilities, .material-grid, .property-grid, .listing-grid, .trust-row, .model-layer-grid, .kit-grid { grid-template-columns: repeat(2, 1fr); }
  .kit-card { grid-template-columns: 1fr; }
  .kit-cover { min-height: 360px; }
  .model-proof-grid { grid-template-columns: 1fr; }
  .listing-card { grid-template-columns: 1fr; }
  .listing-media { min-height: 330px; }
  .property-modal-media,
  .property-modal-media img { min-height: 420px; }
  .property-modal-info { max-height: none; }
  .feature-card, .feature-card.hero-feature { grid-column: span 6; min-height: 360px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 130px; }
  .model-hero { min-height: auto; padding-top: 130px; }
  .kit-hero { min-height: auto; padding-top: 130px; }
  .hero-actions, .button { width: 100%; }
  .metric-row, .capabilities, .material-grid, .property-grid, .team-grid, .footer-grid, .listing-grid, .trust-row, .property-contact, .model-layer-grid, .kit-grid { grid-template-columns: 1fr; }
  .scope-copy,
  .scope-card,
  .estate-showcase > div,
  .property-agent,
  .property-modal-info { padding: 24px; }
  .estate-showcase img,
  .estate-showcase { min-height: auto; }
  .listing-card,
  .property-agent { grid-template-columns: 1fr; }
  .property-agent img { width: 118px; }
  .property-modal {
    padding: 0;
    align-items: stretch;
  }
  .property-modal.open { place-items: stretch; }
  .property-modal-panel {
    width: 100%;
    max-height: 100svh;
    overflow: auto;
  }
  .property-modal-media,
  .property-modal-media img { min-height: 310px; }
  .feature-cinema { grid-template-columns: 1fr; }
  .feature-card, .feature-card.hero-feature { grid-column: auto; min-height: 340px; }
  .contact-agent { grid-template-columns: 58px 1fr; }
  .contact-agent img { width: 58px; height: 58px; }
  .form-intro { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .contact-form::after { position: static; grid-column: 1 / -1; order: -1; }
  .process-nav { grid-template-columns: repeat(2, 1fr); }
  .process-media, .process-media img { min-height: 340px; }
  .masonry { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .masonry-card,
  .masonry-card.large,
  .masonry-card.tall,
  .masonry-card.wide { grid-column: auto; grid-row: auto; min-height: 300px; }
  .steel-house-frame { padding: 38px 0 24px; }
  .frame-roof { display: none; }
  .frame-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    border-width: 5px;
  }
  .frame-stud, .frame-brace { opacity: .38; }
  .video-bay { padding: 12px; }
  .video-embed.portrait { width: min(100%, 260px); }
  .video-link-card.portrait { width: min(100%, 260px); }
  .kit-card { grid-template-columns: 1fr; }
  .kit-cover { min-height: 340px; }
  .kit-body { padding: 24px; }
  .kit-actions { display: grid; }
  .brand img { width: 112px; }
  .language-switch {
    gap: 2px;
    padding: 2px;
  }
  .language-switch button {
    min-width: 25px;
    padding-inline: 2px;
    font-size: 0;
  }
  .language-switch .flag {
    width: 18px;
    height: 12px;
  }
  .menu-toggle {
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }
  .menu-toggle::before {
    content: "☰";
    font-size: 1.15rem;
    line-height: 1;
  }
}
