/* ═══════════════���═══════════════════════════════════
   YELLOW POSTBOX — Style Sheet
   A serene homestay near Kochi, Kerala
   ═════════════════════��═════════════════════════════ */

/* ─── Custom Properties ─────────────────────────── */
:root {
  --color-bg: #FAF8F3;
  --color-bg-alt: #F2EFE8;
  --color-text: #2C2C2C;
  --color-text-secondary: #6B6560;
  --color-accent: #2D5A3D;
  --color-brand: #C9A84C;
  --color-brand-dark: #A88A35;
  --color-dark: #1A1A1A;
  --color-dark-lighter: #2A2A2A;
  --color-white: #FFFFFF;
  --color-rose: #C47A7A;
  --color-teal: #5B8A8A;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --header-height: 80px;
  --section-pad: clamp(80px, 12vw, 160px);
  --content-max: 1200px;
  --text-max: 680px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

address {
  font-style: normal;
}

::selection {
  background-color: var(--color-brand);
  color: var(--color-white);
}

/* ─── Typography ────────────────────────────────── */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

/* ─── Reveal Animation ────��─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HEADER
   ══���═════════════════════���══════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

.site-header:not(.scrolled)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.site-header.scrolled {
  background-color: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .logo,
.site-header.scrolled .nav-link,
.site-header.scrolled .hamburger-line {
  color: var(--color-text);
}

.site-header.scrolled .hamburger-line {
  background-color: var(--color-text);
}

.site-header.scrolled .btn-book {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-brand);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-book {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
}

.site-header.scrolled .btn-book:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 110;
}

.hamburger-line {
  width: 100%;
  height: 1.5px;
  background-color: var(--color-white);
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease, background-color 0.4s ease;
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═════════════════════════���═════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1);
  transition: transform 7s var(--ease-out);
}

.hero-slide.active img {
  transform: scale(1.08);
}

.hero-slide[data-ken="top-left"] img {
  transform-origin: top left;
}
.hero-slide[data-ken="bottom-right"] img {
  transform-origin: bottom right;
}
.hero-slide[data-ken="top-right"] img {
  transform-origin: top right;
}
.hero-slide[data-ken="center-left"] img {
  transform-origin: center left;
}
.hero-slide[data-ken="center"] img {
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.45) 80%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s var(--ease-out) 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 1s var(--ease-out) 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ══════════════════════��════════════════════════════ */
.about {
  padding: var(--section-pad) 24px;
  background-color: var(--color-bg);
}

.about-inner {
  max-width: var(--text-max);
  margin: 0 auto;
  text-align: center;
}

.decorative-leaf {
  color: var(--color-accent);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.about-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-text--accent {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--color-accent);
  margin-top: 0.5rem;
}

/* ══════════��════════════════════════���═══════════════
   HIGHLIGHTS
   ══���═══════════════════════���════════════════════════ */
.highlights {
  padding: 0 24px var(--section-pad);
  background-color: var(--color-bg);
}

.highlights-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 2rem 1rem;
}

.highlight-icon {
  color: var(--color-accent);
  margin: 0 auto 1.25rem;
}

.highlight-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.highlight-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Amenities Cloud */
.amenities {
  padding: 0 24px var(--section-pad);
  background-color: var(--color-bg);
}

.amenities-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.amenities .section-heading {
  margin-bottom: 2rem;
}

.amenities-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.amenity-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  background-color: var(--color-bg-alt);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.amenity-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: rgba(45, 90, 61, 0.05);
}

/* ══════════════════��════════════════════════════════
   GALLERY
   ══════════════════════════���════════════════════════ */
.gallery {
  padding: var(--section-pad) clamp(16px, 4vw, 48px);
  background-color: var(--color-bg-alt);
}

.gallery .section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ═══��═══════════════════════════════════════════════
   LOCATION
   ══════════════���══════════════════════════���═════════ */
.location {
  padding: var(--section-pad) 24px;
  background-color: var(--color-bg);
}

.location-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-address {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.distance-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
}

.distance-list li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.distance-list li strong {
  font-weight: 400;
  color: var(--color-text);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.btn-directions:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-directions svg {
  transition: transform 0.3s ease;
}

.btn-directions:hover svg {
  transform: translateX(4px);
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  background-color: var(--color-bg-alt);
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ════���════════════════════���═════════════════════════
   FOOTER
   ���═════════════════════���════════════════════════════ */
.site-footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 8vw, 100px) 24px 0;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: clamp(40px, 6vw, 60px);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-brand);
}

.footer-links svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.footer-address {
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════���══════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  animation: whatsappPulse 2s ease-in-out 2s 3;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ═══════════════════════════════════════════════════
   AIRBNB CARD
   ═══════════════════════════════════════════════════ */
/* Airbnb Card */
.airbnb-badge {
  padding: 0 24px clamp(40px, 6vw, 80px);
  background-color: var(--color-bg);
}

.airbnb-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.airbnb-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.airbnb-card-link {
  display: block;
  color: inherit;
}

.airbnb-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.airbnb-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.airbnb-card:hover .airbnb-card-image img {
  transform: scale(1.03);
}

.airbnb-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #222;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.airbnb-card-info {
  padding: 14px 16px 8px;
}

.airbnb-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.airbnb-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: #222;
}

.airbnb-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: #222;
  white-space: nowrap;
}

.airbnb-card-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: #717171;
  margin-bottom: 2px;
}

.airbnb-card-details {
  font-size: 0.88rem;
  font-weight: 300;
  color: #717171;
  margin-bottom: 6px;
}

.airbnb-card-superhost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #717171;
}

.btn-airbnb {
  display: block;
  margin: 6px 16px 16px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(to right, #E61E4D, #E31C5F, #D70466);
  padding: 12px 24px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.btn-airbnb:hover {
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) clamp(16px, 4vw, 48px);
  background-color: var(--color-bg-alt);
}

.testimonials-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header .section-heading {
  margin-bottom: 0.75rem;
}

.testimonials-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.testimonials-rating-stars {
  color: var(--color-brand);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 1.75rem 2rem;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-brand);
}

.testimonial-date {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
  margin-left: auto;
}

.testimonial-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  z-index: 210;
}

.lightbox-close:hover {
  color: var(--color-white);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  z-index: 210;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-white);
}

.lightbox-image-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ════════════════════════���══════════════════════════ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay .mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.mobile-menu-overlay .mobile-nav-link:hover {
  color: var(--color-brand);
}

.mobile-menu-overlay .btn-book-mobile {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 36px;
  transition: all 0.3s ease;
}

.mobile-menu-overlay .btn-book-mobile:hover {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

/* ═════════════════════════��═════════════════════════
   BODY SCROLL LOCK
   ══════════���════════════════════════════════════════ */
body.no-scroll {
  overflow: hidden;
}

/* ═══���═════════════════════��═════════════════════════
   RESPONSIVE — Tablet
   ══════════��═════════════════��══════════════════════ */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-map {
    height: 320px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ══��════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .highlight-card {
    padding: 1.5rem 0.5rem;
  }

  .gallery-grid {
    columns: 2;
    column-gap: 10px;
  }

  .gallery-item {
    margin-bottom: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-date {
    margin-left: 0;
    width: 100%;
  }

  .airbnb-badge-inner {
    padding: 2rem 1.5rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }
}

/* ════════════════════��══════════════════════════════
   REDUCED MOTION
   ═���══════════════��══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide img {
    transition: none;
    transform: none;
  }

  .scroll-line {
    animation: none;
    opacity: 0.6;
  }
}
