/* ============================================================
   HACIENDA YUKE — Main Stylesheet
   Design System: Eco-Luxury | Jungle Greens | Earth Tones
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Color Palette */
  --color-forest-deep:   #1a2e1a;
  --color-forest-mid:    #2d4a2d;
  --color-forest-light:  #3d6b3d;
  --color-forest-bright: #4a8c4a;
  --color-jungle-mist:   #6b9e6b;
  --color-leaf:          #7ab87a;

  --color-earth-dark:    #3d2b1a;
  --color-earth-mid:     #6b4c2a;
  --color-earth-warm:    #8b6340;
  --color-earth-light:   #c4956a;

  --color-gold:          #c9a84c;
  --color-gold-light:    #e0c070;
  --color-amber:         #d4882a;

  --color-cream:         #faf6ef;
  --color-ivory:         #f5f0e8;
  --color-white:         #ffffff;
  --color-off-white:     #fdfaf5;

  --color-text-dark:     #1e1e1e;
  --color-text-mid:      #3a3a3a;
  --color-text-light:    #6a6a6a;
  --color-text-muted:    #9a9a9a;

  /* Typography */
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-script:   'Dancing Script', cursive;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing Scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26, 46, 26, 0.08);
  --shadow-md:  0 4px 20px rgba(26, 46, 26, 0.12);
  --shadow-lg:  0 8px 40px rgba(26, 46, 26, 0.18);
  --shadow-xl:  0 16px 60px rgba(26, 46, 26, 0.24);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   500ms ease;

  /* Layout */
  --max-width:    1200px;
  --nav-height:   80px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-forest-deep);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; }

p {
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.8;
}

.text-serif { font-family: var(--font-serif); }
.text-script { font-family: var(--font-script); }
.text-sans { font-family: var(--font-sans); }

.text-gold { color: var(--color-gold); }
.text-forest { color: var(--color-forest-mid); }
.text-earth { color: var(--color-earth-mid); }
.text-cream { color: var(--color-cream); }
.text-muted { color: var(--color-text-muted); }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

.section-title + .section-subtitle {
  margin-top: var(--space-md);
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-amber));
  margin: var(--space-lg) 0;
}

.divider-center {
  margin: var(--space-lg) auto;
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-forest-mid), var(--color-forest-light));
  color: var(--color-white);
  border-color: var(--color-forest-mid);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-forest-deep), var(--color-forest-mid));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-amber), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
}

.btn-outline-dark:hover {
  background: var(--color-forest-mid);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 30, 18, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* Ensure nav text is always white against dark backgrounds */
.navbar.scrolled .nav-logo-script,
.navbar.solid .nav-logo-script {
  color: var(--color-white);
}

.navbar.scrolled .nav-link,
.navbar.solid .nav-link {
  color: rgba(255,255,255,0.88);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar.solid .nav-link:hover,
.navbar.solid .nav-link.active {
  color: var(--color-gold-light);
}

.navbar.scrolled .nav-hamburger span,
.navbar.solid .nav-hamburger span {
  background: var(--color-white);
}

/* WhatsApp float — removed globally */
.whatsapp-float {
  display: none !important;
}

.navbar.solid {
  background: var(--color-forest-deep);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-md);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(26, 46, 26, 0.98);
  backdrop-filter: blur(12px);
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ── Footer ── */
.footer {
  background: var(--color-forest-deep);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 var(--space-xl);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl) var(--space-2xl);
}

.footer-brand,
.footer-nav,
.footer-contact {
  text-align: center;
}

.footer-nav ul {
  text-align: center;
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo-script {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.footer-contact-item .icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-gold-light);
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(10, 25, 10, 0.75) 0%,
      rgba(26, 46, 26, 0.55) 40%,
      rgba(45, 74, 45, 0.45) 70%,
      rgba(10, 25, 10, 0.7) 100%
    ),
    radial-gradient(ellipse at 30% 60%, rgba(74, 140, 74, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
  background-color: var(--color-forest-deep);
}

/* Decorative jungle layers */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(45, 74, 45, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 75%, rgba(26, 46, 26, 0.6) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(10, 20, 10, 0.8) 0%, transparent 40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--color-cream), transparent);
}

/* SVG leaf decorations */
.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-2xl);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
}

.page-hero-content h1 {
  color: var(--color-white);
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero-content p {
  font-size: clamp(1.2rem, 2vw, 1.45rem) !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.85) !important;
}

.page-hero-content .section-label {
  justify-content: center;
  display: flex;
}

/* ── Brand Story Section ── */
.brand-story {
  background: var(--color-off-white);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.brand-story-visual {
  position: relative;
}

.brand-story-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.brand-story-img-frame .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    var(--color-forest-mid) 0%,
    var(--color-forest-bright) 30%,
    var(--color-jungle-mist) 60%,
    var(--color-forest-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-story-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.brand-story-text .section-label {
  display: block;
}

.brand-story-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-forest-mid);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  line-height: 1.5;
}

/* ── Highlights Strip ── */
.highlights {
  background: linear-gradient(135deg, var(--color-forest-deep) 0%, var(--color-forest-mid) 100%);
  padding: var(--space-4xl) 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.highlight-card {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  transition: all var(--transition-base);
}

.highlight-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
}

.highlight-card h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.highlight-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--color-ivory);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-gold);
  line-height: 0.5;
  margin-bottom: var(--space-lg);
  opacity: 0.4;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-forest-light), var(--color-jungle-mist));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ── Cabin Cards ── */
.cabin-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.cabin-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.cabin-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.cabin-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.cabin-card-body {
  padding: var(--space-2xl);
}

.cabin-card-meta {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.cabin-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.cabin-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
}

.cabin-card-body h3 {
  margin-bottom: var(--space-sm);
}

.cabin-card-body p {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.cabin-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.cabin-amenity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-mid);
}

.cabin-amenity::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  flex-shrink: 0;
}

.cabin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-ivory);
}

.cabin-price {
  font-family: var(--font-serif);
}

.cabin-price-from {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.cabin-price-amount {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-forest-mid);
}

.cabin-price-per {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── Image Placeholders ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.img-placeholder-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.img-placeholder svg {
  opacity: 0.4;
}

/* Cabin-specific gradients */
.cabin-img-1 {
  background: linear-gradient(145deg, #2d4a2d 0%, #4a8c4a 40%, #6b9e6b 70%, #3d6b3d 100%);
}

.cabin-img-2 {
  background: linear-gradient(145deg, #3d2b1a 0%, #6b4c2a 40%, #8b6340 70%, #c4956a 100%);
}

.cabin-img-3 {
  background: linear-gradient(145deg, #1a2e3d 0%, #2d4a5a 40%, #3d7a8a 70%, #5a9aaa 100%);
}

/* ── Experience Page ── */
.experience-intro {
  background: var(--color-off-white);
}

.experience-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.experience-visual {
  position: relative;
}

.experience-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #1a3d1a 0%, #2d6b2d 40%, #4a9a4a 70%, #6bbb6b 100%);
}

.experience-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #3d2b1a 0%, #8b6340 50%, #c4956a 100%);
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
}

.experience-stat-badge {
  position: absolute;
  top: var(--space-xl);
  right: -var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}

.experience-stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-forest-mid);
  line-height: 1;
}

.experience-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.activities-section {
  background: var(--color-cream);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.activity-card {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.activity-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-forest-light), var(--color-forest-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
}

.activity-content h4 {
  margin-bottom: var(--space-sm);
}

.activity-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.yunque-facts {
  background: linear-gradient(135deg, var(--color-forest-deep) 0%, var(--color-forest-mid) 100%);
  padding: var(--space-5xl) 0;
}

.yunque-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.yunque-fact {
  text-align: center;
  padding: var(--space-xl);
}

.yunque-fact-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.yunque-fact-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Booking Form ── */
.booking-section {
  background: var(--color-off-white);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-4xl);
  align-items: start;
}

.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.booking-sidebar-card {
  background: linear-gradient(145deg, var(--color-forest-deep), var(--color-forest-mid));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--color-white);
}

.booking-sidebar-card h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.booking-sidebar-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.booking-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.booking-info-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-info-item .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold-light);
  fill: none;
}

.booking-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-cream);
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-forest-light);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(61, 107, 61, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: var(--space-md);
}

.form-submit .btn {
  width: 100%;
  padding: 1.125rem;
  font-size: 1rem;
}

/* Confirmation message */
.booking-confirmation {
  display: none;
  text-align: center;
  padding: var(--space-4xl) var(--space-2xl);
}

.booking-confirmation.show {
  display: block;
}

.booking-form-content.hidden {
  display: none;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-forest-light), var(--color-forest-bright));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: none;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-detail {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-ivory);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-forest-light), var(--color-forest-bright));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--color-forest-mid);
  transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
  color: var(--color-gold);
}

.map-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #2d4a2d 0%, #4a7a4a 50%, #6b9e6b 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-content {
  text-align: center;
  color: rgba(255,255,255,0.8);
}

.map-placeholder-content svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  margin-bottom: var(--space-md);
}

.map-placeholder-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  margin-top: var(--space-lg);
  width: 100%;
  justify-content: center;
}

.whatsapp-contact-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ── Utility Classes ── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .highlights-grid,
  .yunque-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .brand-story-inner,
  .experience-intro-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .brand-story-visual {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yunque-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: 1;
  }

  .form-submit {
    grid-column: 1;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cabin-amenities {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: var(--space-xl);
  }

  .experience-img-accent {
    display: none;
  }

  .experience-stat-badge {
    display: none;
  }

  .page-hero {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .yunque-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ctas .btn {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════
   HY-V6 OVERHAUL — GLOBAL ENHANCEMENTS
══════════════════════════════════════════ */

/* Global subtext / section-subtitle size increase */
.section-subtitle {
  font-size: 1.25rem !important;
  line-height: 1.85 !important;
}

/* 3D card hover tilt effect — accommodation cards */
.space-preview-card {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.space-preview-card:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: 8px 20px 50px rgba(26,46,26,0.22);
}
.space-preview-card:hover .space-preview-img img {
  transform: scale(1.05);
}
.space-preview-img img {
  transition: transform 0.6s ease;
}

/* 3D tilt on belief/story cards */
.belief-card {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.belief-card:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateY(-5px);
  box-shadow: 6px 18px 45px rgba(0,0,0,0.28);
}

/* Depth hover on photo gallery images */
.river-photo-grid .photo-cell {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.river-photo-grid .photo-cell:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
  box-shadow: 6px 16px 40px rgba(26,46,26,0.2);
}

/* River cabins text/image balance fix */
.river-cabins-preview-inner {
  grid-template-columns: 55% 45% !important;
}

/* Practical info section — larger text, less whitespace */
.rio-info-text {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem) !important;
  line-height: 1.95 !important;
}

/* Belief cards — photo backgrounds */
.belief-card-01 {
  background-image: url('../images/pergola-hammock.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
}
.belief-card-01::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 15, 0.72);
  border-radius: inherit;
  z-index: 0;
}
.belief-card-01 > * { position: relative; z-index: 1; }

.belief-card-02 {
  background-image: url('../images/river-foliage.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
}
.belief-card-02::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 15, 0.72);
  border-radius: inherit;
  z-index: 0;
}
.belief-card-02 > * { position: relative; z-index: 1; }

.belief-card-03 {
  background-image: url('../images/river-bamboo-sky.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
}
.belief-card-03::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 15, 0.72);
  border-radius: inherit;
  z-index: 0;
}
.belief-card-03 > * { position: relative; z-index: 1; }

/* JOIN label centering on contact form */
.join-label-centered {
  text-align: center !important;
  display: block !important;
  font-size: 0.85rem !important;
}
