/* =====================================================
   KEJ LUXURY EXPERIENCES — PREMIUM STYLESHEET
   Colores: Negro profundo, Dorado, Blanco
   Fuentes: Cormorant Garamond (serif), Jost (sans)
===================================================== */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  /* Default (Light) Theme - White Primary, Green Secondary */
  --gold:       #2C4C2B;
  --gold-light: #426B40;
  --gold-dark:  #1A2F1A;
  
  --black:      #FFFFFF;
  --black-2:    #F7F7F7;
  --black-3:    #EFEFEF;
  --black-4:    #E5E5E5;
  
  --white:      #1A2F1A;
  --off-white:  #2C4C2B;
  
  --gray:       #4F5A4F;
  --gray-light: #3F563F;

  --rgb-black:    255, 255, 255;
  --rgb-gold:     44, 76, 43;
  --rgb-white:    26, 47, 26;
  --rgb-offwhite: 44, 76, 43;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;

  --shadow-gold: 0 0 40px rgba(var(--rgb-gold),.25);
  --shadow-card: 0 20px 60px rgba(0,0,0,.1);

  --transition: .35s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  /* Dark Theme */
  --gold:       #FFFFFF;
  --gold-light: #F0F0F0;
  --gold-dark:  #E0E0E0;
  
  --black:      #162715;
  --black-2:    #1C321B;
  --black-3:    #223D21;
  --black-4:    #284827;
  
  --white:      #FFFFFF;
  --off-white:  #EFEBE0;
  
  --gray:       #9BAA9B;
  --gray-light: #C2D1C2;

  --rgb-black:    22, 39, 21;
  --rgb-gold:     255, 255, 255;
  --rgb-white:    255, 255, 255;
  --rgb-offwhite: 239, 235, 224;
}

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

/* ─── UTILITIES ─── */
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 7%;
}
.mt-1 { margin-top: 2rem; }
.italic { font-style: italic; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 0 7%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(var(--rgb-black),.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--rgb-gold),.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(var(--rgb-black),.95);
  border-bottom-color: rgba(var(--rgb-gold),.2);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  width: 222px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}
.logo-img--dark { display: none; }
[data-theme="dark"] .logo-img:not(.logo-img--dark) { display: none; }
[data-theme="dark"] .logo-img--dark { display: block; }
.logo-kej {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}
.logo-sub {
  font-size: .55rem;
  letter-spacing: 3px;
  color: var(--white);
  opacity: .7;
  text-transform: uppercase;
}

.navbar {
  display: flex;
  gap: 0;
}
.nav-link {
  text-decoration: none;
  color: rgba(var(--rgb-white),.75);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .5px;
  padding: 0 10px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 60%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher, .theme-switcher {
  background: rgba(var(--rgb-gold),.12);
  border: 1px solid rgba(var(--rgb-gold),.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}
.theme-switcher {
  padding: 6px;
  width: 34px;
  height: 34px;
}
.lang-switcher:hover, .theme-switcher:hover {
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.menu-toggle.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--rgb-black),.85) 0%,
    rgba(var(--rgb-black),.55) 50%,
    rgba(var(--rgb-black),.7) 100%
  );
}
html:not([data-theme="dark"]) .hero-overlay {
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 30%, rgba(255,255,255,.3) 55%, rgba(255,255,255,.08) 100%),
    linear-gradient(90deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.3) 38%, rgba(255,255,255,.3) 62%, rgba(255,255,255,.06) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(var(--rgb-gold),.4);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 99px;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  background: rgba(var(--rgb-gold),.08);
  animation: fadeDown .8s ease both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 28px;
  text-shadow: 0 3px 22px rgba(0,0,0,.38), 0 0 20px rgba(255,255,255,.24);
}
html:not([data-theme="dark"]) .hero-title {
  font-weight: 400;
  text-shadow: 0 1px 0 rgba(255,255,255,.95), 0 8px 28px rgba(255,255,255,.75);
}
html:not([data-theme="dark"]) .hero-title .gold,
html:not([data-theme="dark"]) .stat-num {
  color: var(--gold);
}
html:not([data-theme="dark"]) .hero-sub {
  color: rgba(var(--rgb-gold),.96);
}
.hero-title .line {
  display: block;
  animation: fadeUp .9s ease both;
}
.hero-title .line:nth-child(2) { animation-delay: .15s; }
.hero-title .line:nth-child(3) { animation-delay: .3s; }
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.12rem;
  color: rgba(var(--rgb-white),.75);
  max-width: 680px;
  margin: 0 auto 44px;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0,0,0,.38), 0 0 16px rgba(255,255,255,.2);
  animation: fadeUp .9s .45s ease both;
}
html:not([data-theme="dark"]) .hero-sub,
html:not([data-theme="dark"]) .stat-lbl {
  color: rgba(var(--rgb-white),.92);
  text-shadow: 0 1px 0 rgba(255,255,255,.9), 0 6px 20px rgba(255,255,255,.7);
}
html:not([data-theme="dark"]) .about-text p,
html:not([data-theme="dark"]) .glow-card p,
html:not([data-theme="dark"]) .service-card p,
html:not([data-theme="dark"]) .diff-card p,
html:not([data-theme="dark"]) .value-card p,
html:not([data-theme="dark"]) .founder-copy p,
html:not([data-theme="dark"]) .footer-copy {
  color: var(--gray);
}
html:not([data-theme="dark"]) .hero-badge {
  color: var(--gold-dark);
  background: rgba(255,255,255,.46);
}
[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-title .gold,
[data-theme="dark"] .hero-sub,
[data-theme="dark"] .stat-num,
[data-theme="dark"] .stat-lbl {
  color: #fff;
  text-shadow: 0 3px 24px rgba(0,0,0,.58);
}
[data-theme="dark"] .hero-badge {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.18);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .6s ease both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 70px;
  animation: fadeUp .9s .75s ease both;
}
.stat { text-align: center; padding: 0 40px; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-lbl {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--rgb-white),.55);
  margin-top: 6px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(var(--rgb-gold),.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(var(--rgb-white),.4);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s ease both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(var(--rgb-gold),.5);
  border-bottom: 1px solid rgba(var(--rgb-gold),.5);
  transform: rotate(45deg);
  animation: bounceDown 1.8s infinite;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(var(--rgb-white),.3);
}
.btn-ghost:hover {
  background: rgba(var(--rgb-white),.07);
  border-color: rgba(var(--rgb-white),.6);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ─── SECTIONS ─── */
.section, .dark-section, .contact-section {
  padding: 130px 0;
}
.section { background: var(--black-3); }
.dark-section { background: var(--black); }
.contact-section {
  background: var(--black-2);
  padding: 64px 0 58px;
}

.section-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 70px;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: var(--off-white); }
.contact-section .section-title {
  margin-bottom: 12px;
}

.section-lead {
  max-width: 760px;
  color: var(--gray);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  margin: -34px auto 54px;
  text-align: center;
}
.section-lead.light { color: rgba(var(--rgb-white),.76); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--gray-light);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.about-text strong { color: var(--gold-light); font-weight: 500; }

.mpi-membership {
  width: min(430px, 100%);
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(var(--rgb-gold),.18);
}
.mpi-membership span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mpi-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}
.mpi-logo--dark { display: none; }
[data-theme="dark"] .mpi-logo:not(.mpi-logo--dark) { display: none; }
[data-theme="dark"] .mpi-logo--dark { display: block; }

.about-cards { display: flex; flex-direction: column; gap: 20px; }

.glow-card {
  background: linear-gradient(145deg, rgba(var(--rgb-gold),.06), rgba(var(--rgb-gold),.02));
  border: 1px solid rgba(var(--rgb-gold),.18);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(var(--rgb-gold),.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.glow-card:hover::before { opacity: 1; }
.glow-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.glow-card--gold { border-color: rgba(var(--rgb-gold),.35); }
.glow-card-icon { font-size: 1.5rem; margin-bottom: 16px; }
.glow-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.glow-card p { color: var(--gray-light); font-weight: 300; font-size: .95rem; margin: 0; }

/* ─── MEANING ─── */
.meaning-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.meaning-copy p {
  color: rgba(var(--rgb-offwhite),.75);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.meaning-copy strong { color: var(--gold-light); font-weight: 500; }
.meaning-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px;
  line-height: 1.4;
}

.elements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.element-card {
  background: rgba(var(--rgb-white),.03);
  border: 1px solid rgba(var(--rgb-gold),.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.element-card:hover {
  background: rgba(var(--rgb-gold),.07);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.element-icon { font-size: 2.2rem; margin-bottom: 14px; }
.maya-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 18px rgba(var(--rgb-gold),.2));
}
.maya-icon--fire {
  width: 68px;
  height: 76px;
  margin-bottom: 10px;
}
.maya-icon--water {
  width: 78px;
  height: 66px;
  margin-bottom: 12px;
}
.maya-icon--air {
  width: 84px;
  height: 66px;
  margin-bottom: 12px;
}
.maya-icon--earth {
  width: 82px;
  height: 70px;
  margin-bottom: 10px;
}
[data-theme="dark"] .maya-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(255,255,255,.2));
}
.element-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.element-card p { color: var(--gray); font-size: .9rem; margin: 0; font-weight: 300; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(var(--rgb-white),.02);
  border: 1px solid rgba(var(--rgb-white),.06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: rgba(var(--rgb-gold),.3); transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.service-icon { font-size: 1.8rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { color: var(--gray); font-size: .9rem; font-weight: 300; margin: 0; }

/* ─── PROCESS ─── */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  background: rgba(var(--rgb-white),.03);
  border: 1px solid rgba(var(--rgb-gold),.15);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.process-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(var(--rgb-gold),.2);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.process-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.process-content ul { list-style: none; padding: 0; }
.process-content li {
  color: var(--gray-light);
  font-size: .9rem;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid rgba(var(--rgb-white),.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-content li::before { content: '–'; color: var(--gold); flex-shrink: 0; }

.process-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--rgb-gold),.3), rgba(var(--rgb-gold),.6), rgba(var(--rgb-gold),.3));
  margin-top: 80px;
  flex-shrink: 0;
}

/* ─── HOSPITALITY ─── */
.hosp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hosp-card {
  background: rgba(var(--rgb-white),.025);
  border: 1px solid rgba(var(--rgb-white),.06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.hosp-card:hover {
  border-color: rgba(var(--rgb-gold),.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background: rgba(var(--rgb-gold),.04);
}
.hosp-icon { font-size: 2rem; margin-bottom: 18px; }
.hosp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.hosp-card p { color: var(--gray); font-size: .9rem; font-weight: 300; margin: 0; }

/* ─── VENUES ─── */
.venues-layout,
.venues-feature {
  display: grid;
  grid-template-columns: 1fr .9fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.venues-copy {
  border: 1px solid rgba(var(--rgb-gold),.18);
  border-radius: var(--radius-md);
  padding: 38px;
  background: rgba(var(--rgb-white),.035);
  display: flex;
  align-items: center;
}
.venues-copy p {
  color: rgba(var(--rgb-white),.78);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hotels-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.hotel-card {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(var(--rgb-gold),.18);
  border-radius: var(--radius-sm);
  background: rgba(var(--rgb-white),.035);
  color: rgba(var(--rgb-white),.82);
  text-decoration: none;
  font-size: .9rem;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.hotel-card--image {
  position: relative;
  min-height: 58px;
  align-items: flex-end;
  overflow: hidden;
  padding: 14px 18px;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.hotel-card--image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(0,0,0,.74) 0%, rgba(0,0,0,.48) 60%, rgba(0,0,0,.2) 100%);
  transition: background var(--transition);
}
.hotel-card--image span {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.hotel-card--image:hover {
  color: #fff;
  background-color: rgba(var(--rgb-gold),.08);
}
.hotel-card--image:hover::before {
  background: linear-gradient(to right, rgba(0,0,0,.84) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.24) 100%);
}
.hotel-card:hover {
  border-color: rgba(var(--rgb-gold),.55);
  color: var(--gold-light);
  background-color: rgba(var(--rgb-gold),.08);
  transform: translateY(-3px);
}
.hotel-card--plain {
  color: rgba(var(--rgb-white),.58);
  cursor: default;
}
.hotel-card--plain:hover {
  transform: none;
  border-color: rgba(var(--rgb-gold),.18);
  color: rgba(var(--rgb-white),.58);
  background-color: rgba(var(--rgb-white),.035);
}
.venue-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.venue-card:hover { transform: scale(1.02); }
.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--rgb-black),.9) 0%, rgba(var(--rgb-black),.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
}
.venue-overlay h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.venue-overlay p { color: rgba(var(--rgb-white),.7); font-size: .95rem; font-weight: 300; margin: 0; }

/* ─── DIFFERENTIATORS ─── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: rgba(var(--rgb-white),.02);
  border: 1px solid rgba(var(--rgb-white),.06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.diff-card:hover { border-color: var(--gold); transform: translateY(-8px); background: rgba(var(--rgb-gold),.04); }
.diff-num {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-card p { color: var(--gray); font-size: .9rem; font-weight: 300; margin: 0; }

/* ─── DESTINATIONS ─── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card--wide { grid-column: span 2; height: 360px; }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--rgb-black),.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(var(--rgb-black),.9) 0%, rgba(var(--rgb-black),.3) 60%, transparent 100%); }
.dest-content h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.dest-content p { color: var(--gold-light); font-size: .85rem; letter-spacing: 1px; margin: 0; }

/* ─── VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: rgba(var(--rgb-white),.025);
  border: 1px solid rgba(var(--rgb-white),.06);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-8px); background: rgba(var(--rgb-gold),.05); }
.value-element { font-size: 2.2rem; margin-bottom: 16px; }
.value-icon {
  width: 62px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 16px;
  opacity: .9;
}
[data-theme="dark"] .value-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255,255,255,.16));
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.value-card p { color: var(--gray); font-size: .88rem; font-weight: 300; margin: 0; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--rgb-gold),.14);
  background: rgba(var(--rgb-white),.035);
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(10),
.gallery-item:nth-child(14) {
  grid-row: span 2;
}
.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--rgb-gold),.45);
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--stock {
  background-size: cover;
  background-position: center;
  color: var(--off-white);
  padding: 24px;
}
.gallery-item--stock::before,
.gallery-item--instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.22));
}
.gallery-item--instagram::before {
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}
.gallery-item--stock span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.46);
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.gallery-item--stock span,
.gallery-item--instagram span,
.gallery-item--instagram strong,
.gallery-instagram-icon {
  position: relative;
  z-index: 1;
}
.gallery-item--instagram {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 6px;
  padding: 24px;
  color: var(--off-white);
  background: linear-gradient(135deg, #833AB4 0%, #C13584 32%, #E1306C 54%, #FD1D1D 72%, #FCAF45 100%);
}
.gallery-item--instagram,
.gallery-item--instagram span,
.gallery-item--instagram strong,
.gallery-instagram-icon {
  color: #fff;
}
.gallery-item--instagram span {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-item--instagram strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
}
.gallery-instagram-icon {
  margin-bottom: 8px;
}

/* ─── FOUNDER ─── */
.founder-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.founder-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--rgb-gold),.2);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  background: var(--black-2);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-copy p {
  color: var(--gray);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
}
.founder-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin: 30px 0 18px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.cert-grid a,
.cert-grid button {
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--rgb-gold),.18);
  color: var(--white);
  text-decoration: none;
  background: rgba(var(--rgb-gold),.06);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.cert-grid a:hover,
.cert-grid button:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-layout > * {
  min-width: 0;
}
.contact-form-embed {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 980px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  background: rgba(var(--rgb-white),.04);
  border: 1px solid rgba(var(--rgb-white),.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(var(--rgb-gold),.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(var(--rgb-white),.25); }

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 120px;
}

.contact-person-card {
  background: rgba(var(--rgb-white),.03);
  border: 1px solid rgba(var(--rgb-gold),.15);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-person-card:hover { border-color: var(--gold); }
.contact-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--black-3);
  border: 1px solid rgba(var(--rgb-gold),.25);
  flex-shrink: 0;
}
.contact-person-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-role {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-email-link,
.contact-phone-link {
  display: block;
  color: var(--gray-light);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 300;
  transition: color var(--transition);
  margin-bottom: 4px;
}
.contact-email-link:hover, .contact-phone-link:hover { color: var(--gold); }

.social-panel {
  background: rgba(var(--rgb-white),.03);
  border: 1px solid rgba(var(--rgb-gold),.15);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.social-panel:hover { border-color: var(--gold); }
.social-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.social-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 300;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
.office-label { color: var(--gold); font-size: .8rem; margin-bottom: 4px; }
.office-address { color: var(--gray); font-size: .9rem; font-weight: 300; margin: 0; }

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(var(--rgb-gold),.1);
  padding: 50px 0;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer .logo-kej { font-size: 1.6rem; }
.footer-logo-img {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
}
.footer-logo-img--dark { display: none; }
[data-theme="dark"] .footer-logo-img:not(.footer-logo-img--dark) { display: none; }
[data-theme="dark"] .footer-logo-img--dark { display: block; }
.footer-tagline {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.footer-copy { color: var(--gray); font-size: .82rem; font-weight: 300; margin: 0; }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold-light); transform: translateY(-4px); }

/* ─── IMAGE MODAL ─── */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.image-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}
.image-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 94vw);
  max-height: 90vh;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(var(--rgb-gold),.28);
  border-radius: var(--radius-md);
  background: var(--black-2);
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
  transform: translateY(18px) scale(.98);
  transition: transform .28s ease;
}
.image-modal.is-open .image-modal-dialog {
  transform: translateY(0) scale(1);
}
.image-modal-dialog img {
  display: block;
  width: 100%;
  max-height: calc(90vh - 100px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #f3f3f0;
}
.image-modal-dialog p {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-align: center;
}
.image-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--rgb-gold),.35);
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(8px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .header { padding: 0 5%; }
  .container { padding: 0 5%; }
  .navbar {
    position: absolute;
    top: 92px; right: 0;
    width: 320px;
    flex-direction: column;
    background: var(--black-4);
    border: 1px solid rgba(var(--rgb-gold),.15);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 30px;
    gap: 6px;
    transform: translateX(110%);
    transition: transform var(--transition);
  }
  .navbar.active { transform: translateX(0); }
  .nav-link { padding: 12px 8px; font-size: .95rem; }
  .menu-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .meaning-layout { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; }
  .process-connector { width: 2px; height: 30px; margin: 0 auto; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .hosp-grid { grid-template-columns: repeat(2, 1fr); }
  .venues-feature { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { padding-top: 0; }
  .contact-form-embed { height: 1020px; }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
    align-items: flex-start;
    padding: calc(118px + env(safe-area-inset-top)) 0 82px;
  }
  .hero-bg { background-position: center top; }
  html:not([data-theme="dark"]) .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18,39,18,.58) 0%, rgba(18,39,18,.4) 48%, rgba(18,39,18,.62) 100%),
      radial-gradient(ellipse at center, rgba(255,255,255,.56) 0%, rgba(255,255,255,.3) 45%, rgba(255,255,255,.08) 100%);
  }
  .hero-content {
    width: 100%;
    max-width: none;
    padding: 0 5%;
  }
  .hero-badge { margin-bottom: 18px; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 4rem); }
  html:not([data-theme="dark"]) .hero-title,
  html:not([data-theme="dark"]) .hero-title .gold,
  html:not([data-theme="dark"]) .hero-sub,
  html:not([data-theme="dark"]) .stat-num,
  html:not([data-theme="dark"]) .stat-lbl {
    color: #fff;
    text-shadow: 0 3px 18px rgba(0,0,0,.56), 0 1px 2px rgba(0,0,0,.45);
  }
  .hero-sub { margin-bottom: 28px; }
  .hero-stats {
    gap: 0;
    margin-top: 34px;
  }
  .stat { padding: 0 20px; }
  .hero-scroll-hint {
    display: flex;
    bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
  }
  .scroll-arrow {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
  .image-modal {
    padding: 14px;
    place-items: center;
  }
  .image-modal-dialog {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
    padding: 10px;
    gap: 10px;
    border-radius: 16px;
  }
  .image-modal-dialog img {
    max-height: calc(100svh - 104px);
  }
  .image-modal-dialog p {
    font-size: 1.05rem;
  }
  .image-modal-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }
  .section-title { font-size: clamp(2rem, 5vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .hosp-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .venues-layout { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card--wide { grid-column: span 1; height: 320px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .cert-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .elements-grid { grid-template-columns: 1fr; }
  .contact-section,
  .contact-layout,
  .contact-form-embed {
    max-width: 100%;
    overflow-x: hidden;
  }
  .contact-section { padding: 44px 0 44px; }
  .contact-section .section-title { margin-bottom: 8px; }
  .contact-layout { gap: 26px; }
  .contact-form-embed { height: 1060px; }
}

@media (max-width: 500px) {
  .hero {
    padding-top: calc(110px + env(safe-area-inset-top));
    padding-bottom: 72px;
  }
  .hero-title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 24px;
  }
  .hero-stats {
    flex-direction: row;
    gap: 0;
    margin-top: 30px;
  }
  .stat {
    flex: 1;
    padding: 0 8px;
  }
  .stat-num { font-size: 2rem; }
  .stat-lbl {
    font-size: .62rem;
    letter-spacing: 1.2px;
  }
  .stat-divider {
    width: 1px;
    height: 34px;
  }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(10),
  .gallery-item:nth-child(14) { grid-row: span 1; }
  .logo-kej { font-size: 1.5rem; }
  .logo-img { width: 160px; }
  .contact-form-embed { height: 1100px; }
}


/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 30px; left: 30px; z-index: 999; display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 15px; }
.wa-icon { background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 4px 15px rgba(37,211,102,.4); transition: transform 0.3s; }
.wa-icon:hover { transform: scale(1.1); }
.wa-menu { background: var(--black-2); border: 1px solid rgba(var(--rgb-gold),.2); border-radius: var(--radius-sm); padding: 15px; box-shadow: var(--shadow-card); opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.3s cubic-bezier(.4,0,.2,1); }
.wa-float:hover .wa-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-menu-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.wa-contact { display: flex; flex-direction: column; text-decoration: none; color: var(--white); padding: 10px; border-radius: 8px; transition: background 0.3s; }
.wa-contact:hover { background: rgba(var(--rgb-gold),.08); }
.wa-contact span { font-weight: 500; font-size: 0.95rem; }
.wa-contact small { color: var(--gray); font-size: 0.8rem; }

.wa-float.active .wa-menu { opacity: 1; visibility: visible; transform: translateY(0); }
