/* =============================================
   VILLA ANUSHKA KOH SAMUI - MAIN STYLESHEET
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --charcoal: #080807;
  --dark: #141210;
  --sand: #1c1917;
  --sand-light: #0d0c0a;
  --gold: #c9a870;
  --gold-light: #dfbf88;
  --teal: #4a9ebb;
  --teal-light: #6ab8d4;
  --white: #ffffff;
  --cream: #ede5d8;
  --grey-text: #8a8272;
  --border: rgba(201, 168, 112, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Raleway', sans-serif;
  --transition: all 0.35s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-hover: 0 16px 60px rgba(0,0,0,0.7);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--cream);
  background: var(--sand-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; line-height: 1.85; color: var(--grey-text); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* --- Layout Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: #000000; color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p { color: rgba(237,229,216,0.65); }
.section--sand { background: var(--sand); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,147,90,0.4); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { background: var(--white); color: var(--charcoal); }
.btn--outline-dark {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(237, 229, 216, 0.35);
}
.btn--outline-dark:hover { background: rgba(237, 229, 216, 0.08); color: var(--cream); border-color: var(--cream); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav--scrolled {
  background: rgba(8, 7, 6, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--gold); }
.nav__book {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav__book:hover { background: var(--gold-light) !important; }
.nav__book::after { display: none !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,7,6,0.88) 0%,
    rgba(8,7,6,0.45) 40%,
    rgba(8,7,6,0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 2rem 0;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero__content .eyebrow { color: var(--gold-light); }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* =============================================
   AWARDS / RATINGS BAR
   ============================================= */
.ratings-bar {
  background: var(--charcoal);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.rating-item__score {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.rating-item__info { display: flex; flex-direction: column; }
.rating-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.rating-item__platform {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.ratings-divider {
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,0.15);
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro {
  padding: 7rem 0;
  background: var(--sand-light);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.intro__text .eyebrow { margin-bottom: 1.5rem; }
.intro__text h2 { margin-bottom: 1.5rem; }
.intro__text p { margin-bottom: 1.5rem; }
.intro__text p:last-of-type { margin-bottom: 2.5rem; }
.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.intro__images {
  position: relative;
  height: 600px;
}
.intro__img-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  height: 480px;
  object-fit: cover;
}
.intro__img-inset {
  position: absolute;
  bottom: 0; left: 0;
  width: 50%;
  height: 260px;
  object-fit: cover;
  border: none;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features { padding: 5rem 0; background: var(--sand); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  background: var(--sand);
  border: 1px solid rgba(201, 168, 112, 0.08);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.feature-card p { font-size: 0.9rem; }

/* =============================================
   FULL-WIDTH IMAGE WITH TEXT OVERLAY
   ============================================= */
.banner {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.62);
}
.banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 750px;
  margin: 0 auto;
  padding: 0 2rem;
}
.banner__content .eyebrow { color: var(--gold-light); }
.banner__content h2 { color: var(--white); margin: 1rem 0 1.5rem; }
.banner__content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* =============================================
   ROOMS / VILLA SECTIONS
   ============================================= */
.villa-section { padding: 6rem 0; }
.villa-section:nth-child(even) { background: var(--sand); }
.villa-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
}
.villa-block--reverse .villa-block__image { order: 2; }
.villa-block--reverse .villa-block__text { order: 1; }
.villa-block__image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}
.villa-block__text {
  padding: 4rem 4rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.villa-block--reverse .villa-block__text { background: var(--sand); }
.villa-block__text h3 { margin-bottom: 1rem; }
.villa-block__text p { margin-bottom: 1.5rem; }
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.amenity-list li {
  font-size: 0.9rem;
  color: var(--grey-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.amenity-list li::before {
  content: '-';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-grid__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,28,30,0);
  transition: var(--transition);
}
.gallery-grid__item:hover::after { background: rgba(28,28,30,0.15); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section { padding: 6rem 0; background: var(--charcoal); }
.reviews-section .eyebrow { color: var(--gold-light); }
.reviews-section h2 { color: var(--white); margin-bottom: 0.5rem; }
.reviews-section > .container > p { color: rgba(255,255,255,0.6); margin-bottom: 3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  transition: var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.review-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.review-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.review-card__author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.review-card__platform {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}
.platforms-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.platform-badge { text-align: center; }
.platform-badge__score {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.platform-badge__name {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
}
.platform-badge__count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  display: block;
}

/* =============================================
   EXPERIENCES
   ============================================= */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.experience-card {
  background: var(--sand);
  border: 1px solid rgba(201, 168, 112, 0.08);
  overflow: hidden;
  transition: var(--transition);
}
.experience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.experience-card__img {
  height: 250px;
  overflow: hidden;
}
.experience-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-card:hover .experience-card__img img { transform: scale(1.05); }
.experience-card__body {
  padding: 1.75rem;
}
.experience-card__body .eyebrow { margin-bottom: 0.5rem; }
.experience-card__body h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.experience-card__body p { font-size: 0.9rem; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--sand);
  border: 1px solid rgba(201, 168, 112, 0.08);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__img {
  height: 220px;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; }
.blog-card__body .eyebrow { margin-bottom: 0.5rem; font-size: 0.65rem; }
.blog-card__body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card__body p { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-card__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-card__link::after { content: '→'; transition: transform 0.2s; }
.blog-card:hover .blog-card__link::after { transform: translateX(4px); }

/* =============================================
   LOCATION
   ============================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.distance-list { margin-top: 1.5rem; }
.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.distance-item__name { color: var(--cream); font-weight: 400; }
.distance-item__dist { color: var(--gold); font-weight: 600; font-size: 0.85rem; }
.map-container {
  background: var(--sand);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   CONTACT / BOOKING
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 2rem; }
.contact-info p { margin-bottom: 0.75rem; font-size: 0.9rem; }
.contact-info a { color: var(--gold); }
.booking-form {
  background: var(--dark);
  padding: 3rem;
  border: 1px solid rgba(201, 168, 112, 0.12);
  box-shadow: var(--shadow);
}
.booking-form h3 { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 168, 112, 0.15);
  background: var(--sand-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: rgba(237, 229, 216, 0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--sand);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.55) 0%, rgba(8,7,6,0.05) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero__content .eyebrow { color: var(--gold-light); }
.page-hero__content h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #030302;
  color: rgba(237,229,216,0.5);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand .nav__logo { display: inline-flex; margin-bottom: 1rem; }
.footer__brand .nav__logo img { height: 56px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom-links { display: flex; gap: 2rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4, .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro__images { height: 400px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 4rem 0; }
  .grid-2, .grid-3, .villa-block { grid-template-columns: 1fr; }
  .villa-block--reverse .villa-block__image { order: 0; }
  .villa-block--reverse .villa-block__text { order: 0; }
  .villa-block__text { padding: 2.5rem 2rem; }
  .villa-block__image img { min-height: 300px; }
  .reviews-grid, .blog-grid, .experiences-grid, .features__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid__item:first-child { grid-column: span 2; }
  .ratings-bar { gap: 1.5rem; }
  .ratings-divider { display: none; }
  .platforms-bar { gap: 2rem; }
  .contact-grid, .location-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-form { padding: 2rem 1.5rem; }
  .intro__stats { grid-template-columns: repeat(3, 1fr); }
  .page-hero { height: 45vh; }
  .banner { background-attachment: scroll; }
  .banner .banner__bg { background-attachment: scroll; }
}
