/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e0c97f;
  --gold-dark: #a8872e;
  --bg-dark: #2b2b2b;
  --bg-page: #ffffff;
  --bg-card: #f0f0f0;
  --bg-card-hover: #e8e8e8;
  --bg-footer: #4a4a4a;
  --text-dark: #222222;
  --text-body: #555555;
  --text-light: #ffffff;
  --text-muted: #999999;
  --border-subtle: #e0e0e0;
  --border-gold: rgba(201, 168, 76, 0.3);
  --accent: #cd9f7a;
  --font-display: 'Tenor Sans', Georgia, serif;
  --font-body: 'Maven Pro', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--accent);
}
a:hover {
  color: #cfb8a5;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCRIPT TITLE ===== */
.script-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
}
.gold-divider.center {
  margin: 16px auto;
}
.gold-divider.small {
  width: 50px;
  margin: 12px 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #2b2b2b;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  font-size: 0.85rem;
  color: #f2f2f2;
}
.top-bar a {
  color: #f2f2f2;
}
.top-bar a:hover {
  color: #fff;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.top-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-contact i {
  color: #fff;
  font-size: 0.85rem;
}

.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0d;
  padding: 8px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-book:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(0, 0, 0, 0.8);
  padding: 16px 0;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 90px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 35vh;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  overflow: hidden;
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #888;
}
.hero-content .gold-divider {
  margin: 20px auto 0;
  width: 120px;
}

/* ===== INTRO ===== */
.intro {
  padding: 50px 0 40px;
  text-align: center;
  background: var(--bg-page);
}
.intro .script-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.intro h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
}
.intro .subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-body);
  margin-bottom: 4px;
}
.intro-text {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ===== FEATURES ===== */
.features {
  padding: 30px 0 80px;
  background: var(--bg-card);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.feature-card {
  background: var(--bg-card);
  border: none;
  padding: 50px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: #fff;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-card p {
  color: var(--text-body);
  line-height: 1.9;
  font-size: 0.95rem;
}
.feature-card ul {
  margin-top: 12px;
}
.feature-card ul li {
  color: var(--text-body);
  font-size: 0.95rem;
  padding: 6px 0 6px 20px;
  position: relative;
}
.feature-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--text-dark);
  border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-footer);
  border-top: none;
  padding: 70px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr 1fr;
  gap: 40px;
}
.footer-logo {
  height: 70px;
  margin-bottom: 16px;
}
.footer-about h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.footer-about p {
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-contact li {
  font-size: 0.85rem;
  color: #bbb;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-links li {
  padding: 5px 0;
}
.footer-links a {
  font-size: 0.85rem;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.award-text {
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent);
  font-size: 1.2rem;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: #999;
}
.footer-bottom-links a {
  color: #999;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #999;
}

/* ===== HOME SLIDER ===== */
.home-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.home-slide.active {
  opacity: 1;
}
.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s;
  line-height: 1;
}
.home-slider-arrow:hover {
  background: rgba(0,0,0,0.6);
}
.home-slider-arrow.prev { left: 10px; }
.home-slider-arrow.next { right: 10px; }

/* ===== HOME SPLIT SECTIONS ===== */
.home-split-section {
  padding: 50px 0;
}
.home-split-section.bg-grey,
.home-reviews-section.bg-grey {
  background-color: #ececec;
}
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.home-split-text h2 {
  font-family: var(--font-display);
  font-size: 41px;
  font-weight: 400;
  color: #3a3a3a;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.home-split-text p {
  font-size: 0.92rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 10px;
}
.btn-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: transparent;
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--accent);
  transition: all 0.3s;
}
.btn-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.home-split-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Mini sliders inside split sections */
.home-slider-mini {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.mini-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.mini-slide:first-child {
  position: relative;
}
.mini-slide.active {
  opacity: 1;
}
.mini-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.mini-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ===== EXPLORE SECTION ===== */
.home-explore-section {
  padding: 50px 0;
  border-top: 4px solid #e9e9e9;
  border-bottom: 4px solid #e9e9e9;
}
.home-explore-section .section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.home-explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.home-explore-card {
  text-align: center;
}
.home-explore-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
}
.home-explore-card h4 {
  font-family: var(--font-display);
  font-size: 41px;
  font-weight: 400;
  color: #474747;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.home-explore-card p {
  font-size: 0.9rem;
  color: #6d6d6d;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== REVIEWS SECTION ===== */
.home-reviews-section {
  padding: 50px 0;
}
.reviews-header {
  text-align: center;
  margin-bottom: 30px;
}
.reviews-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rating-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.rating-stars {
  color: #e7711b;
  font-size: 0.9rem;
}
.rating-count {
  font-size: 0.82rem;
  color: var(--text-body);
}
.reviews-slider {
  position: relative;
  min-height: 160px;
}
.review-card {
  display: none;
  text-align: center;
  padding: 24px 40px;
  max-width: 700px;
  margin: 0 auto;
}
.review-card.active {
  display: block;
}
.review-author {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 600;
}
.review-stars {
  color: #e7711b;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}
.reviews-nav {
  text-align: center;
  margin-top: 20px;
}
.reviews-btn {
  background: none;
  border: 1px solid #ccc;
  font-size: 1.5rem;
  padding: 4px 16px;
  margin: 0 6px;
  cursor: pointer;
  color: var(--text-body);
  transition: all 0.3s;
  line-height: 1;
}
.reviews-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== PAGE HERO (with background image) ===== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4px;
}
.gallery-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 40px;
}

/* ===== VILLA GALLERY ===== */
.villa-gallery {
  background: #f4f4f4;
  padding: 50px 0 70px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== VILLA AMENITIES ===== */
.villa-amenities {
  background: #fff;
  padding: 50px 0 100px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.amenity-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 12px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.amenity-item:last-child {
  border-bottom: none;
}
.amenity-item:hover {
  background: #fafafa;
}
.amenity-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-body);
  font-size: 1.2rem;
}
.amenity-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== ROOM SECTIONS ===== */
.room-section {
  padding: 0 0 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.room-section:last-of-type {
  border-bottom: none;
}
.room-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1400/600;
  max-height: 500px;
}
.room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-slider .room-img-alt {
  display: none;
}
.room-details {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
}
.room-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.room-specs {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}
.room-desc p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}
.room-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-details {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 4px 0;
  transition: color 0.3s;
}
.btn-details:hover {
  color: var(--gold);
}
.room-amenities {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.room-amenities.open {
  max-height: 400px;
  padding: 10px 0 30px;
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
}
.amenities-list li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 6px 0 6px 18px;
  position: relative;
}
.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== DINING PAGE ===== */
.dining-section {
  padding: 40px 0;
}
.dining-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.dining-row.reverse {
  direction: rtl;
}
.dining-row.reverse > * {
  direction: ltr;
}
.dining-images {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.dining-images .dining-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  display: none;
}
.dining-images .dining-img.active {
  display: block;
}
.dining-img-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dining-img-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.dining-img-dots .dot.active {
  background: var(--gold);
}
.dining-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.dining-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
}
.dining-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-intro {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.contact-detail h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--text-body);
  transition: color 0.3s;
}
.contact-detail a:hover {
  color: var(--gold);
}
.contact-social {
  margin-top: 28px;
}
.contact-social h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  margin-right: 10px;
  font-size: 1rem;
  transition: background 0.3s;
}
.contact-social-links a:hover {
  background: var(--gold);
}
.contact-form-wrap {
  background: var(--bg-card);
  padding: 36px;
  border-radius: 6px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
}
.contact-map {
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  display: block;
}

/* ===== LEGAL PAGES (Privacy, Terms) ===== */
.legal-page {
  padding: 60px 0 80px;
  background: var(--bg-page);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.legal-page h2:first-child {
  margin-top: 0;
}
.legal-page p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 10px 0 18px 20px;
  list-style: disc;
}
.legal-page ul li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  padding: 3px 0;
}
.legal-page a {
  color: var(--accent);
}

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ccc;
  transition: all 0.3s;
}
.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);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-slider {
    height: 450px;
  }
  .home-split {
    gap: 30px;
  }
  .mini-slide img {
    height: 280px;
  }
  .contact-grid {
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .room-details {
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }
  .room-action {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }
  .amenities-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .dining-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    text-align: center;
  }
  .top-bar-inner {
    justify-content: center;
  }
  .top-contact {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .logo img {
    height: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 6px;
  }
  .home-slider {
    height: 350px;
  }
  .home-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-explore-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mini-slide img {
    height: 250px;
  }
  .intro h2 {
    font-size: 1.5rem;
  }
  .script-title {
    font-size: 2rem;
  }
  .home-split-text h2 {
    font-size: 28px;
  }
  .home-explore-card h4 {
    font-size: 28px;
  }
  .feature-card {
    padding: 36px 28px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    height: 35vh;
    min-height: 240px;
  }
  .page-hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .room-details {
    grid-template-columns: 1fr;
  }
  .room-action {
    grid-column: auto;
  }
  .amenities-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .dining-row,
  .dining-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .dining-images .dining-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  .script-title {
    font-size: 1.6rem;
  }
  .home-split-text h2 {
    font-size: 22px;
  }
  .home-explore-card h4 {
    font-size: 22px;
  }
  .home-slider {
    height: 260px;
  }
  .page-hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .amenities-list {
    grid-template-columns: 1fr;
  }
  .intro {
    padding: 30px 0 25px;
  }
  .home-split-section {
    padding: 30px 0;
  }
  .home-explore-section {
    padding: 30px 0;
  }
  .btn-cta {
    padding: 10px 24px;
    font-size: 0.75rem;
  }
  .review-card {
    padding: 16px 12px;
  }
  .reviews-header h3 {
    font-size: 1.1rem;
  }
  .logo img {
    height: 50px;
  }
  .container {
    padding: 0 16px;
  }
}
