/* ========================================================
   Egang Egang Resort — style.css
   Font: Bodoni Moda (headings) + Inter (body)
   Accent: #c2410c (Burnt Orange) / hover: #9a3412
   ======================================================== */

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

:root {
  --accent:       #c2410c;
  --accent-hover: #9a3412;
  --accent-light: rgba(194,65,12,0.10);
  --accent-light2:rgba(194,65,12,0.18);
  --footer-bg:    #270d02;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #6b7280;
  --bg-alt:       #f9f6f3;
  --border:       #e8e0d8;
  --white:        #ffffff;
  --radius-img:   16px;
  --radius-btn:   4px;
  --radius-card:  12px;
  --section-pad:  48px;
  --font-head:    'Cabinet Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-size: 1.0625rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

/* SECTION */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 760px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }

.btn-sm { padding: 8px 18px; font-size: 0.9375rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent !important;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
}

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

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

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--white) !important;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--accent-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background 0.2s;
  border-radius: 2px;
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }

.nav-sentinel { height: 0; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px;
}

.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--accent); }

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-backdrop.open { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
  line-height: 1.1;
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

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

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

.about-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-image img {
  border-radius: var(--radius-img);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* QUICK FACTS */
.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.quick-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quick-fact i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.quick-fact strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.quick-fact span {
  font-size: 0.9375rem;
  color: var(--text-mid);
}

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.room-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.room-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }

.room-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.room-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.room-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.room-features li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-features li i { color: var(--accent); width: 16px; text-align: center; }

.btn-room-cta {
  display: block;
  width: 100%;
  margin-top: auto;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-room-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e0d8;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--white); }

/* ===== MEALS ===== */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.meals-image img {
  border-radius: var(--radius-img);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.meals-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.meals-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.meal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-mid);
}

.meal-item i { color: var(--accent); width: 18px; text-align: center; }

/* ===== ACTIVITIES ===== */
.activities-banner {
  margin-bottom: 32px;
  border-radius: var(--radius-img);
  overflow: hidden;
  max-height: 380px;
}

.activities-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.activities-intro {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 860px;
  margin-bottom: 40px;
}

/* Core Activities Grid */
.core-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.core-activity-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.core-activity-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-3px); }

.core-activity-img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.core-activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.core-activity-card:hover .core-activity-img img { transform: scale(1.05); }

.core-activity-body {
  padding: 20px;
}

.core-activity-body i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.core-activity-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.core-activity-body p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Tour Blocks */
.tours-section { margin-top: 8px; }

.tours-heading {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tour-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.04); }

.tour-body { padding: 20px; }

.tour-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.tour-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== GETTING THERE ===== */
.getting-there-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.transport-block { margin-bottom: 36px; }

.transport-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport-block h3 i { color: var(--accent); }

.transport-block p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.transport-block ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.transport-block ul li {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* Sidebar Cards */
.getting-there-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card h4 i { color: var(--accent); }

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.location-text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.boat-times-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Travel Tips */
.travel-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.travel-tips-list li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.travel-tips-list li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-card {
  background: var(--bg-alt, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-card h4 i {
  color: var(--accent, #059669);
}
.info-card p {
  font-size: 1.0625rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.65;
  margin: 0;
}
.info-list,
.quick-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.info-list li,
.quick-facts-list li {
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
}
.info-list li i,
.quick-facts-list li i {
  color: var(--accent, #059669);
  width: 1.25rem;
  flex-shrink: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  width: auto;
  align-self: flex-start;
  padding: 13px 36px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.review-stars { color: #f59e0b; font-size: 0.9375rem; display: flex; gap: 3px; }

.review-card blockquote {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: normal;
  quotes: "\201C" "\201D";
}

.review-card blockquote::before { content: open-quote; }
.review-card blockquote::after  { content: close-quote; }

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.review-author strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
}

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

.footer-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== MODALS ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.modal.open {
  pointer-events: all;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  max-width: 560px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.25s;
}

.modal.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-mid);
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--bg-alt); color: var(--text-dark); }

.modal-box h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  padding-right: 32px;
}

.modal-box p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.modal-box p:last-child { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .meals-grid { grid-template-columns: 1fr; gap: 36px; }

  .about-image { order: -1; }

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

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

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

@media (max-width: 768px) {
  :root { --section-pad: 40px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; }

  .hero-title { font-size: 2rem; }

  .core-activities-grid { grid-template-columns: 1fr; }

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

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

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

  .quick-facts { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .modal-box { padding: 24px; }
}

html{scroll-padding-top:calc(80px + 24px);}
.logo-navbar{height:80px !important;width:auto;padding:0;margin:0;object-fit:contain;}
.navbar:not(.scrolled) .logo-navbar{filter:brightness(0) invert(1);}
.navbar.scrolled .logo-navbar{filter:none;}
.navbar.scrolled .hamburger-bar{background:var(--text);}
.hamburger-bar{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:0.3s;}
.hero-image{position:absolute;inset:0;z-index:0;}
.hero-bg{width:100%;height:100%;object-fit:cover;}
.review-body{font-style:normal;}
.review-name{font-weight:700;margin:0;}
.review-country{font-size:0.9375rem;color:var(--text-muted);margin:0;}
.review-author{display:flex;align-items:baseline;gap:0.5rem;}
.footer-brand-name{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:#fff;margin-bottom:0.875rem;}
.footer-enquiry-link{display:inline-block;color:rgba(255,255,255,0.85);font-size:1.0625rem;font-weight:700;margin-bottom:1.25rem;}
.footer-social{display:flex;gap:1rem;margin-bottom:1rem;}
.footer-social a{color:rgba(255,255,255,0.7);font-size:1.25rem;}
.footer-social a:hover{color:#fff;}
.footer-lang{display:flex;gap:0.75rem;margin-top:0.5rem;}
.footer-flag{opacity:0.5;}.footer-flag:hover{opacity:0.8;}.footer-flag-active{opacity:1;}
.lang-switch{display:flex;align-items:center;gap:0.25rem;margin-left:1.25rem;border:1px solid rgba(255,255,255,0.4);border-radius:999px;padding:0.2rem 0.15rem;}
.lang-switch a{padding:0.2rem 0.625rem;font-size:0.9375rem;font-weight:600;color:rgba(255,255,255,0.7);border-radius:999px;}
.lang-switch .lang-active{background:rgba(255,255,255,0.2);color:#fff;}
.navbar.scrolled .lang-switch{border-color:var(--border);}
.navbar.scrolled .lang-switch a{color:var(--text-muted);}
.navbar.scrolled .lang-switch .lang-active{background:rgba(0,0,0,0.08);color:var(--text);}
.lang-switch-mobile{display:none;}
@media(max-width:900px){.lang-switch{display:none;}.lang-switch-mobile{display:flex;align-items:center;gap:0.25rem;margin-right:0.75rem;border:1px solid rgba(0,0,0,0.15);border-radius:999px;padding:0.15rem;}.lang-switch-mobile a{padding:0.15rem 0.5rem;font-size:0.8125rem;font-weight:600;color:var(--text-muted);border-radius:999px;}.lang-switch-mobile .lang-active{background:rgba(0,0,0,0.08);color:var(--text);}}
.navbar:not(.scrolled) .lang-switch-mobile{border-color:rgba(255,255,255,0.4);}
.navbar:not(.scrolled) .lang-switch-mobile a{color:rgba(255,255,255,0.7);}
.navbar:not(.scrolled) .lang-switch-mobile .lang-active{background:rgba(255,255,255,0.2);color:#fff;}
img[src*='multi-day-']{aspect-ratio:1/1 !important;object-fit:cover !important;height:auto !important;}
.tour-img:has(img[src*='multi-day-']) {
  aspect-ratio: 1/1 !important;
}

.activities-banner img {
  width: 50%;
}
@media (max-width: 768px) {
  .activities-banner img {
    width: 100%;
  }
}

.nav-links a {
  font-size: 1.0625rem !important;
  font-weight: 600 !important;
}
.nav-cta {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.hero-actions .btn-outline {
  color: #fff !important;
  border-color: #fff;
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.facts-bar .fact-item {
  white-space: nowrap;
}
.facts-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .facts-bar {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
  .facts-bar .fact-item {
    white-space: normal;
  }
}

.travel-tips-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.travel-tip-card {
  background: var(--bg-alt, #f9fafb);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border, #e5e7eb);
}
.travel-tip-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.travel-tip-card p {
  font-size: 1.0625rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.6;
  margin: 0;
}

.footer-brand-name {
  font-size: 2rem !important;
  margin-bottom: 0.5rem !important;
}
.footer-location {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.footer-location i {
  color: var(--accent, #059669);
  margin-right: 0.35rem;
}
footer p, footer li, footer a {
  font-size: 1.0625rem;
}
footer h5 {
  font-size: 1.25rem;
}
.footer-bottom p {
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  body { font-size: 1.0625rem; }
  p, li, td, th, label, input, select, textarea,
  .room-desc, .activity-info p, .section-intro,
  .meals-text p, .review-body, .review-text,
  .transport-block p, .transport-block li,
  .tour-info p, .modal-amenities li,
  .onsite-tag, .room-tag span,
  .travel-tip-card p, .info-card p,
  .quick-facts-list li, .info-list li,
  footer p, footer li, footer a,
  .form-group label {
    font-size: 1.0625rem !important;
    line-height: 1.65;
  }
  h2, .section-title { font-size: 1.75rem; }
  h3, .tour-info h4, .room-name { font-size: 1.25rem; }
  .section-label { font-size: 1.0625rem; }
  .footer-bottom p, .review-country { font-size: 0.9375rem !important; }
  .mobile-nav-links a { font-size: 1.25rem !important; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  p, li, td, th, label, input, select, textarea,
  .room-desc, .tour-info p, .review-body,
  .info-card p, .quick-facts-list li, .info-list li,
  footer p, footer li {
    font-size: 1.0625rem !important;
  }
}
@media (max-width: 380px) {
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.375rem; }
}

/* Navbar readability gradient at top of hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 640px) {
  body { font-size: 1.0625rem; }

  /* All body text: minimum 1rem (16px) */
  p, li, dd, dt, span, a, label, td, th, blockquote,
  .section-intro,
  .section-label,
  .meal-item,
  .cuisine-tag,
  .room-amenity,
  .room-desc,
  .room-card p,
  .room-amenities li,
  .review-body,
  .review-name,
  .review-country,
  .info-card p,
  .info-list li,
  .quick-facts-list li,
  .quick-fact span,
  .quick-fact strong,
  .sidebar-card p,
  .sidebar-card h4,
  .travel-tip-card p,
  .travel-tip-card h4,
  .tour-body p,
  .tour-body h4,
  .tour-highlights li,
  .activity-card p,
  .activity-desc,
  .getting-step p,
  .route-item,
  .footer-desc,
  .footer-location,
  .footer-col a,
  .footer-col li,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .btn {
    font-size: 1.0625rem !important;
  }

  /* Titles: slightly bigger than body on mobile */
  .section-title,
  h2 {
    font-size: 1.5rem !important;
  }

  .tour-body h4,
  .sidebar-card h4,
  .info-card h4,
  .travel-tip-card h4 {
    font-size: 1.125rem !important;
  }

  .activity-card h3 {
    font-size: 1.125rem !important;
  }

  .room-name {
    font-size: 1.375rem !important;
  }

  /* Meals list items at 17px to match body */
  .meal-item {
    font-size: 1.0625rem !important;
  }

  .footer-brand-name {
    font-size: 1.625rem !important;
  }

  .mobile-nav-links li a {
    font-size: 1.3125rem !important;
  }

  .hero::before {
    height: 110px;
  }
}

/* ── Lang switcher hover ── */
.lang-switch a:not(.lang-active):hover {
  color: var(--accent) !important;
}

/* ── Quick facts: 4 columns on desktop ── */
@media (min-width: 769px) {
  .quick-facts {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ── Footer description ── */
.footer-desc {
  font-size: 1.0625rem !important;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* ── Footer flags same size ── */
.footer-flag svg {
  width: 28px;
  height: 14px;
  display: block;
}

/* ── Mobile lang switcher: no pill ── */
@media (max-width: 900px) {
  .lang-switch-mobile {
    border: none !important;
    background: none !important;
    padding: 0 !important;
  }
  .lang-switch-mobile a {
    background: none !important;
    border: none !important;
    color: rgba(255,255,255,0.6) !important;
    padding: 0.15rem 0.3rem !important;
    font-size: 0.8125rem !important;
  }
  .lang-switch-mobile .lang-active {
    background: none !important;
    color: #fff !important;
  }
}

/* ── Mobile Quick Facts: single line, no cards ── */
@media (max-width: 768px) {
  .quick-facts-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .quick-facts-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.4rem 0 !important;
    background: none;
    border: none;
    border-radius: 0;
  }
}

/* Mobile menu Book Now: bold */
.mobile-nav-links .nav-cta {
  font-weight: 700 !important;
}
