/* ================================================================
   Hula Hula Brazil Pousada — style.css
   Icaraizinho de Amontada, Ceará
   ================================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --sage: #5c6756;
  --sage-light: #7a8673;
  --sage-dark: #3e4639;
  --mist: #c7cec9;
  --mist-light: #e2e6e3;
  --white: #FFFFFF;
  --cream: #f5f2ec;
  --text-dark: #2a2e27;
  --gold: #b5956a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
  isolation: isolate;
}

nav.scrolled {
  background: rgba(44, 46, 39, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 4rem;
}

.nav-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.5rem 1.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--sage-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0e08;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,12,6,0.74) 0%,
    rgba(16,24,12,0.35) 45%,
    rgba(8,12,6,0.80) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: heroVideoZoom 28s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes heroVideoZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('img/hospedagem-em-icaraizinho-hula-hula.png') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 860px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d4e8c2;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #d4e8c2;
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 0 80px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  letter-spacing: 0.12em;
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  color: #e8f0e0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 0.9rem 2.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--sage-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.9rem 2.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-tour {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
  padding: 0.85rem 1.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-tour:hover { background: var(--sage); color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover { background: #1ebe5a; }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  opacity: 0.5;
  animation: bounce 2s infinite;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-hint svg { width: 20px; }

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

/* ── PILLARS ── */
.pillars {
  background: var(--sage-dark);
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
  gap: 0;
}

.pillar {
  padding: 1rem 4rem;
  text-align: center;
  color: var(--mist);
  border-right: 1px solid rgba(199,206,201,0.2);
  flex: 1;
  max-width: 280px;
}

.pillar:last-child { border-right: none; }

.pillar-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-sm { padding: 5rem 2rem; }

.section-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sage);
}

/* ── STORY / ABOUT ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--sage-dark);
}

.story-text p {
  font-size: 0.85rem;
  line-height: 2;
  color: #555;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.story-image-stack {
  position: relative;
  height: 580px;
}

.story-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 82%;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.story-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  height: 52%;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.story-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--sage);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(92,103,86,0.5);
}

.story-badge .year  { font-size: 1.8rem; font-weight: 600; line-height: 1; }
.story-badge .since { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }

/* ── FEATURES ── */
.features-bg {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 8rem 2rem;
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.features-header {
  text-align: center;
  margin-bottom: 5rem;
  color: var(--white);
}

.features-header .section-tag { color: var(--mist); justify-content: center; }
.features-header .section-tag::after { background: var(--mist); }

.features-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}

.feature-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.feature-card:hover { background: rgba(255,255,255,0.1); }

.feature-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }

.feature-card h3 {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(199,206,201,0.8);
  letter-spacing: 0.04em;
}

/* ── ACOMODAÇÕES ── */
.bangalo-section {
  padding: 8rem 0;
  overflow: hidden;
}

.bangalo-header {
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.bangalo-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-style: italic;
  color: var(--sage-dark);
  max-width: 540px;
}

.bangalo-item {
  max-width: 1060px;
  margin: 0 auto 5.5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  gap: 2.8rem;
  align-items: start;
  box-sizing: border-box;
}

.bangalo-item.reverse { grid-template-columns: minmax(0, 46%) minmax(0, 54%); }
.bangalo-item.reverse .bangalo-gallery { order: 2; }
.bangalo-item.reverse .bangalo-info   { order: 1; }

.bangalo-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.bangalo-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 12/8;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.gallery-main:hover { transform: scale(1.02); }

.gallery-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  overflow: hidden;
}

.gallery-thumb {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.22s;
  display: block;
}

.gallery-thumb:hover { opacity: 0.88; }
.gallery-thumb.active { opacity: 1; outline: 2px solid var(--sage); outline-offset: -2px; }

.bangalo-info { padding-top: 1rem; }

.bangalo-name {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.bangalo-name::after { content: ''; width: 30px; height: 1px; background: var(--sage); }

.bangalo-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.bangalo-info > p {
  font-size: 0.82rem;
  line-height: 2;
  color: #666;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-bottom: 2.5rem;
}

.amenities-list li {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenities-list li::before { content: '—'; color: var(--sage); font-size: 0.65rem; }

.bangalo-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--mist), transparent);
  margin: 7rem auto;
  max-width: 1200px;
}

/* ── REGIÃO / BANNER ── */
.region-banner {
  position: relative;
  height: 80vh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.region-banner-bg {
  position: absolute;
  inset: 0;
  background: url('bg-a-regiao-icaraizinho.png') center/cover no-repeat;
  z-index: 0;
}

.region-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.region-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,16,8,0.88) 0%,
      rgba(20,32,14,0.62) 42%,
      rgba(10,16,8,0.18) 100%),
    linear-gradient(to top,
      rgba(0,0,0,0.35) 0%,
      transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.region-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 2rem 5rem;
  max-width: 640px;
}

.region-content h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-style: italic;
  margin-bottom: 1.3rem;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.region-content p {
  font-size: 0.83rem;
  line-height: 2.05;
  opacity: 0.88;
  letter-spacing: 0.05em;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ── ACTIVITIES ── */
.activities-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.activities-header { margin-bottom: 4rem; }

.activities-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  color: var(--sage-dark);
  max-width: 500px;
}

.activities-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--mist);
  margin-bottom: 3rem;
}

.act-tab {
  padding: 0.8rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #999;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  margin-bottom: -1px;
}

.act-tab.active { color: var(--sage); border-bottom-color: var(--sage); }

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

.act-card {
  padding: 1.8rem;
  border: 1px solid var(--mist-light);
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s;
}

.act-card:hover {
  box-shadow: 0 12px 40px rgba(92,103,86,0.12);
  transform: translateY(-4px);
}

.act-card .emoji { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }

.act-card h4 {
  font-size: 1rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.act-card p { font-size: 0.72rem; line-height: 1.8; color: #777; letter-spacing: 0.03em; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--cream); padding: 8rem 2rem; }

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

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

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  color: var(--sage-dark);
}

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

.testimonial-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--sage);
  transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-6px); }

.testimonial-card.featured { background: var(--sage-dark); color: var(--white); }

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 300;
}

.testimonial-card.featured .quote-mark { color: var(--mist); }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.8rem;
  color: inherit;
}

.testimonial-card:not(.featured) .testimonial-text { color: var(--sage-dark); }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sage-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar { background: rgba(199,206,201,0.2); color: var(--mist); }

.author-info .name {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

.author-info .location { font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.6; display: block; }

.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

/* ── FAQ ── */
.faq-section { padding: 8rem 2rem; background: var(--white); }

.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.faq-intro { font-size: 0.82rem; line-height: 2; color: #777; margin-bottom: 3.5rem; letter-spacing: 0.04em; }

.faq-item { border-bottom: 1px solid var(--mist-light); }

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--sage-dark);
  font-weight: 400;
  gap: 1rem;
}

.faq-question:hover { color: var(--sage); }

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p { padding: 0 0 1.5rem; font-size: 0.8rem; line-height: 2; color: #666; letter-spacing: 0.04em; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  padding: 7rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: italic;
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-banner p { font-size: 0.82rem; letter-spacing: 0.12em; opacity: 0.8; margin-bottom: 2.5rem; position: relative; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; position: relative; flex-wrap: wrap; }

/* ── FOOTER (legacy classes) ── */
footer {
  background: var(--sage-dark);
  padding: 5rem 2rem 3rem;
  color: var(--mist);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1rem; }

.footer-logo img { height: auto; max-height: 44px; width: auto; max-width: 130px; filter: brightness(0) invert(1); opacity: 0.82; display: block; object-fit: contain; }

.footer-logo img.logo-partner { max-height: 30px; max-width: 90px; opacity: 0.55; }

.footer-bio { font-size: 0.75rem; line-height: 1.9; opacity: 0.65; letter-spacing: 0.04em; }

.footer-heading { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mist); margin-bottom: 1.2rem; opacity: 0.8; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(199,206,201,0.55); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--mist); }

.footer-social { display: flex; gap: 0.65rem; margin-top: 1.4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(199,206,201,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(199,206,201,0.55); transition: border-color 0.25s, color 0.25s, background 0.25s; text-decoration: none; flex-shrink: 0; }
.footer-social a:hover { border-color: var(--mist); color: var(--mist); background: rgba(199,206,201,0.08); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(199,206,201,0.12); display: flex; justify-content: space-between; align-items: center; font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.4; }

/* ── CANONICAL FOOTER (.ft) ── */
footer.ft { background: var(--sage-dark); padding: 4rem 3rem 2rem; color: var(--mist); }
.ft-grid { max-width: 1200px; margin: 0 auto 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.8rem; }
.ft-logo-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ft-logo-row img { height: auto; width: auto; object-fit: contain; display: block; }
.ft-logo-row .lg-main  { max-height: 42px; max-width: 125px; filter: brightness(0) invert(1); opacity: .85; }
.ft-logo-row .lg-partner { max-height: 28px; max-width: 85px; filter: brightness(0) invert(1); opacity: .48; }
.ft-bio { font-size: .72rem; line-height: 1.9; opacity: .55; letter-spacing: .03em; margin-bottom: 1.1rem; }
.ft-social { display: flex; gap: .6rem; flex-wrap: wrap; position: relative; z-index: 1; }
.ft-social a { width: 33px; height: 33px; border: 1px solid rgba(199,206,201,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(199,206,201,.52); transition: all .25s; text-decoration: none; flex-shrink: 0; }
.ft-social a:hover { border-color: var(--mist); color: var(--mist); background: rgba(199,206,201,.07); }
.ft-social svg { flex-shrink: 0; }
.ft-col-label { font-family: 'Josefin Sans', sans-serif; font-size: .56rem; letter-spacing: .28em; text-transform: uppercase; opacity: .65; display: block; margin-bottom: .9rem; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: .48rem; }
.ft-col a { color: rgba(199,206,201,.48); text-decoration: none; font-size: .71rem; letter-spacing: .04em; transition: color .2s; }
.ft-col a:hover { color: var(--mist); }
.ft-addr { font-size: .71rem; line-height: 2; opacity: .55; letter-spacing: .03em; }
.ft-addr a { color: rgba(199,206,201,.58); text-decoration: none; transition: color .2s; }
.ft-addr a:hover { color: var(--mist); }
.ft-bar { max-width: 1200px; margin: 0 auto; padding-top: 1.6rem; border-top: 1px solid rgba(199,206,201,.1); display: flex; justify-content: space-between; font-size: .6rem; opacity: .32; letter-spacing: .1em; flex-wrap: wrap; gap: .4rem; }
.ft-bar a { color: inherit; text-decoration: none; }

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

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 940px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-image-stack { height: 380px; }
  .bangalo-item { grid-template-columns: 1fr; gap: 2.5rem; }
  .bangalo-item.reverse { grid-template-columns: 1fr; }
  .bangalo-item.reverse .bangalo-gallery,
  .bangalo-item.reverse .bangalo-info { order: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .act-panel.active { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pillar { padding: 0.8rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .region-content { padding: 2rem 1.5rem; max-width: 100%; text-align: center; }
  .region-banner { height: 70vh; min-height: 480px; justify-content: center; }
}

@media (max-width: 600px) {
  .pillars { flex-direction: column; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(199,206,201,0.2); max-width: none; }
  .act-panel.active { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bar { flex-direction: column; text-align: center; }
  footer.ft { padding: 3rem 1.5rem 1.5rem; }
}
