/* ==========================================================================
   HimVest Realty & Consulting — main stylesheet
   Bold / vibrant design system
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Rich, saturated brand palette */
  --forest-dark: #06402B;   /* deep jewel emerald — dark section base */
  --forest-mid:  #0E7A4E;   /* vivid mid emerald */
  --forest-lt:   #17C978;   /* bright emerald accent */
  --stone:       #FFE8B8;   /* warm golden sand */
  --stone-lt:    #FFF7E9;   /* warm cream page background */
  --sunrise:     #FF4B1F;   /* vivid orange-red — primary CTA */
  --sunrise-lt:  #FF8A50;   /* lighter orange, for dark backgrounds */
  --sky-dusk:    #3E1F92;   /* deep violet — secondary dark tone */
  --gold:        #FFC02E;   /* accent gold */
  --gold-dark:   #E0A100;
  --magenta:     #E91E8C;   /* loud accent pink/magenta */
  --magenta-dark:#B0116A;
  --ink:         #17100A;   /* near-black warm ink */
  --ink-soft:    #6B5B4A;   /* warm soft text */
  --white:       #ffffff;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 3px 12px rgba(23,16,10,0.10);
  --shadow-md: 0 14px 34px rgba(255,75,31,0.20);
  --shadow-lg: 0 28px 64px rgba(233,30,140,0.25);
  --maxw: 1200px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--stone-lt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; margin: 0 0 .5em; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 92px 0; }
.section-tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sunrise), var(--gold));
  display: inline-block;
}
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: linear-gradient(90deg, var(--gold), var(--sunrise-lt)); }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
h2.h-lg { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 800; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .25s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn-primary {
  background: linear-gradient(135deg, var(--sunrise), var(--magenta));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(233,30,140,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--magenta), var(--sunrise));
  box-shadow: 0 18px 36px rgba(233,30,140,.45);
}
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--gold); color: var(--ink); }
.btn-outline { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.6); color: var(--white); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,.18); border-color: var(--gold); }
.btn-outline-dark { background: transparent; border-color: var(--forest-mid); color: var(--ink); }
.btn-outline-dark:hover { background: linear-gradient(135deg, var(--forest-mid), var(--forest-dark)); color: var(--white); border-color: transparent; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,247,233,0.90);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--sunrise), var(--gold), var(--magenta)) 1;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 700;
  font-size: .93rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sunrise), var(--magenta));
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--magenta-dark); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; border-radius: 2px; background: var(--ink); }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--stone-lt); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; box-shadow: var(--shadow-md); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: all .25s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(23,16,10,.08); }
  .nav-toggle { display: flex; }
  .nav-cta .btn span.hide-mobile { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(233,30,140,.28) 0%, rgba(6,64,43,.55) 48%, rgba(6,64,43,.95) 100%);
}
.hero::after {
  content: "";
  position: absolute; top: -140px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,46,.35), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 90px 24px 56px; max-width: var(--maxw); margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(255,192,46,.22), rgba(233,30,140,.22));
  border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 900; color: var(--white); max-width: 780px; margin-bottom: 18px; letter-spacing: -0.02em; }
.hero .accent {
  background: linear-gradient(90deg, var(--gold), var(--sunrise-lt));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  color: transparent;
}
.hero p.lead { font-size: 1.18rem; max-width: 620px; color: rgba(255,255,255,.92); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.24);
  padding-top: 28px;
}
.hero-stats .stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.35rem, 2vw, 1.9rem); color: var(--gold); }
.hero-stats .stat span { font-size: .82rem; color: rgba(255,255,255,.8); }
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

/* Inner page hero (smaller) */
.hero-inner-page { min-height: 56vh; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); font-weight: 700; }

/* Cards / grid */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.usp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 5px solid var(--forest-lt);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.usp-card:hover { transform: translateY(-7px) rotate(-0.3deg); box-shadow: var(--shadow-md); }
.usp-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--forest-lt), var(--forest-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(14,122,78,.28);
}
/* Cycle vivid colors across usp-cards for a loud, varied grid */
.usp-card:nth-child(6n+1) { border-top-color: var(--forest-lt); }
.usp-card:nth-child(6n+1) .usp-icon { background: linear-gradient(135deg, var(--forest-lt), var(--forest-mid)); box-shadow: 0 8px 18px rgba(14,122,78,.3); }
.usp-card:nth-child(6n+2) { border-top-color: var(--sunrise); }
.usp-card:nth-child(6n+2) .usp-icon { background: linear-gradient(135deg, var(--sunrise), var(--sunrise-lt)); box-shadow: 0 8px 18px rgba(255,75,31,.32); }
.usp-card:nth-child(6n+3) { border-top-color: var(--magenta); }
.usp-card:nth-child(6n+3) .usp-icon { background: linear-gradient(135deg, var(--magenta), var(--magenta-dark)); box-shadow: 0 8px 18px rgba(233,30,140,.32); }
.usp-card:nth-child(6n+4) { border-top-color: var(--gold); }
.usp-card:nth-child(6n+4) .usp-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 8px 18px rgba(255,192,46,.35); }
.usp-card:nth-child(6n+5) { border-top-color: var(--sky-dusk); }
.usp-card:nth-child(6n+5) .usp-icon { background: linear-gradient(135deg, var(--sky-dusk), var(--magenta-dark)); box-shadow: 0 8px 18px rgba(62,31,146,.32); }
.usp-card:nth-child(6n+6) { border-top-color: var(--forest-mid); }
.usp-card:nth-child(6n+6) .usp-icon { background: linear-gradient(135deg, var(--forest-mid), var(--sky-dusk)); box-shadow: 0 8px 18px rgba(14,122,78,.3); }
.usp-card h3 { font-size: 1.12rem; }
.usp-card p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* Project feature card */
.project-card { display: flex; flex-direction: column; }
.project-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover .thumb img { transform: scale(1.07); }
.project-card .tag {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--magenta), var(--sunrise));
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(233,30,140,.4);
}
.project-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-card .loc { display: flex; align-items: center; gap: 6px; font-size: .84rem; color: var(--ink-soft); margin-bottom: 10px; font-weight: 600; }
.project-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.project-card .desc { color: var(--ink-soft); font-size: .93rem; flex: 1; }
.project-facts { display: flex; gap: 18px; margin: 16px 0; flex-wrap: wrap; }
.project-facts div { font-size: .82rem; }
.project-facts b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; color: var(--sunrise); }
.project-facts span { color: var(--ink-soft); }

/* Attractions carousel-ish strip */
.attraction-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.attraction-scroll::-webkit-scrollbar { height: 8px; }
.attraction-scroll::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--sunrise), var(--magenta)); border-radius: 8px; }
.attraction-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.attraction-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.attraction-card img { width: 100%; height: 100%; object-fit: cover; }
.attraction-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(6,64,43,.95), transparent);
  color: var(--white);
  padding: 20px 16px 16px;
  border-top: 3px solid var(--gold);
}
.attraction-card .cap h4 { color: var(--white); font-size: 1.02rem; margin: 0 0 4px; }
.attraction-card .cap span { font-size: .78rem; color: rgba(255,255,255,.8); }

/* Section variants */
.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--forest-dark) 0%, var(--sky-dusk) 100%);
  color: var(--white);
}
.section-dark::before {
  content: ""; position: absolute; top: -130px; right: -110px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,46,.25), transparent 70%);
  pointer-events: none;
}
.section-dark::after {
  content: ""; position: absolute; bottom: -150px; left: -110px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,.22), transparent 70%);
  pointer-events: none;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-head p { color: rgba(255,255,255,.75); }
.section-stone { background: linear-gradient(180deg, var(--stone) 0%, var(--stone-lt) 100%); }

/* Process timeline */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }
.timeline .step { position: relative; padding-top: 8px; }
.timeline .step .num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sunrise); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.timeline .step:nth-child(1) .num { background: linear-gradient(135deg, var(--sunrise), var(--sunrise-lt)); }
.timeline .step:nth-child(2) .num { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--ink); }
.timeline .step:nth-child(3) .num { background: linear-gradient(135deg, var(--forest-lt), var(--forest-mid)); }
.timeline .step:nth-child(4) .num { background: linear-gradient(135deg, var(--magenta), var(--magenta-dark)); }
.timeline .step:nth-child(5) .num { background: linear-gradient(135deg, var(--sky-dusk), var(--magenta-dark)); }
.timeline .step h4 { font-size: 1rem; }
.timeline .step p { font-size: .85rem; color: rgba(255,255,255,.72); }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 720px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stats-band .stat { text-align: center; }
.stats-band .stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; background: linear-gradient(90deg, var(--sunrise), var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-band .stat span { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.section-dark .stats-band .stat span { color: rgba(255,255,255,.7); }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--forest-lt);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-card:nth-child(2) { border-left-color: var(--sunrise); }
.testimonial-card:nth-child(3) { border-left-color: var(--magenta); }
.testimonial-card .quote { font-size: .98rem; color: var(--ink); margin-bottom: 18px; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--forest-lt), var(--sky-dusk)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head); }
.who b { display: block; font-size: .92rem; }
.who span { font-size: .78rem; color: var(--ink-soft); }
.stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; font-size: 1.05rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--magenta), var(--sunrise));
  border-radius: var(--radius-lg);
  padding: 58px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,46,.45), transparent 70%);
}
.cta-banner::before {
  content: "";
  position: absolute; left: -70px; bottom: -70px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,201,120,.35), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner > div:first-child { position: relative; z-index: 1; }

/* Forms */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border-top: 5px solid; border-image: linear-gradient(90deg, var(--sunrise), var(--gold), var(--magenta)) 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(23,16,10,.15);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--stone-lt);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sunrise);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,75,31,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 10px; }
.form-success {
  display: none;
  background: linear-gradient(135deg, #eafaf0, #fff7e9);
  border: 1px solid var(--forest-lt);
  color: var(--forest-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: .9rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* Sticky enquiry / WhatsApp */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1.45rem;
  color: var(--white);
  transition: transform .2s ease;
}
.float-btn:hover { transform: scale(1.1) rotate(-4deg); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: linear-gradient(135deg, var(--sunrise), var(--magenta)); }

/* Tables */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { text-align: left; padding: 15px 18px; font-size: .92rem; border-bottom: 1px solid rgba(23,16,10,.08); }
.spec-table th { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--ink); font-family: var(--font-head); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tbody tr:hover { background: rgba(255,192,46,.08); }

.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
.amenity {
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--forest-lt);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.amenity:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.amenity:nth-child(4n+1) { border-left-color: var(--sunrise); }
.amenity:nth-child(4n+2) { border-left-color: var(--gold); }
.amenity:nth-child(4n+3) { border-left-color: var(--forest-lt); }
.amenity:nth-child(4n+4) { border-left-color: var(--magenta); }
.amenity .ic { font-size: 1.7rem; margin-bottom: 8px; display: block; }

/* Gallery lightbox */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid .g-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.1); }
.lightbox {
  position: fixed; inset: 0; background: rgba(6,64,43,.94);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 24px; right: 30px; color: var(--white); font-size: 2.2rem; cursor: pointer; background: none; border: none; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--sky-dusk) 100%);
  color: rgba(255,255,255,.82);
  padding: 64px 0 24px;
}
.site-footer::before {
  content: ""; position: absolute; top: -120px; left: 10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,.18), transparent 70%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold); font-size: .95rem; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.75); font-size: .88rem; }
.site-footer a:hover { color: var(--gold); }
.footer-links li { margin-bottom: 10px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.68); max-width: 320px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.social-row a:hover { background: linear-gradient(135deg, var(--magenta), var(--sunrise)); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.6); }
.disclaimer {
  font-size: .76rem;
  color: rgba(255,255,255,.52);
  max-width: 900px;
  margin-top: 18px;
  line-height: 1.6;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Misc */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.badge {
  font-size: .76rem;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(255,192,46,.35);
}
.badge-row .badge:nth-child(3n+1) { background: var(--gold); color: var(--ink); box-shadow: 0 4px 12px rgba(255,192,46,.35); }
.badge-row .badge:nth-child(3n+2) { background: linear-gradient(135deg, var(--forest-lt), var(--forest-mid)); color: var(--white); box-shadow: 0 4px 12px rgba(14,122,78,.35); }
.badge-row .badge:nth-child(3n+3) { background: linear-gradient(135deg, var(--magenta), var(--magenta-dark)); color: var(--white); box-shadow: 0 4px 12px rgba(233,30,140,.35); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 3px solid var(--gold); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
