/* ================================================================
   We Woods Farm — Brand Book v2.0 CSS
   Philosophy: Apple-like white dominance. Quiet luxury.
   60% White · 30% Forest Green · 10% Harvest Gold
   Fonts: Cormorant Garamond (headings) · DM Sans (body)
================================================================ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --green      : #2D5528;
  --green-mid  : #3A6B32;
  --gold       : #C9A84C;
  --gold-light : #E8D5A0;
  --white      : #FFFFFF;
  --off-white  : #FAFAF8;
  --cream      : #F4F1EB;
  --earth      : #1A1A18;
  --stone      : #6B6B5F;
  --border     : #E4E2DA;
  --font-head  : 'Cormorant Garamond', Georgia, serif;
  --font-body  : 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-w      : 1200px;
  --max-w-text : 740px;
  --radius     : 4px;
  --section-py : 72px;
  --transition : 0.3s ease;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--earth); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Utility ─────────────────────────────────────────────────── */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.text-center      { text-align: center; }
.sr-only          { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--green); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

/* Section label — gold uppercase tag above heading */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Horizontal Rule (brand divider) ────────────────────────── */
.rule {
  width: 40px;
  height: 1px;
  background: var(--green);
  margin: 20px auto;
}
.rule--left { margin-left: 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-outline--white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline--white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-group--center { justify-content: center; }

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--off { background: var(--off-white); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--green); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark .label { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--dark .label { color: var(--gold-light); }

/* ── Section Headers ─────────────────────────────────────────── */
.section-header { margin-bottom: 44px; }
.section-header--center { text-align: center; }
.section-header--center .rule { margin: 20px auto; }
.section-header p { color: var(--stone); font-size: 1.05rem; max-width: var(--max-w-text); margin-top: 12px; }
.section-header--center p { margin: 12px auto 0; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.wwf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wwf-header--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,0.05);
}
.wwf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}
.wwf-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.wwf-header__logo img {
  height: 44px;
  width: auto;
}
.wwf-logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.wwf-logo-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--font-body);
}
.wwf-nav { display: flex; align-items: center; gap: 4px; }
.wwf-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.wwf-nav__list li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--earth);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.wwf-nav__list li a:hover,
.wwf-nav__list li.current-menu-item a { color: var(--green); }
.wwf-nav__cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  margin-left: 12px;
  transition: background var(--transition);
  white-space: nowrap;
}
.wwf-nav__cta:hover { background: var(--green-mid); color: var(--white) !important; }

/* Mobile hamburger */
.wwf-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.wwf-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--earth);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.wwf-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green);
}
.wwf-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.wwf-hero--loaded .wwf-hero__bg { transform: scale(1); }
.wwf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,10,0.42) 0%,
    rgba(10,22,10,0.28) 50%,
    rgba(10,22,10,0.55) 100%
  );
}
.wwf-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.wwf-hero__content .label { color: rgba(255,255,255,0.75); }
.wwf-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.wwf-hero__content h1 em { font-style: italic; color: var(--gold-light); }
.wwf-hero__tagline {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.wwf-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.wwf-stat { text-align: center; }
.wwf-stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.wwf-stat__label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ── Scroll indicator ────────────────────────────────────────── */
.wwf-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
}
.wwf-hero__scroll span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--font-body);
}
.wwf-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.7); transform-origin: top; }
}

/* ═══════════════════════════════════════════════════════════════
   PROOF STRIP (Quick Stats)
═══════════════════════════════════════════════════════════════ */
.wwf-proof {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.wwf-proof__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.wwf-proof__item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.wwf-proof__item:last-child { border-right: none; }
.wwf-proof__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1.1;
}
.wwf-proof__text {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT / INTRO
═══════════════════════════════════════════════════════════════ */
.wwf-about { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.wwf-about__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.wwf-about__img img { width: 100%; height: 100%; object-fit: cover; }
.wwf-about__content { padding: 20px 0; }
.wwf-about__content h2 { margin-bottom: 20px; }
.wwf-about__content p { color: var(--stone); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.wwf-about__content p:last-of-type { margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES / USPs (3-col)
═══════════════════════════════════════════════════════════════ */
.wwf-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.wwf-feature {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.wwf-feature:hover {
  border-color: var(--green);
  box-shadow: 0 4px 32px rgba(45,85,40,0.08);
}
.wwf-feature__icon {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.wwf-feature h3 { font-size: 1.3rem; margin-bottom: 12px; }
.wwf-feature p { color: var(--stone); font-size: 0.95rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   ROOMS / ACCOMMODATION
═══════════════════════════════════════════════════════════════ */
.wwf-rooms { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.wwf-room {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.wwf-room:hover { box-shadow: 0 8px 48px rgba(0,0,0,0.08); }
.wwf-room__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.wwf-room__img img { width: 100%; height: 100%; object-fit: cover; }
.wwf-room__body { padding: 32px; }
.wwf-room__body h3 { margin-bottom: 12px; font-size: 1.5rem; }
.wwf-room__body p { color: var(--stone); margin-bottom: 20px; }
.wwf-room__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wwf-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════════
   POOL SECTION
═══════════════════════════════════════════════════════════════ */
.wwf-pool { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wwf-pool__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #1A4A1A 0%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
}
.wwf-pool__img img { width: 100%; height: 100%; object-fit: cover; }
.wwf-pool__list { list-style: none; margin: 28px 0 36px; padding: 0; }
.wwf-pool__list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--stone);
  font-size: 0.95rem;
}
.wwf-pool__list li:last-child { border-bottom: none; }
.wwf-pool__list li strong { color: var(--earth); display: block; margin-bottom: 2px; }

/* ═══════════════════════════════════════════════════════════════
   FOOD / CHEF
═══════════════════════════════════════════════════════════════ */
.wwf-food { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wwf-food__img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #2A4A20, #4A7A3A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  order: 2;
}
.wwf-food__img img { width: 100%; height: 100%; object-fit: cover; }
.wwf-food__content { order: 1; }
.wwf-food__items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 28px 0 36px; }
.wwf-food__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wwf-food__item::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   ACTIVITIES GRID
═══════════════════════════════════════════════════════════════ */
.wwf-activities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 48px; }
.wwf-activity {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition);
}
.wwf-activity:hover { background: var(--off-white); }
.wwf-activity__line { width: 24px; height: 1px; background: var(--gold); margin: 14px auto 12px; }
.wwf-activity span { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--stone); }

/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */
.wwf-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
.wwf-pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.wwf-pricing-card--featured { border-color: var(--green); }
.wwf-pricing-card__top {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.wwf-pricing-card--featured .wwf-pricing-card__top { background: var(--green); }
.wwf-pricing-card--featured .wwf-pricing-card__top h3,
.wwf-pricing-card--featured .wwf-pricing-card__top p,
.wwf-pricing-card--featured .wwf-pricing-card__top .wwf-pricing-card__badge { color: var(--white); }
.wwf-pricing-card__badge {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 8px;
}
.wwf-pricing-card__top h3 { font-size: 1.5rem; margin-bottom: 4px; }
.wwf-pricing-card__top > p { color: var(--stone); font-size: 0.875rem; margin-bottom: 20px; }
.wwf-pricing-card__price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
.wwf-pricing-card--featured .wwf-pricing-card__price { color: var(--gold-light); }
.wwf-pricing-card__price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 400;
  letter-spacing: 0;
}
.wwf-pricing-card--featured .wwf-pricing-card__price small { color: rgba(255,255,255,0.6); }
.wwf-pricing-card__body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; gap: 24px; }
.wwf-pricing-card__list { list-style: none; padding: 0; flex: 1; }
.wwf-pricing-card__list li {
  font-size: 0.9rem;
  color: var(--stone);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wwf-pricing-card__list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.wwf-pricing-card__list li:last-child { border-bottom: none; }

/* Included / Not included box */
.wwf-policy {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.wwf-policy h4 { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; color: var(--green); }
.wwf-policy ul { list-style: none; padding: 0; }
.wwf-policy ul li {
  font-size: 0.9rem;
  color: var(--stone);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.wwf-policy ul li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.wwf-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
.wwf-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow var(--transition);
}
.wwf-testimonial:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.wwf-testimonial__stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; }
.wwf-testimonial blockquote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1.6;
  flex: 1;
}
.wwf-testimonial__author { display: flex; align-items: center; gap: 14px; }
.wwf-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  flex-shrink: 0;
}
.wwf-testimonial__name strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--earth); }
.wwf-testimonial__name span { font-size: 0.8rem; color: var(--stone); }

/* ═══════════════════════════════════════════════════════════════
   FAQ (Accordion)
═══════════════════════════════════════════════════════════════ */
.wwf-faq { max-width: 800px; margin: 0 auto; }
.wwf-faq-item { border-bottom: 1px solid var(--border); }
.wwf-faq-item:first-child { border-top: 1px solid var(--border); }
.wwf-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.wwf-faq-question span:first-child {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--earth);
  font-weight: 400;
}
.faq-icon {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.wwf-faq-item.open .faq-icon { transform: rotate(45deg); }
.wwf-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.wwf-faq-answer p { padding: 0 0 24px; color: var(--stone); font-size: 0.97rem; line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════════
   LOCATION / MAP
═══════════════════════════════════════════════════════════════ */
.wwf-location { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.wwf-location__info h2 { margin-bottom: 24px; }
.wwf-location__details { margin: 28px 0 36px; list-style: none; padding: 0; }
.wwf-location__details li {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.wwf-location__details li:last-child { border-bottom: none; }
.wwf-location__details strong { color: var(--earth); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.wwf-location__details a { color: var(--stone); }
.wwf-location__details a:hover { color: var(--green); }
.wwf-location__map iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: var(--radius);
  display: block;
  filter: saturate(0.8) contrast(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND (full width green)
═══════════════════════════════════════════════════════════════ */
.wwf-cta-band {
  background: var(--green);
  padding: 100px 0;
  text-align: center;
}
.wwf-cta-band h2 { color: var(--white); margin-bottom: 16px; }
.wwf-cta-band p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 40px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.wwf-contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.wwf-contact-methods { display: flex; flex-direction: column; gap: 0; }
.wwf-contact-method {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.wwf-contact-method:first-child { border-top: 1px solid var(--border); }
.wwf-contact-method__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.wwf-contact-method h4 { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--earth); margin-bottom: 4px; }
.wwf-contact-method a, .wwf-contact-method p { font-size: 0.95rem; color: var(--stone); }
.wwf-contact-method a:hover { color: var(--green); }

/* Contact Form */
.wwf-form { display: flex; flex-direction: column; gap: 20px; }
.wwf-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--stone); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--earth);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B5F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════════════════════════ */
.wwf-gallery-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.gallery-filter {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.wwf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.wwf-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--green);
  cursor: zoom-in;
}
.wwf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.wwf-gallery-item:hover img { transform: scale(1.04); }
.wwf-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,85,40,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--white);
}
.wwf-gallery-item:hover .wwf-gallery-item__overlay { background: rgba(45,85,40,0.3); opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════════ */
.wwf-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.wwf-blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.wwf-blog-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.wwf-blog-card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.wwf-blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wwf-blog-card:hover .wwf-blog-card__img-wrap img { transform: scale(1.04); }
.wwf-blog-card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.wwf-blog-card__meta { display: flex; align-items: center; gap: 12px; }
.wwf-blog-card__meta time { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--stone); }
.wwf-blog-card__cat { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-light); padding: 2px 10px; border-radius: 100px; }
.wwf-blog-card__title { font-family: var(--font-head); font-size: 1.25rem; line-height: 1.3; }
.wwf-blog-card__title a { color: var(--earth); }
.wwf-blog-card__title a:hover { color: var(--green); }
.wwf-blog-card__excerpt { color: var(--stone); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.wwf-blog-card__read-more { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); font-weight: 500; margin-top: 4px; }
.wwf-blog-card__read-more:hover { color: var(--gold); }

/* Blog pagination */
.wwf-blog-pagination { margin-top: 64px; text-align: center; }
.wwf-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--stone);
  margin: 0 3px;
  transition: all var(--transition);
}
.wwf-blog-pagination .page-numbers.current,
.wwf-blog-pagination .page-numbers:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   SINGLE BLOG POST
═══════════════════════════════════════════════════════════════ */
.wwf-post { max-width: 740px; margin: 0 auto; }
.wwf-post__header { margin-bottom: 48px; }
.wwf-post__meta { margin-bottom: 16px; display: flex; gap: 16px; align-items: center; }
.wwf-post__meta time,
.wwf-post__meta .cat-link { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--stone); }
.wwf-post h1 { margin-bottom: 24px; }
.wwf-post__featured { margin-bottom: 48px; border-radius: var(--radius); overflow: hidden; }
.wwf-post__featured img { width: 100%; height: auto; }
.wwf-post__content h2 { margin: 40px 0 16px; font-size: 1.8rem; }
.wwf-post__content h3 { margin: 32px 0 12px; font-size: 1.4rem; }
.wwf-post__content p { color: var(--stone); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.wwf-post__content ul, .wwf-post__content ol { color: var(--stone); margin: 0 0 20px 20px; line-height: 1.8; font-size: 1.02rem; }
.wwf-post__content strong { color: var(--earth); }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════ */
.wwf-page-hero {
  padding: 140px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.wwf-page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 800px; margin: 0 auto 16px; }
.wwf-page-hero p { color: var(--stone); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════════
   AMENITIES (experience page)
═══════════════════════════════════════════════════════════════ */
.wwf-amenities-block { margin-bottom: 64px; }
.wwf-amenities-block h2 {
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.wwf-amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.wwf-amenity-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.wwf-amenity-item:hover { background: var(--off-white); }
.wwf-amenity-item h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--earth); }
.wwf-amenity-item p { font-size: 0.85rem; color: var(--stone); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.wwf-footer { background: var(--earth); padding: 80px 0 0; }
.wwf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wwf-footer__heading {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 24px;
}
.wwf-footer__about p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }
.wwf-footer__logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.wwf-footer__social { display: flex; gap: 16px; align-items: center; }
.wwf-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.wwf-footer__social a:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.wwf-footer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wwf-footer__links li a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color var(--transition); }
.wwf-footer__links li a:hover { color: var(--white); }
.wwf-footer__address { display: flex; flex-direction: column; gap: 14px; }
.wwf-footer__address p, .wwf-footer__address a { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; }
.wwf-footer__address a:hover { color: var(--white); }
.wwf-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.wwf-footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.wwf-footer__bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.wwf-footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── WhatsApp Float ───────────────────────────────────────────── */
.wwf-wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wwf-wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wwf-wa-float svg { fill: white; width: 26px; height: 26px; }

/* ── Animations ───────────────────────────────────────────────── */
.animate-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-up.in-view { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wwf-features { grid-template-columns: repeat(2, 1fr); }
  .wwf-footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .container { padding: 0 24px; }
  .wwf-about, .wwf-pool, .wwf-food { grid-template-columns: 1fr; gap: 40px; }
  .wwf-food__img { order: 1; }
  .wwf-food__content { order: 2; }
  .wwf-rooms { grid-template-columns: 1fr; }
  .wwf-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .wwf-testimonials { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .wwf-activities { grid-template-columns: repeat(2, 1fr); }
  .wwf-location { grid-template-columns: 1fr; }
  .wwf-contact-layout { grid-template-columns: 1fr; }
  .wwf-policy { grid-template-columns: 1fr; gap: 24px; }
  .wwf-blog-grid { grid-template-columns: 1fr 1fr; }
  .wwf-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .wwf-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .wwf-proof__inner { gap: 0; }
  .wwf-proof__item { min-width: 120px; padding: 0 20px; }
}

@media (max-width: 768px) {
  .wwf-nav-toggle { display: flex; }
  .wwf-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 32px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .wwf-nav.open { transform: translateX(0); }
  .wwf-nav__list { flex-direction: column; align-items: flex-start; width: 100%; gap: 4px; }
  .wwf-nav__list li a { font-size: 1.5rem; font-family: var(--font-head); letter-spacing: 0; text-transform: none; padding: 12px 0; }
  .wwf-nav__cta { margin-left: 0; margin-top: 24px; }
  .wwf-hero__content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .wwf-hero__stats { gap: 28px; }
  .wwf-features { grid-template-columns: 1fr; }
  .wwf-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .wwf-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wwf-blog-grid { grid-template-columns: 1fr; }
  .wwf-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .wwf-proof__inner { flex-wrap: wrap; gap: 16px; }
  .wwf-proof__item { border-right: none; border-bottom: 1px solid var(--border); flex: 0 0 calc(50% - 8px); padding: 20px 0; }
  .wwf-form .form-row { grid-template-columns: 1fr; }
  .wwf-activities { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  :root { --section-py: 56px; }
  .wwf-gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .btn { padding: 13px 24px; font-size: 11px; }
  .btn-group { flex-direction: column; }
}
