/* ==========================================
   NALA VILLAS — STYLES.CSS
   Palette: Slate Grey + Warm Gold + Cream
   Fonts:   Playfair Display + Nunito
   Different from: Cormorant+DM Sans (Loft Break)
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ——— Variables ——— */
:root {
  --dark:        #3A4048;
  --dark-mid:    #54606A;
  --teal:        #7A8290;
  --teal-light:  #9AA3AB;
  --gold:        #C89C5A;
  --gold-light:  #DDB97E;
  --accent:      #C89C5A;
  --highlight:   #DDB97E;
  --cream:       #E8E2D2;
  --cream-dark:  #DDD6C8;
  --bg:          #F0EBE3;
  --white:       #FFFFFF;
  --text:        #3A4048;
  --text-mid:    #54606A;
  --text-light:  #848E96;
  --border:      rgba(58,64,72,0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --nav-height: 70px;
  --max-width:  1200px;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;

  --shadow-sm:  0 2px 10px rgba(43,48,40,0.07);
  --shadow-md:  0 6px 28px rgba(43,48,40,0.12);
  --shadow-lg:  0 18px 56px rgba(43,48,40,0.16);

  --ease: 0.32s ease;
}

/* ==========================================
   BASE
========================================== */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--text-mid); }

/* ==========================================
   UTILITY
========================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section           { padding: var(--space-xl) 0; }
.section--alt      { background: var(--bg); }
.section--cream    { background: var(--cream-dark); }
.section--dark     { background: var(--dark); }
.text-center       { text-align: center; }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,0.72); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}
.section--dark .section-label { color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(43,48,40,0.35);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   NAVBAR
========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}

.navbar--transparent { background: transparent; }

.navbar--scrolled {
  background: var(--dark);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right var(--ease);
  border-radius: 2px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-cta {
  padding: 0.6rem 1.4rem !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-radius: var(--radius-sm) !important;
  letter-spacing: 0.04em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }

/* ==========================================
   HERO (HOME)
========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43,48,40,0.88) 0%,
    rgba(43,48,40,0.35) 50%,
    rgba(43,48,40,0.08) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 7rem 0 5rem;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bobble 2.2s infinite ease-in-out;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================
   STATS BAR
========================================== */
.stats-bar {
  background: var(--dark-mid);
  padding: 1.75rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-top: 0.3rem;
}

/* ==========================================
   INTRO SECTION
========================================== */
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro__text h2 { margin-bottom: 1.25rem; }
.intro__text p  { margin-bottom: 1rem; }
.intro__text .btn { margin-top: 1.5rem; }

.intro__media {
  position: relative;
}

.intro__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.intro__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro__img-main:hover img { transform: scale(1.04); }

.intro__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.intro__badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
}

/* ==========================================
   HIGHLIGHTS
========================================== */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
  display: block;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.highlight-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(107,123,100,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.highlight-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.highlight-card p  { font-size: 0.88rem; line-height: 1.65; }

.highlight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================
   PHOTO STRIP
========================================== */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 540px;
}

.photo-strip__main {
  grid-row: span 2;
  overflow: hidden;
}

.photo-strip__item {
  overflow: hidden;
}

.photo-strip__main img,
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-strip__main:hover img,
.photo-strip__item:hover img { transform: scale(1.05); }

/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background var(--ease);
}

.review-card:hover { background: rgba(255,255,255,0.11); }

.review-card__platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.review-card__stars {
  color: #FFCA3A;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
}

.review-card__date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ==========================================
   CTA BANNER
========================================== */
.cta-banner {
  background: var(--teal);
  padding: var(--space-lg) 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner__text h2 { color: var(--white); }
.cta-banner__text p  { color: rgba(255,255,255,0.78); max-width: 50ch; }

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================
   PAGE HERO (Inner pages)
========================================== */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,48,40,0.70);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.page-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.page-hero__content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.breadcrumb a {
  color: var(--teal);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--dark); }

/* ==========================================
   ABOUT PAGE
========================================== */
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__text h2 { margin-bottom: 1.25rem; }
.about-story__text p  { margin-bottom: 1rem; }

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.chip {
  padding: 0.45rem 1.1rem;
  background: rgba(107,123,100,0.1);
  border: 1.5px solid rgba(107,123,100,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
}

/* Location info */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.location-fact:first-child { border-top: 1px solid var(--border); }

.location-fact__icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-fact h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.location-fact p  { font-size: 0.88rem; margin: 0; }

.location-aside {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: rgba(255,255,255,0.8);
}

.location-aside h3 { color: var(--white); margin-bottom: 1.5rem; }

.nearby-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.nearby-item:last-child { border-bottom: none; }

.nearby-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.nearby-item__name { flex: 1; color: rgba(255,255,255,0.85); font-weight: 600; }
.nearby-item__dist { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ==========================================
   ROOMS PAGE
========================================== */
.villa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease);
  margin-bottom: 3rem;
}

.villa-card:hover { box-shadow: var(--shadow-lg); }

.villa-card__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.villa-card__layout.reverse { direction: rtl; }
.villa-card__layout.reverse > * { direction: ltr; }

.villa-card__image {
  overflow: hidden;
  aspect-ratio: 1;
}

.villa-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.villa-card:hover .villa-card__image img { transform: scale(1.04); }

.villa-card__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.villa-card__body h3 { margin-bottom: 0.75rem; }
.villa-card__body > p { margin-bottom: 1.5rem; }

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  background: var(--bg);
  border-radius: 100px;
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.villa-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.villa-price__amt {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

.villa-price__unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.villa-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Full amenities grid */
.amenities-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.amenity-item__icon { font-size: 1.3rem; flex-shrink: 0; }
.amenity-item__name { font-size: 0.88rem; font-weight: 700; color: var(--text); }

/* ==========================================
   GALLERY PAGE
========================================== */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.gallery-masonry {
  columns: 3;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  display: block;
  background: var(--bg);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,48,40,0.5);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay svg {
  width: 40px;
  height: 40px;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  z-index: 10;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  z-index: 10;
}

.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-layout .container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; max-width: 42ch; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(107,123,100,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-body);
  margin-bottom: 0.2rem;
}

.contact-detail p { font-size: 0.93rem; margin: 0; color: var(--text); }

.contact-detail a { color: var(--teal); }
.contact-detail a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: background var(--ease), transform var(--ease);
}

.social-link:hover {
  background: var(--teal);
  transform: scale(1.1);
}

.booking-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.booking-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--ease);
  color: var(--text);
  background: var(--white);
}

.booking-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.booking-link__icon { font-size: 1.3rem; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: 0.9rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit { width: 100%; justify-content: center; padding: 1rem 2rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; color: var(--teal); }
.form-success p  { font-size: 0.95rem; }

/* Map */
.map-section { margin-top: 4rem; }

.map-section .container h3 { margin-bottom: 1.5rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: var(--dark);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.footer__brand-logo span { color: var(--gold); }

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 30ch;
  line-height: 1.75;
}

.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background var(--ease), color var(--ease);
}

.footer__social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col ul li { margin-bottom: 0.6rem; }

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}
.footer__bottom-links a:hover { color: var(--white); }

/* ==========================================
   POLICY GRID (Rooms Page)
========================================== */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
  .highlights__grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid      { grid-template-columns: 1fr 1fr; }
  .footer__grid            { grid-template-columns: 1fr 1fr; }
  .amenities-all           { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry         { columns: 2; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4.5rem; --space-lg: 2.5rem; }

  .nav-links   { display: none; }
  .hamburger   { display: flex; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  .intro .container,
  .about-story .container,
  .location-grid,
  .contact-layout .container { grid-template-columns: 1fr; }

  .intro .container,
  .about-story .container { gap: 3rem; }

  .intro__badge { bottom: -1rem; left: 50%; transform: translateX(-50%); }

  .villa-card__layout,
  .villa-card__layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .villa-card__image { aspect-ratio: 16/9; }

  .photo-strip { height: 300px; grid-template-columns: 1fr 1fr; }
  .photo-strip__main { grid-row: span 1; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__header { flex-direction: column; align-items: flex-start; }

  .cta-banner .container { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .highlights__grid { grid-template-columns: 1fr; }
  .amenities-all    { grid-template-columns: 1fr 1fr; }
  .gallery-masonry  { columns: 1; }
  .hero__actions    { flex-direction: column; align-items: flex-start; }
  .photo-strip      { display: none; }
  .footer__grid     { grid-template-columns: 1fr; }
}

/* Logo image in navbar + footer */
.nav-logo__img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}
