/* ============================================================
   LA CENTENARIA — style.css
   Custom styles layered on top of Bootstrap 5.3
   ============================================================ */

/* ── TOKENS ── */
:root {
  --cream: #f5f0e8;
  --sand: #e8dcc8;
  --warm-beige: #d4c4a8;
  --olive: #7a8c6e;
  --olive-dark: #5a6b50;
  --charcoal: #2c2c28;
  --charcoal-light: #4a4a44;
  --off-white: #faf8f4;
  --gold: #b8985a;
  --gold-light: #d4b478;
  --text-primary: #2c2c28;
  --text-secondary: #4e4e47;
  --text-light: #5a5a52;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--text-primary);
  overflow-x: hidden;
}
.section-pad { padding: 110px 60px; }
.section-pad-compact { padding: 90px 60px; }
.section-pad-small { padding: 80px 60px; }
.section-pad-topless { padding-top: 0; }
.section-pad-wide { padding: 110px 0; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .5s var(--ease);
}
#nav.scrolled {
  background: rgba(245, 240, 232, .94);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(184, 152, 90, .15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;

  letter-spacing: .12em;
  color: #fff;
  text-decoration: none;
  transition: color .4s;
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-family: var(--sans);
  font-size: .8125rem;

  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 3px;
}
#nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--sans);

  font-size: .875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  transition: color .3s;
}
#nav.scrolled .nav-links a { color: var(--charcoal-light); }
.nav-links a:hover { color: var(--charcoal) !important; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 9px 22px;
  font-size: .875rem;
  letter-spacing: .15em;
}
.nav-cta:hover { color: var(--charcoal); background: var(--gold-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: #fff;
  transition: .3s;
}
#nav.scrolled .hamburger span { background: var(--charcoal); }

/* ── HERO ── */
#hero {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  transition: opacity 2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.s1 { background: linear-gradient(160deg, rgba(44,44,40,.7) 0%, rgba(44,44,40,.7) 60%, rgba(90,107,80,.7) 100%), url('img/s1.jpg'); }
.s2 { background: linear-gradient(180deg, rgba(44,44,40,.7) 0%, rgba(44,44,40,.7) 100%), url('img/s2.jpg'); }
.s3 { background: linear-gradient(180deg, rgba(44,44,40,.7) 0%, rgba(44,44,40,.7) 100%), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1800&q=85&auto=format'); }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero-eyebrow {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeUp 1s var(--ease) .3s both;
}
.hero-headline {
  font-family: var(--serif);

  font-size: clamp(3.2rem, 8.5vw, 7rem);
  line-height: 1.04;
  color: #fff;
  animation: fadeUp 1.2s var(--ease) .5s both;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);

  color: rgba(255, 255, 255, .72);
  max-width: 500px;

  animation: fadeUp 1s var(--ease) .75s both;
  border: none;
  padding: 0;
  margin: 0;
}
.hero-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-top: 10px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s var(--ease) 1s both;
}
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1.6s both;
}
.hero-scroll span {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}
.scroll-line {
  width: 1px; height: 46px;
  background: rgba(255, 255, 255, .28);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 1px; height: 100%;
  background: var(--gold-light);
  animation: lineDown 2.2s ease-in-out 2s infinite;
}
.hero-dots {
  position: absolute;
  bottom: 76px; right: 56px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.dot {
  width: 22px; height: 1px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}
.dot.on { background: var(--gold); width: 40px; }

/* ── BUTTONS (override Bootstrap) ── */
.btn-primary,
.btn-ghost,
.btn-book,
.bfbtn,
.btn-wa {
  font-family: var(--sans);
  font-size: .875rem;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  letter-spacing: .2em;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 15px 34px;
  display: inline-block;
  transition: background .3s, transform .2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: none;
}
.btn-ghost {
  letter-spacing: .2em;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  padding: 15px 34px;
  display: inline-block;
  transition: all .3s;
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* ── BOOKING BAR ── */
#bbar {
  position: relative;
  top: 0;
  z-index: 900;
  background: var(--charcoal);
  padding: 0 10px /*60px*/;
  /*transform: translateY(-100%);*/
  transition: transform .5s var(--ease);
  border-bottom: 1px solid rgba(184, 152, 90, .18);
}
#bbar.show { transform: none; }
.bbar-inner {
  display: flex;
  align-items: stretch;
  height: 62px;
}
.bfield {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .2s;
}
.bfield:hover { background: rgba(255, 255, 255, .04); }
.bfield label {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.bfield input,
.bfield select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);

  font-size: .9375rem;
  color: #fff;
  width: 100%;
  letter-spacing: .04em;
  box-shadow: none;
}
.bfield input[type="date"],
.mform-control[type="date"] {
  color-scheme: light;
  min-height: 28px;
  line-height: 1.25;
  appearance: auto;
  -webkit-appearance: auto;
}
.bfield input[type="date"] {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.bfield input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.25em;
  text-align: left;
}
.mform-control[type="date"] {
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}
.bfield select option { background: var(--charcoal); }
.bsubmit {
  background: var(--gold);
  border: none;
  border-radius: 0;
  padding: 0 34px;
  font-family: var(--sans);

  font-size: .875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  cursor: pointer;
  transition: background .3s;
}
.bsubmit:hover { background: var(--gold-light); }

/* ── COMMON COMPONENTS ── */
.slabel {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slabel::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--olive);
  flex-shrink: 0;
}
.stitle {
  font-family: var(--serif);

  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--charcoal);
}
.stitle em { font-style: italic; color: var(--olive-dark); }
.sbody {
  font-family: var(--sans);

  font-size: .9375rem;
  line-height: 1.9;
  color: var(--text-primary);
  max-width: 470px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── INTRO STRIP ── */
#intro {
  background: var(--charcoal);
  padding: 72px 60px;
}
.istat { text-align: center; }
.istat-n {
  font-family: var(--serif);

  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
}
.istat-l {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  margin-top: 5px;
}
.idiv { width: 1px; background: rgba(255, 255, 255,0); }
.line-v { width: 1px; height: 56px; background: rgba(255, 255, 255,.1); }

/* ── HISTORIA ── */
.hist-img { aspect-ratio: 3/4; overflow: hidden; }
.hist-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hist-text { display: flex; flex-direction: column; gap: 24px; }
.hist-quote {
  font-family: var(--serif);

  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--olive-dark);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}
.hist-p {
  font-family: var(--sans);

  font-size: .9375rem;
  line-height: 1.95;
  color: var(--text-primary);
}

/* ── EXPERIENCIA ── */
.exp-intro {
  margin-bottom: 90px;
}
.exp-grid { margin: 0 auto; }
.exp-row {
  margin-bottom: 2px;
  overflow: hidden;
}
.exp-img { aspect-ratio: 4/3; overflow: hidden; }
.exp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.exp-row:hover .exp-img img { transform: scale(1.04); }
.exp-txt {
  background: var(--cream);
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.exp-tag {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.exp-h {
  font-family: var(--serif);

  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--charcoal);
}
.exp-h em { font-style: italic; }
.exp-p {
  font-family: var(--sans);

  font-size: .9375rem;
  line-height: 1.88;
  color: var(--text-primary);
}

/* ── GALLERY ── */
#gallery { background: var(--charcoal); }
.gal-header {
  margin-bottom: 56px;
}
.gal-header .slabel { color: var(--gold); }
.gal-header .slabel::before { background: var(--gold); }
.gal-header .stitle { color: var(--cream); }
.gal-grid {
  margin: 0 auto;
}
.gi { overflow: hidden; position: relative; background: var(--charcoal-light); height: 210px; }
.g1 { height: 424px; }
.gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease), filter .5s;
  filter: brightness(.88) saturate(.82);
}
.gi:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }
.gi-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,44,40,.62) 0%, transparent 52%);
  opacity: 0;
  transition: opacity .4s;
}
.gi:hover .gi-ov { opacity: 1; }
.gi-cap {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--sans);

  font-size: .875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .4s, transform .4s;
}
.gi:hover .gi-cap { opacity: 1; transform: none; }
/* ── ALOJAMIENTO ── */
#accommodations { background: var(--off-white); }
.acc-hdr { margin-bottom: 72px; text-align: center; }
.acc-grid {
  margin: 0 auto;
}
.acc-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform .4s var(--ease);
  border-radius: 0;
}
.acc-card:hover { transform: translateY(-4px); }
.acc-img { aspect-ratio: 16/9; overflow: hidden; }
.acc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.acc-card:hover .acc-img img { transform: scale(1.04); }
.acc-body { padding: 34px 38px 42px; }
.acc-tag {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 8px;
}
.acc-name {
  font-family: var(--serif);

  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.acc-name em { font-style: italic; }
.acc-desc {
  font-family: var(--sans);

  font-size: .9375rem;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.acc-meta { display: flex; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.acc-mi {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);

  font-size: .875rem;
  color: var(--text-secondary);
}
.btn-book {
  display: block;
  width: 100%;
  letter-spacing: .18em;
  background: var(--charcoal);
  color: var(--off-white);
  border: none;
  padding: 13px;
  text-align: center;
  transition: background .3s;
}
.btn-book:hover { background: var(--gold); color: var(--charcoal); }

/* ── CONEXIÓN ENTRE CASAS ── */
#conexion-casas { background: var(--charcoal); }
.connection-copy { margin-bottom: 56px; }
#conexion-casas .slabel { color: var(--gold); }
#conexion-casas .slabel::before { background: var(--gold); }
#conexion-casas .stitle { color: var(--cream); }
#conexion-casas .stitle em { color: var(--gold-light); }
#conexion-casas .sbody { max-width: 540px; color: rgba(255, 255, 255, .78); }
.connection-video {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  background: #171814;
}
.connection-video video {
  display: block;
  width: 100%;
  max-height: min(76vh, 820px);
  background: #171814;
  object-fit: contain;
}
.connection-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .65);
  font-family: var(--sans);
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ── SERVICIOS ── */
#amenities { background: var(--cream); }
.am-inner { margin: 0 auto; }
.am-top {
  margin-bottom: 64px;
}
.am-item {
  background: var(--off-white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s;
}
.am-item:hover { background: var(--sand); }
.am-icon { width: 30px; height: 30px; color: var(--olive); }
.am-name {
  font-family: var(--serif);

  font-size: 1.1rem;
  color: var(--charcoal);
}
.am-desc {
  font-family: var(--sans);

  font-size: .9375rem;
  line-height: 1.78;
  color: var(--text-primary);
}

/* ── EVENTOS ── */
#eventos { background: var(--off-white); }
.ev-img { aspect-ratio: 4/3; overflow: hidden; }
.ev-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ev-text { display: flex; flex-direction: column; gap: 24px; }
.ev-list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.ev-list li {
  font-family: var(--sans);

  font-size: .9375rem;
  color: var(--text-primary);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.ev-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.ev-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 88px 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(44, 44, 40, .2);
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.ev-gallery-count { color: var(--gold); }
.ev-gallery { columns: 3; column-gap: 8px; }
.ev-photo {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  background: var(--sand);
  cursor: zoom-in;
}
.ev-photo::after {
  content: '+';
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: #fff;
  font: 300 1.35rem/1 var(--sans);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s, background .35s;
}
.ev-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .7s var(--ease), filter .5s;
}
.ev-photo:hover img { transform: scale(1.025); filter: brightness(.88); }
.ev-photo:hover::after, .ev-photo:focus-visible::after { opacity: 1; transform: none; }
.ev-photo:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.ev-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 90px;
  background: rgba(24, 25, 21, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.ev-lightbox.open { opacity: 1; visibility: visible; }
.ev-lightbox figure { margin: 0; text-align: center; }
.ev-lightbox figure img { display: block; max-width: min(1100px, 78vw); max-height: 82vh; object-fit: contain; }
.ev-lightbox figcaption { margin-top: 14px; color: rgba(255,255,255,.72); font: .75rem var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.ev-lightbox-close, .ev-lightbox-nav {
  position: absolute;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}
.ev-lightbox-close { top: 24px; right: 30px; font: 300 2.25rem/1 var(--sans); }
.ev-lightbox-nav { top: 50%; transform: translateY(-50%); font: 300 2rem/1 var(--sans); padding: 18px; }
.ev-lightbox-prev { left: 20px; }
.ev-lightbox-next { right: 20px; }

/* ── BOOKING FLOW ── */
#bflow { background: var(--charcoal); }
.bflow-hdr { max-width: 800px; margin: 0 auto 72px; text-align: center; }
.bflow-hdr .slabel { justify-content: center; color: var(--gold); }
.bflow-hdr .slabel::before { background: var(--gold); }
.bflow-hdr .stitle { color: var(--cream); }
.bflow-cards {
  margin: 0 auto;
}
.bfc {
  background: rgba(255, 255, 255, .04);
  padding: 48px 40px;
  border-top: 2px solid transparent;
  transition: all .3s;
}
.bfc:hover { background: rgba(255, 255, 255, .07); border-top-color: var(--gold); }
.bfc-n {
  font-family: var(--serif);

  font-size: 3.8rem;
  color: var(--gold);
  opacity: .22;
  line-height: 1;
  margin-bottom: 22px;
}
.bfc-type {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.bfc-h {
  font-family: var(--serif);

  font-size: 1.7rem;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.2;
}
.bfc-h em { font-style: italic; }
.bfc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}
.bfc-list li {
  font-family: var(--sans);

  font-size: .9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  padding-left: 14px;
  position: relative;
}
.bfc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .5; }
.bfbtn {
  letter-spacing: .18em;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 11px 26px;
  display: inline-block;
  transition: all .3s;
}
.bfbtn:hover { border-color: var(--gold); color: var(--gold); }
.bfbtn.gold { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.bfbtn.gold:hover { background: var(--gold-light); color: var(--charcoal); }
.bfbtn.wa { background: #25d366; border-color: #25d366; color: #fff; }
.bfbtn.wa:hover { background: #1da851; }

/* ── CANCELACIONES ── */
#cancel { background: var(--cream); }
.cancel-inner { max-width: 900px; margin: 0 auto; }
.ctable { width: 100%; border-collapse: collapse; }
.ctable th {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive-dark);
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}
.ctable td {
  font-family: var(--sans);

  font-size: .9375rem;
  color: var(--text-primary);
  line-height: 1.72;
  padding: 18px;
  border-bottom: 1px solid var(--sand);
}
.ctable tr:last-child td { border-bottom: none; }
.ctable tr:hover td { background: var(--sand); }
.ctable td:first-child { color: var(--charcoal);  }
.cnote {
  font-family: var(--sans);

  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-top: 24px;
  font-style: italic;
}

/* ── TESTIMONIOS ── */
#testimonials { background: var(--off-white); }
.test-hdr { margin-bottom: 64px; }
.test-grid {
  margin: 0 auto;
}
.tcard {
  background: var(--cream);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tstars { display: flex; gap: 3px; color: var(--gold); font-size: .78rem; }
.tquote {
  font-family: var(--serif);

  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--charcoal);
  font-style: italic;
  flex: 1;
}
.tdiv { width: 36px; height: 1px; background: var(--warm-beige); }
.tname {
  font-family: var(--sans);

  font-size: .875rem;
  color: var(--charcoal);
}
.tplace {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 3px;
}

/* ── UBICACIÓN ── */
#location { overflow: hidden; }
.loc-info {
  padding: 90px 72px;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.loc-info .slabel { color: var(--gold); }
.loc-info .slabel::before { background: var(--gold); }
.loc-info .stitle { color: var(--cream); }
.loc-info .sbody { color: rgba(255, 255, 255, .82); max-width: 390px; }
.loc-dists { display: flex; flex-direction: column; border-top: 1px solid rgba(255, 255, 255, .08); }
.ldist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ldist-l {
  font-family: var(--sans);

  font-size: .9375rem;
  color: rgba(255, 255, 255, .82);
}
.ldist-t {
  font-family: var(--serif);

  font-size: 1.15rem;
  color: var(--gold);
}
.loc-map {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: url('img/s3v.jpg') center/cover no-repeat;
}
.loc-map::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(44,44,40,.22), transparent 42%);
}
.mappin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pin-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(184,152,90,.3), 0 0 0 14px rgba(184,152,90,.1);
  animation: pulse 2.5s ease-in-out infinite;
}
.pin-label {
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 13px;
  margin-top: 10px;
  white-space: nowrap;
}

/* ── FINAL CTA ── */
#fcta {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(44,44,40,.8) 0%, rgba(44,44,40,.8) 100%),
    url('img/s1.jpg') center/cover no-repeat;
  background-attachment: fixed;
}
.fcta-c {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.fcta-h {
  font-family: var(--serif);

  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: #fff;
  line-height: 1.1;
}
.fcta-h em { font-style: italic; color: var(--gold-light); }
.fcta-p {
  font-family: var(--sans);

  font-size: .9375rem;
  color: rgba(255, 255, 255, .88);
  max-width: 400px;
  line-height: 1.85;
}
.fcta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 76px 60px 44px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-grid {
  margin: 0 auto 56px;
}
.flogo {
  font-family: var(--serif);

  font-size: 1.75rem;
  letter-spacing: .1em;
  color: var(--cream);
}
.flogo span {
  display: block;
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: 3px;
}
.ftagline {
  font-family: var(--sans);

  font-size: .875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .72);
  max-width: 250px;
  margin-top: 14px;
}
.fcol h4 {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }
.fcol ul li a {
  font-family: var(--sans);

  font-size: .9375rem;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color .3s;
}
.fcol ul li a:hover { color: var(--cream); }
.fbot {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  flex-wrap: wrap;
  gap: 10px;
}
.fcopy {
  font-family: var(--sans);

  font-size: .875rem;
  color: rgba(255, 255, 255, .72);
}

/* ── MODALS ── */
.modal-backdrop.show {
  background: rgba(44, 44, 40, .82);
  backdrop-filter: blur(18px);
  opacity: 1;
}
.lc-modal .modal-dialog {
  max-width: 560px;
  margin: 24px auto;
}
.lc-modal .modal-dialog-scrollable {
  height: calc(100dvh - 48px);
}
.lc-modal-content {
  background: var(--off-white);
  position: relative;
  border-radius: 0;
  border: 0;
  overflow: hidden;
  max-height: 100%;
}
.lc-modal-body {
  padding: 56px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mform-label {
  font-family: var(--sans);
  font-size: .8125rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.mform-control {
  border-color: var(--sand);
  border-radius: 0;
  font-family: var(--sans);
  font-size: .9375rem;
}
.text-gold { color: var(--gold); }
.text-olive { color: var(--olive); }
.mclose {
  position: absolute;
  top: 22px; right: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
  z-index: 2;
}
.mclose:hover { color: var(--charcoal); }
.mtag {
  font-family: var(--sans);

  font-size: .8125rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 10px;
}
.mtitle {
  font-family: var(--serif);

  font-size: 2.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.msub {
  font-family: var(--sans);

  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.mdiv { height: 1px; background: var(--sand); margin: 24px 0; }
.mrow { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.mrl { font-family: var(--sans);  font-size: .9375rem; color: var(--text-primary); }
.mrv { font-family: var(--sans);  font-size: .9375rem; color: var(--charcoal); }
.mrow.total .mrl { font-family: var(--serif);  font-size: 1rem; color: var(--charcoal); }
.mrow.total .mrv { font-family: var(--serif);  font-size: 1.55rem; color: var(--charcoal); }
.tbox {
  background: var(--cream);
  padding: 24px;
  margin: 22px 0;
  border-left: 2px solid var(--gold);
}
.tbox p {
  font-family: var(--sans);

  font-size: .875rem;
  line-height: 1.82;
  color: var(--text-secondary);
  margin-bottom: 3px;
}
.tbox strong {  color: var(--charcoal); }
.tbox-balance {
  color: var(--olive);
  margin-top: 8px;
}
.mnotice {
  margin: 20px 0;
  padding: 18px 22px;
}
.mnotice-gold {
  background: rgba(184,152,90,.1);
  border-left: 2px solid var(--gold);
}
.mnotice-olive {
  background: var(--cream);
  border-left: 2px solid var(--olive);
  padding: 24px;
}
.mnotice-title {
  font-family: var(--sans);
  font-size: .875rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.mnotice-body {
  font-family: var(--sans);
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.mplain-list {
  list-style: none;
  font-family: var(--sans);
  font-size: .875rem;
  line-height: 2;
  color: var(--text-secondary);
  padding: 0;
  margin: 0;
}
.btn-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  background: #25d366;
  border: none;
  letter-spacing: .13em;
  color: #fff;
  padding: 15px;
  transition: background .3s;
}
.btn-wa:hover { background: #1da851; color: #fff; }
.wa-response-time {
  font-family: var(--sans);
  font-size: .9375rem;
  color: rgba(255,255,255,.80);
  line-height: 1.8;
  margin-bottom: 22px;
}
#wamodal .lc-modal-content { background: var(--charcoal); }
#wamodal .mtag { color: #25d366; }
#wamodal .mtitle { color: var(--cream); }
#wamodal .msub { color: rgba(255, 255, 255, .82); }
#wamodal .mclose { color: rgba(255, 255, 255, .65); }
#wamodal .mclose:hover { color: var(--cream); }

/* ── MOBILE MENU ── */
.mmenu {
  position: fixed; inset: 0;
  z-index: 1500;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mmenu.open { opacity: 1; pointer-events: all; }
.mmenu a {
  font-family: var(--serif);

  font-size: 2.4rem;
  color: var(--cream);
  text-decoration: none;
  transition: color .3s;
}
.mmenu a:hover { color: var(--gold); }
.mmclose {
  position: absolute;
  top: 26px; right: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 1.4rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineDown {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(184,152,90,.3), 0 0 0 14px rgba(184,152,90,.1); }
  50%       { box-shadow: 0 0 0 10px rgba(184,152,90,.14), 0 0 0 22px rgba(184,152,90,.05); }
}

/* ── RESPONSIVE (Bootstrap breakpoints) ── */
@media (max-width: 1199.98px) {
  #nav, #nav.scrolled { padding: 22px 32px; }
  #bbar { padding: 0 24px; }
  .section-pad,
  .section-pad-compact,
  .section-pad-small { padding: 80px 32px; }
  .section-pad.section-pad-topless { padding-top: 0; }
  .gal-header { margin-bottom: 42px; }
  .gi, .g1 { height: 260px; }
  .loc-map { min-height: 360px; }
  #intro { padding: 60px 32px; }
}
@media (max-width: 767.98px) {
  #nav, #nav.scrolled { padding: 18px 22px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #bbar { padding: 0 14px; }
  .bbar-inner { flex-wrap: wrap; height: auto; padding: 14px 0; }
  .bfield { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 9px 9px; width: 100%; /*width: 50%;*/ }
  .bsubmit { width: 100%; padding: 15px; }
  .section-pad,
  .section-pad-compact,
  .section-pad-small,
  .section-pad-wide { padding: 60px 22px; }
  .section-pad.section-pad-topless { padding-top: 0; }
  .exp-txt { padding: 42px 30px; }
  .gi, .g1 { height: 240px; }
  footer { padding: 56px 22px 36px; }
  .lc-modal .modal-dialog {
    margin: 12px auto;
  }
  .lc-modal .modal-dialog-scrollable {
    height: calc(100dvh - 24px);
  }
  .lc-modal-body { padding: 36px 24px; }
  .loc-info { padding: 56px 28px; }
  #fcta { background-attachment: scroll; }
  .ev-gallery-head { margin-top: 56px; }
  .ev-gallery { columns: 2; column-gap: 5px; }
  .ev-photo { margin-bottom: 5px; }
  .ev-photo::after { opacity: 1; transform: none; width: 30px; height: 30px; right: 10px; bottom: 10px; }
  .ev-lightbox { padding: 60px 14px; }
  .ev-lightbox figure img { max-width: 92vw; max-height: 76vh; }
  .ev-lightbox-nav { top: auto; bottom: 8px; }
  .ev-lightbox-prev { left: calc(50% - 62px); }
  .ev-lightbox-next { right: calc(50% - 62px); }
  .connection-copy { margin-bottom: 34px; }
  .connection-caption { align-items: flex-start; flex-direction: column; gap: 6px; padding: 14px; }
}
