/* ===========================
   DAWON STAY — OpenNotes-Inspired Design System
   Green · Forest · Teal · Montserrat
   =========================== */

/* --- CSS Variables --- */
:root {
  --purple: #6fc276;
  --purple-dark: #5aad61;
  --purple-light: #8ad490;
  --orange: #2e6f40;
  --orange-light: #3d8f53;
  --orange-dark: #1e4f2d;
  --teal: #009A8A;
  --teal-light: #00C2B0;
  --teal-dark: #007a6e;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #F3F3EE;
  --gray: #EFEFEF;
  --border-gray: #e2e2e2;
  --text-dark: #2D2D2D;
  --text-body: #444444;
  --text-muted: #777777;
  --text-light: #999999;
  --black: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: var(--teal);
  transition: color 0.4s ease-in-out;
}

a:hover {
  color: var(--orange);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 em, h2 em, h3 em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark h1 em,
.section--dark h2 em,
.section--dark h3 em {
  color: var(--orange-light);
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* --- Section --- */
.section {
  padding: 100px 48px;
}

.section--light {
  background-color: var(--light-gray);
}

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

.section--purple {
  background-color: var(--purple);
  color: var(--white);
}

.section--dark {
  background-color: var(--text-dark);
  color: var(--white);
}

.section--teal {
  background-color: var(--teal);
  color: var(--white);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.section--dark .section-header p,
.section--purple .section-header p {
  color: rgba(255,255,255,0.7);
}

.section--dark .section-header .eyebrow,
.section--purple .section-header .eyebrow {
  color: var(--orange-light);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}

.navbar--transparent {
  background: transparent;
}

.navbar--transparent .nav-logo {
  color: var(--white);
}

.navbar--transparent .nav-links a {
  color: var(--white);
}

.navbar--transparent .nav-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.navbar--solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar--solid .nav-logo {
  color: var(--purple);
}

.navbar--solid .nav-links a {
  color: var(--text-dark);
}

.navbar--solid .nav-cta {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: color 0.4s ease-in-out;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.4s ease-in-out;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.4s ease-in-out;
}

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

.nav-links a:hover {
  color: var(--teal) !important;
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-color: var(--orange) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.4s ease-in-out;
}

.navbar--solid .nav-hamburger span {
  background: var(--text-dark);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--purple);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

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

.nav-mobile a {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.4s ease-in-out;
}

.nav-mobile a:hover {
  color: var(--orange-light);
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 48px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.4s ease-in-out;
}

.nav-mobile-close:hover {
  color: var(--orange-light);
}

/* ===========================
   HERO — Homepage
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(61deg, rgba(111,194,118,0.85) 0%, rgba(111,194,118,0.5) 40%, rgba(0,154,138,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 48px;
  color: var(--white);
}

.hero-content .eyebrow {
  color: var(--orange-light);
  font-size: 13px;
  letter-spacing: 4px;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.hero-content h1 em {
  color: var(--orange-light);
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   HERO — Subpages
   =========================== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(61deg, rgba(111,194,118,0.8) 0%, rgba(0,154,138,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  padding: 0 24px;
}

.page-hero-content .eyebrow {
  color: var(--orange-light);
  font-size: 13px;
}

.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}

.page-hero-content p {
  font-size: 17px;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.7;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

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

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

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

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

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

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

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

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

/* ===========================
   INTRO SECTION (Homepage)
   =========================== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .eyebrow {
  margin-bottom: 16px;
}

.intro-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Stat Bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 2px solid var(--gray);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Intro Image */
.intro-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.intro-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 50%, var(--orange) 100%);
}

/* ===========================
   ROOM CARDS
   =========================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.room-card:hover {
  box-shadow: 0 12px 40px rgba(111,194,118,0.1);
  transform: translateY(-4px);
}

.room-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.room-card:hover .room-card-image img {
  transform: scale(1.03);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 4px;
}

.room-card-body {
  padding: 28px 24px;
}

.room-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 6px;
}

.room-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.room-card-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.room-price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.room-price-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--purple);
}

.room-price-unit {
  font-size: 14px;
  color: var(--text-muted);
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.room-features li {
  font-size: 13px;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}

.room-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
}

.room-meal-addon {
  background: var(--light-gray);
  padding: 16px 20px;
  margin-top: 16px;
  border-radius: 6px;
  border-left: 4px solid var(--orange);
}

.room-meal-addon p {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}

.room-meal-addon .meal-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
}

/* ===========================
   AMENITIES GRID
   =========================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.amenity-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-gray);
  transition: all 0.4s ease-in-out;
}

.amenity-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.amenity-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.amenity-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===========================
   MEALS CARDS
   =========================== */
.meals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.meal-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.meal-card:hover {
  box-shadow: 0 12px 40px rgba(111,194,118,0.1);
  transform: translateY(-4px);
}

.meal-card-image {
  height: 260px;
  overflow: hidden;
}

.meal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.meal-card:hover .meal-card-image img {
  transform: scale(1.03);
}

.meal-card-body {
  padding: 28px 24px;
}

.meal-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.meal-card-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.meal-card-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
}

.meal-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Meal Service Info */
.meal-info {
  max-width: 700px;
  margin: 0 auto;
}

.meal-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meal-info li {
  font-size: 16px;
  color: var(--text-body);
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.meal-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ===========================
   GALLERY GRID (Masonry)
   =========================== */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item.wide img {
  aspect-ratio: 16 / 7;
}

.gallery-item.tall img {
  aspect-ratio: 3 / 4;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(111,194,118,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.4s ease-in-out;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease-in-out;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(111,194,118,0.45);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   GUIDE CARDS
   =========================== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 32px 28px;
  transition: all 0.4s ease-in-out;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.guide-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.guide-card:hover::before {
  opacity: 1;
}

.guide-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.guide-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.guide-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Support Info Section */
.support-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.support-info p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 8px;
}

.contact-detail-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-detail-text a {
  color: var(--teal);
}

.contact-detail-text a:hover {
  color: var(--orange);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 40px 36px;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--border-gray);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.4s ease-in-out;
  border-radius: 6px;
  min-height: 48px;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,154,138,0.1);
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

/* ===========================
   WHY US / ABOUT
   =========================== */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-us-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.why-us-text .eyebrow {
  color: var(--orange-light);
}

.why-us-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: var(--white);
}

.why-us-text p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 16px;
}

.why-us-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-us-list li {
  font-size: 15px;
  padding-left: 28px;
  position: relative;
  opacity: 0.9;
}

.why-us-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 700;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  position: relative;
  padding: 100px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-banner .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(61deg, rgba(111,194,118,0.88) 0%, rgba(0,154,138,0.7) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--white);
}

.cta-content h2 em {
  color: var(--orange-light);
}

.cta-content p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 72px 48px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.6;
  transition: color 0.4s ease-in-out;
}

.footer-col a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-seo {
  font-size: 11px;
  color: rgba(255,255,255,0.06);
  max-width: 500px;
  text-align: right;
  line-height: 1.6;
}

/* ===========================
   ROOM PREVIEW (Homepage simplified)
   =========================== */
.room-preview-card .room-card-body > p {
  display: none;
}

.room-preview-card .room-features {
  display: none;
}

.room-preview-card .room-meal-addon {
  display: none;
}

/* ===========================
   SPEECH BUBBLE (OpenNotes-inspired)
   =========================== */
.speech-bubble {
  position: relative;
  background: var(--light-gray);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--purple);
}

.speech-bubble p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===========================
   ALERT BAR (OpenNotes-inspired)
   =========================== */
.alert-bar {
  background: var(--purple);
  color: var(--white);
  padding: 12px 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.alert-bar a {
  color: var(--orange-light);
  text-decoration: underline;
}

/* ===========================
   FEATURE ICONS ROW
   =========================== */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.feature-item {
  padding: 24px 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  transition: background 0.4s ease-in-out;
}

.feature-item:hover .feature-icon {
  background: var(--orange);
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   COLOR BAR DIVIDER
   =========================== */
.color-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 50%, var(--orange) 100%);
  position: relative;
  z-index: 1001;
}

/* ===========================
   CLASS COMPATIBILITY ALIASES
   =========================== */

/* Room card image — alias room-card-img to match room-card-image */
.room-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.room-card:hover .room-card-img img {
  transform: scale(1.03);
}

/* Room price aliases */
.price-old, .price-original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-new, .price-current {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
}
.price-unit {
  font-size: 14px;
  color: var(--text-muted);
}

/* Room addon alias */
.room-addon {
  background: var(--light-gray);
  padding: 16px 20px;
  margin-top: 16px;
  border-radius: 6px;
  border-left: 4px solid var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room-addon span {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}
.room-addon strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

/* Meal price alias */
.meal-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
}
.meal-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Room preview card (homepage) */
.room-preview-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.room-preview-card:hover {
  box-shadow: 0 12px 40px rgba(111,194,118,0.1);
  transform: translateY(-4px);
}

/* Stat bar — handle raw strong/span inside stat-item */
.stat-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  display: block;
}
.stat-item span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Feature item h3 (HTML uses h3, CSS had h4) */
.feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Amenity item span (some pages use span instead of p) */
.amenity-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

/* Footer inner alias for meals.html */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* ===========================
   MAX-WIDTH CONSTRAINTS
   =========================== */
.section > .section-header,
.section > .rooms-grid,
.section > .meals-grid,
.section > .gallery-grid,
.section > .guide-grid,
.section > .meal-info,
.section > .amenities-grid,
.section > .contact-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section > .section-header {
  max-width: 700px;
  margin-bottom: 48px;
}
.section > .section-header + .rooms-grid,
.section > .section-header + .meals-grid,
.section > .section-header + .gallery-grid,
.section > .section-header + .guide-grid {
  margin-top: 0;
}

/* CTA banner fallback gradient when no image */
.cta-banner {
  background: linear-gradient(61deg, var(--purple) 0%, var(--teal) 100%);
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.cta-banner h2 em {
  color: var(--orange-light);
}
.cta-banner p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* Page hero — fallback gradient when no bg image */
.page-hero {
  background: linear-gradient(61deg, var(--purple) 0%, var(--teal) 100%);
}

/* ===========================
   RESPONSIVE — Tablet (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .rooms-grid,
  .meals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .footer-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-image img {
    height: 360px;
  }

  .why-us {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .section {
    padding: 80px 36px;
  }

  .cta-banner {
    padding: 80px 36px;
  }
}

/* ===========================
   RESPONSIVE — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {
  .section {
    padding: 72px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .page-hero {
    min-height: 300px;
  }

  .rooms-grid,
  .meals-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

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

  .stat-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .footer-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-seo {
    text-align: center;
  }

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

  .cta-banner {
    padding: 72px 20px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .why-us-images {
    grid-template-columns: 1fr;
  }

  .why-us-images img {
    height: 220px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .nav-mobile-close {
    right: 20px;
  }

  .btn {
    padding: 14px 28px;
    width: 100%;
  }

  .features-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .alert-bar {
    padding: 10px 20px;
    font-size: 13px;
  }
}
