/* ============================================
   THE POND – STYLESHEET
   Aesthetic: Refined coastal luxury / editorial
   ============================================ */

:root {
  --navy: #0d1b2a;
  --deep: #132237;
  --slate: #1e3a5f;
  --teal: #2a7f6f;
  --teal-light: #3da58a;
  --sand: #e8dcc8;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --text: #1a1a2e;
  --text-muted: #5a6b7a;
  --gold: #c9a84c;
  --gold-light: #e8c96d;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,127,111,0.3);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-large { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.02em;
}
.nav-logo em { font-style: italic; color: var(--teal-light); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: white; }
.btn-nav {
  background: var(--teal) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  border: 2px solid var(--teal);
  transition: var(--transition) !important;
}
.btn-nav:hover { background: var(--teal-light) !important; border-color: var(--teal-light) !important; }
.btn-ghost {
  background: transparent !important;
  border-color: rgba(255,255,255,0.4) !important;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1) !important; border-color: white !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 1rem 0;
}
.mobile-menu a {
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--slate) 40%, var(--teal) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(42,127,111,0.25) 0%, transparent 70%);
}
/* Animated ripple water effect */
.hero-ripple {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    );
  animation: waterRipple 8s ease-in-out infinite;
}
@keyframes waterRipple {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.5; }
  50% { transform: translateY(-10px) scaleX(1.01); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 0.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}
.star-score {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
}
.star-label { font-size: 0.85rem; opacity: 0.85; }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-label.light { color: var(--teal-light); }

section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
section h2 em { font-style: italic; color: var(--teal); }

/* ---- GALLERY ---- */
.gallery { margin: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-main {
  grid-row: 1 / 3;
}
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

/* ---- ABOUT ---- */
.about {
  padding: 8rem 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.about-image { position: relative; }
.about-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.badge-icon { color: var(--gold-light); font-size: 1rem; }

/* ---- AMENITIES ---- */
.amenities {
  padding: 8rem 0;
  background: var(--navy);
  color: white;
}
.amenities h2 em { color: var(--teal-light); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.amenity-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.amenity-card:hover {
  background: rgba(42,127,111,0.15);
  border-color: rgba(42,127,111,0.4);
  transform: translateY(-4px);
}
.amenity-icon { font-size: 2rem; margin-bottom: 1rem; }
.amenity-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.amenity-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ---- LOCATION ---- */
.location { padding: 8rem 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.loc-icon { font-size: 1.2rem; }
.location-map iframe { border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

/* ---- REVIEWS ---- */
.reviews {
  padding: 8rem 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.review-score { color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }
.reviewer { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.overall-rating {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 350px;
}
.big-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
}
.overall-rating strong { display: block; font-size: 1rem; }
.overall-rating p { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA ---- */
.cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: white;
  text-align: center;
}
.cta h2 { margin-bottom: 1rem; }
.cta h2 em { color: var(--gold-light); }
.cta p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { padding-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ---- INNER PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-top: 0.75rem; }

/* ---- BOOKING PAGE ---- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding: 5rem 0;
  align-items: start;
}
.calendar-wrap { background: white; border-radius: 8px; padding: 2rem; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cal-nav h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.cal-nav button {
  background: var(--cream);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover { background: var(--teal); color: white; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.5rem 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}
.cal-day:hover:not(.booked):not(.past) { background: var(--cream); border-color: var(--teal); }
.cal-day.today { font-weight: 600; color: var(--teal); }
.cal-day.booked {
  background: #fee;
  color: #c44;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.selected { background: var(--teal); color: white; border-color: var(--teal); }
.cal-day.in-range { background: rgba(42,127,111,0.15); border-color: rgba(42,127,111,0.2); }
.cal-day.range-start, .cal-day.range-end { background: var(--teal); color: white; }
.cal-day.past { color: #ccc; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 0.35rem;
}

/* Booking form */
.booking-sidebar { position: sticky; top: 7rem; }
.booking-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.booking-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  color: var(--text);
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,111,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-summary {
  border-top: 1px solid #eee;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.price-row.total {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}
.btn-book {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}
.btn-book:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,127,111,0.3); }
.booking-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }

/* Success message */
.booking-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.booking-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.booking-success h3 { color: var(--teal); margin-bottom: 0.75rem; }

/* ---- HOUSE MANUAL ---- */
.manual-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 4rem 0 6rem;
  align-items: start;
}
.manual-nav {
  position: sticky;
  top: 7rem;
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.manual-nav h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.manual-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  margin-bottom: 0.25rem;
}
.manual-nav-link:hover, .manual-nav-link.active {
  background: var(--cream);
  color: var(--teal);
}
.manual-icon { font-size: 1rem; }
.manual-section {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.manual-section.active { display: block; }
.manual-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.manual-card {
  background: white;
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-left: 3px solid var(--teal);
}
.manual-card h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--navy); }
.manual-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.manual-card ul { padding-left: 1.2rem; font-size: 0.88rem; color: var(--text-muted); line-height: 2; }
.video-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin-bottom: 1.25rem;
}
.video-thumb {
  background: var(--navy);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.video-thumb .play-btn {
  position: absolute;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: var(--transition);
}
.video-thumb .play-btn:hover { background: var(--teal); border-color: var(--teal); }
.video-placeholder-url { margin-top: 2rem; font-size: 0.75rem; }
.video-info { padding: 1.25rem; }
.video-info h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.25rem; }
.video-info p { font-size: 0.8rem; color: var(--text-muted); }
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.attraction-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.attraction-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.attraction-card h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.4rem; }
.attraction-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.attraction-dist { font-size: 0.75rem; color: var(--teal); font-weight: 500; margin-top: 0.5rem; }
.restaurant-item {
  background: white;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.rest-emoji { font-size: 1.5rem; }
.rest-info { flex: 1; }
.rest-info h4 { font-size: 0.95rem; font-weight: 500; }
.rest-info p { font-size: 0.8rem; color: var(--text-muted); }
.rest-badge {
  background: var(--cream);
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-main { grid-row: auto; grid-column: 1 / 3; }

  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { display: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .manual-layout { grid-template-columns: 1fr; }
  .manual-nav { position: static; }
  .attraction-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: flex; align-items: center; }
  .mobile-menu { display: flex; }
  .amenities-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-main { grid-column: auto; }
  .gallery-item { height: 220px; }
}
