/* =========================================================
   CIELO MALINCHE — Redesign
   ========================================================= */

:root {
  --brand: #5A6B4A;
  --brand-dark: #3D4A33;
  --brand-deeper: #2A3322;
  --brand-light: #8A9A78;
  --brand-pale: #D4DCC8;
  --brand-mist: #EEF2E8;
  --amber: #C8A060;
  --amber-soft: #E5D2A4;
  --cream: #FAF8F3;
  --ink: #1E2218;
  --bark: #1C1408;
  --rule: rgba(30, 34, 24, 0.14);
  --rule-light: rgba(250, 248, 243, 0.22);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(30,34,24,0.06), 0 1px 3px rgba(30,34,24,0.05);
  --shadow-md: 0 8px 24px -8px rgba(30,34,24,0.18), 0 4px 8px -4px rgba(30,34,24,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(30,34,24,0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; background: none; border: 0; }

/* LAYOUT */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 960px; }

.section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head { margin-bottom: 64px; }
.section-head.light { color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 24px;
}
.section-head.light .eyebrow { color: var(--amber-soft); }

.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink); max-width: 14ch;
}
.display em { font-style: italic; font-weight: 400; color: var(--brand); }
.section-head.light .display { color: var(--cream); max-width: 16ch; }
.section-head.light .display em { color: var(--amber-soft); }

/* PRELOADER */
.preloader {
  position: fixed; inset: 0; background: var(--cream); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0s linear 0.8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark { text-align: center; color: var(--brand); }
.preloader-mark .tent-svg { width: 80px; height: 80px; animation: float 2s ease-in-out infinite; }
.preloader-mark span {
  display: block; margin-top: 16px;
  font-family: var(--serif); font-size: 20px;
  letter-spacing: 0.2em; color: var(--brand-dark);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0; transition: all 0.4s var(--ease); color: var(--cream);
}
.nav.scrolled {
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--ink); padding: 16px 0; box-shadow: 0 1px 0 var(--rule);
}
.nav-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 14px; color: inherit; }
.nav-tent { width: 36px; height: 36px; color: inherit; }
.nav-wordmark .wm-name {
  display: block; font-family: var(--serif);
  font-size: 22px; letter-spacing: 0.04em; line-height: 1;
}
.nav-wordmark .wm-sub {
  display: block; font-size: 10px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase; margin-top: 4px; opacity: 0.8;
}
.nav-links { display: flex; align-items: center; gap: 36px; font-size: 14px; letter-spacing: 0.04em; }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:not(.nav-cta):hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
}
.nav-cta { border: 1px solid currentColor; padding: 10px 22px !important;
  border-radius: 999px; transition: all 0.3s var(--ease); }
.nav-cta:hover { background: currentColor; color: var(--cream); }
.nav.scrolled .nav-cta:hover { color: var(--cream); background: var(--brand); border-color: var(--brand); }
.nav-toggle { display: none; width: 40px; height: 40px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav-toggle span { display: block; width: 24px; height: 1.5px;
  background: currentColor; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 900px) { .nav-links { display: none; } .nav-toggle { display: flex; } }

.mobile-menu {
  position: fixed; inset: 0; background: var(--brand-deeper); color: var(--cream);
  z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 40px; opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s; padding: 32px;
}
.mobile-menu.open { opacity: 1; visibility: visible; transition: opacity 0.4s var(--ease), visibility 0s linear 0s; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-menu nav a { font-family: var(--serif); font-size: 32px; color: var(--cream); }
.mobile-menu nav a:hover { color: var(--amber-soft); font-style: italic; }
.mobile-footer { position: absolute; bottom: 40px; font-size: 14px; opacity: 0.7; }

/* HERO */
.hero { position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); animation: slowzoom 20s ease-out forwards; }
@keyframes slowzoom { from { transform: scale(1.15); } to { transform: scale(1.02); } }
.hero-overlay { position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(30,34,24,0.15) 0%, rgba(30,34,24,0.55) 60%, rgba(30,34,24,0.75) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 32px; max-width: 1100px; }

.hero-eyebrow { display: flex; align-items: center; justify-content: center;
  gap: 16px; font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 32px; opacity: 0.95; }
.hero-eyebrow .rule { display: inline-block; width: 48px; height: 1px;
  background: currentColor; opacity: 0.6; }

.hero-title { font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 11vw, 156px); line-height: 0.95;
  letter-spacing: -0.02em; margin-bottom: 40px;
  display: flex; align-items: baseline; justify-content: center; gap: 0.15em; flex-wrap: wrap; }
.serif-italic { font-style: italic; font-weight: 300; }
.serif { font-weight: 500; }
.hero-amp { font-size: 0.5em; color: var(--amber-soft); transform: translateY(-0.25em); opacity: 0.85; }

.hero-sub { font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 26px); font-weight: 300;
  line-height: 1.45; margin-bottom: 48px; opacity: 0.95; }
.hero-sub em { color: var(--amber-soft); font-style: italic; }

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--cream); opacity: 0.85; z-index: 2; }
.scroll-line { width: 1px; height: 40px; background: currentColor; position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--amber-soft); animation: scrolltick 2s var(--ease) infinite; }
@keyframes scrolltick { 0% { top: -40px; } 50% { top: 40px; } 100% { top: 40px; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-family: var(--sans);
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 999px; cursor: pointer;
  transition: all 0.35s var(--ease); white-space: nowrap; }
.btn-primary { background: var(--brand); color: var(--cream); border: 1px solid var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--cream);
  border: 1px solid rgba(250,248,243,0.7); }
.btn-ghost:hover { background: rgba(250,248,243,0.12); border-color: var(--cream); }
.btn-outline { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--cream); }
.btn-lg { padding: 20px 40px; font-size: 14px; }

/* INTRO */
.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; margin-top: 80px; align-items: start; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 48px; } }
.intro-text p { font-size: 17px; line-height: 1.75; color: var(--ink);
  margin-bottom: 20px; opacity: 0.9; }
.intro-meta { display: grid; gap: 24px; padding-top: 12px; border-top: 1px solid var(--rule); }
.intro-meta > div { display: flex; align-items: baseline; gap: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.intro-meta .num { font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--brand); line-height: 1; min-width: 80px; }
.intro-meta .lbl { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); opacity: 0.7; }

/* PILLARS */
.pillars-section { background: var(--brand-mist); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 40px 32px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--brand-mist); transition: all 0.4s var(--ease); position: relative; cursor: default; }
.pillar:hover { background: var(--cream); transform: translateY(-2px); }
.p-num { display: block; font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--amber); letter-spacing: 0.1em; margin-bottom: 16px; }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: 28px;
  color: var(--brand-dark); margin-bottom: 8px; line-height: 1.1; }
.pillar p { font-size: 14px; color: var(--ink); opacity: 0.75; line-height: 1.5; }

/* HOSPEDAJE */
.subsection { margin-bottom: 120px; }
.subsection:last-child { margin-bottom: 0; }
.subhead { font-family: var(--serif); font-weight: 400; font-size: 32px;
  color: var(--brand-dark); margin-bottom: 40px; letter-spacing: -0.01em; }

.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 960px) { .rooms { grid-template-columns: 1fr; } }

.room-card { background: var(--cream); border: 1px solid var(--rule);
  overflow: hidden; display: flex; flex-direction: column; transition: all 0.4s var(--ease); }
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-pale); }
.room-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--brand-mist); }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.05); }
.badge { position: absolute; top: 20px; left: 20px;
  background: rgba(250,248,243,0.95); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-dark); font-weight: 500; }
.room-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.room-head { display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px; gap: 16px; }
.room-head h4 { font-family: var(--serif); font-weight: 500; font-size: 28px;
  color: var(--ink); line-height: 1.1; }
.price { font-family: var(--serif); font-size: 24px; color: var(--brand); white-space: nowrap; }
.price small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.6; display: block; margin-top: 2px; }
.cap { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px; }
.desc { font-size: 15px; line-height: 1.6; opacity: 0.8; margin-bottom: 20px; }
.feats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--rule); margin-top: auto; }
.feats li { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; background: var(--brand-mist); border-radius: 999px; color: var(--brand-dark); }

/* Cabañas */
.cabana-head { display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
.cabana-head .lead { font-family: var(--serif); font-size: 20px; font-weight: 300;
  line-height: 1.5; max-width: 52ch; opacity: 0.85; }
.cabana-head em { color: var(--brand); font-style: italic; }
.cabana-price { display: flex; flex-direction: column; align-items: flex-end;
  font-family: var(--serif); }
.cabana-price .from { font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 4px; font-family: var(--sans); font-weight: 500; }
.cabana-price .amount { font-size: 56px; font-weight: 500; color: var(--brand); line-height: 1; }
.cabana-price .mxn { font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink); opacity: 0.6;
  margin-top: 8px; font-family: var(--sans); }

.cabana-gallery { display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px; gap: 12px; margin-bottom: 48px; }
.c-shot { grid-column: span 2; overflow: hidden; position: relative; }
.c-shot.tall { grid-row: span 2; }
.c-shot.wide { grid-column: span 3; }
.c-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.c-shot:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .cabana-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .c-shot { grid-column: span 1; }
  .c-shot.wide { grid-column: span 2; }
  .c-shot.tall { grid-row: span 2; }
}

.cabana-feats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--rule); border: 1px solid var(--rule); }
.cabana-feats > div { background: var(--cream); padding: 24px; text-align: center;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); opacity: 0.85; }
.cabana-feats strong { display: block; font-family: var(--serif);
  font-weight: 400; font-size: 24px; color: var(--brand);
  margin-bottom: 6px; text-transform: none; letter-spacing: normal; }
@media (max-width: 700px) { .cabana-feats { grid-template-columns: repeat(2, 1fr); } }

/* EXPERIENCES */
.xp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
@media (max-width: 768px) { .xp-grid { grid-template-columns: 1fr; gap: 32px; } }
.xp-card { display: flex; flex-direction: column; }
.xp-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 24px; }
.xp-img img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease); filter: saturate(0.95); }
.xp-card:hover .xp-img img { transform: scale(1.05); filter: saturate(1.1); }
.xp-body { padding: 0 4px; }
.xp-tag { display: inline-block; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px; }
.xp-card h3 { font-family: var(--serif); font-weight: 400; font-size: 42px;
  color: var(--brand-dark); margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1; }
.xp-meta { font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--brand); margin-bottom: 16px; }
.xp-body > p:last-child { font-size: 15px; line-height: 1.7; opacity: 0.8; }

/* EVENTOS */
.events { background: var(--brand-deeper); color: var(--cream);
  position: relative; overflow: hidden; }
.events-bg { position: absolute; inset: 0;
  background-image: url("images/eventos-bg.jpg");
  background-size: cover; background-position: center;
  opacity: 0.15; filter: grayscale(0.6); }
.events .container { position: relative; z-index: 1; }

.venues { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--rule-light); border: 1px solid var(--rule-light); }
@media (max-width: 700px) { .venues { grid-template-columns: 1fr; } }
.venue { background: var(--brand-deeper); padding: 48px 40px; transition: all 0.4s var(--ease); }
.venue:hover { background: rgba(0,0,0,0.2); }
.venue h3 { font-family: var(--serif); font-weight: 400; font-size: 36px;
  color: var(--cream); margin-bottom: 8px; line-height: 1.1; }
.v-type { font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--amber-soft); margin-bottom: 20px; }
.venue p:last-child { font-size: 15px; line-height: 1.7; opacity: 0.85; max-width: 50ch; }

/* RESTAURANT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split-text > * + * { margin-top: 24px; }
.split-text .display { margin-bottom: 12px; }
.split-text p { font-size: 17px; line-height: 1.75; opacity: 0.85; max-width: 52ch; }
.split-img { aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 12px; }
.g-item { grid-column: span var(--span, 1); overflow: hidden;
  position: relative; background: var(--brand-mist); cursor: zoom-in; }
.g-item img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease); filter: saturate(0.95); }
.g-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
@media (max-width: 768px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item { grid-column: span 1 !important; }
}

/* CONTACT */
.contact { background: var(--brand-mist); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info .display { margin-bottom: 40px; }
.contact-details { display: grid; gap: 24px; }
.contact-details > div { padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.dt-label { display: block; font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.contact-details a, .contact-details p { font-family: var(--serif);
  font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.contact-details a:hover { color: var(--brand); }

.contact-form { background: var(--cream); padding: 48px;
  border: 1px solid var(--rule); display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 600px) { .contact-form { padding: 32px 24px; } }
.contact-form h3 { font-family: var(--serif); font-weight: 400; font-size: 32px;
  color: var(--brand-dark); margin-bottom: 8px; line-height: 1.1; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label > span { font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); opacity: 0.7; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  padding: 10px 0; outline: 0; transition: border-color 0.3s var(--ease); border-radius: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--brand); }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form button { align-self: flex-start; margin-top: 8px; }
.form-status { font-size: 13px; color: var(--brand); min-height: 20px; }
.form-status.error { color: #b04848; }

/* FOOTER */
.footer { background: var(--brand-deeper); color: var(--cream); padding: 80px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--rule-light); }
.footer-brand { display: flex; align-items: center; gap: 16px; color: var(--cream); }
.footer-brand .nav-tent { width: 40px; height: 40px; }
.footer-brand .wm-name { font-family: var(--serif); font-size: 24px; letter-spacing: 0.04em; }
.footer-brand .wm-sub { font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; margin-top: 4px; opacity: 0.7; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; letter-spacing: 0.05em; }
.footer-nav a { opacity: 0.8; }
.footer-nav a:hover { opacity: 1; color: var(--amber-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-top: 32px; font-size: 13px; opacity: 0.6; }
.footer-bottom em { font-family: var(--serif); font-size: 15px; }

/* FLOATING WA */
.wa-btn { position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 90; box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease); }
.wa-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,0.5); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.hero-bg img{object-position:center 58%;}

/* Real Cielo Malinche logo — masked PNGs so they inherit currentColor like the old SVGs */
.logo-mark, .logo-mark-full {
  display: inline-block; background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.logo-mark { -webkit-mask-image: url("images/logo-mark.png"); mask-image: url("images/logo-mark.png"); }
.logo-mark-full { -webkit-mask-image: url("images/logo-full.png"); mask-image: url("images/logo-full.png"); }
.nav-brand .logo-mark { width: 50px; height: 34px; }
.footer-brand .logo-mark { width: 54px; height: 38px; }
.preloader-mark .logo-mark-full { width: 210px; height: 186px; display: block; margin: 0 auto; }
