:root{
  --bg:#ffffff;
  --fg:#0b0b0c;
  --muted:rgba(11,11,12,.65);
  --line:rgba(11,11,12,.12);
  --soft:rgba(11,11,12,.06);

  --radius:18px;
  --radius2:26px;

  --container:1140px;
  --pad:24px;

  --shadow2:0 10px 24px rgba(0,0,0,.08);

  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  /* NAV height variable (used to offset fixed nav) */
  --navH: 80px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top: var(--navH); }
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--fg);
  background:var(--bg);
  overflow-x:hidden; /* evita scroll horizontal accidental */
}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--pad);
  padding-right:var(--pad);
  /* o si prefiere:
  padding-inline: var(--pad);
  */
}
main.container{ padding-top: var(--navH); }


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

/* =========================
   NAV (desktop + mobile)
   ========================= */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px var(--pad);
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  transition: transform .28s ease;
  will-change: transform;
}
.nav.nav--hidden{ transform: translateY(-110%); }

/* offset por nav fijo */
.hero, main{ padding-top: var(--navH); }

/* brand square */
.nav__brand{ text-decoration:none; display:flex; align-items:center; }
.nav__brandSquare{
  width:50px; height:50px;
  background: var(--fg);
  display:grid;
  place-items:center;
}
.nav__logo{
  width:40px; height:40px;
  display:block;
  /* si el SVG es negro, descomente:
  filter: invert(1);
  */
}

.nav__divider{
  width:1px;
  height:22px;
  background:var(--line);
}
.nav__tagline{
  letter-spacing:.18em;
  font-size:12px;
  opacity:.85;
  text-transform:uppercase;
  line-height:1.05;
}

/* desktop links */
.nav__links{
  display:flex;
  gap:16px;
  flex:1;
  justify-content:center;
  flex-wrap:wrap;
}
.nav__links a{
  color:var(--fg);
  text-decoration:none;
  font-size:14px;
  opacity:.82;
}
.nav__links a:hover{ opacity:1; }

/* right controls */
.nav__right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* language box + dropdown */
.langSwitch{ position:relative; }
.langSwitch__btn{
  width:50px; height:50px;
  background:#fff;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
}
.langSwitch__menu{
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 110px;
  background: rgba(255,255,255,.98);
  border:1px solid rgba(11,11,12,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  opacity:0;
  transform: translateY(-6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.langSwitch.is-open .langSwitch__menu{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.langSwitch__menu a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:var(--fg);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(11,11,12,.10);
}
.langSwitch__menu a:last-child{ border-bottom:0; }
.langSwitch__menu a:hover{ background: rgba(11,11,12,.04); }
.langSwitch__menu a.is-active{ opacity:.55; }

/* ===== Burger button (square) ===== */
.nav__toggle{
  display:none;                 /* desktop: off */
  width:50px;
  height:50px;
  background: var(--fg);
  border:0;
  padding:0;
  cursor:pointer;
  position:relative;
  z-index:62;
  place-items:center;           /* para grid */
}
@media (max-width: 980px){
  .nav__toggle{ display:grid; } /* mobile: on */
}

/* ===== Burger icon (3 perfect lines) ===== */
.nav__burger{
  position:relative;
  width:22px;
  height:16px;
}

/* línea central */
.nav__burger{
  position:relative;
}
.nav__burger::before,
.nav__burger::after,
.nav__burger span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#fff;
  border-radius:2px;
  transform-origin:center;
  transition: transform .22s ease, top .22s ease, opacity .18s ease;
}

/* Usamos un span interno como línea central */
.nav__burger span{
  top:50%;
  transform:translateY(-50%);
  opacity:1;
}

/* líneas superior e inferior */
.nav__burger::before{ top:0; }
.nav__burger::after{ top:100%; transform:translateY(-100%); }

/* ===== Open state: burger -> X centered ===== */
.nav.is-open .nav__burger span{
  opacity:0;                    /* desaparece la línea central */
}
.nav.is-open .nav__burger::before{
  top:50%;
  transform:translateY(-50%) rotate(45deg);
}
.nav.is-open .nav__burger::after{
  top:50%;
  transform:translateY(-50%) rotate(-45deg);
}

/* Tamaño en móvil pequeño */


/* backdrop + drawer */
.nav__backdrop{
  position:fixed;
  inset:0;
  background: rgba(11,11,12,.44);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
  z-index:55;
}
.nav__drawer{
  position:fixed;
  left:0; right:0;
  top:0;
  padding-top: calc(var(--navH) + 14px);
  opacity:0;
  transform: translateY(-10px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:56;
}
.nav__drawerInner{
  margin: 0 var(--pad);
  background: rgba(255,255,255,.98);
  border:1px solid rgba(11,11,12,.12);
  border-radius: var(--radius2);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow:hidden;
}
.nav__drawerInner a{
  display:block;
  padding:16px 16px;
  text-decoration:none;
  color: var(--fg);
  border-bottom: 1px solid rgba(11,11,12,.10);
  font-size:14px;
  letter-spacing:.02em;
}
.nav__drawerInner a:last-child{ border-bottom:0; }
.nav__drawerInner a:hover{ background: rgba(11,11,12,.04); }

.nav.is-open .nav__backdrop{
  opacity:1;
  pointer-events:auto;
}
.nav.is-open .nav__drawer{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
body.nav-open{ overflow:hidden; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  :root{ --navH: 72px; }

  /* en móvil: ocultar links desktop */
  .nav__links{ display:none; }

  /* mantener Estate Excellence visible (NO lo ocultamos) */
  .nav{ gap:12px; padding:12px var(--pad); }
}

@media (max-width: 520px){
  :root{ --pad: clamp(18px, 5vw, 26px); --navH: 66px; }

  .nav__brandSquare,
  .langSwitch__btn,
  .nav__toggle{ width:46px; height:46px; }

  .nav__logo{ width:36px; height:36px; }

  .nav__toggle{ width:46px; height:46px; }
  .nav__burger{ width:20px; height:14px; }

}
/* BOTONES */
.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
}

.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--fg);color:#fff;border-color:var(--fg)}
.btn--primary:hover{transform:translateY(-1px)}
.btn--secondary{background:transparent;color:var(--fg)}
.btn--secondary:hover{background:var(--soft)}
.btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.28)}
.btn--ghost:hover{border-color:rgba(255,255,255,.55)}
.btn--ghostDark{background:transparent;color:var(--fg);border-color:var(--line)}
.btn--ghostDark:hover{background:var(--soft)}

/* HERO */
.hero{
  position:relative;
  min-height:82vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#000;
}
.hero__media{position:absolute;inset:0}
.hero__img{width:100%;height:100%;object-fit:cover;transform:scale(1.02)}
.hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.55),rgba(0,0,0,.14) 45%,rgba(0,0,0,.75));
}
.hero__content{position:relative;z-index:2;color:#fff;padding:84px 0}
.hero__title{
  font-family:var(--font-serif);
  font-weight:500;
  font-size:clamp(38px,4.6vw,64px);
  line-height:1.05;
  margin:0 0 12px 0;
  letter-spacing:.02em;
}
.hero__subtitle{
  max-width:70ch;
  margin:0 0 22px 0;
  color:rgba(255,255,255,.82);
  font-size:16px;
  line-height:1.6;
}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap}
.hero__scroll{
  position:absolute;left:50%;bottom:22px;transform:translateX(-50%);
  width:40px;height:52px;border-radius:999px;border:1px solid rgba(255,255,255,.30);
  display:grid;place-items:center;z-index:2;text-decoration:none;
}
.hero__scrollDot{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,.85);
  animation:dot 1.4s ease-in-out infinite;
}
@keyframes dot{
  0%{transform:translateY(-6px);opacity:.6}
  50%{transform:translateY(6px);opacity:1}
  100%{transform:translateY(-6px);opacity:.6}
}

/* HOME */
.home{padding:30px 0 0 0}
.section{padding:46px 0;border-bottom:1px solid var(--line)}
.section:last-child{border-bottom:none}
.section__head{margin-bottom:20px}
.section__head--center{text-align:center}
.section__title{
  margin:0 0 10px 0;
  font-family:var(--font-serif);
  font-weight:500;
  font-size:34px;
  letter-spacing:.02em;
}
.section__lead{margin:0;color:var(--muted);line-height:1.6;max-width:200ch}
.section__head--center .section__lead{margin-left:auto;margin-right:auto}
.section__cta{margin-top:22px;display:flex;justify-content:center}

/* SIGNATURE cards */
.cards2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.prop{border:1px solid var(--line);border-radius:var(--radius2);overflow:hidden;background:#fff;box-shadow:var(--shadow2)}
.prop__link{display:block;text-decoration:none;color:inherit}
.prop__media{position:relative;aspect-ratio:16/10;background:#111;overflow:hidden}
.prop__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.prop:hover .prop__media img{transform:scale(1.04)}
.badge--status{
  position:absolute;top:14px;left:14px;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.42);
  color:#fff;font-size:12px;letter-spacing:.06em;
}
.prop__body{padding:16px 16px 18px}
.prop__title{margin:0 0 12px 0;font-weight:500;font-size:18px;letter-spacing:.01em}
.prop__meta{display:flex;flex-wrap:wrap;gap:12px;color:var(--muted);font-size:13px}
.meta{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border:1px solid var(--line);
  border-radius:999px;background:rgba(255,255,255,.65);
}
.meta i{font-size:15px;opacity:.9}

/* Hover tiles */
.linkInline{display:inline-flex;align-items:center;gap:10px;opacity:.85}
.hoverTile{
  --hover-img:none;
  position:relative;display:block;
  border:1px solid var(--line);
  border-radius:var(--radius2);
  overflow:hidden;text-decoration:none;
  background:#fff;box-shadow:var(--shadow2);
}
.hoverTile::before{
  content:"";position:absolute;inset:0;
  background-image:var(--hover-img);
  background-size:cover;background-position:center;
  opacity:0;transform:scale(1.02);
  transition:opacity .28s ease, transform .45s ease;
}
.hoverTile::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(110deg, rgba(11,11,12,.78), rgba(11,11,12,.18) 60%, rgba(11,11,12,.80));
  opacity:0;transition:opacity .28s ease;
}
.hoverTile:hover::before{opacity:1;transform:scale(1.06)}
.hoverTile:hover::after{opacity:1}
.hoverTile__inner{
  position:relative;z-index:1;
  padding:18px;
  display:flex;gap:16px;
  align-items:center;
  justify-content:space-between;
}
.hoverTile__icon{
  width:46px;height:46px;border-radius:16px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  background:rgba(255,255,255,.75);
}
.hoverTile__icon i{font-size:18px;opacity:.9}
.hoverTile__content{flex:1;min-width:0}
.hoverTile__title{margin:0 0 6px 0;font-size:16px;font-weight:600}
.hoverTile__text{margin:0;color:var(--muted);line-height:1.6;font-size:14px;max-width:72ch}
.hoverTile__cta{white-space:nowrap}
.hoverTile:hover .hoverTile__icon{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff}
.hoverTile:hover .hoverTile__title,
.hoverTile:hover .hoverTile__text,
.hoverTile:hover .hoverTile__cta{color:#fff}
.hoverTile:hover .hoverTile__text{opacity:.88}

/* Private Access cards */
.values{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.valueCard{
  --hover-img:none;
  position:relative;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;background:#fff;
  text-decoration:none;
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.valueCard::before{
  content:"";position:absolute;inset:0;
  background-image:var(--hover-img);
  background-size:cover;background-position:center;
  opacity:0;transform:scale(1.03);
  transition:opacity .25s ease, transform .45s ease;
}
.valueCard::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(120deg, rgba(11,11,12,.82), rgba(11,11,12,.22));
  opacity:0;transition:opacity .25s ease;
}
.valueCard > *{position:relative;z-index:1}
.valueCard:hover::before{opacity:1;transform:scale(1.08)}
.valueCard:hover::after{opacity:1}
.valueCard__icon{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  margin-bottom:10px;
  background:rgba(255,255,255,.75);
}
.valueCard__icon i{font-size:16px;opacity:.9}
.valueCard__title{margin:0 0 8px 0;font-size:15px;font-weight:600}
.valueCard__text{margin:0;color:var(--muted);line-height:1.6;font-size:14px}
.valueCard:hover .valueCard__icon{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff}
.valueCard:hover .valueCard__title,
.valueCard:hover .valueCard__text{color:#fff}
.valueCard:hover .valueCard__text{opacity:.88}

/* =========================
   HOME — icon + title inline
   ========================= */

/* Pillars: icono + título en la misma línea */
.pillar__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.pillar__head .pillar__icon{
  margin-bottom:0;      /* anula el layout vertical */
  flex:0 0 auto;
}
.pillar__head .pillar__title{
  margin:0;             /* evita el “aire” extra del título */
  min-width:0;
}

/* Value cards: icono + título en la misma línea */
.valueCard__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.valueCard__head .valueCard__icon{
  margin-bottom:0;      /* anula el layout vertical */
  flex:0 0 auto;
}
.valueCard__head .valueCard__title{
  margin:0;             /* evita el “aire” extra del título */
  min-width:0;
}

/* Testimonials */
.quotes{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.quote{margin:0;border:1px solid var(--line);border-radius:var(--radius);padding:18px;background:#fff;box-shadow:var(--shadow2)}
.quote blockquote{margin:0 0 12px 0;color:rgba(11,11,12,.85);line-height:1.7}
.quote figcaption{color:var(--muted);font-size:13px}

/* ========== FOOTER (global) ========== */
.siteFooter{
  margin-top:26px;
  border-top:1px solid var(--line);
  background:#fff;
}
.siteFooter__top{
  padding:38px 0 26px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:22px;
  align-items:start;
}
.siteFooter__brandLink{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--fg);
}
.siteFooter__logo{
  font-weight:700;
  letter-spacing:.10em;
}
.siteFooter__divider{
  width:1px;
  height:22px;
  background:var(--line);
}
.siteFooter__tagline{
  letter-spacing:.18em;
  font-size:12px;
  opacity:.85;
  text-transform:uppercase;
}
.siteFooter__blurb{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.7;
  max-width:56ch;
}
.siteFooter__title{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.9;
}
.siteFooter__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.siteFooter__list a{
  text-decoration:none;
  opacity:.82;
  border-bottom:1px solid transparent;
}
.siteFooter__list a:hover{
  opacity:1;
  border-bottom-color:var(--line);
}
.siteFooter__list i{
  width:18px;
  display:inline-block;
  opacity:.75;
  margin-right:8px;
}
.siteFooter__muted{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
}
@media (max-width:980px) {
	.siteFooter{ padding: 20px 20px 0px 20px; }
}
@media (max-width:520px){
	.siteFooter{ padding:20px 20px 0px 20px; }
}

.newsletter{
  display:grid;
  gap:10px;
}
.newsletter input[type="email"]{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  outline:none;
}
.newsletter input[type="email"]:focus{ border-color:rgba(11,11,12,.35); }
.newsletter .btn{ width:fit-content; }
.newsletter__fineprint{
  margin:2px 0 0;
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
}
.newsletter__fineprint a{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-bottom:2px;
}
.newsletter__fineprint a:hover{ border-bottom-color:var(--fg); }

@media (max-width:520px){
  .newsletter .btn{
    width: 160px !important;
    justify-self: start;   /* botón alineado a la izquierda */
  }
}

.siteFooter__bottom{
  padding:16px 0 26px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:13px;
}
.siteFooter__legal{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.siteFooter__legal a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px solid transparent;
  padding-bottom:2px;
}
.siteFooter__legal a:hover{
  color:var(--fg);
  border-bottom-color:var(--line);
}
.siteFooter__copy{ white-space:nowrap; }

.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/* =========================
   Scroll reveal animations
   ========================= */
[data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s ease, transform .65s ease;
  will-change:opacity, transform;
}
[data-reveal].is-inview{
  opacity:1;
  transform:translateY(0);
}
[data-reveal-item]{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
  transition-delay:var(--d, 0ms);
  will-change:opacity, transform;
}
[data-reveal-item].is-inview{
  opacity:1;
  transform:translateY(0);
}
.iconPop{
  transform:translateY(8px) scale(.92);
  opacity:.96;
  transition:transform .55s cubic-bezier(.2,.9,.2,1);
  will-change:transform;
}
.is-inview .iconPop,
.iconPop.is-inview{ transform:translateY(0) scale(1); }

/* =========================
   Philosophy pillars
   ========================= */
.pillars{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.pillar{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:18px;
  text-decoration:none;
  color:var(--fg);
}
.pillar:hover{ background:rgba(255,255,255,.85); }
.pillar__icon{
  width:46px;height:46px;border-radius:16px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  background:rgba(255,255,255,.75);
  margin-bottom:12px;
}
.pillar__icon i{ font-size:18px; opacity:.9; }
.pillar__title{ font-weight:600; margin:0 0 8px; }
.pillar__text{ color:var(--muted); margin:0; line-height:1.6; }

/* Pillars: icono + título en la misma línea */
.pillar__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.pillar__head .pillar__icon{
  margin-bottom:0;      /* anula el layout vertical */
  flex:0 0 auto;
}
.pillar__head .pillar__title{
  margin:0;             /* evita el “aire” extra del título */
  min-width:0;
}


/* =========================
   Buyer Representation block
   ========================= */
.buyerRep{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.buyerRep__p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.7;
}
.buyerRep__list{
  list-style:none;
  padding:0;
  margin:0 0 16px;
  display:grid;
  gap:10px;
}
.buyerRep__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  line-height:1.6;
}
.buyerRep__list i{
  width:18px;
  margin-top:2px;
  opacity:.75;
}
.buyerRep__cards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.miniCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:16px;
}
.miniCard__icon{
  width:40px;height:40px;border-radius:14px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  background:rgba(255,255,255,.75);
  margin-bottom:10px;
}
.miniCard__icon i{ font-size:16px; opacity:.9; }
.miniCard__title{ font-weight:600; margin:0 0 8px; }
.miniCard__text{ margin:0; color:var(--muted); line-height:1.6; }
/* Mini cards: icono + título en la misma línea */
.miniCard__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.miniCard__head .miniCard__icon{
  margin-bottom:0;      /* anula el layout vertical */
  flex:0 0 auto;
}
.miniCard__head .miniCard__title{
  margin:0;             /* evita el “aire” extra del título */
  min-width:0;
}

/* =========================
   Soft CTA panel
   ========================= */
.ctaSoft{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow2);
  padding:20px;
  display:flex;
  align-items:center;
  gap:16px;
}
.ctaSoft__icon{
  width:46px;height:46px;border-radius:16px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  background:rgba(255,255,255,.75);
}
.ctaSoft__icon i{ font-size:18px; opacity:.9; }
.ctaSoft__content{ flex:1; min-width:0; }
.ctaSoft__title{
  margin:0 0 6px;
  font-family:var(--font-serif);
  font-weight:500;
  font-size:26px;
}
.ctaSoft__text{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.ctaSoft__actions{ flex:0 0 auto; }

/* =========================
   REQUEST MEETING — premium form
   (solo afecta a request_meeting.php)
   ========================= */
.requestMeeting{ padding:20px 0 0 0; }

.rm__header{
  padding:10px 0 18px;
  border-bottom:1px solid var(--line);
  margin-bottom:18px;
}
.rm__title{
  margin:0 0 10px;
  font-family:var(--font-serif);
  font-weight:500;
  letter-spacing:.01em;
  font-size:clamp(34px, 4.2vw, 54px);
}
.rm__intro{
  margin:0;
  color:var(--muted);
  max-width:100%;
  text-align:center;
  line-height:1.7;
}
.rm__ref{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.6;
}
.rm__refLink{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-bottom:2px;
}
.rm__refLink:hover{ border-bottom-color:var(--fg); }
.rm__note{
  margin:14px 0 0;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(11,11,12,.75);
}

.rm__disclaimer{
  margin:0 0 14px;
  color:rgba(11,11,12,.82);
  line-height:1.75;
  font-size:13px;
}

.rm__consents{ display:grid; gap:12px; }

.field--check .check{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.92);
}

.field--check input[type="checkbox"]{
  margin-top:3px;
  width:16px; height:16px;
  accent-color:#0b0b0c;
}

.rm__privacyLink{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid var(--line);
  padding-bottom:2px;
}
.rm__privacyLink:hover{ border-bottom-color:var(--fg); }


/* Honeypot invisible sin inline styles */
.rm__hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px;height:1px;
  overflow:hidden;
}

/* Form container */
/* Form container (match site container width) */
.requestMeeting .form.form--meeting{
  max-width:none;   /* cancels global .form max-width:720px */
  width:100%;
  margin:0;         /* keep aligned to container */
}


/* Sections */
.form__section{
  margin:18px 0;
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow2);
}
.form__sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.form__sectionTitle{
  margin:0;
  font-family:var(--font-serif);
  font-weight:500;
  font-size:22px;
}
.form__sectionLead{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  max-width:520px;
  text-align:right;
}

/* Grid */
.form__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px 16px;
}
.form__grid--wide{ grid-template-columns:1fr; }
.field{ margin:0; } /* override base spacing to fit grid */
.field--full{ grid-column:1 / -1; }

.field label{
  font-size:13px;
  letter-spacing:.02em;
  color:rgba(11,11,12,.9);
  margin-bottom:8px;
}

.req{ margin-left:6px; color:rgba(140,30,30,.85); }

.field input,
.field textarea,
.field select{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.96);
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}

.field textarea{ resize:vertical; min-height:160px; }

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:rgba(11,11,12,.35);
  box-shadow:0 0 0 4px rgba(11,11,12,.06);
}

.field--error input,
.field--error textarea,
.field--error select{
  border-color:rgba(160,40,40,.55);
  box-shadow:0 0 0 4px rgba(160,40,40,.06);
}

.error{
  margin-top:8px;
  color:rgba(160,40,40,.95);
  font-size:12px;
  line-height:1.5;
}

/* Top row inside choice groups */
.field__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.field__label{
  font-size:13px;
  letter-spacing:.02em;
  color:rgba(11,11,12,.9);
}
.field__hint{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Choices: premium pills */
.choices{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.choice{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.92);
  cursor:pointer;
  user-select:none;
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
}
.choice:hover{
  border-color:rgba(11,11,12,.28);
  transform:translateY(-1px);
}
.choice input{
  width:16px; height:16px;
  accent-color:#0b0b0c;
}
.choice span{
  font-size:13px;
  color:rgba(11,11,12,.9);
}

/* Fineprint */
.field__fineprint{
  margin:10px 0 0;
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
}

/* Actions */
.form__actions{
  margin:18px 0 34px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
/* Request Meeting: center submit button */
.requestMeeting .form__actions{
  align-items:center;
  text-align:center;
}
.requestMeeting .form__fineprint{
  text-align:center;
}

.button--primary{
  border:1px solid rgba(0,0,0,.86);
  background:#0b0b0c;
  color:#fff;
  border-radius:14px;
  min-height:48px;
  font-size:14px;
  box-shadow:0 14px 34px rgba(0,0,0,.16);
  text-decoration:none;
  cursor:pointer;
}
.button--primary:hover{ transform:translateY(-1px); }
.button--primary:active{ transform:translateY(0); }

.form__fineprint{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
  max-width:820px;
}

/* Error state for checkbox pill groups */
.field--error .choices{
  padding:10px;
  border:1px solid rgba(160,40,40,.35);
  border-radius:14px;
  background:rgba(160,40,40,.03);
}

/* Notices refinadas */
.notice{
  border-radius:14px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow2);
}
.notice--success{ border:1px solid rgba(34, 204, 119, .55); }
.notice--error{ border:1px solid rgba(204, 34, 34, .55); }

/* Responsive */
@media (max-width:980px){
  .requestMeeting{ padding:20px 20px 0 20px; }
  .form__sectionHead{ flex-direction:column; align-items:flex-start; }
  .form__sectionLead{ text-align:left; max-width:none; }
}
@media (max-width:520px){
  .requestMeeting{ padding:20px 20px 0 20px; }
  .form--meeting{ max-width:720px; }
  .form__grid{ grid-template-columns:1fr; }
  .choice{ width:100%; justify-content:flex-start; }
}

/* ==============================
   Responsive (consolidated)
   ============================== */

/* NAV height adjustments for fixed header */
@media (max-width: 980px){
  :root{ --navH: 92px; }
}
@media (max-width: 520px){
  :root{ --pad: 18px; --navH: 104px; }
}

/* Layout changes */
@media (max-width:980px){
  .values{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .quotes{ grid-template-columns:1fr; }
  .cards2{ grid-template-columns:1fr; }

  .hero{ min-height:72vh; }
  .hero__content{ padding:54px 0; }
  .hero__subtitle{ font-size:15px; }

  .nav{
    flex-wrap:wrap;
    gap:10px;
    padding:12px var(--pad);
  }
  .nav__links{ display:none; }
  .nav__langs{ margin-left:auto; }

  .home{ padding:20px 20px 0px 20px; }
	
  .pillars{ grid-template-columns:1fr; }
  .buyerRep{ grid-template-columns:1fr; }

  .siteFooter__top{ grid-template-columns:1fr; }
  .siteFooter__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:520px){
  .nav__logo{ width:44px; height:44px; }
  .nav__tagline{ font-size:11px; }

  .hero{ min-height:68vh; }
  .hero__content{ padding:42px 20px 0px 20px; }
  .hero__title{ font-size:clamp(30px, 9vw, 44px); }
  .hero__actions{ gap:10px; }
  .btn{ padding:11px 16px; }

  .home{ padding:20px 20px 0px 20px; }
  .section{ padding:34px 0; }
  .section__head{ margin-bottom:14px; }
  .section__title{ font-size:28px; }
  .prop__meta{ gap:8px; }
  .meta{ padding:5px 9px; font-size:12px; }
  .meta i{ font-size:14px; }

  .hoverTile__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .hoverTile__cta{ white-space:normal; }
  .hoverTile__text{ max-width:none; }

  .valueCard{ padding:14px; }
  .values{ gap:12px; }

  .newsletter .btn{ width:100%; }
  .newsletter input[type="email"]{ padding:12px 12px; }

  .ctaSoft{
    flex-direction:column;
    align-items:flex-start;
  }
  .ctaSoft__actions{ width:100%; }
  .ctaSoft__actions .btn{ width:100%; }
  .ctaSoft__title{ font-size:24px; }
}

/* COOKIES - LEGAL - PRIVACY */
  .cookie-legal-privacy{
	  padding:30px 0 0 0;
}
/* Responsive */
@media (max-width: 980px){
	.cookie-legal-privacy{ padding:20px 20px 0px 20px;}
}
@media (max-width: 520px){
   .cookie-legal-privacy{ padding:20px 20px 0px 20px;}
}
/* =========================
   Philosophy page
   ========================= */
.philosophy{ padding:30px 0px 0px 0px; }

.hero--inner{ min-height:68vh; }
.hero--inner .hero__content{ padding:72px 0 64px; }

.hero__meta{
  margin-top:18px;
  color:rgba(255,255,255,.74);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.statement{
  max-width:86ch;
  margin:0 auto;
  text-align:center;
}
.statement__text{
  margin:0 auto;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
}
.statement__motto{
  margin:14px 0 0;
  font-family:var(--font-serif);
  font-weight:500;
  font-size:18px;
  letter-spacing:.08em;
  opacity:.92;
}

.values--philosophy{ margin-top:6px; }

/* How we work */
.process{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.step{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:16px;
}
.step__num{
  width:32px;height:32px;border-radius:999px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  font-size:12px;
  letter-spacing:.12em;
  color:var(--muted);
  /*margin-bottom:10px;*/
}
.step__title{ margin:px 0 0px 0; font-weight:600; }
.step__text{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

/* Step: icono + título en la misma línea */
.step__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.step__head .step__icon{
  margin-bottom:0;      /* anula el layout vertical */
  flex:0 0 auto;
}
.step__head .step__title{
  margin:0;             /* evita el “aire” extra del título */
  min-width:0;
}

/* Assurance */
.assurance{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}
.assurance__box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:18px;
}
.assurance__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.assurance__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(11,11,12,.88);
  line-height:1.6;
}
.assurance__list i{ margin-top:3px; opacity:.85; }
@media (max-width:980px){
	.philosophy{ padding:0px 20px 0px 20px; }
	.hero--inner .hero__content{ padding:72px 20px 64px 20px; }
}
@media (max-width:520px){
	.philosophy{ padding:0px 20px 0px 20px; }
	.hero--inner .hero__content{ padding:72px 20px 64px 20px; }
	.process{
    	display:grid;
    	grid-template-columns: 1fr;
    	gap:14px;
	}
	.assurance{
  		display:grid;
  		grid-template-columns:1fr;
  		gap:14px;
  		align-items:stretch;
	}
}
/* =========================
   Collection page
   ========================= */
.collection{ padding:30px 0px 0px 0px; }
.section--tight{ padding:26px 0 28px; }

/* Selected grid (up to 6 items) */
.cards3{ display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:18px; }

/* Media chips overlay (Video / 3D) */
.prop__chips{
  position:absolute;
  right:14px;
  bottom:14px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
  z-index:2;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.46);
  color:#fff;
  font-size:12px;
  letter-spacing:.04em;
  line-height:1;
}
.chip i{ font-size:13px; opacity:.92; }

/* Empty state */
.emptyState{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:18px;
  text-align:center;
}
.emptyState__text{ margin:0; color:var(--muted); line-height:1.7; }

/* Pagination */
.pagination{
  margin-top:22px;
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
.pagination__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:inherit;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:10px 12px;
  border-radius:999px;
}
.pagination__meta{
  color:var(--muted);
  font-size:13px;
  letter-spacing:.04em;
}

/* Responsive additions */
@media (max-width:980px){
  .collection{ padding:30px 20px 0px 20px; }
  .cards3{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:620px){
  .collection{ padding:30px 20px 0px 20px; }
  .cards3{ grid-template-columns:1fr; }
}

/* =========================
   Property single (Collection) — UPDATED (clean, no !important)
   ========================= */

.propertySingle{ padding:0; }

/* Remove ONLY specific separators (3 sections use .noDividerAfter in PHP) */
.propertySingle .noDividerAfter{ border-bottom:none; }

/* Text */
.content--reading{
  max-width:86ch;
  margin:0 auto;
  color:var(--muted);
  line-height:1.85;
}

/* =========================
   Gallery hero (edge-to-edge, 1px gaps, arrows)
   ========================= */

/* Remove section vertical air only for the gallery section */
.propertySingle .section.galleryHero{
  padding-top:0;
  padding-bottom:0;
}

/* Make viewport full-bleed so arrows align with screen edges */
.galleryHero__viewport{
  position:relative;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:var(--line); /* provides the 1px lines via gap */
}

/* Track: horizontal snap, no scrollbar, 1px gap */
.galleryHero__track{
  display:flex;
  gap:1px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:0;
  margin:0;

  /* hide scrollbar */
  scrollbar-width:none; /* Firefox */
}
.galleryHero__track::-webkit-scrollbar{ display:none; }

/* Slide button reset (removes borders/black outlines) */
.galleryHero__item{
  flex:0 0 auto;
  scroll-snap-align:start;

  border:0;
  padding:0;
  margin:0;
  background:transparent;
  cursor:pointer;
  line-height:0; /* avoids inline gaps */
  outline:none;

  /* square corners */
  border-radius:0;
  box-shadow:none;
}

/* Accessible focus without looking "cheap" */
.galleryHero__item:focus-visible{
  outline:2px solid rgba(11,11,12,.25);
  outline-offset:3px;
}

/* Image style: square corners, consistent height */
.galleryHero__img{
  display:block;
  height:62vh;
  min-height:420px;
  max-height:680px;
  width:auto;
  max-width:92vw;
  object-fit:cover;
  border-radius:0;
  background:#fff;
}

/* Nav arrows: close to edges */
.galleryHero__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.38);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:5;
  backdrop-filter: blur(6px);
}
.galleryHero__nav--prev{ left:12px; }
.galleryHero__nav--next{ right:12px; }

.galleryHero__nav:hover{ background:rgba(0,0,0,.52); }
.galleryHero__nav:active{ transform:translateY(-50%) scale(.98); }
.galleryHero__nav:focus-visible{
  outline:2px solid rgba(255,255,255,.55);
  outline-offset:3px;
}
.galleryHero__nav.is-disabled{
  opacity:.25;
  pointer-events:none;
}

/* =========================
   Header (title + subtitle + price)
   ========================= */
.propertyHeader{ margin-top:0; }
.propertyHeader__sub{
  margin:8px auto 0;
  max-width:90ch;
  color:rgba(11,11,12,.58);
  font-size:14px;
  line-height:1.6;
}
.propertyHeader__price{
  margin:10px auto 0;
  max-width:90ch;
  font-family:var(--font-serif);
  font-weight:600;
  letter-spacing:.04em;
  font-size:28px;
  color:rgba(11,11,12,.78);
}

/* =========================
   Split bar: features (left) + media (right)
   ========================= */
.propInfoBar{ padding-top:12px; }

.propInfoSplit{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:start;
}

/* left: features wrap into ~2 rows */
.propInfoSplit__left{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-start;
  max-width:860px;
}

/* Meta refinement */
.meta--lg{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:rgba(11,11,12,.85);
}
.meta--lg i{ font-size:15px; opacity:.9; }

/* right: buttons small area, aligned to the right */
.propInfoSplit__right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  min-width:240px;
}
.propMediaBtns{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

/* Dark rectangular premium buttons */
.btn--rectDark{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.86);
  background:#0b0b0c;
  color:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  text-decoration:none;
  font-size:14px;
  min-height:48px;
}
.btn--rectDark i{ opacity:.92; font-size:16px; }
.btn--rectDark:hover{ transform: translateY(-1px); }
.btn--rectDark:active{ transform: translateY(0); }

/* =========================
   Lightbox
   ========================= */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.lightbox.is-open{ display:block; }
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.92);
}
.lightbox__stage{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:54px 18px 18px;
}
.lightbox__img{
  max-width:94vw;
  max-height:86vh;
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 20px 70px rgba(0,0,0,.55);
  background:#111;
}
.lightbox__close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.lightbox__top{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
}
.lightbox__count{
  color:rgba(255,255,255,.78);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.lightbox__nav--prev{ left:14px; }
.lightbox__nav--next{ right:14px; }

/* =========================
   Modal (video / 3D)
   ========================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.modal.is-open{ display:flex; align-items:center; justify-content:center; padding:16px; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
}
.modal__dialog{
  position:relative;
  width:min(1100px, 96vw);
  height:min(700px, 88vh);
  background:#000;
  border-radius:16px;
  overflow:hidden;
  z-index:1;
  box-shadow:0 20px 70px rgba(0,0,0,.55);
}
.modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.modal__frame{
  width:100%;
  height:100%;
  border:0;
}

/* =========================
   Responsive
   ========================= */
@media (max-width:980px){
  .propertySingle{ padding:0 20px 0 20px; }
  .galleryHero__img{
    height:52vh;
    min-height:320px;
  }
  .propInfoSplit{ grid-template-columns:1fr; }
  .propInfoSplit__right{
    min-width:0;
    justify-content:flex-start;
  }
  .propMediaBtns{ justify-content:flex-start; }
  .propInfoSplit__left{ max-width:none; }
}
@media (max-width:520px){
	.propertySingle{ padding:0px 20px 0px 20px; }
	.propInfoSplit__right{
  		display:flex;
  		justify-content:center;
  		align-items:flex-start;
  		min-width:240px;
		align-items: center;
		}
  .galleryHero__img{
    height:44vh;
    min-height:240px;
  }
  .lightbox__nav{ width:46px; height:46px; }
  .galleryHero__nav{ width:46px; height:46px; }

}


/* =========================
   Mallorca pages (hub + subpages)
   ========================= */
.mallorcaPage{ padding:30px 0 0 0; }

/* Values variants for Mallorca layouts */
.values--mallorcaHighlights{ grid-template-columns:repeat(4, minmax(0,1fr)); }
.values--mallorcaSections{ grid-template-columns:repeat(3, minmax(0,1fr)); }

/* Sub navigation (Mallorca internal) */
.subNav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
/*  margin:14px 0 8px; */
  justify-content: center;
}
.subNav__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow2);
  text-decoration:none;
  color:rgba(11,11,12,.86);
  font-size:13px;
  letter-spacing:.04em;
}
.subNav__link:hover{ transform:translateY(-1px); }
.subNav__link.is-active{
  background:var(--fg);
  border-color:var(--fg);
  color:#fff;
}

/* Two-column content grid used in subpages (seasons, areas, pillars) */
.areasGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.areasGrid--2{ grid-template-columns:repeat(2, minmax(0, 1fr)); }

.areaCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:16px;
}
.areaCard__title{ margin:0 0 8px 0; font-size:15px; font-weight:600; }
.areaCard__text{ margin:0; color:var(--muted); line-height:1.65; font-size:14px; }
.areaCard__tags{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  font-size:12px;
  color:rgba(11,11,12,.75);
}

.fineNote{
  margin:14px auto 0;
  max-width:90ch;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
  text-align:center;
}

/* Responsive */
@media (max-width:980px){
  .mallorcaPage{ padding:0 20px 0 20px; }
  .values--mallorcaHighlights{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .values--mallorcaSections{ grid-template-columns:1fr; }
  .areasGrid{ grid-template-columns:1fr; }
}
@media (max-width:520px){
  .mallorcaPage{ padding:0 20px 0 20px; }
  .values--mallorcaHighlights{ grid-template-columns:1fr; }
  .areasGrid{ grid-template-columns:1fr; }
  .subNav__link{ width:100%; justify-content:center; }
}

/* ============================================================
   Missing classes (add at END of main.css)
   ============================================================ */

/* --- Generic / small UI --- */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  line-height:1;
}

.bullets{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.bullets li{
  margin:0 0 10px 0;
}
.bullets li:last-child{ margin-bottom:0; }

/* Request Meeting uses a custom "button" class; main.css already has .button--primary */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  font-family:var(--font-sans);
  font-weight:600;
  letter-spacing:.02em;
  background:transparent;
  color:var(--fg);
  transition:transform .15s ease, filter .15s ease;
}
.button:hover{ transform:translateY(-1px); }
.button:active{ transform:translateY(0); }

/* Optional hook used on <select class="select"> (base select styling already exists via .field select) */
.select{
  width:100%;
}

/* Home buyer representation: wrapper missing (layout already defined by .buyerRep grid) */
.buyerRep__text{
  max-width:78ch;
}

/* HoverTile wide modifier in home.php */
.hoverTile--wide{
  grid-column:1 / -1;
}

/* --- Private Access pages (pa*) --- */
.privateAccess{
  padding-bottom:6px;
}

.paCrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.9;
}
.paCrumb a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.paCrumb a:hover{ border-bottom-color:rgba(255,255,255,.45); }

.paDetail{
  padding-top:18px;
  padding-bottom:4px;
}

.paIntro{
  max-width:86ch;
  margin:0 auto;
  text-align:center;
}
.paIntro__text{
  margin:0 auto 16px;
  color:var(--muted);
  line-height:1.85;
  max-width:78ch;
}

.paSplit{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
  margin-top:14px;
}
@media (max-width: 980px){
  .paSplit{ grid-template-columns:1fr; }
}

.paText{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.85;
}
.paText:last-child{ margin-bottom:0; }

.paList{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}
.paList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  line-height:1.6;
}
.paList i{
  width:18px;
  margin-top:2px;
  opacity:.75;
}

.paList--compact{
  gap:8px;
  margin-top:10px;
}
.paList--compact li{
  font-size:14px;
}

.paPanel{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow2);
  padding:16px;
}
.paPanel__title{
  margin:0 0 8px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.9;
}
.paPanel__text{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.paPanel__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.paPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.96);
  color:var(--muted);
  font-size:12px;
  line-height:1;
}
.paPill i{ opacity:.8; }

/* Estate / services columns */
.paCols{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}
@media (max-width: 980px){
  .paCols{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .paCols{ grid-template-columns:1fr; }
}

.paCol{
  --hover-img:none;
  position:relative;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:16px;
  overflow:hidden;
}
.paCol::before{
  content:"";
  position:absolute; inset:0;
  background-image:var(--hover-img);
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.03);
  transition:opacity .25s ease, transform .45s ease;
}
.paCol::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(11,11,12,.82), rgba(11,11,12,.22));
  opacity:0;
  transition:opacity .25s ease;
}
.paCol > *{ position:relative; z-index:1; }
.paCol:hover::before{ opacity:1; transform:scale(1.08); }
.paCol:hover::after{ opacity:1; }

.paCol__title{
  margin:0 0 10px;
  font-size:15px;
  font-weight:600;
  display:flex;
  gap:10px;
  align-items:center;
}
.paCol__title i{
  width:18px;
  opacity:.8;
}
.paCol:hover .paCol__title{ color:#fff; }
.paCol:hover .paList li{ color:#fff; }
.paCol:hover .paList i{ opacity:.9; }

/* CTA inside valueCard in private_access.php */
.paCardCta{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  opacity:.85;
}
.valueCard:hover .paCardCta{ color:#fff; opacity:1; }

/* --- Process modifiers used in pages --- */
.process--2col{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px){
  .process--2col{ grid-template-columns:1fr; }
}

/* Make modified processes responsive (base .process has no media rules) */
@media (max-width: 980px){
  .process--pa,
  .process--mallorca{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px){
  .process--pa,
  .process--mallorca{
    grid-template-columns:1fr;
  }
}

/* --- Footer wrappers used in foot.php --- */
.siteFooter__brand{
  display:grid;
  gap:12px;
  align-content:start;
}
.siteFooter__logoImg{
  display:block;
  width:80px;
  height:auto;
}
.siteFooter__nav{
  align-content:start;
}
.siteFooter__contact{
  align-content:start;
}
.siteFooter__newsletter{
  align-content:start;
}

/* =========================
   Collection / Single — missing classes
   ========================= */

/* Base wrapper for readable blocks (used as: .content.content--reading) */
.content{
  width:100%;
  min-width:0;
}

/* Gallery thumb buttons (used together with .galleryHero__item) */
.propGallery__btn{
  /* keep it aligned with the existing .galleryHero__item reset,
     but define the class so the audit stops flagging it */
  display:block;
  border:0;
  padding:0;
  margin:0;
  background:transparent;
  cursor:pointer;
  line-height:0;
}

/* Optional: a subtle hover hint without altering your current design language */
.propGallery__btn:hover .galleryHero__img{
  transform:translateZ(0); /* no visual change; avoids some GPU jitter in some browsers */
}

/*
/
/
/ COOKIES
/
/
/*

/* =========================
   Cookie Banner + Modal
   ========================= */

.siteFooter__cookiePrefsBtn{
  appearance:none;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  color:var(--fg);
  font:inherit;
  opacity:.82;
  text-decoration:underline;
  text-underline-offset: 3px;
}
.siteFooter__cookiePrefsBtn:hover{ opacity:1; }

.cookieBanner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:120;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -16px 40px rgba(0,0,0,.10);
}

/* Desktop: 2 columnas -> texto (izq) + botones (der) */
.cookieBanner__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display:grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
  align-items:center;
}

/* Limitar el bloque de texto para que quede compacto (≈2 líneas) */
.cookieBanner__text{
  max-width: 72ch;  /* ajuste fino: 64–76ch según su container */
  min-width: 0;     /* imprescindible en grid para que el texto pueda “encoger” */
}

.cookieBanner__title{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 4px;
}

.cookieBanner__desc{
  color: var(--muted);
  line-height: 1.40;
  font-size: 12.5px;
  max-width: 72ch;
  margin: 0;
}

.cookieBanner__link{
  color: var(--fg);
  opacity: .85;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
  display:inline;
  white-space: nowrap;
}
.cookieBanner__link:hover{ opacity: 1; }

/* Botones en una sola línea (desktop) */
.cookieBanner__actions{
  display:flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items:center;
  justify-content:flex-end;
  white-space: nowrap;
}

.cookieBtn{
  appearance:none;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 9px 12px;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  color: var(--fg);
  transition: transform .08s ease, opacity .18s ease, background .18s ease;
  white-space: nowrap; /* evita saltos dentro del botón */
}
.cookieBtn:active{ transform: translateY(1px); }

.cookieBtn--primary{
  background: var(--fg);
  color: #fff;
  border-color: rgba(11,11,12,.30);
}
.cookieBtn--primary:hover{ opacity: .95; }

.cookieBtn--ghost{
  background: rgba(11,11,12,.02);
}
.cookieBtn--ghost:hover{ background: rgba(11,11,12,.04); }

/* Tablet: apila texto + botones */
@media (max-width: 980px){
  .cookieBanner__inner{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookieBanner__text,
  .cookieBanner__desc{
    max-width: none;
  }

  .cookieBanner__actions{
    justify-content: flex-start;
    white-space: normal;
  }
}

/* Móvil: botones en columna */
@media (max-width: 560px){
  .cookieBanner__actions{
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .cookieBtn{
    width:100%;
    text-align:center;
  }
}

/* ---- Modal ---- */

.isCookieModalOpen{ overflow:hidden; }

.cookieModal{
  position:fixed;
  inset:0;
  z-index:130;
  display:grid;
  place-items:center;
}

/* IMPORTANT: ensure the cookie modal respects the HTML [hidden] attribute */
.cookieModal[hidden]{
  display: none !important;
}

.cookieModal__overlay{
  position:absolute;
  inset:0;
  background: rgba(11,11,12,.55);
}

.cookieModal__panel{
  position:relative;
  width: min(720px, calc(100% - 32px));
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  border: 1px solid rgba(11,11,12,.10);
  overflow:hidden;
}

.cookieModal__header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 18px 18px 14px 18px;
  border-bottom: 1px solid rgba(11,11,12,.10);
}

.cookieModal__title{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}

.cookieIconBtn{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(11,11,12,.12);
  background: rgba(11,11,12,.02);
  cursor:pointer;
  font-size: 20px;
  line-height: 1;
  display:grid;
  place-items:center;
}
.cookieIconBtn:hover{ background: rgba(11,11,12,.04); }

.cookieModal__body{
  padding: 16px 18px 8px 18px;
}

.cookieModal__text{
  margin: 0 0 14px 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.cookiePrefs{
  border-top: 1px solid rgba(11,11,12,.08);
}

.cookieRow{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11,11,12,.08);
}

.cookieRow__name{
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cookieRow__desc{
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
  max-width: 62ch;
}

.cookiePill{
  display:inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,12,.12);
  background: rgba(11,11,12,.03);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .85;
  white-space: nowrap;
}

.cookieSwitch{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

.cookieSwitch input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.cookieSwitch__track{
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: rgba(11,11,12,.12);
  border: 1px solid rgba(11,11,12,.12);
  position: relative;
  display:inline-block;
  transition: background .18s ease;
}
.cookieSwitch__track::after{
  content:"";
  position:absolute;
  top: 50%;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  transition: left .18s ease;
}

/* checked */
.cookieSwitch input:checked + .cookieSwitch__track{
  background: rgba(11,11,12,.80);
}
.cookieSwitch input:checked + .cookieSwitch__track::after{
  left: 22px;
}

/* disabled */
.cookieSwitch input:disabled + .cookieSwitch__track{
  opacity: .45;
}

.cookieModal__note{
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cookieModal__footer{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  padding: 14px 18px 18px 18px;
}
@media (max-width: 560px){
  .cookieModal__footer{
    flex-direction: column;
    align-items: stretch;
  }
  .cookieModal__footer .cookieBtn{
    width:100%;
  }
}

