@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Cormorant:ital,wght@1,300;1,400&display=swap');

/* ═══════════════ CSS VARIABLES ═══════════════ */
:root {
  --forest:    #1E3A2F;
  --forest-mid:#2C5241;
  --forest-lt: #3D6B56;
  --amber:     #C4742A;
  --amber-lt:  #E8954A;
  --amber-pale:#FDF0E4;
  --cream:     #F8F4EE;
  --walnut:    #3B2A1A;
  --white:     #FFFFFF;
  --text:      #2A2218;
  --text-mid:  #5C4E3D;
  --text-muted:#9A8B7A;
  --border:    rgba(196,116,42,0.2);
  --border-lt: rgba(196,116,42,0.1);
  --shadow:    0 24px 64px rgba(30,58,47,0.12);
  --shadow-sm: 0 4px 20px rgba(30,58,47,0.08);
  --shadow-amber: 0 8px 32px rgba(196,116,42,0.28);
  --r:         2px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --t:         all 0.32s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--walnut); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ═══════════════ UTILITY ═══════════════ */
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Lato', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Lato', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 5%; }
.section-sm { padding: 72px 5%; }

.lbl {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--amber);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.lbl::before { content:''; width:28px; height:1px; background:var(--amber); }

.h1, .h2, .h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
.h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
.h3 { font-size: 1.5rem; font-weight: 500; }

.sub {
  font-size: 1rem; color: var(--text-muted); line-height: 1.85;
  max-width: 520px; margin-bottom: 52px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; border: none;
  border-radius: var(--r); cursor: pointer; transition: var(--t);
  text-decoration: none;
}
.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: var(--amber-lt); transform: translateY(-2px); box-shadow: var(--shadow-amber); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-dark {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline-dark:hover { background: var(--forest); color: var(--white); }

/* ═══════════════ NAVBAR ═══════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 74px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(30,58,47,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}
#navbar.scrolled { height: 62px; background: rgba(20,42,32,0.99); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 38px; height: 38px; border: 1.5px solid var(--amber);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-logo span { color: var(--amber); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 8px 14px;
  border-radius: var(--r); transition: var(--t);
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }
.nav-links .nav-cta {
  background: var(--amber); color: var(--white);
  margin-left: 8px; padding: 9px 20px;
}
.nav-links .nav-cta:hover { background: var(--amber-lt); color: var(--white); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--t); display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; position: fixed; top: 74px; left: 0; right: 0; z-index: 899;
  background: rgba(20,42,32,0.99); backdrop-filter: blur(14px);
  padding: 24px 5% 32px; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; animation: slideDown 0.3s var(--ease); }
@keyframes slideDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
.mobile-nav a {
  color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer;
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav .m-book {
  margin-top: 20px; background: var(--amber); color: var(--white);
  text-align: center; padding: 15px; border-radius: var(--r);
  font-weight: 700; letter-spacing: 1.5px; border: none;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg, rgba(20,42,32,0.88) 0%, rgba(20,42,32,0.55) 55%, rgba(20,42,32,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 130px 5% 100px; max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--amber); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.4rem);
  font-weight: 500; color: var(--white);
  line-height: 1.08; margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 500px; line-height: 1.85; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

/* Search Bar */
.hero-search {
  background: rgba(255,255,255,0.97);
  border-radius: 4px; padding: 6px; display: flex;
  gap: 6px; flex-wrap: wrap; max-width: 780px;
  box-shadow: var(--shadow);
}
.search-field {
  flex: 1; min-width: 140px; padding: 12px 16px;
  border: none; outline: none; background: transparent;
  font-size: 0.88rem; color: var(--text);
}
.search-field::placeholder { color: var(--text-muted); }
.search-divider { width: 1px; background: rgba(0,0,0,0.1); margin: 8px 0; }
.search-btn {
  background: var(--forest); color: var(--white);
  border: none; padding: 12px 28px; border-radius: 3px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.search-btn:hover { background: var(--amber); }

/* Stats bar */
.hero-statsbar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(30,58,47,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 22px 28px; border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--amber); line-height: 1;
}
.stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

@media (max-width: 600px) {
  .hero-statsbar { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .hero-desc { font-size: 0.95rem; }
}

/* ═══════════════ LOGO STRIP ═══════════════ */
.logo-strip {
  background: var(--white); padding: 36px 5%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.logo-strip-label {
  text-align: center; font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 24px;
}
.logo-track { overflow: hidden; }
.logo-scroll {
  display: flex; gap: 72px; align-items: center;
  animation: scroll 20s linear infinite; width: max-content;
}
.logo-scroll:hover { animation-play-state: paused; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: #C0B4A8; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap; transition: color 0.3s; cursor: default;
}
.logo-name:hover { color: var(--amber); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════ SECTION LABEL / HEADING COMMON ═══════════════ */
.s-head { margin-bottom: 56px; }
.s-head.center { text-align: center; }
.s-head.center .sub { margin: 0 auto; }

/* ═══════════════ ABOUT ═══════════════ */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-imgs { position: relative; height: 540px; }
.ab-img1 {
  position: absolute; top: 0; left: 0; right: 56px;
  height: 430px; object-fit: cover; border-radius: var(--r);
  box-shadow: var(--shadow);
}
.ab-img2 {
  position: absolute; bottom: 0; right: 0;
  width: 220px; height: 280px; object-fit: cover;
  border-radius: var(--r); border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.ab-badge {
  position: absolute; top: 44%; left: 44%;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--amber); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 5; box-shadow: var(--shadow-amber);
}
.ab-badge-num { font-family: 'Playfair Display',serif; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.ab-badge-lbl { font-size: 0.55rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; }
.about-features { list-style: none; margin: 28px 0 40px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.93rem; color: var(--text-mid);
}
.feat-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--amber); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 860px) {
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { height: 360px; }
  .ab-img1 { right: 40px; height: 310px; }
  .ab-img2 { width: 170px; height: 220px; }
}

/* ═══════════════ WHY US ═══════════════ */
.why-section { background: var(--forest); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; border: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px; margin: 0 auto;
}
.why-card {
  padding: 52px 40px; position: relative; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.07); transition: var(--t);
}
.why-card:nth-child(3n) { border-right: none; }
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--amber);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { background: rgba(255,255,255,0.03); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: rgba(196,116,42,0.12); line-height: 1;
  position: absolute; top: 20px; right: 28px;
}
.why-icon-wrap {
  width: 56px; height: 56px; border: 1px solid rgba(196,116,42,0.3);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 24px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--white); margin-bottom: 12px;
}
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.85; }

@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ═══════════════ DESTINATION CARDS ═══════════════ */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.dest-grid.featured .dest-card:first-child { grid-column: 1 / 3; }

.dest-card {
  position: relative; overflow: hidden; border-radius: var(--r);
  height: 360px; cursor: pointer; transition: var(--t);
}
.dest-grid.featured .dest-card:first-child { height: 440px; }
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dest-card:hover img { transform: scale(1.07); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,42,32,0.9) 0%, transparent 55%);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
}
.dest-region { font-size: 0.68rem; color: var(--amber); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px; }
.dest-name { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.dest-grid.featured .dest-card:first-child .dest-name { font-size: 2.4rem; }
.dest-blurb { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.dest-pill {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: rgba(196,116,42,0.2); border: 1px solid rgba(196,116,42,0.4);
  color: var(--amber); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px;
  border-radius: 40px;
}

@media (max-width: 860px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid.featured .dest-card:first-child { grid-column: 1/3; }
}
@media (max-width: 540px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid.featured .dest-card:first-child { grid-column: 1; height: 300px; }
}

/* ═══════════════ PACKAGES ═══════════════ */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.pkg-card {
  background: var(--white); border-radius: var(--r);
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
  transition: var(--t); cursor: pointer; position: relative;
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pkg-card.star { border-color: var(--amber); }
.pkg-card.star::before {
  content: 'BEST VALUE';
  position: absolute; top: 18px; right: -30px;
  background: var(--amber); color: var(--white);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 2px;
  padding: 6px 42px; transform: rotate(45deg); z-index: 2;
}
.pkg-img-wrap { overflow: hidden; }
.pkg-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.55s var(--ease); }
.pkg-card:hover .pkg-img { transform: scale(1.06); }
.pkg-body { padding: 28px; }
.pkg-tag {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.pkg-tag::before { content:''; width:20px; height:1px; background:var(--amber); }
.pkg-title { font-family: 'Playfair Display',serif; font-size: 1.4rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.pkg-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.pkg-includes { list-style: none; margin-bottom: 28px; }
.pkg-includes li {
  font-size: 0.82rem; color: var(--text-mid); padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 10px;
}
.pkg-includes li::before { content: '◆'; font-size: 0.45rem; color: var(--amber); flex-shrink: 0; }
.pkg-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pkg-price { line-height: 1; }
.pkg-from { font-size: 0.7rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.pkg-amt { font-family: 'Playfair Display',serif; font-size: 1.9rem; font-weight: 700; color: var(--forest); }
.pkg-per { font-size: 0.72rem; color: var(--text-muted); }

@media (max-width: 860px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ═══════════════ MEMBERSHIP ═══════════════ */
.mem-section { background: var(--walnut); }
.mem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1160px; margin: 0 auto;
}
.mem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 48px 36px;
  transition: var(--t); position: relative;
}
.mem-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
.mem-card.featured {
  background: rgba(196,116,42,0.1); border-color: var(--amber);
}
.mem-card.featured::before {
  content: '★  MOST POPULAR';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--white);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  padding: 7px 22px; border-radius: 0 0 4px 4px;
}
.mem-tier { font-size: 0.68rem; font-weight: 700; color: var(--amber); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px; }
.mem-name { font-family: 'Playfair Display',serif; font-size: 2rem; color: var(--white); margin-bottom: 6px; }
.mem-desc { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 36px; line-height: 1.7; }
.mem-price { font-family: 'Playfair Display',serif; font-size: 3.2rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.mem-price sup { font-size: 1.5rem; vertical-align: super; }
.mem-price-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 36px; }
.mem-list { list-style: none; margin-bottom: 40px; }
.mem-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
}
.mem-list li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.mem-list li.off { color: rgba(255,255,255,0.22); }
.mem-list li.off .dot { background: rgba(255,255,255,0.15); }

@media (max-width: 860px) { .mem-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testi-section { background: var(--amber-pale); }
.testi-track {
  display: flex; gap: 28px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 8px 0 28px;
  scrollbar-width: none; max-width: 1200px; margin: 0 auto;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  background: var(--white); border-radius: var(--r);
  padding: 44px; min-width: 360px; max-width: 360px;
  scroll-snap-align: start; flex-shrink: 0;
  transition: var(--t); position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.testi-card::after {
  content: '❝'; position: absolute; top: 16px; right: 24px;
  font-family: Georgia, serif; font-size: 5rem; color: rgba(196,116,42,0.08); line-height: 1;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { color: var(--amber); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.88; margin-bottom: 28px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--amber); }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testi-city { font-size: 0.77rem; color: var(--text-muted); margin-top: 2px; }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: var(--t);
}
.testi-arrow:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }

/* ═══════════════ FAQ ═══════════════ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-btn {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 0; cursor: pointer; text-align: left;
  font-size: 0.97rem; font-weight: 700; color: var(--text);
  transition: color 0.25s;
}
.faq-btn:hover { color: var(--amber); }
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--amber); transition: var(--t);
  font-family: monospace; line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--amber); color: var(--white); border-color: var(--amber); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s var(--ease), padding 0.32s;
  font-size: 0.89rem; color: var(--text-muted); line-height: 1.9;
}
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 22px; }

/* ═══════════════ GALLERY ═══════════════ */
.gallery-section { background: var(--forest); padding: 100px 0; }
.gallery-head { padding: 0 5%; margin-bottom: 52px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 240px;
  gap: 5px; overflow: hidden;
}
.gal-cell { overflow: hidden; position: relative; cursor: pointer; }
.gal-cell:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.gal-cell:nth-child(6) { grid-column: 3/5; }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.gal-cell:hover img { transform: scale(1.08); }
.gal-hover {
  position: absolute; inset: 0; background: rgba(30,58,47,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s;
}
.gal-cell:hover .gal-hover { background: rgba(30,58,47,0.42); }
.gal-plus { font-size: 2.4rem; color: var(--white); opacity: 0; transition: opacity 0.35s; }
.gal-cell:hover .gal-plus { opacity: 1; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gal-cell:nth-child(1) { grid-column: 1/3; }
  .gal-cell:nth-child(6) { grid-column: 1/3; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-cell:nth-child(1), .gal-cell:nth-child(6) { grid-column: 1; }
}

/* ═══════════════ BLOG ═══════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.blog-card {
  background: var(--white); border-radius: var(--r);
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
  transition: var(--t); cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-img-w { overflow: hidden; }
.blog-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.55s; }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-body { padding: 26px; }
.blog-cat { font-size: 0.67rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.blog-title { font-family: 'Playfair Display',serif; font-size: 1.22rem; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; font-size: 0.78rem; color: var(--text-muted); gap: 14px; }
.blog-read { color: var(--amber); font-weight: 700; margin-left: auto; }

@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════ CTA BANNER ═══════════════ */
.cta-section {
  background: var(--forest); padding: 120px 5%;
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1447752875215-b2761acb3c5d?w=1600&q=50') center/cover;
  opacity: 0.12;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Playfair Display',serif; font-size: clamp(2rem,5vw,3.4rem); font-weight: 500; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
.cta-inner h2 em { font-style: italic; color: var(--amber); }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 42px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════ NEWSLETTER ═══════════════ */
.nl-section { background: var(--amber); padding: 72px 5%; }
.nl-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.nl-inner h3 { font-family: 'Playfair Display',serif; font-size: 1.9rem; color: var(--white); margin-bottom: 6px; }
.nl-inner p { font-size: 0.87rem; color: rgba(255,255,255,0.75); }
.nl-form { display: flex; gap: 0; flex: 1; min-width: 280px; max-width: 420px; }
.nl-input {
  flex: 1; padding: 14px 20px; border: none; outline: none;
  font-size: 0.9rem; background: rgba(255,255,255,0.2);
  color: var(--white); border-radius: 2px 0 0 2px;
}
.nl-input::placeholder { color: rgba(255,255,255,0.55); }
.nl-btn {
  background: var(--walnut); color: var(--white); border: none;
  padding: 14px 24px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: var(--t); border-radius: 0 2px 2px 0; white-space: nowrap;
}
.nl-btn:hover { background: var(--forest); }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: #0E1F16; padding: 80px 5% 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px; max-width: 1200px; margin: 0 auto;
}
.f-logo {
  font-family: 'Playfair Display',serif; font-size: 1.6rem; font-weight: 600;
  color: var(--white); margin-bottom: 16px; cursor: pointer; display: inline-block;
}
.f-logo span { color: var(--amber); }
.f-desc { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.85; margin-bottom: 28px; }
.f-socials { display: flex; gap: 10px; }
.f-soc {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.9rem; cursor: pointer; transition: var(--t);
}
.f-soc:hover { border-color: var(--amber); color: var(--amber); }
.f-col h4 {
  font-size: 0.68rem; font-weight: 700; color: var(--amber);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 24px;
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 12px; }
.f-col ul li a {
  color: rgba(255,255,255,0.4); font-size: 0.86rem;
  transition: color 0.25s; cursor: pointer;
}
.f-col ul li a:hover { color: var(--amber); }
.f-contact-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.f-ci { color: var(--amber); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.f-ct { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.65; }
.footer-bar {
  max-width: 1200px; margin: 56px auto 0; padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bar p { font-size: 0.77rem; color: rgba(255,255,255,0.28); }
.footer-bar-links { display: flex; gap: 20px; }
.footer-bar-links a { font-size: 0.77rem; color: rgba(255,255,255,0.28); cursor: pointer; transition: color 0.25s; }
.footer-bar-links a:hover { color: var(--amber); }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ═══════════════ PAGE HERO (inner) ═══════════════ */
.inner-hero {
  min-height: 52vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 100px 5% 64px;
}
.inner-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.inner-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,42,32,0.92) 0%, rgba(20,42,32,0.5) 60%, rgba(20,42,32,0.25) 100%);
}
.inner-hero-content { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.42); margin-bottom: 14px; letter-spacing: 0.5px; }
.breadcrumb a { color: var(--amber); cursor: pointer; }
.inner-hero h1 { font-family: 'Playfair Display',serif; font-size: clamp(2.4rem,5.5vw,4.2rem); font-weight: 500; color: var(--white); line-height: 1.1; }
.inner-hero h1 em { color: var(--amber); font-style: italic; }

/* ═══════════════ CONTACT PAGE ═══════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px; max-width: 1200px; margin: 0 auto;
}
.contact-info {
  background: var(--forest); color: var(--white);
  padding: 52px; border-radius: var(--r); height: fit-content;
}
.contact-info h3 { font-family: 'Playfair Display',serif; font-size: 1.9rem; margin-bottom: 10px; }
.contact-info > p { font-size: 0.87rem; color: rgba(255,255,255,0.5); margin-bottom: 44px; line-height: 1.8; }
.c-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px; border: 1px solid rgba(196,116,42,0.35);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 1rem; flex-shrink: 0;
}
.c-text h4 { font-size: 0.7rem; font-weight: 700; color: var(--amber); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.c-text p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.contact-form-wrap {
  background: var(--white); padding: 52px;
  border-radius: var(--r); box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-family: 'Playfair Display',serif; font-size: 1.8rem; color: var(--text); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 36px; }

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r); font-size: 0.9rem; color: var(--text);
  background: var(--cream); outline: none; transition: border-color 0.25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--amber); background: var(--white); }
.fg textarea { height: 130px; resize: vertical; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info { padding: 36px; }
}

/* ═══════════════ ACTIVITIES PAGE ═══════════════ */
.act-filters { display: flex; gap: 0; border-bottom: 1.5px solid rgba(0,0,0,0.08); margin-bottom: 44px; flex-wrap: wrap; }
.act-filter-btn {
  padding: 14px 26px; font-size: 0.77rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1.5px;
  transition: var(--t); background: none; border-top: none; border-left: none; border-right: none;
}
.act-filter-btn.active { color: var(--amber); border-bottom-color: var(--amber); }
.act-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.act-card { position: relative; overflow: hidden; border-radius: var(--r); height: 310px; cursor: pointer; transition: var(--t); }
.act-card:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.act-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.act-card:hover img { transform: scale(1.09); }
.act-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,42,32,0.88) 0%, transparent 58%);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
}
.act-tag { font-size: 0.67rem; color: var(--amber); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.act-name { font-family: 'Playfair Display',serif; font-size: 1.4rem; color: var(--white); margin-bottom: 4px; }
.act-where { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

@media (max-width: 700px) { .act-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .act-grid { grid-template-columns: 1fr; } }

/* ═══════════════ MODALS ═══════════════ */
.modal-bg {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(14,31,22,0.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.show { display: flex; animation: fadein 0.25s; }
@keyframes fadein { from{opacity:0} to{opacity:1} }

.modal-box {
  background: var(--white); border-radius: var(--r); padding: 56px;
  max-width: 520px; width: 100%; position: relative;
  max-height: 92vh; overflow-y: auto;
  animation: slideup 0.35s var(--ease);
}
.modal-box.wide { max-width: 600px; }
@keyframes slideup { from{transform:translateY(28px);opacity:0} to{transform:translateY(0);opacity:1} }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12); background: none;
  cursor: pointer; font-size: 1.2rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.modal-close:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.modal-box h2 { font-family: 'Playfair Display',serif; font-size: 1.9rem; color: var(--text); margin-bottom: 8px; }
.modal-box .m-sub { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.modal-tabs { display: flex; border-bottom: 2px solid rgba(0,0,0,0.07); margin-bottom: 32px; }
.m-tab {
  padding: 12px 24px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--t);
}
.m-tab.on { color: var(--amber); border-bottom-color: var(--amber); }
.m-pane { display: none; }
.m-pane.on { display: block; }

.modal-note { margin-top: 24px; text-align: center; font-size: 0.82rem; color: var(--text-muted); }
.modal-note a { color: var(--amber); font-weight: 700; cursor: pointer; }

/* Booking summary box */
.bk-box {
  background: var(--forest); border-radius: var(--r); padding: 22px 24px;
  display: flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.bk-box img { width: 84px; height: 60px; object-fit: cover; border-radius: var(--r); flex-shrink: 0; }
.bk-box h4 { font-family: 'Playfair Display',serif; font-size: 1.15rem; color: var(--white); margin-bottom: 3px; }
.bk-box p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.bk-box .bk-price { color: var(--amber); font-weight: 700; font-size: 1rem; margin-top: 4px; }

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 3000;
  background: var(--forest); color: var(--white);
  padding: 16px 24px; border-radius: var(--r);
  border-left: 4px solid var(--amber); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; transform: translateY(80px); opacity: 0;
  transition: all 0.4s var(--ease);
}
.toast.pop { transform: translateY(0); opacity: 1; }
.toast-ico { color: var(--amber); font-size: 1.1rem; }

/* ═══════════════ FLOATING ELEMENTS ═══════════════ */
.float-wa {
  position: fixed; bottom: 28px; left: 28px; z-index: 1500;
  width: 52px; height: 52px; border-radius: 50%; background: #25D366;
  color: var(--white); font-size: 1.5rem; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer;
  transition: var(--t); text-decoration: none;
}
.float-wa:hover { transform: scale(1.12); background: #1EBE5A; }

.scroll-up {
  position: fixed; bottom: 92px; right: 28px; z-index: 1200;
  width: 42px; height: 42px; background: var(--amber); color: var(--white);
  border: none; border-radius: var(--r); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px); transition: var(--t);
  box-shadow: var(--shadow-amber);
}
.scroll-up.on { opacity: 1; transform: translateY(0); }
.scroll-up:hover { background: var(--amber-lt); }

/* ═══════════════ COOKIE BANNER ═══════════════ */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1800;
  background: rgba(14,31,22,0.97); border-top: 1px solid var(--border);
  padding: 18px 5%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  transform: translateY(110%); transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 0.83rem; color: rgba(255,255,255,0.6); max-width: 600px; }
.cookie a { color: var(--amber); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.ck-yes { background: var(--amber); color: var(--white); border: none; padding: 10px 24px; border-radius: var(--r); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--t); }
.ck-yes:hover { background: var(--amber-lt); }
.ck-no { background: transparent; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.14); padding: 10px 20px; border-radius: var(--r); font-size: 0.8rem; cursor: pointer; transition: var(--t); }
.ck-no:hover { color: var(--white); }

/* ═══════════════ ACTIVE PAGE NAV ═══════════════ */
.page { display: none; }
.page.on { display: block; }
