:root {
  --navy: #0f1728;
  --navy-soft: #1a2336;
  --gold: #c7a56a;
  --gold-soft: #f4ebdd;
  --ivory: #f7f6f3;
  --stone: #ebe8e3;
  --bg: #f3f3f2;
  --white: #ffffff;
  --text: #172033;
  --muted: #5f6777;
  --border: rgba(15, 23, 40, 0.08);
  --shadow-soft: 0 18px 45px rgba(15, 23, 40, 0.07);
  --shadow-card: 0 24px 60px rgba(15, 23, 40, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 40, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  background: rgba(12, 20, 35, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

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

.brand-mark {
  width: 76px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand:hover .brand-mark {
  transform: scale(1.03);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  margin-top: 0.18rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.site-nav a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transition: width 0.28s ease;
}

.site-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.site-nav a:not(.btn-nav):hover::after,
.site-nav a.active:not(.btn-nav)::after {
  width: 100%;
}

.site-nav a.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  transform: scale(1.08);
  opacity: 0.88;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--white);
  color: var(--navy) !important;
  padding: 0.95rem 1.5rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.btn-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  background: #f7f7f7;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.95rem 1.5rem;
  box-shadow: 0 18px 36px rgba(15, 23, 40, 0.18);
}

.btn-full {
  width: 100%;
}

/* =========================
   HERO PREMIUM
========================= */

.hero-luxury {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 16, 28, 0.34), rgba(10, 16, 28, 0.52)),
    url("https://www.construyehogar.com/wp-content/uploads/2016/01/Casa-moderna-un-piso.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 28, 0.18) 0%, rgba(10, 16, 28, 0.44) 100%);
}

.hero-luxury-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-glass-card {
  width: 100%;
  max-width: 980px;
  padding: 3.2rem 3rem;
  border-radius: 26px;
  background: rgba(19, 27, 43, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-luxury h1 {
  margin: 0 0 1.2rem;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero-description {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-light-solid {
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 1rem 1.7rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  border-radius: 999px;
  padding: 1rem 1.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 2rem;
  opacity: 0.85;
}

/* =========================
   GENERALES
========================= */

.section {
  padding: 7rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--navy);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-mini-title {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.section-mini-title.light {
  color: #e9cd98;
}

.section-mini-title-gold {
  color: #e3c48e;
}

/* =========================
   EDITORIAL / SOBRE HUGO
========================= */

.section-editorial {
  background: #f5f5f4;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.editorial-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--navy);
}

.editorial-copy p {
  margin: 0 0 1rem;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.editorial-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.link-action {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
}

.link-action::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--navy);
  margin-top: 0.35rem;
}

.link-action.secondary {
  color: var(--gold);
}

.link-action.secondary::after {
  background: var(--gold);
}

.editorial-photo-block {
  position: relative;
}

.editorial-photo-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #eceae8;
  box-shadow: var(--shadow-soft);
}

.editorial-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-nameplate {
  position: absolute;
  left: -28px;
  bottom: -28px;
  min-width: 260px;
  background: #061136;
  color: var(--white);
  border-radius: 14px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 24px 55px rgba(6, 17, 54, 0.22);
}

.editorial-nameplate strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.editorial-nameplate span {
  color: rgba(255, 255, 255, 0.82);
}

/* =========================
   BRAND / TRUST DARK
========================= */

.section-brand-trust-dark {
  background: linear-gradient(135deg, #0d1525 0%, #172338 100%);
  position: relative;
  overflow: hidden;
}

.section-brand-trust-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 165, 106, 0.10), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 18%);
  pointer-events: none;
}

.section-brand-trust-dark .brand-trust-grid {
  position: relative;
  z-index: 1;
}

.brand-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.brand-trust-copy-light h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #ffffff;
}

.brand-trust-copy-light p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 700px;
}

.brand-logo-cards {
  display: grid;
  gap: 1.2rem;
}

.logo-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo-card-plate {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 40, 0.06);
  border-radius: 18px;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  overflow: hidden;
}

.logo-card-plate img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  display: block;
}

.logo-card-dark p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* =========================
   VISUAL SHOWCASE
========================= */

.section-visual-showcase {
  background: #f1f1f0;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.visual-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(15, 23, 40, 0.08);
}

.visual-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* =========================
   SERVICES
========================= */

.services-section {
  background: #f8f7f5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.service-card {
  min-height: 230px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 22px;
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
}

.service-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* =========================
   PROOF
========================= */

.section-proof {
  background: #f2f1ee;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.proof-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.proof-card strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.55rem;
  font-weight: 800;
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.proof-logo-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.proof-logo-box {
  background: #fff;
  border: 1px solid rgba(15, 23, 40, 0.06);
  border-radius: 20px;
  padding: 1rem;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.proof-logo-box img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.proof-logo-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

/* =========================
   DARK BAND
========================= */

.dark-band {
  background: linear-gradient(135deg, #0d1525 0%, #172338 100%);
  color: var(--white);
}

.dark-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.dark-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.dark-list {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
}

.dark-list ul {
  margin: 0;
  padding-left: 1rem;
}

.dark-list li {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0.65rem;
}

/* =========================
   PROCESS
========================= */

.process-section {
  background: #f4f3f1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 22px;
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
}

.process-step {
  display: inline-block;
  margin-bottom: 0.9rem;
  background: var(--gold-soft);
  color: #8b6a33;
  padding: 0.48rem 0.76rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
}

.process-card h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 600;
}

.process-card ol {
  margin: 0;
  padding-left: 1rem;
}

.process-card li {
  color: var(--muted);
  margin-bottom: 0.55rem;
}

/* =========================
   EXP
========================= */

.exp-section {
  background: #f8f7f4;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.exp-grid h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--navy);
}

.exp-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.exp-badge-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.exp-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* =========================
   FAQ
========================= */

.faq-section {
  background: #f4f3f1;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.faq-item[open] {
  border-color: #e7d6b5;
  box-shadow: 0 20px 40px rgba(15, 23, 40, 0.06);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

/* =========================
   CONTACT
========================= */

.contact-section {
  background: #f8f7f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--navy);
}

.contact-copy p {
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.contact-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 24px;
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

label {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 40, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #fcfcfb;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 23, 40, 0.08);
  border-color: var(--navy);
}

.form-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #0c1423;
  color: var(--white);
  padding-top: 2.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  width: 76px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-column h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 2rem;
  margin-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.22);
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

/* =========================
   REVEAL
========================= */

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

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HOVER PREMIUM
========================= */

.service-card,
.process-card,
.exp-badge-box,
.contact-form,
.visual-card,
.faq-item,
.logo-card-dark,
.proof-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.process-card:hover,
.exp-badge-box:hover,
.contact-form:hover,
.visual-card:hover,
.faq-item:hover,
.logo-card-dark:hover,
.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 40, 0.1);
}

/* =========================
   MOBILE NAV FIX DEFINITIVO
========================= */

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(12, 20, 35, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    color: var(--white);
  }

  .site-nav a:not(.btn-nav)::after {
    display: none;
  }

  .editorial-grid,
  .brand-trust-grid,
  .visual-grid,
  .services-grid,
  .proof-grid,
  .dark-band-grid,
  .process-grid,
  .exp-grid,
  .contact-grid,
  .footer-grid,
  .proof-logo-row {
    grid-template-columns: 1fr;
  }

  .hero-glass-card {
    padding: 2.5rem 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

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

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 78px;
  }

  .site-nav {
    top: 78px;
  }

  .brand-text {
    max-width: 170px;
  }

  .section {
    padding: 4.8rem 0;
  }

  .hero-luxury {
    min-height: 88vh;
  }

  .hero-luxury-content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero-glass-card {
    padding: 2rem 1.25rem;
  }

  .hero-luxury h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .btn-light-solid,
  .btn-outline-light,
  .btn-nav {
    width: 100%;
    justify-content: center;
  }

  .editorial-nameplate {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -1rem;
    width: fit-content;
    min-width: auto;
  }

  .visual-card img {
    height: 260px;
  }

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

  .logo-card-plate {
    min-height: 150px;
  }

  .logo-card-plate img {
    max-height: 100px;
  }

  .proof-logo-box {
    min-height: 120px;
  }

  .floating-whatsapp {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}


/* =========================
   TEAM PAGE HERO
========================= */

.team-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 16, 28, 0.48), rgba(10, 16, 28, 0.62)),
    url("https://www.construyehogar.com/wp-content/uploads/2016/01/Casa-moderna-un-piso.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 165, 106, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.20) 0%, rgba(10, 16, 28, 0.42) 100%);
}

.team-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.team-hero-copy h1 {
  margin: 0 0 1.2rem;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.team-hero-text {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.6;
}

.team-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.team-hero-points span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.team-side-card {
  background: rgba(19, 27, 43, 0.30);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.team-side-card h2 {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  font-weight: 500;
}

.team-side-card p {
  color: rgba(255, 255, 255, 0.82);
}

.team-mini-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.team-mini-stats article {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1rem;
}

.team-mini-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-mini-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

/* =========================
   TEAM PAGE RESPONSIVE
========================= */

@media (max-width: 980px) {
  .team-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .team-hero {
    min-height: 88vh;
  }

  .team-hero-grid {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .team-hero-copy h1 {
    font-size: 2.5rem;
  }

  .team-hero-text {
    font-size: 1rem;
  }

  .team-hero-points {
    flex-direction: column;
  }
}