/* ============================================================
   Timiș Valley — Casa Eni & Dan
   ============================================================ */

:root {
  --white: #FFFFFF;
  --sky: #B9C77A;
  --blue: #5B6B2F;
  --navy: #142B1D;
  --forest: #234B36;
  --yellow: #E9C95B;
  --gray-bg: #F7F8F9;

  --gradient-sky: linear-gradient(180deg, #EEF2DC 0%, #FFFFFF 100%);
  --gradient-blue: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(20, 43, 29,0.15) 0%, rgba(20, 43, 29,0.05) 35%, rgba(20, 43, 29,0.55) 100%);

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1280px;
  --section-pad: clamp(72px, 10vw, 160px);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 60px -20px rgba(20, 43, 29, 0.25);
  --shadow-card: 0 12px 40px -12px rgba(20, 43, 29, 0.18);
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.2px;
}

h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--yellow);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 96px) 0; }
.section--gray { background: var(--gray-bg); }
.section--navy {
  background: var(--gradient-blue);
  color: var(--white);
}
.section--navy h2, .section--navy h3, .section--navy .eyebrow { color: var(--white); }

.section-head {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head p.lead {
  margin-top: 18px;
  font-size: 1.08rem;
  color: #4b5c6f;
}
.section--navy .section-head p.lead { color: rgba(255,255,255,0.78); }

/* Accessibility */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.25s var(--ease-lux);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 10px 30px -8px rgba(233, 201, 91, 0.7);
}
.btn-primary:hover { box-shadow: 0 16px 40px -8px rgba(233, 201, 91, 0.85); }

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(20, 43, 29,0.25);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-call {
  background: var(--white);
  color: var(--navy);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7);
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.55);
  pointer-events: none;
  animation: ripple 700ms ease-out forwards;
}
.btn-primary .ripple, .btn-call .ripple { background: rgba(20, 43, 29,0.25); }
@keyframes ripple {
  to { transform: scale(2.6); opacity: 0; }
}

.btn-magnetic { will-change: transform; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: padding 0.5s var(--ease-lux), background 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), backdrop-filter 0.5s var(--ease-lux);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar.is-scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 32px -12px rgba(20, 43, 29,0.18);
}

.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.logo-badge { flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(20, 43, 29,0.25)); transition: transform 0.5s var(--ease-lux); }
.brand:hover .logo-badge { transform: rotate(-6deg) scale(1.05); }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--white);
  transition: color 0.5s var(--ease-lux);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  transition: color 0.5s var(--ease-lux);
}
.navbar.is-scrolled .brand-name { color: var(--navy); }
.navbar.is-scrolled .brand-sub { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--yellow);
  transition: width 0.4s var(--ease-lux);
}
.nav-links a:hover::after { width: 100%; }
.navbar.is-scrolled .nav-links a { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 13px 22px; font-size: 0.86rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 4px;
}
.lang-switch button {
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.8);
  transition: background 0.4s var(--ease-lux), color 0.4s var(--ease-lux);
}
.lang-switch button.is-active {
  background: var(--yellow);
  color: var(--navy);
}
.navbar.is-scrolled .lang-switch {
  background: rgba(20, 43, 29,0.06);
  border-color: rgba(20, 43, 29,0.15);
}
.navbar.is-scrolled .lang-switch button { color: var(--blue); }
.navbar.is-scrolled .lang-switch button.is-active { background: var(--navy); color: var(--white); }

.mobile-menu .lang-switch {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}
.mobile-menu .lang-switch button { color: rgba(255,255,255,0.75); }
.mobile-menu .lang-switch button.is-active { background: var(--yellow); color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
}
.navbar.is-scrolled .nav-toggle { background: rgba(20, 43, 29,0.08); }
.nav-toggle svg { stroke: var(--white); transition: stroke 0.4s; }
.navbar.is-scrolled .nav-toggle svg { stroke: var(--navy); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-lux);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
}
.mobile-menu .btn { margin-top: 16px; }
.mobile-close {
  position: absolute;
  top: 26px; right: clamp(20px, 5vw, 48px);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
}
.mobile-close svg { stroke: var(--white); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease-lux), transform 8s linear;
  will-change: transform, opacity;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 43, 29,0.58) 0%, rgba(20, 43, 29,0.34) 38%, rgba(20, 43, 29,0.62) 100%);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, transform 0.4s var(--ease-lux);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.08); }
.hero-arrow-prev { left: clamp(14px, 3vw, 40px); }
.hero-arrow-next { right: clamp(14px, 3vw, 40px); }

.hero-dots {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: all 0.4s var(--ease-lux);
}
.hero-dots button.is-active { background: var(--yellow); width: 26px; border-radius: 6px; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 80px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-brandline { text-align: center; margin-bottom: 30px; display: flex; flex-direction: column; align-items: center; }
.hero-brandline .brand-name-lg {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-brandline .brand-sub-lg {
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-top: 10px;
}

.daisies { display: flex; gap: 20px; margin-bottom: 26px; }
.daisy {
  width: 60px; height: 60px;
  cursor: default;
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.55)) drop-shadow(0 1px 1px rgba(0,0,0,0.4));
  animation: daisy-float 4.5s var(--ease-lux) infinite;
  transition: transform 0.4s var(--ease-lux);
}
.daisy:hover { transform: rotate(18deg) scale(1.18); }
.daisy:nth-child(1) { animation-delay: 0s; }
.daisy:nth-child(2) { animation-delay: 0.5s; }
.daisy:nth-child(3) { animation-delay: 1s; }
.daisy .petal { transform-origin: 50% 50%; animation: daisy-sway 3.2s ease-in-out infinite; }
.daisy:nth-child(2) .petal { animation-delay: 0.3s; }
.daisy:nth-child(3) .petal { animation-delay: 0.6s; }

@keyframes daisy-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes daisy-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

.hero-tagline {
  align-self: center;
  text-align: center;
  max-width: 620px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  color: var(--white);
  max-width: 20ch;
  margin: 0 auto 18px;
}
.hero h1 .word {
  display: inline-block;
}

.hero p.subhead {
  max-width: 42ch;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  color: rgba(255,255,255,0.88);
  margin: 0 auto 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 64px; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0; height: 100%;
  background: var(--yellow);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   Trust Marquee
   ============================================================ */
.trust-marquee {
  overflow: hidden;
  background: var(--gradient-blue);
  padding: 22px 0;
  box-shadow: inset 0 2px 12px rgba(0,0,0,0.15);
}
.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 34s linear infinite;
}
.trust-marquee:hover .trust-marquee-track { animation-play-state: paused; }
.trust-marquee-set { display: flex; align-items: center; flex-shrink: 0; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 28px;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.trust-item strong {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--yellow);
}
.trust-sep {
  color: var(--yellow);
  opacity: 0.6;
  font-size: 0.7rem;
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .trust-item { padding: 0 18px; font-size: 0.88rem; }
}

/* ============================================================
   Rooms
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.rooms-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.room-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}
.room-card:hover, .room-card:focus-visible {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.room-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-lux);
}
.room-card:hover .room-card-media img { transform: scale(1.09); }
.room-card-badge {
  position: absolute;
  top: 22px; left: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 100px;
}
.room-card-body { padding: 30px; }
.room-card-body h3 { font-size: clamp(1.25rem, 1.6vw, 1.55rem); margin-bottom: 10px; }
.room-card-body > p { color: #57614f; font-size: 0.92rem; margin-bottom: 20px; }
.room-card-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--blue);
}
.price-currency { font-size: 0.9rem; font-weight: 600; color: var(--blue); }
.price-period { font-size: 0.85rem; color: #7c8a76; }
.price-convert { font-size: 0.82rem; color: #5a6b5c; margin-top: 4px; }
.price-note { font-size: 0.7rem; color: #a3ae9c; font-style: italic; margin-top: 3px; margin-bottom: 20px; }
.room-view-btn { width: 100%; justify-content: center; }

.villa-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}
.villa-card:hover, .villa-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.villa-card-media { position: relative; min-height: 260px; overflow: hidden; }
.villa-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux); }
.villa-card:hover .villa-card-media img { transform: scale(1.08); }
.villa-card-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.villa-card-body .room-card-badge { position: static; display: inline-flex; align-self: flex-start; margin-bottom: 16px; background: var(--gray-bg); }
.villa-card-body h3 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); margin-bottom: 12px; }
.villa-card-body > p { color: #57614f; font-size: 1rem; margin-bottom: 22px; }
.villa-card-body .room-view-btn { width: auto; align-self: flex-start; padding: 15px 32px; }

/* Room modal */
.room-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(10,20,14,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s;
}
.room-modal.is-open { opacity: 1; visibility: visible; }
.room-modal-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1020px;
  width: 100%;
  max-height: 88vh;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.5s var(--ease-lux);
}
.room-modal.is-open .room-modal-inner { transform: scale(1); }
.room-modal-panel[hidden] { display: none; }
.room-modal-panel { display: flex; height: 88vh; max-height: 640px; }
.room-modal-gallery { position: relative; flex: 1 1 55%; background: #0c1710; }
.room-modal-frame { position: relative; width: 100%; height: 100%; }
.room-modal-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-lux);
}
.room-modal-frame img.is-active { opacity: 1; }
.room-modal-prev, .room-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.room-modal-prev:hover, .room-modal-next:hover { background: rgba(255,255,255,0.3); }
.room-modal-prev { left: 16px; }
.room-modal-next { right: 16px; }
.room-modal-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; gap: 8px;
}
.room-modal-dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: all 0.4s var(--ease-lux); }
.room-modal-dots button.is-active { background: var(--yellow); width: 22px; border-radius: 4px; }
.room-modal-info {
  flex: 1 1 45%;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.room-modal-info .room-card-badge { position: static; display: inline-flex; margin-bottom: 16px; align-self: flex-start; background: var(--gray-bg); }
.room-modal-info h3 { margin-bottom: 14px; }
.room-modal-info p { color: #57614f; margin-bottom: 22px; }
.room-modal-info .btn { margin-top: 24px; align-self: flex-start; }
.room-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.room-modal-close:hover { background: rgba(0,0,0,0.6); }

@media (max-width: 1100px) {
  .rooms-grid-6 { grid-template-columns: 1fr 1fr; }
  .villa-card { grid-template-columns: 1fr; }
  .villa-card-media { min-height: 220px; }
}

@media (max-width: 860px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-grid-6 { grid-template-columns: 1fr; }
  .room-modal-panel { flex-direction: column; height: auto; max-height: none; }
  .room-modal-inner { max-height: 92vh; overflow-y: auto; }
  .room-modal-gallery { aspect-ratio: 4/3; flex: none; }
  .room-modal-info { padding: 28px; }
}

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.65;
}
.sponsor-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: #8b97a6;
  filter: grayscale(1);
  letter-spacing: 0.5px;
  transition: opacity 0.4s, filter 0.4s, transform 0.4s var(--ease-lux);
}
.sponsor-logo:hover { opacity: 1; filter: grayscale(0); color: var(--blue); transform: translateY(-2px); }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
.about-media .frame .ph-fill {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #dff0fb 0%, #b9c77a 45%, #5b6b2f 85%);
}
.about-media .accent-box {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 46%;
  aspect-ratio: 1/1;
  background: var(--yellow);
  border-radius: var(--radius-md);
  z-index: -1;
}
.about-media .float-card {
  position: absolute;
  bottom: 24px; right: -24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.float-card .fc-num { font-family: var(--font-serif); font-weight: 700; font-size: 1.6rem; color: var(--forest); }
.float-card .fc-text { font-size: 0.78rem; color: #57687b; max-width: 14ch; }

.about-text p { color: #45566a; margin-bottom: 20px; font-size: 1.05rem; }
.about-text blockquote {
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  margin: 28px 0;
}

/* ============================================================
   Features
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(20, 43, 29,0.06);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: left;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), border-color 0.5s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-sky);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-lux);
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.08); }
.feature-card h4 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #6b7b8c; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-masonry {
  columns: 4 260px;
  column-gap: 28px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.gallery-item .ph-fill {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--ease-lux);
}
.gallery-item:hover .ph-fill { transform: scale(1.08); }
.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px;
  background: linear-gradient(0deg, rgba(20, 43, 29,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-lux);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-frame {
  width: min(80vw, 900px);
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.5s var(--ease-lux);
}
.lightbox.is-open .lightbox-frame { transform: scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 30px; right: clamp(20px,5vw,48px); }
.lightbox-prev { left: clamp(12px,4vw,40px); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(12px,4vw,40px); top: 50%; transform: translateY(-50%); }

/* ============================================================
   Attractions
   ============================================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.attraction-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.attraction-card .ph-fill {
  position: absolute; inset: 0;
  transition: transform 1.1s var(--ease-lux);
}
.attraction-card:hover .ph-fill { transform: scale(1.12); }
.attraction-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20, 43, 29,0.9) 10%, rgba(20, 43, 29,0.15) 60%);
}
.attraction-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px;
  z-index: 1;
}
.attraction-content .distance {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(233,201,91,0.9);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.attraction-content h4 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-wrap { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.8;
}
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: fade-up 0.8s var(--ease-lux); }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--navy);
  font-style: italic;
  margin: 12px 0 28px;
}
.testimonial-author { font-weight: 600; color: var(--blue); }
.testimonial-role { font-size: 0.85rem; color: #7c8ba0; margin-top: 2px; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(47,110,165,0.25);
  transition: all 0.4s var(--ease-lux);
}
.testimonial-dots button.is-active { background: var(--blue); width: 28px; border-radius: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(20, 43, 29, 0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--navy);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.4s var(--ease-lux);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-lux);
}
.faq-item.is-open .faq-answer { max-height: 220px; }
.faq-answer p {
  padding: 0 4px 26px;
  color: #4a5a49;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62ch;
}

/* ============================================================
   Story Cottage page
   ============================================================ */
.story-banner {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 190px 0 100px;
  text-align: center;
}
.story-banner .eyebrow { color: var(--yellow); justify-content: center; }
.story-banner h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 18px 0 22px;
}
.story-banner p {
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
}

.stories-list { padding-top: 110px; }
.story-card { max-width: 760px; margin: 0 auto; }
.story-index {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--blue);
}
.story-card h2 { margin: 12px 0 26px; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.story-card p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #3d4a3a;
}
.story-card p::first-letter {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--forest);
}
.story-divider {
  text-align: center;
  color: var(--yellow);
  font-size: 1.3rem;
  margin: 60px auto;
  opacity: 0.7;
}

.nav-links a.is-current { color: var(--yellow); }
.navbar.is-scrolled .nav-links a.is-current { color: var(--blue); }

/* ============================================================
   Booking CTA
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--gradient-blue);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.cta-section .glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,201,91,0.35), transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
.cta-section h2 { color: var(--white); max-width: 16ch; margin: 0 auto 20px; }
.cta-section p { color: rgba(255,255,255,0.82); max-width: 52ch; margin: 0 auto 20px; font-size: 1.08rem; }
.cta-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--yellow); margin-bottom: 36px;
}
.cta-urgency .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: dot-pulse 1.6s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; position: relative; z-index: 2; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name { color: var(--white); font-size: 1.6rem; }
.footer-brand .brand-sub { color: var(--sky); margin: 6px 0 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; margin-bottom: 20px; }
.footer h5 { color: var(--white); font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer ul li a:hover { color: var(--yellow); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s, transform 0.4s var(--ease-lux);
}
.footer-socials a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Floating elements
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6);
  z-index: 900;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 12px 40px -4px rgba(37,211,102,0.9); }
}

.sticky-mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  background: var(--white);
  padding: 14px 20px;
  box-shadow: 0 -8px 30px -10px rgba(20, 43, 29,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-lux);
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }
.sticky-mobile-cta .btn { width: 100%; }

/* reveal base state (JS/GSAP progressively enhances) */
[data-reveal] { opacity: 0; }
.no-js [data-reveal] { opacity: 1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .badges-row { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 1320px) {
  .nav-links, .nav-cta .btn-outline-navy, .nav-cta .lang-switch { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 860px) {
  .nav-cta .btn-primary { padding: 11px 20px; font-size: 0.82rem; }
  .gallery-masonry { columns: 2 220px; }
  .badges-row { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 160px 0 120px; }
  .sticky-mobile-cta { display: flex; }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1 100%; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
