/* ─── TOKENS ─────────────────────────────── */
:root {
  --navy:       #1E3A5F;
  --navy-deep:  #122540;
  --white:      #FFFFFF;
  --offwhite:   #F5F5F5;
  --gold:       #C8A96A;
  --gold-light: #dfc18e;
  --text:       #222222;
  --text-muted: #6b7280;
  --border:     rgba(200,169,106,0.25);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease-out);
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── LANGUAGE TOGGLE ─────────────────────── */
body.lang-en .es { display: none; }
body.lang-es .en { display: none; }

/* ─── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── UTILITY ─────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }

.section-label {
  font-family:    var(--ff-body);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--gold);
  display:        block;
  margin-bottom:  14px;
}
.section-title {
  font-family: var(--ff-display);
  font-size:   clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color:       var(--navy);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  padding:        15px 32px;
  border-radius:  2px;
  font-family:    var(--ff-body);
  font-size:      14px;
  font-weight:    500;
  letter-spacing: 0.04em;
  cursor:         pointer;
  transition:     var(--transition);
  border:         none;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover,
.btn-primary:active {
  background:  var(--gold-light);
  transform:   translateY(-2px);
  box-shadow:  0 12px 32px rgba(200,169,106,0.35);
}
.btn-outline {
  background: transparent;
  color:      var(--white);
  border:     1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover,
.btn-outline:active {
  border-color: var(--gold);
  color:        var(--gold);
}

/* ─── HEADER / NAV ────────────────────────── */
.header {
  position:   fixed;
  top: 0; left: 0; right: 0;
  z-index:    100;
  padding:    20px 0;
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background:     rgba(18,37,64,0.97);
  backdrop-filter: blur(12px);
  box-shadow:     0 2px 30px rgba(0,0,0,0.18);
  padding:        14px 0;
}
.header-inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
}
.logo {
  font-family:    var(--ff-display);
  font-size:      1.35rem;
  font-weight:    600;
  color:          var(--white);
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.nav {
  display:     flex;
  align-items: center;
  gap:         36px;
}
.nav a {
  color:          rgba(255,255,255,0.75);
  font-size:      13px;
  font-weight:    400;
  letter-spacing: 0.04em;
  transition:     color 0.25s;
  padding:        8px 0;
}
.nav a:hover { color: var(--gold); }

.lang-toggle {
  display:       flex;
  align-items:   center;
  background:    rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow:      hidden;
  font-size:     12px;
  font-weight:   500;
  letter-spacing: 0.06em;
}
.lang-toggle button {
  background:  none;
  border:      none;
  color:       rgba(255,255,255,0.55);
  cursor:      pointer;
  padding:     8px 14px;
  transition:  background 0.2s, color 0.2s;
  min-width:   44px;
  min-height:  44px;
  -webkit-tap-highlight-color: transparent;
}
.lang-toggle button.active {
  background: var(--gold);
  color:      var(--navy-deep);
}

/* Oculto en desktop, visible solo en móvil junto al hamburger */
.lang-toggle-mobile { display: none; }

.hamburger {
  display:    none;
  flex-direction: column;
  gap:        5px;
  cursor:     pointer;
  padding:    10px;
  margin:     -10px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  width:         24px;
  height:        2px;
  background:    var(--white);
  border-radius: 1px;
  transition:    var(--transition);
  pointer-events: none;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position:   relative;
  display:    flex;
  align-items: center;
  overflow:   hidden;
}
.hero-bg {
  position: absolute;
  inset:    0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(200,169,106,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(30,58,95,0.8) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset:    0;
  background-image:
    linear-gradient(rgba(200,169,106,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,106,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position:    relative;
  z-index:     2;
  display:     grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap:         60px;
  width:       100%;
  max-width:   1160px;
  margin:      0 auto;
  padding:     120px 24px 130px; /* bottom >= altura barra stats (~106px) + margen */
}

.hero-eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  28px;
}
.hero-eyebrow::before {
  content:    '';
  width:      32px;
  height:     1px;
  background: var(--gold);
}
.hero-name {
  font-family:   var(--ff-display);
  font-size:     clamp(3rem, 6vw, 5.5rem);
  font-weight:   300;
  line-height:   1.05;
  color:         var(--white);
  margin-bottom: 8px;
}
.hero-name em { font-style: italic; color: var(--gold); }
.hero-title {
  font-size:      13px;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.45);
  margin-bottom:  36px;
}
.hero-slogan {
  font-family:   var(--ff-display);
  font-size:     clamp(1.4rem, 2.5vw, 2rem);
  font-weight:   300;
  font-style:    italic;
  color:         rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height:   1.3;
}
.hero-desc {
  font-size:     15px;
  color:         rgba(255,255,255,0.58);
  max-width:     480px;
  margin-bottom: 44px;
  font-weight:   300;
}
.hero-actions {
  display:       flex;
  align-items:   center;
  flex-wrap:     wrap;
  gap:           16px;
  margin-bottom: 52px;
}
.hero-socials {
  display:     flex;
  align-items: center;
  flex-wrap:   wrap;
  gap:         10px;
}
.hero-socials a {
  width:           40px;
  height:          40px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      rgba(255,255,255,0.08);
  border-radius:   2px;
  color:           rgba(255,255,255,0.6);
  transition:      background 0.25s, color 0.25s, transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.hero-socials a:hover,
.hero-socials a:active {
  background: var(--gold);
  color:      var(--navy-deep);
  transform:  translateY(-3px);
}
.hero-socials svg { width: 17px; height: 17px; fill: currentColor; }

/* Photo side */
.hero-photo-wrap {
  position:        relative;
  display:         flex;
  justify-content: center;
}
.hero-photo-frame {
  position:  relative;
  width:     420px;
  max-width: 100%;
}
.hero-photo-frame::before {
  content:       '';
  position:      absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border:        1px solid rgba(200,169,106,0.3);
  border-radius: 2px;
  z-index:       0;
}
.hero-photo-frame::after {
  content:       '';
  position:      absolute;
  bottom: -20px; right: -20px;
  width:         120px;
  height:        120px;
  background:    var(--gold);
  opacity:       0.12;
  border-radius: 2px;
  z-index:       0;
}
.hero-photo-placeholder {
  position:        relative;
  z-index:         1;
  width:           100%;
  aspect-ratio:    3/4;
  background:      linear-gradient(145deg, #1e3a5f 0%, #2a5080 50%, #1a3055 100%);
  border-radius:   2px;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: flex-end;
  overflow:        hidden;
  box-shadow:      0 40px 80px rgba(0,0,0,0.5);
}
.hero-photo-placeholder img {
  position:    absolute;
  inset:       0;
  width:       100%;
  height:      100%;
  object-fit:  cover;
  object-position: top center;
}
.hero-photo-placeholder svg.silhouette {
  position: absolute;
  bottom:   0;
  width:    75%;
  fill:     rgba(200,169,106,0.15);
}
.hero-photo-caption {
  position:   relative;
  z-index:    2;
  background: linear-gradient(transparent, rgba(18,37,64,0.95));
  width:      100%;
  padding:    32px 24px 24px;
  text-align: center;
}
.hero-photo-caption p {
  font-size:      11px;
  letter-spacing: 0.1em;
  color:          rgba(255,255,255,0.4);
  font-style:     italic;
}

/* Stats bar */
.hero-stats {
  position:    absolute;
  bottom: 0; left: 0; right: 0;
  background:  rgba(200,169,106,0.08);
  border-top:  1px solid rgba(200,169,106,0.15);
  z-index:     3;
}
.hero-stats-inner {
  max-width:       1160px;
  margin:          0 auto;
  padding:         28px 24px;
  display:         flex;
  justify-content: center;
  gap:             64px;
  flex-wrap:       wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size:   2.2rem;
  font-weight: 300;
  color:       var(--gold);
  line-height: 1;
}
.stat-label {
  font-size:      11px;
  color:          rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-top:     4px;
}

/* ─── ABOUT ──────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img {
  width:           100%;
  aspect-ratio:    4/5;
  background:      linear-gradient(135deg, #1E3A5F 0%, #2c5282 100%);
  border-radius:   2px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
  position:        relative;
}
.about-img::after {
  content:    '';
  position:   absolute;
  bottom: 0; left: 0; right: 0;
  height:     50%;
  background: linear-gradient(transparent, rgba(30,58,95,0.6));
}
.about-img-icon { width: 80px; height: 80px; fill: rgba(200,169,106,0.3); }
.about-accent {
  position:      absolute;
  bottom: -24px; right: -24px;
  width:         160px;
  height:        160px;
  background:    var(--gold);
  opacity:       0.08;
  border-radius: 2px;
}
.about-badge {
  position:    absolute;
  bottom: 24px; left: -24px;
  background:  var(--navy-deep);
  border:      1px solid var(--border);
  border-radius: 2px;
  padding:     20px 24px;
  display:     flex;
  align-items: center;
  gap:         16px;
  z-index:     2;
  box-shadow:  0 20px 40px rgba(0,0,0,0.15);
}
.about-badge-icon {
  width:           40px;
  height:          40px;
  background:      var(--gold);
  border-radius:   2px;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.about-badge-icon svg { width: 20px; height: 20px; fill: var(--navy-deep); }
.about-badge-text p:first-child {
  font-family: var(--ff-display);
  font-size:   1.5rem;
  font-weight: 300;
  color:       var(--gold);
  line-height: 1;
}
.about-badge-text p:last-child {
  font-size:      11px;
  color:          rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.about-text {
  font-size:     15px;
  color:         var(--text-muted);
  margin-bottom: 20px;
  font-weight:   300;
  line-height:   1.75;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding:     16px 24px;
  margin:      32px 0;
  background:  rgba(200,169,106,0.04);
}
.about-quote p {
  font-family: var(--ff-display);
  font-size:   1.25rem;
  font-style:  italic;
  font-weight: 300;
  color:       var(--navy);
  line-height: 1.5;
}
.about-pills {
  display:    flex;
  flex-wrap:  wrap;
  gap:        10px;
  margin-top: 28px;
}
.pill {
  display:        inline-flex;
  align-items:    center;
  gap:            7px;
  padding:        8px 16px;
  border:         1px solid var(--border);
  border-radius:  2px;
  font-size:      12px;
  font-weight:    500;
  color:          var(--navy);
  letter-spacing: 0.03em;
}
.pill::before {
  content:       '';
  width:         6px;
  height:        6px;
  background:    var(--gold);
  border-radius: 50%;
  flex-shrink:   0;
}

/* ─── SERVICES ──────────────────────────── */
.services { background: var(--offwhite); }
.services-header { margin-bottom: 56px; }
.services-grid {
  display:     grid;
  grid-template-columns: repeat(3, 1fr);
  gap:         2px;
}
.service-card {
  background: var(--white);
  padding:    40px 36px;
  position:   relative;
  overflow:   hidden;
  transition: var(--transition);
  cursor:     default;
  -webkit-tap-highlight-color: transparent;
}
.service-card::after {
  content:          '';
  position:         absolute;
  bottom: 0; left: 0; right: 0;
  height:           3px;
  background:       var(--gold);
  transform:        scaleX(0);
  transform-origin: left;
  transition:       transform 0.35s var(--ease-out);
}
.service-card:hover,
.service-card:focus-within { background: var(--navy-deep); }
.service-card:hover::after,
.service-card:focus-within::after { transform: scaleX(1); }
.service-card:hover .service-icon,
.service-card:focus-within .service-icon { background: var(--gold); }
.service-card:hover .service-icon svg,
.service-card:focus-within .service-icon svg { fill: var(--navy-deep); }
.service-card:hover .service-title,
.service-card:focus-within .service-title { color: var(--white); }
.service-card:hover .service-desc,
.service-card:focus-within .service-desc { color: rgba(255,255,255,0.55); }

/* Touch-friendly active state */
@media (hover: none) {
  .service-card:active { background: var(--navy-deep); }
  .service-card:active::after { transform: scaleX(1); }
  .service-card:active .service-icon { background: var(--gold); }
  .service-card:active .service-icon svg { fill: var(--navy-deep); }
  .service-card:active .service-title { color: var(--white); }
  .service-card:active .service-desc { color: rgba(255,255,255,0.55); }
}

.service-icon {
  width:           52px;
  height:          52px;
  background:      rgba(200,169,106,0.1);
  border-radius:   2px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   24px;
  transition:      var(--transition);
}
.service-icon svg { width: 24px; height: 24px; fill: var(--gold); transition: var(--transition); }
.service-title {
  font-family:   var(--ff-display);
  font-size:     1.25rem;
  font-weight:   400;
  color:         var(--navy);
  margin-bottom: 12px;
  transition:    color 0.3s;
}
.service-desc {
  font-size:   14px;
  color:       var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  transition:  color 0.3s;
}

/* ─── WHY ME ─────────────────────────────── */
.why { background: var(--navy-deep); position: relative; overflow: hidden; }
.why::before {
  content:    '';
  position:   absolute;
  top: -200px; right: -200px;
  width:      500px;
  height:     500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.06) 0%, transparent 70%);
}
.why-header { margin-bottom: 56px; }
.why-header .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:     2px;
}
.why-item {
  padding:    36px 28px;
  border-top: 1px solid rgba(200,169,106,0.15);
  transition: var(--transition);
}
.why-item:hover { background: rgba(200,169,106,0.05); }
.why-num {
  font-family: var(--ff-display);
  font-size:   3rem;
  font-weight: 300;
  color:       rgba(200,169,106,0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.why-icon { width: 44px; height: 44px; margin-bottom: 18px; }
.why-icon svg { width: 100%; height: 100%; fill: var(--gold); }
.why-item-title {
  font-family:   var(--ff-display);
  font-size:     1.1rem;
  color:         var(--white);
  font-weight:   400;
  margin-bottom: 10px;
}
.why-item-desc {
  font-size:   13px;
  color:       rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── PROPERTIES ─────────────────────────── */
.properties { background: var(--white); }
.properties-header {
  display:         flex;
  justify-content: space-between;
  align-items:     flex-end;
  margin-bottom:   48px;
  flex-wrap:       wrap;
  gap:             24px;
}
.props-link {
  font-size:      13px;
  font-weight:    500;
  color:          var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display:        flex;
  align-items:    center;
  gap:            8px;
  transition:     gap 0.25s;
}
.props-link:hover { gap: 12px; }
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:     24px;
}
.prop-card {
  border-radius: 2px;
  overflow:      hidden;
  border:        1px solid rgba(0,0,0,0.06);
  transition:    var(--transition);
  background:    var(--white);
}
.prop-card:hover {
  transform:  translateY(-6px);
  box-shadow: 0 24px 60px rgba(30,58,95,0.12);
}
.prop-image {
  position:     relative;
  aspect-ratio: 4/3;
  overflow:     hidden;
}
.prop-img-placeholder {
  width:           100%;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.prop-img-placeholder svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.4); }
.prop-badge {
  position:       absolute;
  top: 16px; left: 16px;
  background:     var(--gold);
  color:          var(--navy-deep);
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.08em;
  padding:        5px 12px;
  border-radius:  2px;
}
.prop-body { padding: 24px; }
.prop-price {
  font-family:   var(--ff-display);
  font-size:     1.5rem;
  font-weight:   300;
  color:         var(--navy);
  margin-bottom: 4px;
}
.prop-price small { font-size: 1rem; color: var(--text-muted); }
.prop-location {
  font-size:      12px;
  color:          var(--gold);
  font-weight:    500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom:  12px;
  display:        flex;
  align-items:    center;
  gap:            5px;
}
.prop-location svg { width: 12px; height: 12px; fill: var(--gold); }
.prop-desc {
  font-size:     13px;
  color:         var(--text-muted);
  line-height:   1.65;
  font-weight:   300;
  margin-bottom: 20px;
}
.prop-specs {
  display:     flex;
  gap:         16px;
  border-top:  1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  flex-wrap:   wrap;
}
.prop-spec {
  display:     flex;
  align-items: center;
  gap:         5px;
  font-size:   12px;
  color:       var(--text-muted);
}
.prop-spec svg { width: 13px; height: 13px; fill: var(--navy); opacity: 0.5; }

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials { background: var(--offwhite); }
.testimonials-header { margin-bottom: 56px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:     24px;
}
.testi-card {
  background:    var(--white);
  padding:       40px;
  border-radius: 2px;
  position:      relative;
  transition:    var(--transition);
}
.testi-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 20px 50px rgba(30,58,95,0.08);
}
.testi-stars {
  display:       flex;
  gap:           4px;
  margin-bottom: 20px;
}
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testi-quote-icon {
  position: absolute;
  top: 28px; right: 28px;
  width:    32px;
  height:   32px;
  fill:     rgba(200,169,106,0.15);
}
.testi-text {
  font-family:   var(--ff-display);
  font-size:     1.05rem;
  font-style:    italic;
  font-weight:   300;
  color:         var(--navy);
  line-height:   1.6;
  margin-bottom: 28px;
}
.testi-author {
  display:     flex;
  align-items: center;
  gap:         14px;
  border-top:  1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}
.testi-avatar {
  width:         44px;
  height:        44px;
  border-radius: 50%;
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-family:   var(--ff-display);
  font-size:     1.1rem;
  font-weight:   400;
  color:         var(--white);
  flex-shrink:   0;
}
.testi-name  { font-weight: 500; font-size: 14px; color: var(--navy); }
.testi-role  { font-size: 12px; color: var(--text-muted); font-weight: 300; }

/* ─── CONTACT ────────────────────────────── */
.contact { background: var(--navy-deep); position: relative; overflow: hidden; }
.contact::before {
  content:    '';
  position:   absolute;
  bottom: -100px; left: -100px;
  width:      400px;
  height:     400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.08) 0%, transparent 70%);
}
.contact-grid {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         80px;
  align-items: start;
}
.contact-left .section-title { color: var(--white); margin-bottom: 16px; }
.contact-intro {
  font-size:     15px;
  color:         rgba(255,255,255,0.55);
  font-weight:   300;
  margin-bottom: 44px;
  line-height:   1.75;
}
.contact-item {
  display:       flex;
  align-items:   center;
  gap:           18px;
  padding:       20px 0;
  border-bottom: 1px solid rgba(200,169,106,0.12);
  color:         rgba(255,255,255,0.7);
  font-size:     14px;
  transition:    color 0.25s;
}
.contact-item:hover { color: var(--gold); }
.contact-item-label {
  font-size:      11px;
  color:          rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom:  2px;
}
.contact-item-icon {
  width:           44px;
  height:          44px;
  background:      rgba(200,169,106,0.1);
  border-radius:   2px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  transition:      background 0.25s;
}
.contact-item:hover .contact-item-icon { background: var(--gold); }
.contact-item-icon svg { width: 18px; height: 18px; fill: var(--gold); transition: fill 0.25s; }
.contact-item:hover .contact-item-icon svg { fill: var(--navy-deep); }

.contact-right { padding-top: 8px; }
.contact-cta-box {
  background:    rgba(200,169,106,0.06);
  border:        1px solid var(--border);
  border-radius: 2px;
  padding:       48px 40px;
  text-align:    center;
}
.contact-cta-box h3 {
  font-family:   var(--ff-display);
  font-size:     1.6rem;
  font-weight:   300;
  color:         var(--white);
  margin-bottom: 12px;
}
.contact-cta-box p {
  font-size:     14px;
  color:         rgba(255,255,255,0.5);
  font-weight:   300;
  margin-bottom: 32px;
  line-height:   1.65;
}
.wa-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             12px;
  background:      #25D366;
  color:           var(--white);
  padding:         16px 36px;
  border-radius:   2px;
  font-weight:     500;
  font-size:       15px;
  transition:      var(--transition);
  letter-spacing:  0.02em;
  width:           100%;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.wa-btn svg { width: 22px; height: 22px; fill: var(--white); }
.wa-btn:hover,
.wa-btn:active {
  background:  #20bc5a;
  transform:   translateY(-2px);
  box-shadow:  0 12px 32px rgba(37,211,102,0.35);
}
.contact-socials {
  display:         flex;
  justify-content: center;
  gap:             16px;
  margin-top:      28px;
  flex-wrap:       wrap;
}
.social-link {
  width:           42px;
  height:          42px;
  background:      rgba(255,255,255,0.06);
  border-radius:   2px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           rgba(255,255,255,0.45);
  transition:      var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.social-link svg { width: 17px; height: 17px; fill: currentColor; }
.social-link:hover,
.social-link:active { background: var(--gold); color: var(--navy-deep); }

/* ─── FOOTER ──────────────────────────────── */
.footer {
  background:  #0d1f35;
  padding:     32px 0;
  border-top:  1px solid rgba(200,169,106,0.1);
}
.footer-inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  flex-wrap:       wrap;
  gap:             16px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size:   1.1rem;
  font-weight: 400;
  color:       rgba(255,255,255,0.5);
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ─── ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity:   0;
  transform: translateY(24px);
  animation: fadeUp 0.6s var(--ease-out) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.25s; }
.fade-up:nth-child(4) { animation-delay: 0.35s; }
.fade-up:nth-child(5) { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE NAV ─────────────────────────── */
.mobile-nav {
  display:         none;
  position:        fixed;
  inset:           0;
  background:      var(--navy-deep);
  z-index:         200;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size:   2rem;
  font-weight: 300;
  color:       rgba(255,255,255,0.8);
  transition:  color 0.25s;
  padding:     8px 24px;
}
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--gold); }
.mobile-nav-close {
  position:    absolute;
  top: 24px; right: 24px;
  background:  none;
  border:      none;
  cursor:      pointer;
  color:       rgba(255,255,255,0.5);
  font-size:   28px;
  line-height: 1;
  padding:     8px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-lang {
  display:       flex;
  align-items:   center;
  background:    rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow:      hidden;
  margin-top:    8px;
}
.mobile-nav-lang button {
  background:     none;
  border:         none;
  color:          rgba(255,255,255,0.55);
  cursor:         pointer;
  padding:        12px 28px;
  font-size:      14px;
  font-weight:    500;
  letter-spacing: 0.1em;
  transition:     background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-lang button.active {
  background: var(--gold);
  color:      var(--navy-deep);
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /* Hero — en móvil el contenido supera 100vh, así que la barra de stats
     sale del flujo absoluto para no tapar los botones (z-index: 3 bloqueaba clics) */
  .hero { display: flex; flex-direction: column; }
  .hero-content {
    grid-template-columns: 1fr;
    padding-top:    100px;
    padding-bottom: 48px;
    flex: 1;
  }
  .hero-stats {
    position: relative;
    bottom:   auto;
  }

  .hero-socials { justify-content: center; }

  .hero-photo-wrap { order: -1; }
  .hero-photo-frame { width: 280px; }
  .hero-photo-frame::before,
  .hero-photo-frame::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav { display: none; }
  .lang-toggle-mobile { display: flex; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { gap: 32px; }
  .contact-cta-box { padding: 32px 24px; }
  .testi-card { padding: 28px 24px; }
  .service-card { padding: 32px 24px; }

  /* Botones del hero en columna desde 600px para evitar solapamiento */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }
}
