/* ═══════════════════════════════════════════════════
   GUUNYI HOMESTEAD — Original Colors Dark Theme
   Colors: #07120a (base bg), #0c1b0f (alt bg), 
           #122918 (surface), #CFA13B (gold), 
           #2d674a (green), #CFA13B (accent green)
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #07120a;
  color: #dbe6e0;
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  opacity: 0;
  animation: siteFadeIn 1s ease forwards;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #CFA13B;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #e8c35a;
}

::selection {
  background: #2d674a;
  color: #f6f9f7;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #eef5f1;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #CFA13B;
  margin-top: 1rem;
}

.section-heading.light {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.section-heading.light::after {
  margin-left: auto;
  margin-right: auto;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, padding 0.3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 45, 25, 0.75); /* Dark forest green with transparency */
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(45, 103, 74, 0.4);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3vw;
  transition: padding 0.3s;
}

.site-header.scrolled .header-inner {
  padding: 0.6rem 3vw;
}

.site-logo img {
  height: 50px;
  width: auto;
  max-width: none;
  transition: height 0.3s;
}

.site-header.scrolled .site-logo img {
  height: 40px;
}

#mainNav {
  display: flex;
  align-items: center;
  gap: 0;
}

#mainNav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  position: relative;
  transition: color 0.3s;
}

#mainNav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #CFA13B;
  transition: width 0.3s, left 0.3s;
}

#mainNav a:hover {
  color: #CFA13B;
}

#mainNav a:hover::after {
  width: 60%;
  left: 20%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Weather & Time in nav */
.weather-time-widget {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.time-display {
  font-weight: 600;
  color: #CFA13B;
  font-size: 0.85rem;
}

.date-display {
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.weather-display {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.weather-display i {
  color: #CFA13B;
}

.weather-display .temperature {
  font-weight: 600;
  color: #CFA13B;
}

.weather-display .description {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

/* Hamburger */
#hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.hamburger-bar,
.hamburger-bar::before,
.hamburger-bar::after {
  display: block;
  background: #CFA13B;
  height: 2px;
  width: 26px;
  border-radius: 2px;
  position: absolute;
  left: 9px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-bar { top: 21px; }
.hamburger-bar::before { content: ''; top: -8px; }
.hamburger-bar::after { content: ''; top: 8px; }

#hamburger.open .hamburger-bar { background: transparent; }
#hamburger.open .hamburger-bar::before { top: 0; transform: rotate(45deg); background: #CFA13B; }
#hamburger.open .hamburger-bar::after { top: 0; transform: rotate(-45deg); background: #CFA13B; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 18, 10, 0.4) 0%,
    rgba(7, 18, 10, 0.7) 50%,
    rgba(7, 18, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #CFA13B;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-content h1 a {
  color: #fff;
  text-decoration: none;
}

.hero-content h1 a:hover {
  color: #CFA13B;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(207,161,59,0.6);
  transition: border-color 0.3s, color 0.3s;
}

.hero-cta:hover {
  color: #CFA13B;
  border-bottom-color: #CFA13B;
}

.cta-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #CFA13B;
  transition: width 0.3s;
}

.hero-cta:hover .cta-line {
  width: 60px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  animation: bounceHint 2s ease-in-out infinite;
}

@keyframes bounceHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ─── SECTIONS SHARED ─── */
section {
  width: 100%;
  box-sizing: border-box;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3vw;
}

/* ─── SPLIT LAYOUT (About & Workspace) ─── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-text {
  padding: 1rem 0;
}

.split-text p {
  font-size: 1.05rem;
  color: #a2b8ad;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.split-text .about-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #CFA13B;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(207,161,59,0.2);
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(207,161,59,0.2);
  border-radius: 4px;
  pointer-events: none;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  background: #07120a;
}

.about-section .split-image {
  height: 500px; /* Constrain height to match text */
}

.about-section .split-image img {
  height: 100%;
  object-fit: cover;
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  background: #0c1b0f;
  padding: 5rem 3vw;
  border-top: 1px solid rgba(45,103,74,0.3);
}

/* ─── FARM VISUALS SECTION ─── */
.farm-visuals-section {
  background: #0c1b0f;
  padding: 4rem 3vw 8rem 3vw;
  border-bottom: 1px solid rgba(45,103,74,0.3);
}

.farm-visuals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.farm-visual-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.farm-visual-item.large {
  grid-column: span 2;
}

.farm-visual-item.tall {
  grid-row: span 2;
}

.farm-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  filter: brightness(0.9);
}

.farm-visual-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

@media (max-width: 1200px) {
  .farm-visuals-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
  .farm-visual-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .farm-visuals-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
  }
  .farm-visual-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .farm-visuals-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .farm-visual-item.large {
    grid-column: span 1;
  }
}

.feature-strip-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-strip-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #122918;
  border: 1px solid rgba(45,103,74,0.4);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.feature-strip-card:hover {
  background: #17361f;
  border-color: rgba(207,161,59,0.5);
  transform: translateY(-4px);
}

.feature-strip-icon {
  font-size: 2rem;
  color: #CFA13B;
  margin-bottom: 1.2rem;
}

.feature-strip-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #eef5f1;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.feature-strip-card p {
  font-size: 0.95rem;
  color: #a2b8ad;
  line-height: 1.7;
}

/* ─── EXPERIENCE SECTION (Parallax) ─── */
.experience-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 3vw;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax-bg {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 10, 0.8);
}

.experience-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.experience-content .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.experience-intro-text {
  font-size: 1.15rem;
  color: #c3d1c9;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Glass Cards */
.glass-card {
  background: rgba(18, 41, 24, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(207,161,59,0.15);
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.glass-card:hover {
  background: rgba(26, 61, 36, 0.8);
  border-color: rgba(207,161,59,0.4);
  transform: translateY(-6px);
}

.exp-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(207,161,59,0.12);
  border: 1px solid rgba(207,161,59,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #CFA13B;
  margin: 0 auto 1.2rem auto;
  transition: background 0.3s, transform 0.3s;
}

.glass-card:hover .exp-icon-circle {
  background: #CFA13B;
  color: #07120a;
  transform: scale(1.1);
}

.exp-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #eef5f1;
  font-weight: 500;
  line-height: 1.5;
}

/* ─── WORKSPACE SECTION ─── */
.workspace-section {
  background: #07120a;
}

.workspace-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.workspace-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #122918;
  border-left: 2px solid #CFA13B;
  border-radius: 0 4px 4px 0;
  transition: background 0.3s, padding-left 0.3s;
  font-size: 0.95rem;
  color: #dbe6e0;
}

.workspace-feature:hover {
  background: #17361f;
  padding-left: 1.6rem;
}

.workspace-icon {
  color: #CFA13B;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

/* ─── AIRBNB SECTION (Cinematic CTA) ─── */
.airbnb-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 3vw;
}

.airbnb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.airbnb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 18, 10, 0.85) 0%,
    rgba(7, 18, 10, 0.7) 50%,
    rgba(7, 18, 10, 0.8) 100%
  );
}

.airbnb-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.airbnb-glass-panel {
  background: rgba(18, 41, 24, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(207,161,59,0.2) !important;
  border-radius: 6px;
  padding: 3.5rem 3rem;
  text-align: center;
}

.airbnb-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #CFA13B;
  margin-bottom: 1rem;
  font-weight: 500;
}

.airbnb-glass-panel .section-heading {
  margin-bottom: 1.2rem;
}

.airbnb-glass-panel .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.airbnb-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.airbnb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(207,161,59,0.15);
  border-bottom: 1px solid rgba(207,161,59,0.15);
}

.airbnb-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #CFA13B;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a2b8ad;
}

.airbnb-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button-airbnb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E61E4D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button-airbnb:hover {
  background: #c91a43;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 30, 77, 0.3);
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #CFA13B;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(207,161,59,0.5);
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.button-whatsapp:hover {
  background: #CFA13B;
  color: #07120a;
  transform: translateY(-2px);
}

/* ─── CONTACT & LOCATION ─── */
.contact-location-section {
  background: #07120a;
  padding: 6rem 3vw;
}

.contact-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.contact-subtitle {
  color: #a2b8ad;
  font-size: 1.05rem;
  margin-top: -0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Cards Row */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  cursor: default;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a.contact-card {
  cursor: pointer;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(207,161,59,0.1);
  border: 1px solid rgba(207,161,59,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #CFA13B;
  margin-bottom: 1.2rem;
  transition: background 0.3s, transform 0.3s;
}

.contact-card:hover .contact-card-icon {
  background: #CFA13B;
  color: #07120a;
  transform: scale(1.1);
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #eef5f1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.contact-card p {
  font-size: 0.9rem;
  color: #a2b8ad;
  line-height: 1.6;
}

/* Form + Map Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-form-panel {
  padding: 2.5rem 2rem;
}

.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #eef5f1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(18,41,24,0.4);
  border: 1px solid rgba(207,161,59,0.2);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #eef5f1;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #798a81;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #CFA13B;
  background: rgba(207,161,59,0.08);
  box-shadow: 0 0 0 2px rgba(207,161,59,0.15);
}

.contact-form button {
  background: #CFA13B;
  color: #07120a;
  border: none;
  padding: 1rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.contact-form button:hover {
  background: #e8c35a;
  transform: translateY(-2px);
}

.contact-form button i {
  font-size: 0.85rem;
  transition: transform 0.3s;
}

.contact-form button:hover i {
  transform: translateX(4px);
}

/* Map Panel */
.contact-map-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.contact-map-panel .map-container {
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 400px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(207,161,59,0.2);
}

.contact-map-panel .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) brightness(0.85) contrast(1.1) hue-rotate(90deg);
}

.map-info-row {
  text-align: center;
}

.pluscode {
  font-size: 0.85rem;
  color: #a2b8ad;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pluscode i {
  color: #CFA13B;
  margin-right: 0.4rem;
}

/* ─── GALLERY SECTION ─── */
.gallery-section {
  background: #07120a;
  padding: 6rem 3vw;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.gallery-subtitle {
  color: #a2b8ad;
  font-size: 1.05rem;
  margin-top: -0.5rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(18, 41, 24, 0.6);
  border: 1px solid rgba(207, 161, 59, 0.3);
  color: #a2b8ad;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
  background: #CFA13B;
  color: #07120a;
  border-color: #CFA13B;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card.gallery-hidden {
  display: none !important;
}

.gallery-more-btn-container {
  text-align: center;
  margin-top: 3rem;
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #CFA13B;
  color: #CFA13B;
  font-weight: 600;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: #CFA13B;
  color: #07120a;
}

.show-more-btn i {
  transition: transform 0.4s ease;
}

.show-more-btn.active i {
  transform: rotate(180deg);
}

.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #122918;
  animation: fadeIn 0.5s ease forwards;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 10, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-overlay span {
  color: #CFA13B;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.gallery-card:hover .card-overlay span {
  transform: translateY(0);
}

/* ─── LIGHTBOX MODAL ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 7, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #CFA13B;
  cursor: pointer;
  line-height: 1;
  padding: 10px; /* Increase click area */
  transition: transform 0.3s ease;
  z-index: 10001; /* Ensure it is above everything else in the lightbox */
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.lightbox-content {
  width: 95vw;
  height: 95vh;
  max-width: 1600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Keep below close button */
}

.lightbox-content img {
  max-width: 100%;
  max-height: calc(100% - 80px); /* Leave room for the caption and spacing */
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 1.5rem;
  color: #CFA13B;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.lightbox-nav {
  position: absolute;
  width: 100%;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-arrow {
  background: rgba(207, 161, 59, 0.1);
  border: 1px solid rgba(207, 161, 59, 0.3);
  color: #CFA13B;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.lightbox-arrow:hover {
  background: #CFA13B;
  color: #07120a;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── FOOTER ─── */
.site-footer {
  background: #050d07;
  color: #a2b8ad;
  padding: 4rem 3vw 1.5rem 3vw;
  border-top: 1px solid rgba(45,103,74,0.2);
}

.footer-logo-row {
  text-align: center;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  width: 120px;
  height: auto;
  max-width: none;
  margin: 0 auto;
  opacity: 0.9;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 340px;
  text-align: left;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #CFA13B;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: #a2b8ad;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: #CFA13B;
  padding-left: 0.3rem;
}

.footer-contact-col .footer-contact-item {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #a2b8ad;
}

.footer-contact-col .footer-contact-item i {
  color: #CFA13B;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.footer-contact-col .footer-contact-item a {
  color: #a2b8ad;
  transition: color 0.3s;
}

.footer-contact-col .footer-contact-item a:hover {
  color: #CFA13B;
}

.footer-social-icons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-social-icons a {
  color: #798a81;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-social-icons a:hover {
  color: #CFA13B;
  transform: translateY(-2px);
}

.footer-airbnb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #CFA13B;
  font-weight: 600;
  border: 1px solid rgba(207,161,59,0.4);
  border-radius: 3px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, color 0.3s;
}

.footer-airbnb-btn:hover {
  background: #CFA13B;
  color: #050d07;
}

.footer-bottom {
  border-top: 1px solid rgba(45,103,74,0.2);
  padding-top: 1.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: #798a81;
}

.footer-credit {
  font-size: 0.85rem;
  color: #798a81;
}

.footer-credit a {
  color: #CFA13B;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: #e8c35a;
}

/* ─── FLOATING WIDGETS ─── */
.floating-widget-stack {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.whatsapp-widget-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-widget-container:hover {
  transform: translateY(-5px);
}

.whatsapp-widget-text {
  background: rgba(7, 18, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(207, 161, 59, 0.4);
  padding: 12px 18px;
  border-radius: 14px 14px 0 14px;
  text-align: right;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0; /* Hidden by default */
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
  will-change: transform, opacity;
}

.whatsapp-widget-container:hover .whatsapp-widget-text {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.wa-title {
  font-weight: 700;
  color: #CFA13B;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.wa-subtitle {
  font-weight: 500;
  color: #dbe6e0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.whatsapp-widget {
  background: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-widget img {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-widget-container:hover .whatsapp-widget {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

#topBtn {
  background: rgba(207,161,59,0.15);
  border: 1px solid rgba(207,161,59,0.3);
  color: #CFA13B;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  pointer-events: auto;
  display: none;
  outline: none;
}

#topBtn:hover {
  background: #CFA13B;
  color: #07120a;
  transform: translateY(-3px);
}

/* ─── ANIMATIONS ─── */
@keyframes siteFadeIn {
  to { opacity: 1; }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

.reveal-on-scroll.in-view .feature-strip-card,
.reveal-on-scroll.in-view .glass-card,
.reveal-on-scroll.in-view .workspace-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.6s ease forwards;
}

.reveal-on-scroll.in-view .feature-strip-card:nth-child(1),
.reveal-on-scroll.in-view .glass-card:nth-child(1),
.reveal-on-scroll.in-view .workspace-feature:nth-child(1) { animation-delay: 0.1s; }
.reveal-on-scroll.in-view .feature-strip-card:nth-child(2),
.reveal-on-scroll.in-view .glass-card:nth-child(2),
.reveal-on-scroll.in-view .workspace-feature:nth-child(2) { animation-delay: 0.2s; }
.reveal-on-scroll.in-view .feature-strip-card:nth-child(3),
.reveal-on-scroll.in-view .glass-card:nth-child(3),
.reveal-on-scroll.in-view .workspace-feature:nth-child(3) { animation-delay: 0.3s; }
.reveal-on-scroll.in-view .feature-strip-card:nth-child(4),
.reveal-on-scroll.in-view .glass-card:nth-child(4),
.reveal-on-scroll.in-view .workspace-feature:nth-child(4) { animation-delay: 0.4s; }

@keyframes staggerIn {
  to { opacity: 1; transform: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-layout.reverse {
    direction: ltr;
  }
  .split-image img {
    height: 400px;
  }
  .experience-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 { letter-spacing: 0.1em; }
  .section-heading { letter-spacing: 0.08em; }
  .experience-cards { grid-template-columns: 1fr; gap: 1rem; }
  .feature-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map-panel .map-container { min-height: 250px; }
  .airbnb-glass-panel { padding: 2.5rem 1.5rem; }
  .airbnb-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .split-image img { height: 300px; }
  .section-inner { padding: 4rem 5vw; }
  .experience-section, .airbnb-section { padding: 4rem 5vw; }

  /* Mobile Nav */
  #hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #mainNav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(7, 18, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border-left: 1px solid rgba(207,161,59,0.2);
  }
  #mainNav.open { right: 0; }
  #mainNav a {
    font-size: 1rem;
    padding: 1.2rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(207,161,59,0.1);
    letter-spacing: 0.15em;
  }
  #mainNav a::after { display: none; }
  .weather-time-widget { display: none; }
  
  .footer-cols {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    text-align: center;
    max-width: 100%;
  }
  .footer-social-icons, .footer-contact-col .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; letter-spacing: 0.08em; }
  .hero-tagline { font-size: 0.72rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-heading { font-size: 1.5rem; }
  .gallery-strip-inner { grid-template-columns: 1fr 1fr; }
  .airbnb-buttons { flex-direction: column; align-items: center; }
  .button-airbnb, .button-whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .stat-number { font-size: 1.8rem; }
  .contact-form-panel { padding: 2rem 1.2rem; }
}
