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

:root {
  --dark: #000000;
  --dark-card: #141414;
  --dark-surface: #1A1A1A;
  --terra: #C1553D;
  --terra-dark: #9B3A2A;
  --terra-hover: #D4684E;
  --star: #EADD9E;
  --light: #F5F5F5;
  --light-alt: #FCFCFC;
  --white: #FFFFFF;
  --text-muted: #989898;
  --text-light: #CCCCCC;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.28);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: var(--terra);
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
}

.section-subtitle.light {
  color: var(--text-light);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-terra {
  background: var(--terra);
  color: var(--white);
}

.btn-terra:hover {
  background: var(--terra-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(193, 85, 61, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn-outline:hover {
  background: var(--terra);
  color: var(--white);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terra);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--terra);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '';
  border: none;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  margin-top: 12px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--terra);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Mobile dropdown */
.mobile-dropdown-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 0 8px;
  border-bottom: none;
  cursor: default;
}

.mobile-dropdown-label:hover {
  color: var(--text-muted);
}

.mobile-menu .mobile-dropdown-item {
  padding-left: 16px;
  font-size: 1rem;
}

/* Book Now CTA Dropdown */
.nav-cta-dropdown {
  position: relative;
}

.nav-cta-dropdown .nav-cta {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta-dropdown .nav-cta::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-cta-dropdown:hover .nav-cta::after {
  transform: rotate(180deg);
}

.nav-cta-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-cta-dropdown:hover .nav-cta-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.nav-cta-menu a span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.nav-cta-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--terra);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.98);
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu.active {
  max-height: 400px;
  padding: 24px;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
}

.mobile-menu a:hover {
  color: var(--terra);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 80px;
}

.hero-eyebrow {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terra);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ STAY CTA ============ */
.stay-cta {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.stay-cta-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.stay-cta-buttons {
  display: flex;
  gap: 16px;
}

.stay-cta-buttons .stay-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 52px;
  min-width: 200px;
}

.stay-btn-main {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.stay-btn-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 3px;
  line-height: 1;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}

/* Dark section base — all sections are now dark */
.section-dark,
.section {
  background-color: var(--dark);
  position: relative;
  color: var(--white);
}

/* Background image mixin for sections */
.section-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  z-index: 0;
}

.section-bg > .container,
.section-dark > .container,
.section > .container {
  position: relative;
  z-index: 1;
}

/* Per-section background images */
.section-about {
  background-image: url('../images/Flat image pinetop.png');
}


.section-location {
  background-image: url('../images/pinetop resort topography black adn white.png');
}

.section-location::before {
  background: rgba(0, 0, 0, 0.55);
}


.section-reviews {
  background-image: url('../images/Msc Images for website/Pne forest.jpg');
}


/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ ACCOMMODATIONS ============ */
.accommodations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.accommodation-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-dark);
}

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

.accommodation-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.accommodation-img img {
  transition: transform 0.6s ease;
}

.accommodation-card:hover .accommodation-img img {
  transform: scale(1.05);
}

.accommodation-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.accommodation-info {
  padding: 22px;
}

.accommodation-info h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.accommodation-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.accommodation-details {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.accommodation-details span {
  font-size: 0.83rem;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.accommodation-details span::before {
  content: '•';
  color: var(--terra);
}

/* ============ EXPERIENCES ============ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.experience-img {
  position: absolute;
  inset: 0;
}

.experience-img img {
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-img img {
  transform: scale(1.08);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.experience-card:hover .experience-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%);
}

.experience-overlay h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.experience-overlay p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--dark-card);
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition);
  border: 1px solid var(--border-dark);
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.modal-body {
  padding: 28px;
}

.modal-body h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-body p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ============ LOCATION ============ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.location-distances {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.distance-item {
  text-align: center;
  padding: 20px;
  background: var(--dark-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
}

.distance-value {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 4px;
}

.distance-label {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.location-address {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.location-address a {
  color: var(--terra);
}

.location-address a:hover {
  text-decoration: underline;
}

.location-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============ ATTRACTIONS ============ */
.attractions-carousel {
  position: relative;
}

.attractions-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
}

.attractions-track::-webkit-scrollbar {
  display: none;
}

.attraction-card {
  flex: 0 0 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-card);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  scroll-snap-align: start;
  border: 1px solid var(--border-dark);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

.attraction-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.attraction-img img {
  transition: transform 0.6s ease;
}

.attraction-card:hover .attraction-img img {
  transform: scale(1.05);
}

.attraction-info {
  padding: 20px;
}

.attraction-info h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--white);
}

.attraction-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: var(--dark-card);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* ============ REVIEWS ============ */
.reviews-wrapper {
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.reviews-wrapper > * {
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 32px;
}

.reviews-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.reviews-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.reviews-badge .badge-value {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.reviews-badge .badge-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.reviews-badge .badge-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}

.reviews-sources {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 16px;
}

.reviews-source {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews-source svg {
  width: 16px;
  height: 16px;
}

.reviews-overall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-rating .rating-number {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.reviews-rating .rating-stars {
  color: var(--star);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.btn-write-review {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--terra);
  background: transparent;
  color: var(--terra);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-write-review:hover {
  background: var(--terra);
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-dark);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.review-card-meta .reviewer-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviewer-source-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.review-card-meta .review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--star);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  font-size: 0.8rem;
  color: var(--terra);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}

.review-read-more:hover {
  color: var(--terra-hover);
  text-decoration: underline;
}

/* ============ BENEFITS ============ */
.section-benefits {
  /* dark mode — inherits from .section */
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  text-align: center;
  padding: 44px 32px;
  background: var(--dark-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-dark);
  transition: transform var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  color: var(--terra);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.benefit-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============ SIGNUP OFFER SECTION ============ */
.section-signup-offer {
  padding: 100px 0;
  background: var(--dark);
}

.signup-offer-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #1a1612 0%, #0f0c0a 100%);
  border: 1px solid rgba(193, 85, 61, 0.2);
  border-radius: var(--radius);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}

.signup-offer-decor {
  width: 120px;
  height: 120px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C60 30, 80 40, 90 60 C70 55, 55 65, 50 90 C45 65, 30 55, 10 60 C20 40, 40 30, 50 10" fill="%23C1553D" opacity="0.6"/><path d="M30 20 C35 35, 50 40, 60 55 C45 52, 35 58, 30 75 C25 58, 15 52, 0 55 C10 40, 25 35, 30 20" fill="%23D4684E" opacity="0.5"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.signup-offer-content {
  text-align: center;
}

.signup-offer-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--terra-hover);
  margin-bottom: 16px;
}

.signup-offer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.signup-offer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.signup-offer-form input {
  padding: 14px 20px;
  border: 1px solid rgba(193, 85, 61, 0.3);
  border-radius: var(--radius-full);
  background: rgba(193, 85, 61, 0.1);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.signup-offer-form input:focus {
  border-color: var(--terra);
  background: rgba(193, 85, 61, 0.2);
}

.signup-offer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup-offer-form .btn {
  background: var(--terra);
  color: var(--white);
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-full);
}

.signup-offer-form .btn:hover {
  background: var(--terra-hover);
  transform: translateY(-2px);
}

/* ============ SIGNUP POPUP ============ */
.signup-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.signup-popup.active {
  opacity: 1;
  visibility: visible;
}

.signup-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.signup-popup-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f0c0a;
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.signup-popup.active .signup-popup-content {
  transform: scale(1) translateY(0);
}

.signup-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10;
}

.signup-popup-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.signup-popup-form-side {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-popup-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--terra);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #C1553D, #D4684E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signup-popup-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.signup-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup-popup-form input {
  padding: 14px 18px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  color: #333;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: box-shadow var(--transition);
}

.signup-popup-form input:focus {
  box-shadow: 0 0 0 2px rgba(193, 85, 61, 0.3);
}

.signup-popup-form input::placeholder {
  color: #888;
}

.signup-popup-form .btn {
  background: var(--terra);
  color: var(--white);
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 6px;
  margin-top: 8px;
}

.signup-popup-form .btn:hover {
  background: var(--terra-hover);
  transform: translateY(-2px);
}

.signup-popup-image-side {
  position: relative;
  min-height: 400px;
}

.signup-popup-image-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-surface);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 16px;
}

.footer-logo .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

.footer-links h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 20px;
}

.footer-links a,
.footer-links p {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============ SCROLL ANIMATIONS ============ */
.animate-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.accommodations-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.accommodations-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.accommodations-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.experiences-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.experiences-grid .animate-in:nth-child(3) { transition-delay: 0.15s; }
.experiences-grid .animate-in:nth-child(4) { transition-delay: 0.2s; }
.experiences-grid .animate-in:nth-child(5) { transition-delay: 0.25s; }
.experiences-grid .animate-in:nth-child(6) { transition-delay: 0.3s; }

.reviews-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.benefits-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }

/* ============ 404 PAGE ============ */
.section-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .section-bg {
    background-attachment: scroll;
  }

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

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

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .signup-offer-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 32px;
  }

  .signup-offer-decor {
    display: none;
  }

  .signup-offer-form {
    max-width: 300px;
    margin: 24px auto 0;
  }

  .signup-popup-content {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .signup-popup-image-side {
    display: none;
  }
}

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

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content {
    margin-bottom: 140px;
  }

  .stay-cta {
    bottom: 24px;
    width: calc(100% - 32px);
    max-width: 400px;
  }

  .stay-cta-label {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .stay-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .stay-cta-buttons .stay-btn {
    padding: 14px 24px;
    min-width: unset;
    width: 100%;
  }

  .stay-btn-main {
    font-size: 1rem;
  }

  .stay-btn-sub {
    font-size: 0.65rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    aspect-ratio: 16 / 9;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

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

  .reviews-wrapper {
    padding: 28px 20px;
  }

  .reviews-overall {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .reviews-sources {
    gap: 16px;
  }

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

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

  .benefit-card {
    padding: 32px 24px;
  }

  .attraction-card {
    flex: 0 0 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .signup-offer-card {
    padding: 32px 24px;
  }

  .signup-offer-form {
    width: 100%;
    max-width: 100%;
  }

  .signup-popup-form-side {
    padding: 36px 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-404 {
    padding-top: 80px;
    min-height: 50vh;
  }
}

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

  .attraction-card {
    flex: 0 0 260px;
  }
}
