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

:root {
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --forest: #2C4A3E;
  --forest-light: #3D6B5C;
  --gold: #C8963E;
  --gold-light: #E8B86D;
  --sage: #8FAF9F;
  --sage-light: #C5D8D0;
  --charcoal: #1A1A1A;
  --text: #3A3A3A;
  --text-light: #6A6A6A;
  --border: #E8E8E2;
  --shadow: rgba(44,74,62,0.12);
  --shadow-deep: rgba(44,74,62,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 32px var(--shadow); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--forest); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--forest-light) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px; background: var(--charcoal);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  flex-direction: column; align-items: center; justify-content: flex-start; gap: 2rem;
  padding: 3rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--charcoal);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--forest); }
.mobile-menu .mobile-cta {
  background: var(--forest); color: var(--white) !important;
  padding: 14px 40px; border-radius: 2px;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6% 8% 6% 10%;
  background: var(--cream);
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--forest); font-style: italic; }
.hero-subtitle {
  font-size: 1rem; color: var(--text-light);
  max-width: 420px; margin-bottom: 3rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-deep); }

.btn-outline {
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: 13px 32px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--forest); display: block;
}
.hero-stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); }

.hero-visual {
  position: relative; overflow: hidden;
}
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%; height: 100%; min-height: 600px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--forest);
}
.hero-img-placeholder .ph-icon { font-size: 3.5rem; opacity: 0.5; }
.hero-img-placeholder p { font-size: 0.85rem; opacity: 0.6; letter-spacing: 0.1em; }

.hero-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px var(--shadow);
  display: flex; align-items: center; gap: 1rem;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text strong { display: block; font-size: 0.85rem; color: var(--charcoal); }
.hero-badge-text span { font-size: 0.75rem; color: var(--text-light); }

/* ── SECTIONS GENERAL ── */
.section { padding: 7rem 5%; }
.section-sm { padding: 4rem 5%; }
.section-alt { background: var(--cream); }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 520px; margin: 0 auto; }

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--forest);
  padding: 3rem 5%;
}
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.feature-item { text-align: center; color: var(--white); }
.feature-item .f-icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.85; }
.feature-item strong { display: block; font-size: 0.95rem; font-weight: 500; margin-bottom: 0.3rem; }
.feature-item span { font-size: 0.78rem; opacity: 0.65; }

/* ── ROOMS ── */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.room-card {
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: all 0.4s; background: var(--white);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-deep); }

.room-img {
  height: 240px; overflow: hidden; position: relative;
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-card:hover .room-img img { transform: scale(1.05); }

.room-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--forest);
}
.room-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.5; }
.room-placeholder p { font-size: 0.78rem; opacity: 0.55; letter-spacing: 0.08em; }

.room-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--white);
  padding: 4px 12px; border-radius: 2px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}

.room-info { padding: 1.75rem; }
.room-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.room-info .room-price {
  font-size: 0.8rem; color: var(--gold); font-weight: 500;
  letter-spacing: 0.08em; margin-bottom: 1rem;
}
.room-info p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.7; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.room-amenities span {
  background: var(--cream); color: var(--text); font-size: 0.72rem;
  padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 0.75rem;
  max-width: 1200px; margin: 0 auto;
}
.gallery-item {
  overflow: hidden; border-radius: 4px; cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--forest); transition: transform 0.5s;
}
.gallery-item:hover .gallery-ph { transform: scale(1.06); }
.gallery-ph .ph-icon { font-size: 2rem; opacity: 0.45; }
.gallery-ph p { font-size: 0.72rem; opacity: 0.5; letter-spacing: 0.06em; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(44,74,62,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(44,74,62,0.35); }
.gallery-overlay-icon {
  color: white; font-size: 2rem; opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

/* lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
  background: none; border: none;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-ph {
  width: 600px; max-width: 90vw; height: 400px;
  background: var(--sage); border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--forest);
}

/* ── AMENITIES ── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.amenity-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s;
  background: var(--white);
}
.amenity-card:hover { border-color: var(--sage); box-shadow: 0 8px 32px var(--shadow); }
.amenity-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.amenity-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.amenity-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }
.amenity-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.amenity-list li { font-size: 0.82rem; color: var(--text-light); padding-left: 1rem; position: relative; }
.amenity-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── THINGS TO DO ── */
.things-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.thing-card {
  border-radius: 4px; overflow: hidden; position: relative;
  height: 320px; cursor: pointer;
}
.thing-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--forest) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.thing-img-ph .ph-icon { font-size: 2.5rem; opacity: 0.6; color: white; }

.thing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}
.thing-card:hover .thing-overlay { background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.2) 100%); }
.thing-overlay h3 { color: white; font-size: 1.2rem; margin-bottom: 0.3rem; }
.thing-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; height: 500px; object-fit: cover; border-radius: 4px;
}
.about-img-ph {
  width: 100%; height: 500px; border-radius: 4px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--forest);
}
.about-img-ph .ph-icon { font-size: 4rem; opacity: 0.4; }
.about-img-ph p { font-size: 0.85rem; opacity: 0.55; letter-spacing: 0.08em; }

.about-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 200px; border-radius: 4px; overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px var(--shadow);
}
.about-accent-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: rgba(255,255,255,0.6);
}
.about-accent-ph .ph-icon { font-size: 2rem; }
.about-accent-ph p { font-size: 0.65rem; letter-spacing: 0.06em; }

.about-content h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.5rem; }
.about-content p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-value {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: var(--cream); border-radius: 4px;
}
.about-value-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-value strong { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.2rem; }
.about-value span { font-size: 0.8rem; color: var(--text-light); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.review-card {
  padding: 2.5rem; border: 1px solid var(--border);
  border-radius: 4px; background: var(--white); position: relative;
  transition: all 0.3s;
}
.review-card:hover { box-shadow: 0 12px 40px var(--shadow); border-color: var(--sage-light); }
.review-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--sage-light);
  position: absolute; top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; margin-top: 0.5rem; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); font-weight: 500;
}
.reviewer-name { font-size: 0.85rem; font-weight: 500; }
.reviewer-location { font-size: 0.75rem; color: var(--text-light); }

.rating-summary {
  background: var(--forest); color: var(--white);
  border-radius: 4px; padding: 3rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
}
.rating-summary .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 1;
  color: var(--gold);
}
.rating-summary .stars { color: var(--gold-light); font-size: 1.1rem; margin: 0.5rem 0; }
.rating-summary p { opacity: 0.75; font-size: 0.85rem; }

/* ── VIDEO SECTION ── */
.video-section { padding: 7rem 5%; background: var(--charcoal); }
.video-header { text-align: center; margin-bottom: 3rem; }
.video-header .section-eyebrow { color: var(--gold-light); }
.video-header .section-title { color: var(--white); }
.video-header .section-subtitle { color: rgba(255,255,255,0.55); }

.video-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}
.video-item {
  position: relative; border-radius: 4px; overflow: hidden;
  cursor: pointer; background: rgba(255,255,255,0.05);
}
.video-item:first-child { grid-row: span 2; }

.video-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; position: relative;
}
.video-item:first-child .video-thumb { height: 100%; aspect-ratio: unset; min-height: 300px; }

.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,150,62,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200,150,62,0.4);
}
.video-item:hover .play-btn { background: var(--gold); transform: scale(1.1); }
.video-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; }
.video-title {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  color: white; font-size: 0.85rem; font-weight: 500;
  background: rgba(0,0,0,0.5); padding: 0.5rem 0.75rem; border-radius: 2px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.contact-info h2 { font-size: clamp(1.8rem, 2.5vw, 2.5rem); margin-bottom: 1rem; }
.contact-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.2rem; }
.contact-detail span { font-size: 0.85rem; color: var(--text-light); }
.contact-detail a { color: var(--forest); transition: color 0.2s; }
.contact-detail a:hover { color: var(--gold); }

.quick-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.wa-btn {
  background: #25D366; color: white;
  padding: 12px 24px; border-radius: 2px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s;
}
.wa-btn:hover { background: #20b554; transform: translateY(-2px); }
.call-btn {
  background: var(--forest); color: white;
  padding: 12px 24px; border-radius: 2px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s;
}
.call-btn:hover { background: var(--forest-light); transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--cream); padding: 3rem;
  border-radius: 4px; border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 2px;
  background: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.88rem; color: var(--text);
  transition: border-color 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none; background: var(--forest);
  color: white; padding: 1rem; border-radius: 2px;
  text-align: center; font-size: 0.88rem; margin-top: 1rem;
}

/* ── MAP ── */
.map-section { padding: 0; }
.map-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, #e8f0eb 0%, #c5d8d0 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--forest); cursor: pointer;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238FAF9F' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-pin-icon { font-size: 3rem; }
.map-placeholder h3 { font-size: 1.5rem; }
.map-placeholder p { font-size: 0.85rem; opacity: 0.65; }
.map-placeholder a { color: var(--forest); font-weight: 500; text-decoration: underline; }

/* ── ACTIVITIES PAGE ── */
.activities-hero {
  padding: 9rem 5% 5rem;
  background: var(--cream);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto 2rem; }

.activities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem;
  max-width: 1200px; margin: 0 auto;
}
.activity-card {
  display: grid; grid-template-columns: 280px 1fr;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: all 0.4s; background: var(--white);
}
.activity-card:hover { box-shadow: 0 16px 48px var(--shadow-deep); transform: translateY(-4px); }
.activity-img { height: 100%; min-height: 220px; overflow: hidden; }
.activity-img-ph {
  width: 100%; height: 100%; min-height: 220px;
  background: linear-gradient(135deg, var(--sage-light), var(--forest));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: rgba(255,255,255,0.7);
}
.activity-img-ph .ph-icon { font-size: 2.5rem; opacity: 0.6; }
.activity-img-ph p { font-size: 0.72rem; opacity: 0.5; letter-spacing: 0.06em; }
.activity-info { padding: 2rem; }
.activity-info h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.activity-info .activity-meta {
  font-size: 0.75rem; color: var(--gold); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.activity-info p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

/* ── PACKAGES ── */
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}
.package-card {
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: all 0.4s; position: relative;
}
.package-card.featured {
  border-color: var(--forest);
  box-shadow: 0 8px 40px var(--shadow-deep);
}
.package-card.featured .package-header { background: var(--forest); }
.package-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: white;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 4px 4px;
}
.package-header {
  background: var(--cream); padding: 2rem 2rem 1.5rem;
  text-align: center; border-bottom: 1px solid var(--border);
}
.package-card.featured .package-header h3,
.package-card.featured .package-header .pkg-price { color: white; }
.package-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--forest);
}
.pkg-price span { font-size: 0.9rem; font-family: 'Jost', sans-serif; color: var(--text-light); }
.package-card.featured .pkg-price span { color: rgba(255,255,255,0.6); }
.pkg-nights {
  font-size: 0.75rem; color: var(--text-light); margin-top: 0.25rem;
}
.package-card.featured .pkg-nights { color: rgba(255,255,255,0.6); }

.package-body { padding: 2rem; }
.package-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.package-features li { font-size: 0.85rem; color: var(--text); display: flex; gap: 0.75rem; }
.package-features li::before { content: '✓'; color: var(--forest); font-weight: 600; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.75);
  padding: 5rem 5% 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: white; margin-bottom: 1rem; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 4px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-link:hover { background: var(--gold); color: white; }

.footer-col h4 { color: white; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-newsletter p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.25rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-right: none; border-radius: 2px 0 0 2px;
  color: white; font-family: 'Jost', sans-serif; font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  background: var(--gold); color: white; border: none;
  padding: 10px 16px; border-radius: 0 2px 2px 0;
  cursor: pointer; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── FLOATING ACTIONS ── */
.float-actions {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.float-wa {
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; cursor: pointer;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.float-call {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px var(--shadow-deep);
  transition: all 0.3s; cursor: pointer;
}
.float-call:hover { transform: scale(1.1); background: var(--forest-light); }

/* ── PAGE HERO ── */
.page-hero-section {
  padding: 9rem 5% 6rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238FAF9F' fill-opacity='0.08'%3E%3Cpath fill-rule='evenodd' d='M11 0l11 20H0zm40 40l11 20H40zm0-40l11 20H40zM11 40l11 20H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-section h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); position: relative; }
.page-hero-section p { font-size: 1rem; color: var(--text-light); max-width: 520px; margin: 1rem auto 0; position: relative; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.75rem; color: var(--text-light);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
  position: relative;
}
.breadcrumb a { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .things-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; }
  .hero-img-placeholder { min-height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-item:first-child { grid-row: span 1; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .things-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .activity-card { grid-template-columns: 1fr; }
  .activity-img { min-height: 200px; }
  .section { padding: 5rem 5%; }
  .contact-form-wrap { padding: 2rem; }
  /* Room detail rows — stack on mobile */
  .room-row {
    grid-template-columns: 1fr !important;
  }
  /* Room photo grids within rows — collapse height */
  .room-row > div[style*="height:420px"],
  .room-row > div[style*="height: 420px"] {
    height: 260px !important;
    grid-template-columns: 1fr 1fr; /* keep side-by-side thumbnails but shorter */
  }
}


/* ===========================
   MOBILE FOOTER 2-COLUMN FIX
   Keep desktop layout same
=========================== */

@media (max-width: 700px){

  .footer-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:2rem 1.5rem;
    align-items:start;
  }

  .footer-brand{
    grid-column:1 / -1;   /* full width top */
  }

  .footer-col{
    width:100%;
  }

  .footer-newsletter{
    grid-column:1 / -1;   /* full width bottom */
  }

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

}

/* Extra small phones */
@media (max-width: 420px){

  .footer-grid{
    gap:1.5rem 1rem;
  }

  .footer-col h4{
    margin-bottom:1rem;
  }

  .footer-col ul li a,
  .footer-newsletter p,
  .footer-bottom p{
    font-size:0.8rem;
  }

}
