/* ================================================================
   GREENLAND VILLA ELLA — MAIN DESIGN SYSTEM
   Premium Luxury Hotel WordPress Theme
   Version: 1.0.0
================================================================ */

/* ────────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
──────────────────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --gve-green:    #6E9152;
  --gve-forest:   #2E4B2E;
  --gve-cream:    #F8F6F1;
  --gve-white:    #FFFFFF;
  --gve-charcoal: #2C2C2C;
  --gve-gray:     #F4F4F4;
  --gve-gray-mid: #E8E6E1;
  --gve-muted:    #8A8A8A;

  /* Derived */
  --gve-green-light:  rgba(110, 145, 82, 0.12);
  --gve-green-glow:   rgba(110, 145, 82, 0.35);
  --gve-forest-light: rgba(46, 75, 46, 0.08);
  --gve-overlay-dark: rgba(20, 30, 20, 0.45);
  --gve-glass-bg:     rgba(255, 255, 255, 0.65);
  --gve-glass-border: rgba(255, 255, 255, 0.9);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Poppins', system-ui, -apple-system, sans-serif;

  /* Font Sizes — fluid */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  clamp(2rem, 4vw, 2.75rem);
  --fs-4xl:  clamp(2.5rem, 5vw, 3.5rem);
  --fs-hero: clamp(2.8rem, 6.5vw, 5.5rem);

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   1.5rem;
  --sp-lg:   2rem;
  --sp-xl:   3rem;
  --sp-2xl:  4.5rem;
  --sp-3xl:  6rem;
  --sp-4xl:  8rem;

  /* Section padding */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Border radius */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 16px 56px rgba(0, 0, 0, 0.14);
  --shadow-xl:  0 24px 80px rgba(0, 0, 0, 0.18);
  --shadow-green: 0 8px 32px rgba(110, 145, 82, 0.25);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast:   0.2s;
  --dur-base:   0.35s;
  --dur-slow:   0.65s;
  --dur-xslow:  1.1s;

  /* Container */
  --container-max: 1200px;
  --container-wide: 1440px;
  --container-px: clamp(1.25rem, 4vw, 3rem);

  /* Z-index layers */
  --z-base:    0;
  --z-above:   10;
  --z-sticky:  100;
  --z-header:  200;
  --z-modal:   300;
  --z-cursor:  9999;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--gve-charcoal);
  background-color: var(--gve-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* Custom cursor takes over */
}

body.wp-admin {
  cursor: auto; /* Normal cursor in WP Admin */
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gve-green);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--gve-forest); }
a:focus-visible {
  outline: 2px solid var(--gve-green);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--gve-charcoal);
}

p { max-width: 68ch; }

address { font-style: normal; }

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  left: 1rem;
  top: 1rem;
  width: auto;
  z-index: var(--z-modal);
  padding: 0.75rem 1.5rem;
  background: var(--gve-green);
  color: white;
  border-radius: var(--radius-sm);
}

/* ────────────────────────────────────────────────────────────────
   3. UTILITY CLASSES
──────────────────────────────────────────────────────────────── */
.gve-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.gve-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.gve-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-2xl);
}

.gve-section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-sm);
}

.gve-section__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-md);
  color: var(--gve-charcoal);
}

.gve-section__subtitle {
  font-size: var(--fs-md);
  color: var(--gve-muted);
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────────
   4. SCROLL REVEAL ANIMATIONS
──────────────────────────────────────────────────────────────── */
.gve-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.gve-reveal--right {
  transform: translateX(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.gve-reveal--up {
  transform: translateY(30px);
}
.gve-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ────────────────────────────────────────────────────────────────
   5. BUTTONS
──────────────────────────────────────────────────────────────── */
.gve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.gve-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Ripple effect */
.gve-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}
.gve-btn:hover::after {
  opacity: 1;
  transform: scale(2.5);
}

/* Primary */
.gve-btn--primary {
  background: var(--gve-green);
  color: var(--gve-white);
  border-color: var(--gve-green);
  box-shadow: var(--shadow-green);
}
.gve-btn--primary:hover {
  background: var(--gve-forest);
  border-color: var(--gve-forest);
  color: var(--gve-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(110, 145, 82, 0.35);
}

/* Outline */
.gve-btn--outline {
  background: transparent;
  color: var(--gve-green);
  border-color: var(--gve-green);
}
.gve-btn--outline:hover {
  background: var(--gve-green);
  color: var(--gve-white);
  transform: translateY(-2px);
}

/* Ghost (for hero on dark bg) */
.gve-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gve-charcoal);
  border-color: rgba(44, 44, 44, 0.25);
  backdrop-filter: blur(8px);
}
.gve-btn--ghost:hover {
  background: var(--gve-charcoal);
  color: var(--gve-white);
  border-color: var(--gve-charcoal);
  transform: translateY(-2px);
}

/* Sizes */
.gve-btn--lg { padding: 1rem 2.5rem; font-size: var(--fs-sm); }
.gve-btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-xs); }
.gve-btn--full { width: 100%; justify-content: center; }

/* Nav CTA button */
.gve-btn--nav {
  padding: 0.55rem 1.5rem;
  font-size: var(--fs-xs);
}

/* ────────────────────────────────────────────────────────────────
   6. IMAGE PLACEHOLDERS
──────────────────────────────────────────────────────────────── */
.gve-placeholder {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--gve-forest-light) 0%, var(--gve-green-light) 100%);
  border: 1.5px dashed rgba(110, 145, 82, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Aspect ratios */
.gve-placeholder--16x9   { aspect-ratio: 16 / 9; }
.gve-placeholder--4x3    { aspect-ratio: 4 / 3; }
.gve-placeholder--1x1    { aspect-ratio: 1 / 1; }
.gve-placeholder--3x4    { aspect-ratio: 3 / 4; }
.gve-placeholder--21x9   { aspect-ratio: 21 / 9; }

.gve-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.gve-placeholder__icon {
  width: 40px;
  height: 40px;
  color: var(--gve-green);
  opacity: 0.5;
}

.gve-placeholder__label {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gve-forest);
  opacity: 0.7;
  max-width: 200px;
  line-height: 1.4;
}

.gve-placeholder__ratio {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gve-green);
  background: var(--gve-green-light);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.75rem;
}

/* Shimmer animation on placeholders */
.gve-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: gve-shimmer 2.5s infinite;
}

@keyframes gve-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ────────────────────────────────────────────────────────────────
   7. HEADER
──────────────────────────────────────────────────────────────── */
.gve-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 1.5rem 0;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out),
              padding var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.gve-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}

.gve-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

/* Logo */
.gve-header__logo {
  flex-shrink: 0;
  z-index: 1;
}
.gve-header__logo img,
.gve-header__logo a {
  height: 52px;
  width: auto;
  display: block;
}
.gve-header__site-name {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--gve-charcoal);
  transition: color var(--dur-fast);
}

/* Nav */
.gve-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.gve-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.gve-nav__menu li a {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gve-charcoal);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--dur-fast);
  text-decoration: none;
}

/* Animated underline */
.gve-nav__menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 1.5px;
  background: var(--gve-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.gve-nav__menu li a:hover,
.gve-nav__menu li.current-menu-item a { color: var(--gve-green); }
.gve-nav__menu li a:hover::after,
.gve-nav__menu li.current-menu-item a::after { transform: scaleX(1); }

/* Transparent header white text override (for dark hero slider) */
.gve-header.is-hero .gve-header__site-name { 
  color: var(--gve-white); 
}
.gve-header.is-hero .gve-nav__menu li a {
  color: rgba(255, 255, 255, 0.95);
}
.gve-header.is-hero .gve-nav__menu li a:hover,
.gve-header.is-hero .gve-nav__menu li.current-menu-item a { 
  color: var(--gve-white); 
}
.gve-header.is-hero .gve-nav__menu li a::after {
  background: var(--gve-white);
}
.gve-header.is-hero .gve-btn--outline {
  color: var(--gve-white);
  border-color: rgba(255, 255, 255, 0.8);
}
.gve-header.is-hero .gve-btn--outline:hover {
  background: var(--gve-white);
  color: var(--gve-forest);
}
.gve-header.is-hero .gve-header__toggle-bar {
  background: var(--gve-white);
}

/* Mobile toggle */
.gve-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  z-index: 1;
}
.gve-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gve-charcoal);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}

/* Mobile nav open state */
.gve-header__toggle[aria-expanded="true"] .gve-header__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gve-header__toggle[aria-expanded="true"] .gve-header__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gve-header__toggle[aria-expanded="true"] .gve-header__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────────────────────────────────────────
   8. HERO SECTION
──────────────────────────────────────────────────────────────── */
.gve-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--sp-2xl)) 0 var(--sp-2xl);
  background: var(--gve-cream);
  position: relative;
  overflow: hidden;
}

.gve-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  position: relative;
  z-index: var(--z-above);
}

.gve-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-md);
}

.gve-hero__title {
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--gve-charcoal);
  margin-bottom: var(--sp-md);
}

.gve-hero__title em {
  font-style: italic;
  color: var(--gve-green);
}

.gve-hero__tagline {
  font-size: var(--fs-md);
  color: var(--gve-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
  max-width: 42ch;
}

.gve-hero__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

/* Scroll indicator */
.gve-hero__scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gve-hero__scroll-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gve-green);
  position: relative;
  overflow: hidden;
}
.gve-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gve-forest);
  animation: gve-scroll-line 1.8s ease-in-out infinite;
}
@keyframes gve-scroll-line {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}
.gve-hero__scroll-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gve-muted);
}

/* Hero image */
.gve-hero__media {
  position: relative;
}
.gve-hero__media .gve-placeholder,
.gve-hero__media .gve-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

/* Background blob */
.gve-hero__bg-blob {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--gve-green-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ────────────────────────────────────────────────────────────────
   9. GLASSMORPHISM CARDS (Why Stay With Us)
──────────────────────────────────────────────────────────────── */
.gve-why { background: linear-gradient(180deg, #edf0ea 0%, var(--gve-cream) 100%); }

.gve-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.gve-glass-card {
  background: var(--gve-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gve-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.gve-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gve-green), var(--gve-forest));
  opacity: 0;
  transition: opacity var(--dur-base);
}

.gve-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-green);
}
.gve-glass-card:hover::before { opacity: 1; }

.gve-glass-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gve-green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--gve-green);
  transition: background var(--dur-base);
}
.gve-glass-card:hover .gve-glass-card__icon {
  background: var(--gve-green);
  color: var(--gve-white);
}
.gve-glass-card__icon svg { width: 24px; height: 24px; }

.gve-glass-card__title {
  font-size: var(--fs-xl);
  margin-bottom: 0.6rem;
  color: var(--gve-charcoal);
}

.gve-glass-card__desc {
  font-size: var(--fs-sm);
  color: var(--gve-muted);
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────────
   10. WAVE DIVIDERS
──────────────────────────────────────────────────────────────── */
.gve-wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: var(--z-above);
  line-height: 0;
}
.gve-wave--top { top: 0; }
.gve-wave--bottom { bottom: 0; }
.gve-wave svg { width: 100%; height: 100%; }

/* ────────────────────────────────────────────────────────────────
   11. SCENIC / PARALLAX SECTION
──────────────────────────────────────────────────────────────── */
.gve-scenic {
  position: relative;
  height: clamp(350px, 50vh, 550px);
  overflow: hidden;
}

.gve-scenic__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gve-scenic__image .gve-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}
.gve-scenic__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gve-parallax {
  will-change: transform;
}

.gve-scenic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gve-overlay-dark) 0%, rgba(20,30,20,0.6) 100%);
  z-index: 1;
}

.gve-scenic__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: var(--sp-lg);
}

.gve-scenic__quote {
  text-align: center;
  max-width: 680px;
}
.gve-scenic__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gve-white);
  line-height: 1.5;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ────────────────────────────────────────────────────────────────
   12. CTA SECTION
──────────────────────────────────────────────────────────────── */
.gve-cta-section {
  background: linear-gradient(180deg, var(--gve-cream) 0%, var(--gve-white) 100%);
  text-align: center;
}

.gve-cta-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.gve-cta-section__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-md);
}

.gve-cta-section__desc {
  font-size: var(--fs-md);
  color: var(--gve-muted);
  margin: 0 auto var(--sp-2xl);
}

.gve-cta-section__stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
  flex-wrap: wrap;
}

.gve-cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.gve-cta-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gve-green);
  line-height: 1;
}

.gve-cta-stat__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gve-muted);
  font-weight: 500;
}

.gve-cta-section__actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────────────────────────
   13. PAGE HERO (inner pages)
──────────────────────────────────────────────────────────────── */
.gve-page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-2xl);
  overflow: hidden;
}

.gve-page-hero--sm { min-height: 40vh; }

.gve-page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}
.gve-page-hero__bg figure { border-radius: 0; border: none; }
.gve-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.gve-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,30,20,0.7) 0%, rgba(20,30,20,0.3) 60%, transparent 100%);
  z-index: 1;
}

.gve-page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.gve-page-hero__content .gve-section__eyebrow {
  color: rgba(255,255,255,0.8);
}

.gve-page-hero__title {
  font-size: var(--fs-4xl);
  color: var(--gve-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ────────────────────────────────────────────────────────────────
   14. ABOUT PAGE
──────────────────────────────────────────────────────────────── */
.gve-about-split { background: var(--gve-white); }

.gve-about-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.gve-about-split__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-lg);
}

.gve-about-split__text p {
  font-size: var(--fs-md);
  color: var(--gve-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.gve-about-split__text p:last-child { margin-bottom: 0; }

.gve-about-split__badges {
  display: flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
  flex-wrap: wrap;
}

.gve-badge {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.gve-badge__num {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--gve-green);
  line-height: 1;
}
.gve-badge__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gve-muted);
  font-weight: 500;
}

.gve-about-split__media {
  position: relative;
}
.gve-about-split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.gve-about-split__img.gve-placeholder {
  border-radius: var(--radius-xl);
}

.gve-about-split__float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gve-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--gve-gray-mid);
}
.gve-about-split__float-card svg {
  width: 24px;
  height: 24px;
  color: var(--gve-green);
  flex-shrink: 0;
}
.gve-about-split__float-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  color: var(--gve-charcoal);
}
.gve-about-split__float-card span {
  font-size: var(--fs-xs);
  color: var(--gve-muted);
}

/* ────────────────────────────────────────────────────────────────
   15. FACILITIES GRID
──────────────────────────────────────────────────────────────── */
.gve-facilities {
  background: linear-gradient(180deg, #edf0ea 0%, var(--gve-cream) 100%);
}

.gve-facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.gve-facility-card {
  background: var(--gve-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gve-gray-mid);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
  position: relative;
  overflow: hidden;
}

.gve-facility-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gve-green);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-out);
}

.gve-facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gve-green-light);
}
.gve-facility-card:hover::after { transform: scaleX(1); }

.gve-facility-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-md);
  background: var(--gve-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gve-green);
  transition: all var(--dur-base) var(--ease-out);
}
.gve-facility-card:hover .gve-facility-card__icon {
  background: var(--gve-green);
  color: var(--gve-white);
  transform: scale(1.1) rotate(-5deg);
}
.gve-facility-card__icon svg { width: 24px; height: 24px; }

.gve-facility-card__title {
  font-size: var(--fs-lg);
  margin-bottom: 0.4rem;
}

.gve-facility-card__desc {
  font-size: var(--fs-sm);
  color: var(--gve-muted);
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────────
   16. PANORAMIC SECTION
──────────────────────────────────────────────────────────────── */
.gve-panoramic {
  position: relative;
  height: clamp(200px, 35vh, 420px);
  overflow: hidden;
}

.gve-panoramic__img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}
.gve-panoramic__img.gve-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
}

.gve-panoramic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,75,46,0.2) 0%, rgba(46,75,46,0.4) 100%);
  pointer-events: none;
}

.gve-panoramic__leaves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.gve-leaf { position: absolute; width: 200px; height: 300px; }
.gve-leaf--left  { left: -80px; bottom: -60px; transform: rotate(-20deg); }
.gve-leaf--right { right: -80px; top: -60px; transform: rotate(20deg) scaleX(-1); }

/* ────────────────────────────────────────────────────────────────
   17. GALLERY PAGE
──────────────────────────────────────────────────────────────── */
.gve-gallery-section { background: var(--gve-white); }

/* Filter Tabs */
.gve-gallery__filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.gve-gallery__filter-btn {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border: 2px solid var(--gve-gray-mid);
  background: var(--gve-white);
  color: var(--gve-muted);
  border-radius: var(--radius-full);
  cursor: none;
  transition: all var(--dur-fast) var(--ease-out);
}

.gve-gallery__filter-btn:hover,
.gve-gallery__filter-btn.is-active {
  background: var(--gve-green);
  border-color: var(--gve-green);
  color: var(--gve-white);
}

/* Masonry Grid */
.gve-gallery__grid {
  columns: 3;
  column-gap: var(--sp-md);
}

.gve-gallery__item {
  break-inside: avoid;
  margin-bottom: var(--sp-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
}

.gve-gallery__item-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
}

.gve-gallery__item-wrap .gve-placeholder {
  transition: transform 0.5s var(--ease-out);
  border-radius: 0;
  border: none;
}

.gve-gallery__item:hover .gve-placeholder,
.gve-gallery__item:hover img {
  transform: scale(1.05);
}

/* Gallery aspect helpers */
.gve-ratio--16x9 { aspect-ratio: 16 / 9; }
.gve-ratio--4x3  { aspect-ratio: 4 / 3; }
.gve-ratio--1x1  { aspect-ratio: 1 / 1; }
.gve-ratio--3x4  { aspect-ratio: 3 / 4; }

/* Hover overlay */
.gve-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 75, 46, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  z-index: 2;
}
.gve-gallery__item:hover .gve-gallery__overlay { opacity: 1; }

.gve-gallery__overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-align: center;
  padding: 1rem;
}
.gve-gallery__overlay-inner svg {
  width: 28px;
  height: 28px;
}
.gve-gallery__overlay-inner span {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Hidden items (filtered out) */
.gve-gallery__item[aria-hidden="true"] {
  display: none;
}

/* ────────────────────────────────────────────────────────────────
   18. QUOTE SECTION
──────────────────────────────────────────────────────────────── */
.gve-quote-section { background: var(--gve-cream); text-align: center; }

.gve-quote-section__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.gve-quote-section__leaf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 300px;
  pointer-events: none;
}

.gve-quote { position: relative; z-index: 1; }

.gve-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gve-charcoal);
  line-height: 1.5;
  margin-bottom: var(--sp-md);
}

.gve-quote__attribution {
  font-size: var(--fs-sm);
  color: var(--gve-green);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ────────────────────────────────────────────────────────────────
   19. THINGS TO DO — ATTRACTION CARDS
──────────────────────────────────────────────────────────────── */
.gve-attractions { background: var(--gve-white); }

.gve-attractions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.gve-attraction-card {
  background: var(--gve-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gve-gray-mid);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.gve-attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.gve-attraction-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gve-attraction-card__image .gve-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  transition: transform 0.6s var(--ease-out);
}
.gve-attraction-card:hover .gve-attraction-card__image .gve-placeholder {
  transform: scale(1.05);
}

.gve-attraction-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,30,20,0.3) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity var(--dur-base);
}

.gve-attraction-card__body {
  padding: var(--sp-lg);
}

.gve-attraction-card__meta {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: 0.75rem;
}

.gve-attraction-card__duration,
.gve-attraction-card__distance {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--gve-muted);
}
.gve-attraction-card__duration svg,
.gve-attraction-card__distance svg {
  width: 13px;
  height: 13px;
  color: var(--gve-green);
  flex-shrink: 0;
}

.gve-attraction-card__title {
  font-size: var(--fs-xl);
  margin-bottom: 0.6rem;
}

.gve-attraction-card__desc {
  font-size: var(--fs-sm);
  color: var(--gve-muted);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────────
   20. CALLOUT SECTION
──────────────────────────────────────────────────────────────── */
.gve-callout { background: var(--gve-cream); }

.gve-callout__inner {
  display: flex;
  gap: var(--sp-xl);
  align-items: center;
  background: linear-gradient(135deg, var(--gve-forest) 0%, var(--gve-green) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-xl);
}

.gve-callout__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
}
.gve-callout__icon svg { width: 36px; height: 36px; }

.gve-callout__content { flex: 1; }

.gve-callout__title {
  font-size: var(--fs-2xl);
  color: var(--gve-white);
  margin-bottom: var(--sp-sm);
}

.gve-callout__desc {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--sp-lg);
}

.gve-callout .gve-btn--primary {
  background: var(--gve-white);
  color: var(--gve-forest);
  border-color: var(--gve-white);
  box-shadow: none;
}
.gve-callout .gve-btn--primary:hover {
  background: var(--gve-cream);
  border-color: var(--gve-cream);
  color: var(--gve-forest);
}

/* ────────────────────────────────────────────────────────────────
   21. CONTACT PAGE
──────────────────────────────────────────────────────────────── */
.gve-contact-section { background: var(--gve-white); }

.gve-contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.gve-contact-info__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-md);
}
.gve-contact-info__intro {
  font-size: var(--fs-md);
  color: var(--gve-muted);
  margin-bottom: var(--sp-xl);
}

.gve-contact-info__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}

.gve-contact-detail {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.gve-contact-detail__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gve-green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gve-green);
}
.gve-contact-detail__icon--whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.gve-contact-detail__icon svg { width: 20px; height: 20px; }

.gve-contact-detail__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gve-muted);
  margin-bottom: 0.2rem;
}
.gve-contact-detail__value {
  font-size: var(--fs-base);
  color: var(--gve-charcoal);
  line-height: 1.5;
}
.gve-contact-detail__value--link {
  color: var(--gve-green);
  font-weight: 500;
}
.gve-contact-detail__value--link:hover { color: var(--gve-forest); }

/* Map */
.gve-contact-map {
  margin-top: var(--sp-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gve-contact-map iframe { display: block; }
.gve-contact-map .gve-placeholder { border-radius: 0; border: none; }

/* Contact Form Card */
.gve-contact-form-card {
  background: var(--gve-white);
  border: 1px solid var(--gve-gray-mid);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.gve-contact-form-card__title {
  font-size: var(--fs-3xl);
  margin: 0.4rem 0 0.5rem;
}
.gve-contact-form-card__intro {
  font-size: var(--fs-sm);
  color: var(--gve-muted);
  margin-bottom: var(--sp-xl);
}

/* Form */
.gve-form { display: flex; flex-direction: column; gap: var(--sp-md); }

.gve-form__group { display: flex; flex-direction: column; gap: 0.4rem; }

.gve-form__group--row {
  flex-direction: row;
  gap: var(--sp-md);
}
.gve-form__half { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }

.gve-form__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gve-charcoal);
}
.gve-form__required { color: var(--gve-green); margin-left: 0.2rem; }

.gve-form__input {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--gve-charcoal);
  background: var(--gve-gray);
  border: 1.5px solid var(--gve-gray-mid);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  outline: none;
  appearance: none;
}
.gve-form__input::placeholder { color: var(--gve-muted); }
.gve-form__input:focus {
  border-color: var(--gve-green);
  background: var(--gve-white);
  box-shadow: 0 0 0 3px var(--gve-green-light);
}

.gve-form__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}

/* ────────────────────────────────────────────────────────────────
   22. SOCIAL SECTION (Contact page)
──────────────────────────────────────────────────────────────── */
.gve-social-section {
  background: var(--gve-cream);
  text-align: center;
}

.gve-social-section__inner { max-width: 600px; margin: 0 auto; }

.gve-social-section__title {
  font-size: var(--fs-3xl);
  margin-bottom: 0.5rem;
}
.gve-social-section__subtitle {
  font-size: var(--fs-md);
  color: var(--gve-muted);
  margin-bottom: var(--sp-xl);
}

.gve-social-section__icons {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.gve-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid;
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
}
.gve-social-btn svg { width: 18px; height: 18px; }

.gve-social-btn--instagram {
  color: #C13584;
  border-color: #C13584;
}
.gve-social-btn--instagram:hover {
  background: #C13584;
  color: white;
  transform: translateY(-3px);
}

.gve-social-btn--facebook {
  color: #1877F2;
  border-color: #1877F2;
}
.gve-social-btn--facebook:hover {
  background: #1877F2;
  color: white;
  transform: translateY(-3px);
}

.gve-social-btn--tripadvisor {
  color: #00AF87;
  border-color: #00AF87;
}
.gve-social-btn--tripadvisor:hover {
  background: #00AF87;
  color: white;
  transform: translateY(-3px);
}

/* Contact scenic image */
.gve-contact-scenic {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.gve-contact-scenic__img { width: 100%; height: 100%; border: none; }
.gve-contact-scenic__img.gve-placeholder { border-radius: 0; border: none; height: 100%; }
.gve-contact-scenic__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,30,20,0.3);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────────
   23. FOOTER
──────────────────────────────────────────────────────────────── */
.gve-footer {
  background: var(--gve-forest);
  color: rgba(255, 255, 255, 0.8);
}

.gve-footer__top { padding: var(--sp-3xl) 0 var(--sp-2xl); }

.gve-footer__top-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--sp-2xl);
}

.gve-footer__brand {}

.gve-footer__logo-text {}
.gve-footer__name {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--gve-white);
  margin-bottom: 0.25rem;
}

.gve-footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: var(--sp-lg);
  max-width: 280px;
}

.gve-footer__social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gve-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
}
.gve-footer__social-link svg { width: 18px; height: 18px; }
.gve-footer__social-link:hover {
  background: var(--gve-green);
  border-color: var(--gve-green);
  color: var(--gve-white);
  transform: translateY(-3px);
}

.gve-footer__heading {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gve-white);
  margin-bottom: var(--sp-md);
}

.gve-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.gve-footer__links li a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--dur-fast);
}
.gve-footer__links li a::before {
  content: '→';
  opacity: 0;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  transform: translateX(-4px);
}
.gve-footer__links li a:hover {
  color: var(--gve-green);
}
.gve-footer__links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.gve-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.gve-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.gve-footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gve-green);
}
.gve-footer__contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast);
}
.gve-footer__contact-item a:hover { color: var(--gve-green); }

.gve-footer__map-btn {
  margin-top: var(--sp-md);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.gve-footer__map-btn:hover {
  background: var(--gve-green);
  border-color: var(--gve-green);
  color: var(--gve-white);
}

/* Footer bottom */
.gve-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-md) 0;
}

.gve-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.gve-footer__copy,
.gve-footer__credit {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.gve-footer__copy a {
  color: rgba(255,255,255,0.55);
}
.gve-footer__copy a:hover { color: var(--gve-green); }
.gve-footer__credit span { color: var(--gve-green); }

/* Custom logo in footer */
.gve-footer .custom-logo-link img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: var(--sp-sm);
}

/* ────────────────────────────────────────────────────────────────
   24. RESPONSIVE — TABLET & MOBILE
──────────────────────────────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .gve-hero__inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .gve-hero { min-height: auto; padding-top: calc(80px + var(--sp-xl)); }
  .gve-hero__media { max-width: 600px; margin: 0 auto; }
  .gve-hero__tagline { max-width: 100%; }

  .gve-why__grid { grid-template-columns: repeat(2, 1fr); }
  .gve-facilities__grid { grid-template-columns: repeat(2, 1fr); }
  .gve-attractions__grid { grid-template-columns: repeat(2, 1fr); }
  .gve-footer__top-inner { grid-template-columns: 1fr 1fr; }
  .gve-footer__brand { grid-column: 1 / -1; }
  .gve-about-split__inner { gap: var(--sp-xl); }
  .gve-contact-section__inner { grid-template-columns: 1fr; }
  .gve-contact-form-card { position: static; }
  .gve-gallery__grid { columns: 2; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root { --section-py: clamp(3rem, 6vw, 4.5rem); }

  .gve-header__toggle { display: flex; }

  .gve-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(248, 246, 241, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-out);
    z-index: -1;
  }
  .gve-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    z-index: var(--z-header);
  }
  .gve-nav__menu {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .gve-nav__menu li a {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    padding: var(--sp-sm) var(--sp-lg);
    font-weight: 400;
  }

  .gve-why__grid { grid-template-columns: 1fr; }
  .gve-facilities__grid { grid-template-columns: 1fr 1fr; }
  .gve-attractions__grid { grid-template-columns: 1fr; }
  .gve-about-split__inner { grid-template-columns: 1fr; }
  .gve-about-split__float-card { left: 50%; transform: translateX(-50%); bottom: -2rem; white-space: nowrap; }
  .gve-gallery__grid { columns: 1; }
  .gve-callout__inner { flex-direction: column; text-align: center; }
  .gve-cta-section__stats { gap: var(--sp-xl); }
  .gve-footer__top-inner { grid-template-columns: 1fr; }
  .gve-form__group--row { flex-direction: column; }
  .gve-contact-form-card { padding: var(--sp-lg); }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .gve-hero__title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .gve-facilities__grid { grid-template-columns: 1fr; }
  .gve-hero__actions { flex-direction: column; align-items: flex-start; }
  .gve-social-section__icons { flex-direction: column; align-items: center; }
  .gve-about-split__badges { flex-direction: column; gap: var(--sp-md); }
}

/* ────────────────────────────────────────────────────────────────
   25. WORDPRESS ADMIN BAR OFFSET
──────────────────────────────────────────────────────────────── */
.admin-bar .gve-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .gve-header { top: 46px; }
}

/* ────────────────────────────────────────────────────────────────
   26. PRINT
──────────────────────────────────────────────────────────────── */
@media print {
  .gve-header, .gve-cursor, .gve-hero__bg-blob { display: none; }
  body { color: #000; background: #fff; }
}

/* ════════════════════════════════════════════════════════════════
   27. HOMEPAGE — HERO SLIDER
   Full-screen image slider with content overlay
════════════════════════════════════════════════════════════════ */

/* ── Slider Wrapper ── */
.gve-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background: var(--gve-forest);
}

/* ── Slide Track ── */
.gve-slider__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Individual Slide ── */
.gve-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.gve-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Slide Background Image ── */
.gve-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.gve-slide__img,
.gve-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Placeholder style inside slider */
.gve-slide__bg .gve-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(135deg, #1a2e1a 0%, #2E4B2E 40%, #4a7a4a 80%, #6E9152 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  gap: 12px;
}
.gve-slide__bg .gve-img-placeholder .gve-img-placeholder__icon { color: rgba(255,255,255,0.5); }
.gve-slide__bg .gve-img-placeholder .gve-img-placeholder__ratio { color: rgba(255,255,255,0.4); }

/* ── Dark Gradient Overlay ── */
.gve-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 25, 10, 0.72) 0%,
    rgba(10, 25, 10, 0.45) 55%,
    rgba(10, 25, 10, 0.15) 100%
  );
}

/* ── Slide Counter (top-left "01 / 03") ── */
.gve-slider__counter {
  position: absolute;
  top: calc(var(--header-h, 80px) + 28px);
  left: clamp(20px, 5vw, 80px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.gve-slider__counter-current {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gve-white);
  line-height: 1;
}
.gve-slider__counter-sep {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  display: block;
}

/* ── Hero Content ── */
.gve-slider__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: var(--header-h, 80px);
}
.gve-slider__text {
  max-width: 600px;
  color: var(--gve-white);
}

/* Eyebrow */
.gve-slider__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-sm);
  position: relative;
  padding-left: 36px;
}
.gve-slider__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1.5px;
  background: var(--gve-green);
}

/* Heading */
.gve-slider__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--gve-white);
  margin: 0 0 var(--sp-md);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* Description */
.gve-slider__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin: 0 0 var(--sp-lg);
  max-width: 480px;
}

/* Buttons row */
.gve-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* Ghost white button variant */
.gve-btn--ghost-white {
  background: transparent;
  color: var(--gve-white);
  border: 1.5px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gve-btn--ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gve-white);
  color: var(--gve-white);
  transform: translateY(-2px);
}
.gve-btn--ghost-white svg { transition: transform 0.25s ease; }
.gve-btn--ghost-white:hover svg { transform: translateX(4px); }

/* ── Navigation (prev/next + dots) ── */
.gve-slider__nav {
  position: absolute;
  bottom: 100px;
  left: clamp(20px, 5vw, 80px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

/* Prev/Next Buttons */
.gve-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  color: var(--gve-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(6px);
}
.gve-slider__btn:hover {
  background: var(--gve-green);
  border-color: var(--gve-green);
  transform: scale(1.08);
}

/* Dots */
.gve-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 6px;
}
.gve-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  padding: 0;
}
.gve-slider__dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--gve-green);
}

/* ── Wave at bottom of slider ── */
.gve-slider__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
}
.gve-slider__wave svg { width: 100%; height: 70px; display: block; }

/* ── Slider Animations (content reveal per slide) ── */
.gve-slide.is-active .gve-slider__eyebrow { animation: slideInUp 0.7s ease 0.3s both; }
.gve-slide.is-active .gve-slider__heading  { animation: slideInUp 0.7s ease 0.45s both; }
.gve-slide.is-active .gve-slider__desc     { animation: slideInUp 0.7s ease 0.6s both; }
.gve-slide.is-active .gve-slider__actions  { animation: slideInUp 0.7s ease 0.75s both; }
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════════════════════════
   28. HOMEPAGE — FEATURES STRIP
   "Wake up to breathtaking mountain views" + 6 icon cards
════════════════════════════════════════════════════════════════ */
.gve-features {
  padding: var(--sp-2xl) 0;
  background: var(--gve-white);
}

/* Intro text block */
.gve-features__intro {
  text-align: center;
  margin-bottom: var(--sp-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.gve-features__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 1.95rem);
  font-weight: 400;
  color: var(--gve-forest);
  font-style: italic;
  margin: 0 0 var(--sp-sm);
  line-height: 1.3;
}
.gve-features__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gve-muted);
  line-height: 1.8;
  margin: 0;
}

/* Divider */
.gve-features__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gve-green), transparent);
  margin: 0 auto var(--sp-xl);
  border-radius: 2px;
}

/* 6-column icon grid */
.gve-features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 1024px) {
  .gve-features__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gve-features__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-sm); }
}

/* Individual Feature Card */
.gve-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-sm);
  padding: var(--sp-lg) var(--sp-sm);
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  cursor: default;
}
.gve-feature-card:hover {
  border-color: var(--gve-green-light);
  background: #f7faf4;
  box-shadow: 0 8px 28px rgba(110, 145, 82, 0.1);
  transform: translateY(-4px);
}

/* Icon circle */
.gve-feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef4e8 0%, #d9eacc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gve-forest);
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.gve-feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gve-forest);
  transition: stroke 0.3s ease;
}
.gve-feature-card:hover .gve-feature-card__icon {
  background: linear-gradient(135deg, var(--gve-green) 0%, var(--gve-forest) 100%);
  transform: scale(1.08);
}
.gve-feature-card:hover .gve-feature-card__icon svg {
  stroke: var(--gve-white);
}

/* Feature label */
.gve-feature-card__title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gve-charcoal);
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.01em;
}


/* ════════════════════════════════════════════════════════════════
   29. HOMEPAGE — CTA BANNER
   Full-width panoramic image with centered text overlay
════════════════════════════════════════════════════════════════ */
.gve-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image layer */
.gve-cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.08); /* give parallax room */
}
.gve-cta-banner__img,
.gve-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* Placeholder inside banner */
.gve-cta-banner__bg .gve-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 0;
  background: linear-gradient(170deg, #1a3a1a 0%, #2E4B2E 50%, #5a8a40 100%);
}

/* Dark overlay */
.gve-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 10, 0.55) 0%,
    rgba(10, 25, 10, 0.65) 100%
  );
  z-index: 1;
}

/* Content */
.gve-cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gve-white);
  padding: var(--sp-3xl) var(--sp-md);
  max-width: 720px;
  margin: 0 auto;
}
.gve-cta-banner__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--gve-white);
  margin: 0 0 var(--sp-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}
.gve-cta-banner__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--sp-xl);
}

/* Wide button variant */
.gve-btn--wide {
  min-width: 220px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gve-btn--wide svg { transition: transform 0.25s ease; }
.gve-btn--wide:hover svg { transform: translateX(5px); }


/* ════════════════════════════════════════════════════════════════
   30. RESPONSIVE — HOMEPAGE SLIDER & FEATURES
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Slider */
  .gve-slider {
    height: 100svh;
    min-height: 520px;
    max-height: none;
  }
  .gve-slider__heading { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .gve-slider__desc    { font-size: 0.88rem; max-width: 100%; }
  .gve-slider__counter { top: calc(var(--header-h, 70px) + 16px); }
  .gve-slider__nav     { bottom: 80px; left: var(--sp-md); }
  .gve-slider__actions { flex-direction: column; gap: 10px; }
  .gve-slider__actions .gve-btn { width: 100%; justify-content: center; }

  /* Features */
  .gve-features        { padding: var(--sp-xl) 0; }
  .gve-features__subtitle { font-size: 1.2rem; }

  /* CTA Banner */
  .gve-cta-banner      { min-height: 360px; }
  .gve-cta-banner__heading { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .gve-slider__content  { padding-top: calc(var(--header-h, 70px) + 10px); }
  .gve-slider__text     { padding-bottom: 120px; }
  .gve-features__grid   { grid-template-columns: repeat(2, 1fr); }
  .gve-feature-card     { padding: var(--sp-md) var(--sp-xs); }
  .gve-feature-card__icon { width: 54px; height: 54px; }
  .gve-feature-card__icon svg { width: 22px; height: 22px; }
}


/* ----------------------------------------------------------------
   31. ABOUT PAGE  Block Editor Styled Sections
   Pages ? About Us ? Edit controls all content below
---------------------------------------------------------------- */

.gve-page-about {
  padding-top: var(--header-h, 80px);
}
.gve-page-about__wrap {
  max-width: 100%;
}

/* -- Section 1: Split Hero -- */
.gve-about-hero-section {
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  max-width: 1200px !important;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}
.gve-about-split.wp-block-columns {
  gap: clamp(var(--sp-xl), 5vw, var(--sp-3xl));
  align-items: center;
  flex-wrap: nowrap;
}
.gve-about-split__left {
  flex: 1 1 45%;
}
.gve-about-split__right {
  flex: 1 1 50%;
}

/* Eyebrow */
.gve-about-eyebrow {
  font-family: var(--font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gve-green) !important;
  margin-bottom: var(--sp-sm) !important;
  padding-left: 36px;
  position: relative;
}
.gve-about-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1.5px;
  background: var(--gve-green);
}

/* Heading */
.gve-about-heading {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  color: var(--gve-forest) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 var(--sp-md) !important;
}

/* Divider under heading */
.gve-about-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gve-green), transparent);
  margin-top: var(--sp-sm);
  border-radius: 2px;
}

/* Paragraphs */
.gve-about-split__left p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: var(--sp-sm);
}

/* CTA button */
.gve-about-btn-wrap { margin-top: var(--sp-lg) !important; }
.gve-about-btn .wp-block-button__link {
  background: var(--gve-green) !important;
  color: var(--gve-white) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  padding: 0.9rem 2rem !important;
  border-radius: 50px !important;
  border: none !important;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
  text-decoration: none !important;
}
.gve-about-btn .wp-block-button__link:hover {
  background: var(--gve-forest) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(110,145,82,0.35) !important;
}

/* Villa photo */
.gve-about-main-photo {
  margin: 0 !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden;
}
.gve-about-main-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: var(--radius-xl) !important;
  display: block;
  box-shadow: 0 20px 60px rgba(46,75,46,0.18);
}
.gve-about-main-photo .wp-element-caption {
  font-size: 0.78rem;
  color: var(--gve-muted);
  text-align: center;
  padding: 8px 0 0;
  font-style: italic;
}

/* -- Section 2: Three Feature Cards -- */
.gve-about-cards-section {
  background: var(--gve-cream) !important;
  max-width: 100% !important;
  padding: var(--sp-3xl) clamp(20px, 5vw, 60px);
}
.gve-about-cards-heading {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 400 !important;
  color: var(--gve-forest) !important;
  margin-bottom: var(--sp-xl) !important;
}
.gve-about-three-cards.wp-block-columns {
  gap: var(--sp-lg) !important;
  max-width: 1200px;
  margin: 0 auto !important;
  flex-wrap: nowrap !important;
}
.gve-about-card {
  background: var(--gve-white) !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(46,75,46,0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  padding: 0 !important;
}
.gve-about-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(46,75,46,0.16) !important;
}
.gve-about-card__photo {
  margin: 0 !important;
  width: 100% !important;
}
.gve-about-card__photo img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}
.gve-about-card__photo .wp-element-caption {
  font-size: 0.75rem;
  color: var(--gve-muted);
  text-align: center;
  padding: 6px 16px;
  font-style: italic;
  background: #f8f6f1;
}
.gve-about-card__title {
  font-family: var(--font-serif) !important;
  font-size: 1.15rem !important;
  font-weight: 500 !important;
  color: var(--gve-forest) !important;
  margin: var(--sp-md) var(--sp-md) var(--sp-xs) !important;
  padding: 0 !important;
}
.gve-about-card__desc {
  font-family: var(--font-sans) !important;
  font-size: 0.88rem !important;
  color: var(--gve-muted) !important;
  line-height: 1.7 !important;
  margin: 0 var(--sp-md) var(--sp-md) !important;
  padding: 0 !important;
}

/* -- Section 3: Facilities -- */
.gve-about-facilities-section {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: var(--sp-3xl) clamp(20px, 5vw, 60px) var(--sp-2xl) !important;
}
.gve-about-fac-eyebrow {
  font-family: var(--font-sans) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gve-green) !important;
  margin-bottom: var(--sp-xs) !important;
}
.gve-about-fac-heading {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  font-weight: 400 !important;
  color: var(--gve-forest) !important;
  margin-bottom: var(--sp-sm) !important;
}
.gve-about-fac-desc {
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  color: var(--gve-muted) !important;
  margin-bottom: var(--sp-xl) !important;
}

/* Facilities list  styled as a pretty 3-column grid */
.gve-facilities-list.wp-block-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--sp-sm) var(--sp-md) !important;
  max-width: 900px;
  border: 1.5px solid var(--gve-gray-mid);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl) !important;
  background: var(--gve-cream);
}
.gve-facilities-list.wp-block-list li {
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  color: var(--gve-charcoal) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  background: var(--gve-white) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid transparent !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.gve-facilities-list.wp-block-list li::before {
  content: '?' !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: var(--gve-white) !important;
  background: var(--gve-green) !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.gve-facilities-list.wp-block-list li:hover {
  border-color: var(--gve-green-light) !important;
  box-shadow: 0 4px 14px rgba(110,145,82,0.1) !important;
}

/* -- Responsive -- */
@media (max-width: 900px) {
  .gve-about-split.wp-block-columns { flex-wrap: wrap !important; }
  .gve-about-split__left,
  .gve-about-split__right { flex-basis: 100% !important; }
  .gve-about-three-cards.wp-block-columns { flex-wrap: wrap !important; }
  .gve-about-three-cards .gve-about-card { flex-basis: calc(50% - 12px) !important; }
  .gve-facilities-list.wp-block-list { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .gve-about-three-cards .gve-about-card { flex-basis: 100% !important; }
  .gve-facilities-list.wp-block-list { grid-template-columns: 1fr !important; }
}

/* ----------------------------------------------------------------
   32. PAGE BANNER (Shared across all inner pages)
   Background image = Featured Image set in Pages ? Edit sidebar
   Edit: Pages ? [Page Name] ? Edit ? Featured Image (right panel)
---------------------------------------------------------------- */

.gve-page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-color: var(--gve-forest);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px; /* account for sticky header */
}

/* Dark gradient overlay so text is always readable */
.gve-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 50, 30, 0.35) 0%,
    rgba(20, 40, 20, 0.70) 100%
  );
  z-index: 1;
}

/* Placeholder (shown before Featured Image is uploaded) */
.gve-page-banner__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gve-forest-light) 0%, var(--gve-green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.gve-page-banner__placeholder-inner {
  text-align: center;
  color: var(--gve-forest);
  opacity: 0.7;
}
.gve-page-banner__placeholder-inner svg {
  display: block;
  margin: 0 auto var(--sp-sm);
}
.gve-page-banner__placeholder-inner p {
  font-size: 0.9rem;
  margin: 0 0 4px;
}
.gve-page-banner__placeholder-inner span {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* Text content */
.gve-page-banner__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-xl);
  padding-top: var(--sp-xl);
}

.gve-page-banner__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-xs);
  padding-left: 36px;
  position: relative;
}
.gve-page-banner__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%);
}

.gve-page-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--gve-white);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Remove top padding from about-page when banner is present */
.gve-page-about .gve-page-about__wrap {
  padding-top: 0;
}

/* Also remove any top-padding override on about hero section */
.gve-page-about .gve-about-hero-section {
  padding-top: var(--sp-2xl);
}

/* Responsive */
@media (max-width: 768px) {
  .gve-page-banner {
    min-height: 240px;
  }
}

/* ----------------------------------------------------------------
   33. GALLERY PAGE  Full Redesign
---------------------------------------------------------------- */

/* -- Welcome Section -- */
.gve-gal-welcome {
  padding: var(--sp-3xl) 0 var(--sp-xl);
  text-align: center;
  background: var(--gve-white);
}
.gve-gal-welcome__inner {
  max-width: 740px;
  margin: 0 auto;
}
.gve-gal-welcome__leaf {
  width: 120px;
  margin: 0 auto var(--sp-md);
}
.gve-gal-welcome__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-sm);
}
.gve-gal-welcome__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gve-forest);
  line-height: 1.15;
  margin: 0 0 var(--sp-md);
}
.gve-gal-welcome__divider {
  width: 200px;
  margin: 0 auto var(--sp-md);
}
.gve-gal-welcome__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gve-muted);
  line-height: 1.85;
  margin: 0;
}

/* -- Filter Buttons -- */
.gve-gal-main {
  padding: var(--sp-xl) 0 var(--sp-3xl);
  background: var(--gve-cream);
}
.gve-gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  justify-content: center;
  margin-bottom: var(--sp-2xl);
}
.gve-gal-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gve-charcoal);
  background: var(--gve-white);
  border: 1.5px solid var(--gve-gray-mid);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.gve-gal-filter-btn:hover {
  border-color: var(--gve-green);
  color: var(--gve-green);
  background: rgba(110, 145, 82, 0.06);
}
.gve-gal-filter-btn.is-active {
  background: var(--gve-forest);
  border-color: var(--gve-forest);
  color: var(--gve-white);
  box-shadow: 0 4px 14px rgba(46, 75, 46, 0.28);
}

/* -- Masonry Gallery Grid -- */
.gve-gal-grid {
  columns: 3;
  column-gap: 20px;
}
@media (max-width: 900px) { .gve-gal-grid { columns: 2; } }
@media (max-width: 560px) { .gve-gal-grid { columns: 1; } }

.gve-gal-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  box-shadow: 0 6px 24px rgba(46, 75, 46, 0.10);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.gve-gal-item--large {
  column-span: all;
  margin-bottom: 20px;
}
.gve-gal-item:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(46, 75, 46, 0.22);
}
.gve-gal-item__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  display: block;
}
.gve-gal-item__img,
.gve-gal-item__wrap .gve-placeholder {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 0;
  margin: 0;
}
.gve-gal-item:hover .gve-gal-item__img {
  transform: scale(1.06);
}

/* Hover Overlay */
.gve-gal-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 40, 20, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--sp-md);
}
.gve-gal-item:hover .gve-gal-item__overlay { opacity: 1; }
.gve-gal-item__overlay-inner {
  text-align: center;
  color: var(--gve-white);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gve-gal-item:hover .gve-gal-item__overlay-inner { transform: translateY(0); }
.gve-gal-item__overlay-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto var(--sp-xs);
}
.gve-gal-item__overlay-icon svg {
  width: 100%;
  height: 100%;
}
.gve-gal-item__overlay-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Hidden items (filtered out) */
.gve-gal-item[aria-hidden="true"] {
  display: none;
}

/* -- Gallery Highlights Cards -- */
.gve-gal-highlights {
  padding: var(--sp-3xl) 0;
  background: var(--gve-white);
}
.gve-gal-highlights__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.gve-gal-highlights__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-xs);
}
.gve-gal-highlights__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gve-forest);
  margin: 0;
}
.gve-gal-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 900px) { .gve-gal-highlights__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gve-gal-highlights__grid { grid-template-columns: 1fr 1fr; } }

.gve-gal-highlight-card {
  background: var(--gve-white);
  border: 1.5px solid var(--gve-gray-mid);
  border-radius: var(--radius-xl);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.gve-gal-highlight-card:hover {
  border-color: var(--gve-green);
  box-shadow: 0 8px 28px rgba(110, 145, 82, 0.14);
  transform: translateY(-4px);
}
.gve-gal-highlight-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--sp-sm);
  color: var(--gve-green);
}
.gve-gal-highlight-card__icon svg {
  width: 100%;
  height: 100%;
}
.gve-gal-highlight-card__title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gve-charcoal);
  line-height: 1.4;
  margin: 0;
}

/* -- Panoramic Quote Banner -- */
.gve-gal-panoramic {
  position: relative;
  min-height: 360px;
  background-color: var(--gve-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gve-gal-panoramic__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.gve-gal-panoramic .gve-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
  aspect-ratio: unset;
}
.gve-gal-panoramic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,20,0.50) 0%, rgba(20,40,20,0.70) 100%);
  z-index: 1;
}
.gve-gal-panoramic__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-3xl) 0;
}
.gve-gal-panoramic__quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: var(--sp-md);
  display: block;
}
.gve-gal-panoramic__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gve-white);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 780px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}

/* -- Instagram Inspiration Strip -- */
.gve-gal-insta {
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  background: var(--gve-cream);
}
.gve-gal-insta__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.gve-gal-insta__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-xs);
}
.gve-gal-insta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gve-forest);
  margin: 0;
}
.gve-gal-insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}
@media (max-width: 700px) { .gve-gal-insta__grid { grid-template-columns: 1fr; } }

.gve-gal-insta-post {
  text-align: center;
}
.gve-gal-insta-post__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gve-gray-mid);
  cursor: pointer;
}
.gve-gal-insta-post__media img,
.gve-gal-insta-post__media .gve-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  display: block;
  aspect-ratio: unset;
  transition: transform 0.4s ease;
}
.gve-gal-insta-post:hover .gve-gal-insta-post__media img { transform: scale(1.06); }
.gve-gal-insta-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,40,20,0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gve-white);
}
.gve-gal-insta-post__overlay svg { width: 40px; height: 40px; }
.gve-gal-insta-post:hover .gve-gal-insta-post__overlay { opacity: 1; }
.gve-gal-insta-post__caption {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gve-charcoal);
  margin: var(--sp-sm) 0 0;
}
.gve-gal-insta__cta {
  text-align: center;
}
.gve-gal-insta__cta .gve-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
}

/* ----------------------------------------------------------------
   34. LIGHTBOX PHOTO VIEWER
---------------------------------------------------------------- */

/* Prevent body scroll when lightbox is open */
body.gve-lightbox-active {
  overflow: hidden;
}

/* -- Lightbox wrapper -- */
.gve-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gve-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* -- Dark scrim background -- */
.gve-lightbox__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 10, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}

/* -- Main panel (image + caption) -- */
.gve-lightbox__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  width: 100%;
}

/* -- Image stage -- */
.gve-lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
}

.gve-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;

  /* Fade in when loaded */
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gve-lightbox__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

/* Placeholder state (no image uploaded yet) */
.gve-lightbox__img.is-placeholder {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: center;
  min-height: 300px;
  width: 600px;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.2);
}

/* -- Loading spinner -- */
.gve-lightbox__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.gve-lightbox__loader[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.gve-lightbox__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: gve-spin 0.8s linear infinite;
}
@keyframes gve-spin {
  to { transform: rotate(360deg); }
}

/* -- Caption -- */
.gve-lightbox__caption {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.03em;
  max-width: 600px;
  padding: 0 20px;
}

/* -- Counter -- */
.gve-lightbox__counter {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* -- Close button -- */
.gve-lightbox__close {
  position: absolute;
  top: -50px;
  right: -4px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
  z-index: 3;
}
.gve-lightbox__close svg {
  width: 18px;
  height: 18px;
}
.gve-lightbox__close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg);
}

/* -- Prev / Next navigation buttons -- */
.gve-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.gve-lightbox__nav svg {
  width: 22px;
  height: 22px;
}
.gve-lightbox__nav:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.08);
}
.gve-lightbox__nav--prev {
  left: clamp(8px, 3vw, 30px);
}
.gve-lightbox__nav--next {
  right: clamp(8px, 3vw, 30px);
}

/* -- Make gallery items show pointer cursor -- */
.gve-gal-item {
  cursor: pointer;
}

/* -- Mobile -- */
@media (max-width: 600px) {
  .gve-lightbox__panel { max-width: 100vw; }
  .gve-lightbox__img   { border-radius: 10px; max-height: 70vh; }
  .gve-lightbox__nav   { width: 40px; height: 40px; }
  .gve-lightbox__nav svg { width: 18px; height: 18px; }
}

/* ----------------------------------------------------------------
   35. CONTACT PAGE  Premium Redesign
---------------------------------------------------------------- */

.gve-contact-page { padding-top: 0; }

/* -- Section 1: Split Layout -- */
.gve-contact-split {
  padding: var(--sp-3xl) 0;
  background: var(--gve-cream);
}
.gve-contact-split__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--sp-xl), 4vw, var(--sp-3xl));
  align-items: start;
}
@media (max-width: 900px) {
  .gve-contact-split__inner { grid-template-columns: 1fr; }
}

/* -- Glassmorphism Info Cards -- */
.gve-contact-left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.gve-contact-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(110, 145, 82, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(46, 75, 46, 0.08);
  padding: var(--sp-lg);
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gve-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(46, 75, 46, 0.14);
}
.gve-contact-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gve-green-light), rgba(110, 145, 82, 0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gve-green);
}
.gve-contact-card__icon svg { width: 22px; height: 22px; }
.gve-contact-card__body { flex: 1; min-width: 0; }
.gve-contact-card__label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gve-forest);
  margin: 0 0 var(--sp-sm);
}
.gve-contact-card__value {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gve-muted);
  line-height: 1.7;
  margin: 0 0 var(--sp-sm);
}
.gve-contact-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gve-green);
  border: 1.5px solid var(--gve-green);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.gve-contact-card__btn svg { width: 13px; height: 13px; }
.gve-contact-card__btn:hover {
  background: var(--gve-green);
  color: var(--gve-white);
}

/* Contact info rows (WhatsApp, Email) */
.gve-contact-info-row {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(110, 145, 82, 0.1);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.gve-contact-info-row:last-child { border-bottom: none; }
.gve-contact-info-row:hover { transform: translateX(4px); }
.gve-contact-info-row__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gve-cream);
  color: var(--gve-green);
}
.gve-contact-info-row--wa .gve-contact-info-row__icon { color: #25d366; }
.gve-contact-info-row__icon svg { width: 18px; height: 18px; }
.gve-contact-info-row__type {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gve-muted);
  font-family: var(--font-sans);
}
.gve-contact-info-row__val {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gve-charcoal);
  font-family: var(--font-sans);
}

/* Check-in / Check-out times */
.gve-checktimes {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-xs);
}
.gve-checktime {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex: 1;
  background: rgba(110, 145, 82, 0.06);
  border-radius: var(--radius-md);
  padding: var(--sp-sm);
}
.gve-checktime__icon {
  width: 32px;
  height: 32px;
  color: var(--gve-green);
  flex-shrink: 0;
}
.gve-checktime__icon svg { width: 100%; height: 100%; }
.gve-checktime__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gve-muted);
  font-family: var(--font-sans);
}
.gve-checktime__time {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gve-forest);
  font-family: var(--font-sans);
}

/* -- Right Column: Contact Form -- */
.gve-contact-right { }
.gve-contact-form-wrap {
  background: var(--gve-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl) var(--sp-2xl);
  box-shadow: 0 8px 40px rgba(46, 75, 46, 0.10);
}
@media (max-width: 600px) {
  .gve-contact-form-wrap { padding: var(--sp-lg); }
}
.gve-contact-form-header { margin-bottom: var(--sp-lg); }
.gve-contact-form-header__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-xs);
  font-family: var(--font-sans);
}
.gve-contact-form-header__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--gve-forest);
  margin: 0 0 var(--sp-xs);
}
.gve-contact-form-header__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gve-muted);
  line-height: 1.65;
  margin: 0;
}

/* -- Contact Form 7 Styling Override -- */
.gve-contact-form-wrap .wpcf7 { margin-top: var(--sp-md); }
.gve-contact-form-wrap .wpcf7-form p { margin-bottom: var(--sp-sm); }

.gve-contact-form-wrap .wpcf7-form input[type="text"],
.gve-contact-form-wrap .wpcf7-form input[type="email"],
.gve-contact-form-wrap .wpcf7-form input[type="tel"],
.gve-contact-form-wrap .wpcf7-form input[type="url"],
.gve-contact-form-wrap .wpcf7-form input[type="number"],
.gve-contact-form-wrap .wpcf7-form select,
.gve-contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  font-family: var(--font-sans) !important;
  font-size: 0.92rem !important;
  color: var(--gve-charcoal) !important;
  background: var(--gve-cream) !important;
  border: 1.5px solid var(--gve-gray-mid) !important;
  border-radius: 12px !important;
  padding: 0.85rem 1.1rem !important;
  outline: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
  box-shadow: none !important;
}
.gve-contact-form-wrap .wpcf7-form input:focus,
.gve-contact-form-wrap .wpcf7-form select:focus,
.gve-contact-form-wrap .wpcf7-form textarea:focus {
  border-color: var(--gve-green) !important;
  box-shadow: 0 0 0 3px rgba(110, 145, 82, 0.14) !important;
  background: var(--gve-white) !important;
}
.gve-contact-form-wrap .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}
.gve-contact-form-wrap .wpcf7-form .wpcf7-submit,
.gve-contact-form-wrap .wpcf7-form input[type="submit"] {
  font-family: var(--font-sans) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: var(--gve-white) !important;
  background: var(--gve-forest) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 1rem 2.5rem !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.gve-contact-form-wrap .wpcf7-form .wpcf7-submit:hover,
.gve-contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--gve-green) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(110, 145, 82, 0.32) !important;
}
.gve-contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.78rem !important;
  color: #c0392b !important;
  font-family: var(--font-sans) !important;
}
.gve-contact-form-wrap .wpcf7-response-output {
  border-radius: 10px !important;
  font-size: 0.85rem !important;
  font-family: var(--font-sans) !important;
  margin-top: var(--sp-sm) !important;
}

/* CF7 not installed notice */
.gve-cf7-notice {
  background: var(--gve-cream);
  border: 1.5px dashed var(--gve-gray-mid);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  text-align: center;
}
.gve-cf7-notice__icon { width: 40px; height: 40px; margin: 0 auto var(--sp-sm); color: var(--gve-muted); }
.gve-cf7-notice__icon svg { width: 100%; height: 100%; }
.gve-cf7-notice p { font-size: 0.92rem; color: var(--gve-charcoal); margin-bottom: var(--sp-sm); }
.gve-cf7-notice ol { text-align: left; font-size: 0.85rem; color: var(--gve-muted); line-height: 1.9; padding-left: var(--sp-lg); margin: 0; }

/* -- Section 2: Map -- */
.gve-contact-map {
  position: relative;
  background: var(--gve-white);
}
.gve-contact-map__wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(46, 75, 46, 0.12);
  margin: 0 clamp(20px, 4vw, 60px);
}
.gve-contact-map__iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
.gve-contact-map__cta-bar {
  text-align: center;
  padding: var(--sp-lg) 0 var(--sp-2xl);
}
.gve-contact-map__open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gve-green);
  border: 1.5px solid var(--gve-green);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.gve-contact-map__open-btn:hover {
  background: var(--gve-green);
  color: var(--gve-white);
}

/* -- Section 3: Follow Us -- */
.gve-contact-social {
  padding: var(--sp-3xl) 0;
  background: var(--gve-cream);
  text-align: center;
}
.gve-contact-social__inner { max-width: 680px; margin: 0 auto; }
.gve-contact-social__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  font-family: var(--font-sans);
  margin-bottom: var(--sp-xs);
}
.gve-contact-social__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--gve-forest);
  margin: 0 0 var(--sp-sm);
}
.gve-contact-social__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gve-muted);
  line-height: 1.75;
  margin: 0 0 var(--sp-xl);
}
.gve-contact-social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}
.gve-social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  text-decoration: none;
  color: var(--gve-charcoal);
  transition: transform 0.3s ease;
}
.gve-social-icon:hover { transform: translateY(-6px); }
.gve-social-icon__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gve-white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: box-shadow 0.3s ease;
}
.gve-social-icon__circle svg { width: 28px; height: 28px; }
.gve-social-icon--facebook .gve-social-icon__circle { background: #1877f2; }
.gve-social-icon--instagram .gve-social-icon__circle { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.gve-social-icon--whatsapp .gve-social-icon__circle { background: #25d366; }
.gve-social-icon:hover .gve-social-icon__circle { box-shadow: 0 12px 32px rgba(0,0,0,0.28); }
.gve-social-icon__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gve-muted);
  letter-spacing: 0.06em;
}

/* -- Section 4: CTA Strip -- */
.gve-contact-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--gve-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.gve-contact-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  aspect-ratio: unset;
}
.gve-contact-cta .gve-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
  aspect-ratio: unset;
}
.gve-contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,20,0.55), rgba(20,40,20,0.75));
  z-index: 1;
}
.gve-contact-cta__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-3xl) 0;
  max-width: 680px;
}
.gve-contact-cta__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  margin-bottom: var(--sp-sm);
}
.gve-contact-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gve-white);
  line-height: 1.15;
  margin: 0 0 var(--sp-md);
}
.gve-contact-cta__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin: 0 0 var(--sp-xl);
}
.gve-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gve-white);
  background: #25d366;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: gve-pulse-wa 2.5s infinite;
}
.gve-contact-cta__btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  animation: none;
}
.gve-contact-cta__btn-icon { width: 22px; height: 22px; flex-shrink: 0; }
.gve-contact-cta__btn-icon svg { width: 100%; height: 100%; }

@keyframes gve-pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ----------------------------------------------------------------
   36. THINGS TO DO PAGE  Premium Redesign
---------------------------------------------------------------- */

.gve-ttd-page { padding-top: 0; }

/* -- Intro Section -- */
.gve-ttd-intro {
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  background: var(--gve-white);
  text-align: center;
}
.gve-ttd-intro__inner { max-width: 720px; margin: 0 auto; }
.gve-ttd-intro__leaf {
  width: 120px;
  margin: 0 auto var(--sp-md);
}
.gve-ttd-intro__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gve-green);
  margin-bottom: var(--sp-sm);
}
.gve-ttd-intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gve-forest);
  line-height: 1.15;
  margin: 0 0 var(--sp-md);
}
.gve-ttd-intro__divider {
  width: 200px;
  margin: 0 auto var(--sp-md);
}
.gve-ttd-intro__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gve-muted);
  line-height: 1.85;
  margin: 0;
}

/* -- Attractions Grid -- */
.gve-ttd-attractions {
  padding: var(--sp-xl) 0 var(--sp-3xl);
  background: var(--gve-cream);
}
.gve-ttd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
@media (max-width: 960px) { .gve-ttd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .gve-ttd-grid { grid-template-columns: 1fr; } }

/* -- Attraction Card -- */
.gve-ttd-card {
  background: var(--gve-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(46, 75, 46, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.gve-ttd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(46, 75, 46, 0.18);
}

/* Card Image */
.gve-ttd-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gve-gray-mid);
}
.gve-ttd-card__img,
.gve-ttd-card__img-wrap .gve-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
  aspect-ratio: unset;
  transition: transform 0.5s ease;
}
.gve-ttd-card:hover .gve-ttd-card__img,
.gve-ttd-card:hover .gve-ttd-card__img-wrap .gve-placeholder {
  transform: scale(1.06);
}

/* Hover image shimmer overlay */
.gve-ttd-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 50, 30, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gve-ttd-card:hover .gve-ttd-card__img-overlay { opacity: 1; }

/* Card Body */
.gve-ttd-card__body {
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gve-ttd-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gve-forest);
  margin: 0 0 var(--sp-xs);
  transition: color 0.25s ease;
}
.gve-ttd-card:hover .gve-ttd-card__title { color: var(--gve-green); }
.gve-ttd-card__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--gve-muted);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* -- Travel Assistance Section -- */
.gve-ttd-assist {
  padding: var(--sp-3xl) 0;
  background: var(--gve-white);
}
.gve-ttd-assist__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  max-width: 860px;
  margin: 0 auto;
  background: var(--gve-cream);
  border: 1.5px solid rgba(110, 145, 82, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  box-shadow: 0 6px 32px rgba(46, 75, 46, 0.07);
}
@media (max-width: 700px) {
  .gve-ttd-assist__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-xl);
  }
}
.gve-ttd-assist__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.gve-ttd-assist__icon svg { width: 100%; height: 100%; }
.gve-ttd-assist__content { flex: 1; }
.gve-ttd-assist__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--gve-forest);
  margin: 0 0 var(--sp-sm);
}
.gve-ttd-assist__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gve-muted);
  line-height: 1.75;
  margin: 0 0 var(--sp-lg);
}
.gve-ttd-assist__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  text-decoration: none;
}

/* -- CTA Banner -- */
.gve-ttd-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--gve-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.gve-ttd-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  aspect-ratio: unset;
}
.gve-ttd-cta .gve-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  margin: 0;
  aspect-ratio: unset;
}
.gve-ttd-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,20,0.45), rgba(20,40,20,0.72));
  z-index: 1;
}
.gve-ttd-cta__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-3xl) 0;
  max-width: 720px;
}
.gve-ttd-cta__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-sm);
}
.gve-ttd-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--gve-white);
  margin: 0 0 var(--sp-md);
  line-height: 1.12;
}
.gve-ttd-cta__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin: 0 0 var(--sp-xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.gve-ttd-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gve-white);
  background: var(--gve-green);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.4rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(110,145,82,0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.gve-ttd-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; }
.gve-ttd-cta__btn:hover {
  background: var(--gve-forest-light, #2e6b3e);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(110,145,82,0.55);
}
.gve-ttd-cta__btn:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------------
   37. GLOBAL OVERHAUL  Nav, Animations, UX Cinematic Polish
---------------------------------------------------------------- */

/* -- Nav always WHITE when header is transparent (top of page) -- */
/* This covers ALL pages  not just the homepage hero */
.gve-header:not(.is-scrolled) .gve-header__site-name,
.gve-header:not(.is-scrolled) .gve-header__toggle-bar {
  color: var(--gve-white);
  background: var(--gve-white); /* toggle bars */
}
.gve-header:not(.is-scrolled) .gve-nav__menu li a {
  color: rgba(255, 255, 255, 0.93);
}
.gve-header:not(.is-scrolled) .gve-nav__menu li a:hover,
.gve-header:not(.is-scrolled) .gve-nav__menu li.current-menu-item a {
  color: var(--gve-white);
}
.gve-header:not(.is-scrolled) .gve-nav__menu li a::after {
  background: rgba(255, 255, 255, 0.9);
}

/* Once scrolled, revert to dark */
.gve-header.is-scrolled .gve-nav__menu li a {
  color: var(--gve-charcoal);
}
.gve-header.is-scrolled .gve-nav__menu li a:hover,
.gve-header.is-scrolled .gve-nav__menu li.current-menu-item a {
  color: var(--gve-green);
}
.gve-header.is-scrolled .gve-nav__menu li a::after {
  background: var(--gve-green);
}
.gve-header.is-scrolled .gve-header__site-name {
  color: var(--gve-charcoal);
}

/* -- WhatsApp Nav Button -- */
.gve-btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gve-white) !important;
  background: #25d366;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.gve-btn--whatsapp svg { flex-shrink: 0; transition: transform 0.3s ease; }
.gve-btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.gve-btn--whatsapp:hover svg { transform: scale(1.15) rotate(-5deg); }

/* Keep visible on transparent dark header */
.gve-header:not(.is-scrolled) .gve-btn--whatsapp {
  background: rgba(37, 211, 102, 0.9);
  border: 1.5px solid rgba(255,255,255,0.2);
}

/* -- Enhanced Scroll Reveal Animations -- */
.gve-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.gve-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.gve-reveal--up {
  transform: translateY(48px);
}
.gve-reveal--left {
  transform: translateX(-40px);
  opacity: 0;
}
.gve-reveal--right {
  transform: translateX(40px);
  opacity: 0;
}
.gve-reveal--scale {
  transform: scale(0.94) translateY(20px);
  opacity: 0;
}
.gve-reveal.is-visible,
.gve-reveal--left.is-visible,
.gve-reveal--right.is-visible,
.gve-reveal--scale.is-visible {
  opacity: 1;
  transform: none;
}

/* -- Cinematic Page Banner Text Enhancement -- */
.gve-page-banner__title {
  text-shadow: 0 4px 40px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.4);
  animation: gve-banner-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.gve-page-banner__subtitle {
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  animation: gve-banner-rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes gve-banner-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Slightly deeper overlay on page banners for readability */
.gve-page-banner::before {
  background: linear-gradient(
    170deg,
    rgba(15, 30, 15, 0.5) 0%,
    rgba(15, 30, 15, 0.72) 60%,
    rgba(15, 30, 15, 0.8) 100%
  ) !important;
}

/* -- Hero Slider cinematic polish -- */
.gve-hero__slide-content {
  animation: gve-hero-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes gve-hero-in {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* -- Premium Card Hover  across ALL card types -- */
.gve-attraction-card,
.gve-room-card,
.gve-ttd-card,
.gve-contact-card,
.gve-gal-highlight-card {
  will-change: transform, box-shadow;
}

/* -- Enhanced button styles -- */
.gve-btn--primary {
  position: relative;
  overflow: hidden;
}
.gve-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.14) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.gve-btn--primary:hover::before {
  transform: translateX(100%);
}

/* -- Smooth section dividers -- */
.gve-section + .gve-section {
  position: relative;
}

/* -- Better focus rings for accessibility + visual polish -- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--gve-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -- About page "Get in Touch" fix  rename to WhatsApp CTA -- */
.gve-about-cta a[href*="wa.me"],
.gve-about-cta .gve-btn--primary {
  background: #25d366;
  box-shadow: 0 6px 28px rgba(37,211,102,0.38);
}
.gve-about-cta a[href*="wa.me"]:hover,
.gve-about-cta .gve-btn--primary:hover {
  background: #1da851;
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}

/* -- Staggered card grid animation improvement -- */
.gve-ttd-grid .gve-ttd-card:nth-child(1) { --delay: 0s; }
.gve-ttd-grid .gve-ttd-card:nth-child(2) { --delay: 0.08s; }
.gve-ttd-grid .gve-ttd-card:nth-child(3) { --delay: 0.16s; }
.gve-ttd-grid .gve-ttd-card:nth-child(4) { --delay: 0.06s; }
.gve-ttd-grid .gve-ttd-card:nth-child(5) { --delay: 0.14s; }
.gve-ttd-grid .gve-ttd-card:nth-child(6) { --delay: 0.22s; }
.gve-ttd-grid .gve-ttd-card:nth-child(7) { --delay: 0.04s; }
.gve-ttd-grid .gve-ttd-card:nth-child(8) { --delay: 0.12s; }
.gve-ttd-grid .gve-ttd-card:nth-child(9) { --delay: 0.20s; }

.gve-gal-grid .gve-gal-item:nth-child(3n+1) { --delay: 0s; }
.gve-gal-grid .gve-gal-item:nth-child(3n+2) { --delay: 0.08s; }
.gve-gal-grid .gve-gal-item:nth-child(3n)   { --delay: 0.16s; }

/* -- Mobile nav  full white background -- */
@media (max-width: 1023px) {
  .gve-nav.is-open {
    background: rgba(20, 40, 20, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .gve-nav.is-open .gve-nav__menu li a {
    color: rgba(255,255,255,0.9) !important;
  }
  .gve-nav.is-open .gve-nav__menu li a:hover {
    color: var(--gve-white) !important;
    background: rgba(255,255,255,0.08);
  }
  .gve-nav.is-open .gve-btn--whatsapp {
    margin: var(--sp-md) auto;
    display: flex;
    justify-content: center;
    max-width: 260px;
  }
  /* Hide long button text on small screens */
  .gve-btn--nav .gve-btn-label,
  .gve-btn--whatsapp span.hide-mobile { display: none; }
}

/* -- Floating WhatsApp button (visible on all pages) -- */
.gve-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0,0,0,0.18);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: gve-wa-float-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both,
             gve-wa-pulse 3s ease-in-out 2s infinite;
}
.gve-wa-float svg { width: 30px; height: 30px; }
.gve-wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(0,0,0,0.2);
  animation-play-state: paused;
}
.gve-wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--gve-forest);
  color: var(--gve-white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gve-wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gve-forest);
}
.gve-wa-float:hover .gve-wa-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes gve-wa-float-in {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes gve-wa-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* -- Typography refinements -- */
.gve-section__title,
.gve-page-banner__title {
  letter-spacing: -0.02em;
}
.gve-section__subtitle {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Improved placeholder cards  dark refined look -- */
.gve-placeholder {
  background:
    linear-gradient(135deg, rgba(46,75,46,0.08) 0%, rgba(110,145,82,0.06) 100%);
  border: 1.5px dashed rgba(110,145,82,0.3) !important;
  border-radius: inherit;
}
.gve-placeholder__label {
  font-size: 0.78rem;
  color: rgba(110,145,82,0.7);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   38. FIX  About Us page white gap above banner
---------------------------------------------------------------- */

/* Remove the extra padding-top that was creating a white gap
   between the sticky header and the page banner image.
   The banner itself already accounts for the header height. */
.gve-page-about {
  padding-top: 0 !important;
}

/* Ensure the banner always fills to the top edge on ALL inner pages */
.gve-contact-page,
.gve-ttd-page,
.gve-gallery-page {
  padding-top: 0 !important;
}

/* Ensure banner background-image fully covers, no white gap */
.gve-page-banner {
  min-height: 380px;
  background-attachment: fixed; /* parallax on desktop */
}

/* The white content area below the banner  ensure it starts clean */
.gve-page-about__wrap {
  background: var(--gve-white);
  position: relative;
  z-index: 1;
}
