/* ================================================
   AYATANA SEA VILLAS
   Palette: Chocolate Brown + Gold + Warm Amber
   Fonts: Syne (headings) + Manrope (body)
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark:      #3A1F06;
  --dark-alt:  #4D2A0A;
  --gold:      #C9A552;
  --gold-lt:   #DEC16E;
  --accent:    #C9A552;
  --highlight: #DEC16E;
  --teal:      #8B6B3D;
  --teal-lt:   #A88955;
  --cream:     #F7F2E8;
  --cream-alt: #EDE8DC;
  --white:     #FFFFFF;
  --text:      #1E1207;
  --text-md:   #5C4228;
  --text-lt:   #9B7B58;
  --border:    #DDD3C0;

  --font-head: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  32px;

  --sh-sm: 0 2px 12px rgba(43,26,14,0.1);
  --sh-md: 0 8px 32px rgba(43,26,14,0.14);
  --sh-lg: 0 20px 56px rgba(43,26,14,0.2);

  --ease: 0.3s ease;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--cream);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

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-head); line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem);  font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ── */
.container  { width: 90%; max-width: 1200px; margin: 0 auto; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }

.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 99px;
  margin: 0.9rem 0 1.8rem;
}
.divider--center { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--r-sm);
  border: none; cursor: pointer;
  transition: all var(--ease);
}
.btn-gold  { background: var(--gold);  color: var(--white); }
.btn-gold:hover  { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn-teal  { background: var(--teal);  color: var(--white); }
.btn-teal:hover  { background: var(--teal-lt); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; padding: 0 5%;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo__img {
  height: 46px; width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-lt); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  background: var(--gold); color: var(--white);
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--dark);
  padding: 1.5rem 5% 2rem;
  flex-direction: column; gap: 0;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--ease);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold-lt); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: calc(var(--nav-h) + 14px) 5% 14px;
  background: var(--cream-alt);
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-lt);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--dark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(43,26,14,0.85) 0%, rgba(43,26,14,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%;
  max-width: 700px;
  color: var(--white);
}
.hero-kicker {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-villas {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(43,26,14,0.88);
  backdrop-filter: blur(8px);
  padding: 1.2rem 5%;
  display: flex; gap: 0;
}
.hero-villa-tab {
  flex: 1; text-align: center;
  padding: 0.8rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background var(--ease);
}
.hero-villa-tab:last-child { border-right: none; }
.hero-villa-tab:hover { background: rgba(200,149,58,0.15); }
.hero-villa-tab h4 {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold-lt); margin-bottom: 0.2rem;
}
.hero-villa-tab p {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── Page Hero ── */
.page-hero {
  min-height: 42vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding-bottom: 3rem;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,26,14,0.92) 0%, rgba(43,26,14,0.5) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 5%;
  color: var(--white);
  width: 100%;
  margin-top: var(--nav-h);
  padding-top: 4rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin: 0; max-width: 560px; }

/* ── Feature Bar ── */
.feature-bar {
  background: var(--dark-alt);
  padding: 1.4rem 0;
}
.feature-bar-inner {
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 1rem;
}
.feat-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.feat-item svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ── Highlights ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.highlight-card-img {
  width: 100%; aspect-ratio: 16/10;
  overflow: hidden;
}
.highlight-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.highlight-card:hover .highlight-card-img img { transform: scale(1.05); }
.highlight-card-body { padding: 1.6rem 1.5rem; }
.highlight-card-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.highlight-card-body p  { font-size: 0.95rem; color: var(--text-md); margin: 0; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--ease), color var(--ease);
}
.card-link:hover { gap: 0.6rem; color: var(--dark); }
.card-link svg { width: 13px; height: 13px; fill: currentColor; }

/* ── About Intro ── */
.about-intro { background: var(--cream-alt); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-intro-imgs { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 50%; aspect-ratio: 1;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-md);
  border: 5px solid var(--white);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── Philosophy Band ── */
.philosophy-band {
  background: var(--dark);
  padding: 90px 5%;
  text-align: center;
}
.philosophy-band h2 { color: var(--white); margin-bottom: 1rem; }
.philosophy-band .quote {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  max-width: 780px; margin: 0 auto 1.8rem;
  line-height: 1.75;
}
.philosophy-band .divider { background: var(--gold); }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 1.4rem; }
.tag {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(200,149,58,0.4);
  border-radius: 99px;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-lt);
}

/* ── Villas Section ── */
.villas-section { background: var(--cream); }
.villas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.villa-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.villa-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }
.villa-card-img {
  width: 100%; aspect-ratio: 16/11;
  overflow: hidden; position: relative;
}
.villa-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.villa-card:hover .villa-card-img img { transform: scale(1.06); }
.villa-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 0.3rem 0.8rem; border-radius: 99px;
}
.villa-card-body { padding: 1.8rem; }
.villa-card-body h3 { margin-bottom: 0.5rem; }
.villa-card-body > p { font-size: 0.97rem; color: var(--text-md); margin-bottom: 1.2rem; }
.villa-specs {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  margin-bottom: 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.villa-spec {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; color: var(--text-md);
}
.villa-spec svg { width: 15px; height: 15px; fill: var(--gold); }
.villa-amenities { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
.villa-amen {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 600;
  padding: 0.25rem 0.65rem; border-radius: 99px;
  background: var(--cream); border: 1px solid var(--border);
  color: var(--text-md);
}

/* ── Experiences ── */
.experiences-section { background: var(--cream-alt); }
.experiences-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.experience-card {
  border-radius: var(--r-md); overflow: hidden;
  position: relative; min-height: 300px;
  display: flex; align-items: flex-end;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease);
}
.experience-card:hover { transform: translateY(-5px); }
.experience-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.experience-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,26,14,0.9) 0%, rgba(43,26,14,0.2) 60%, transparent 100%);
}
.experience-card-body {
  position: relative; z-index: 2;
  padding: 1.5rem;
  color: var(--white);
}
.experience-card-body h3 { color: var(--white); margin-bottom: 0.3rem; font-size: 1.2rem; }
.experience-card-body p  { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; }

/* ── Location ── */
.location-section { background: var(--cream); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.location-items { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.location-item  { display: flex; gap: 1rem; align-items: flex-start; }
.location-item svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.location-item h4 {
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.2rem;
}
.location-item p { font-size: 0.96rem; color: var(--text-md); margin: 0; }
.map-wrap {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-md); min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── Gallery ── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: var(--r-sm);
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
  min-height: 220px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(43,26,14,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.gallery-item__overlay svg {
  width: 38px; height: 38px; fill: var(--white);
  opacity: 0; transform: scale(0.8);
  transition: opacity var(--ease), transform var(--ease);
}
.gallery-item:hover .gallery-item__overlay           { background: rgba(43,26,14,0.4); }
.gallery-item:hover .gallery-item__overlay svg       { opacity: 1; transform: scale(1); }
.gallery-item__label {
  position: absolute; bottom: 0.7rem; left: 0.7rem;
  font-family: var(--font-head); font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.32);
  padding: 0.22rem 0.55rem; border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; }
.lightbox-img {
  max-width: 88vw; max-height: 82vh;
  object-fit: contain; border-radius: var(--r-sm);
}
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  background: none; border: none;
  color: rgba(255,255,255,0.7); font-size: 2.2rem;
  cursor: pointer; line-height: 1;
  transition: color var(--ease);
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(43,26,14,0.6);
  border: none; color: var(--white);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--ease);
  backdrop-filter: blur(6px);
}
.lightbox-prev { left:  -3.8rem; }
.lightbox-next { right: -3.8rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; fill: currentColor; }
.lightbox-counter {
  margin-top: 1rem;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.5);
}
.lightbox-caption {
  font-family: var(--font-head); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* ── Reviews / Social Proof ── */
.reviews-section { background: var(--cream-alt); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-md); padding: 2rem;
  box-shadow: var(--sh-sm); position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.4rem;
  font-size: 5rem; line-height: 1;
  font-family: Georgia, serif;
  color: var(--teal-lt); opacity: 0.3;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.review-text {
  font-style: italic; font-size: 1rem;
  color: var(--text-md); margin-bottom: 1.2rem;
  padding-top: 1rem;
}
.review-author {
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.15rem;
}
.review-source {
  font-family: var(--font-head); font-size: 0.66rem;
  letter-spacing: 0.04em; color: var(--text-lt);
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #9A6B1A 100%);
  padding: 80px 5%; text-align: center; color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.contact-item  { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(200,149,58,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.c-text h4 {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.2rem;
}
.c-text p, .c-text a {
  font-size: 0.97rem; color: var(--text-md); margin: 0;
  transition: color var(--ease);
}
.c-text a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white); border-radius: var(--r-md);
  padding: 2.4rem; box-shadow: var(--sh-md);
}
.contact-form-box h3 { margin-bottom: 0.3rem; }
.contact-form-box > p { font-size: 0.97rem; color: var(--text-md); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.form-group label {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-md);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 1rem;
  color: var(--text); background: var(--cream);
  outline: none; transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(62,155,151,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* FAQ */
.faq-section { background: var(--cream-alt); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 1.2rem; }
.faq-item {
  background: var(--white); border-radius: var(--r-sm);
  padding: 1.5rem 1.6rem; box-shadow: var(--sh-sm);
}
.faq-item h4 { margin-bottom: 0.5rem; font-size: 1rem; color: var(--dark); }
.faq-item p  { font-size: 0.96rem; color: var(--text-md); margin: 0; }

/* Booking platforms */
.booking-platforms { margin-top: 2.2rem; }
.booking-platforms h4 {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-md);
  margin-bottom: 1rem;
}
.booking-btns { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.booking-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-md);
  transition: all var(--ease);
}
.booking-btn:hover { border-color: var(--gold); color: var(--gold); }
.booking-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ── About full page ── */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.value-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem 1.6rem; text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease);
}
.value-card:hover { transform: translateY(-4px); }
.v-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(200,149,58,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.v-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p  { font-size: 0.93rem; color: var(--text-md); margin: 0; }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding: 0 5% 3rem;
}
.footer-brand h3 {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--white); margin-bottom: 0.8rem;
}
.footer-logo {
  height: 52px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.4rem; }
.social-links { display: flex; gap: 0.65rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--ease);
}
.social-links a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--white); transform: translateY(-3px);
}
.social-links svg { width: 17px; height: 17px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-head); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.58);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-lt); }

.f-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.85rem; }
.f-contact-item svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.f-contact-item span { font-size: 0.87rem; color: rgba(255,255,255,0.58); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p {
  font-family: var(--font-head); font-size: 0.7rem;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.3); margin: 0;
}

/* ── Animations ── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd-1 { transition-delay: 0.1s; }
.fd-2 { transition-delay: 0.2s; }
.fd-3 { transition-delay: 0.3s; }
.fd-4 { transition-delay: 0.4s; }
.fd-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { gap: 3rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-intro-grid, .about-story-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro-imgs { order: -1; }
  .about-img-float { right: -1rem; bottom: -1rem; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide  { grid-column: span 1; }
  .hero-villas { flex-wrap: wrap; }
  .hero-villa-tab { flex: 0 0 50%; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .lightbox-prev { left: -2.5rem; }
  .lightbox-next { right: -2.5rem; }
  .hero-villa-tab { flex: 0 0 100%; }
  .faq-grid { grid-template-columns: 1fr; }
}
