/* ============================================================
   SCHNEPP WATERFRONT — Main Stylesheet
   Brand: Deep water navy, warm sand, off-white linen, terracotta
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:      #1A3A4A;
  --sand:      #C9B99A;
  --linen:     #F7F4EF;
  --text:      #1C1C1C;
  --terracotta:#C26E4A;
  --terracotta-dark: #A85A38;
  --white:     #FFFFFF;
  --light-gray:#E8E4DE;
  --mid-gray:  #888;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(26,58,74,0.10);
  --shadow-hover: 0 8px 40px rgba(26,58,74,0.18);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-sand { color: var(--sand); }
.text-terra { color: var(--terracotta); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  min-height: 48px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,110,74,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #122a38;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 74, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,185,154,0.15);
  transition: background var(--transition);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sand); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(201,185,154,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { width: 100%; margin-top: 8px; }

/* Page offset for fixed nav */
.page-content { padding-top: 68px; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,58,74,0.25) 0%,
    rgba(26,58,74,0.55) 60%,
    rgba(26,58,74,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Property page hero — shorter */
.hero-property {
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
}

/* ============================================================
   PROPERTY CARDS (HOME PAGE)
   ============================================================ */
.property-cards {
  background: var(--white);
  padding: 80px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 12px;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-intro h2 { margin-bottom: 12px; }
.section-intro p { color: #555; font-size: 1.05rem; }

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

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--light-gray);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .card-image img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.card-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-rating .star { color: #F5A623; }

.card-body { padding: 28px; }

.card-location {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.card-body p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.card-highlight {
  background: var(--linen);
  border: 1px solid var(--light-gray);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================================
   DIRECT BOOKING BANNER
   ============================================================ */
.booking-banner {
  background: var(--navy);
  padding: 72px 0;
}

.booking-banner h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}
.booking-banner .banner-sub {
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 52px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.perk-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,185,154,0.15);
  transition: background var(--transition);
}
.perk-item:hover { background: rgba(255,255,255,0.10); }

.perk-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.perk-item h4 {
  color: var(--sand);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.perk-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.banner-cta { text-align: center; }

/* ============================================================
   SOCIAL PROOF / REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--linen);
  padding: 80px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 52px;
}
.reviews-header h2 { margin-bottom: 12px; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 40px;
  padding: 10px 20px;
  margin-top: 16px;
}
.rating-badge .stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; }
.rating-badge .rating-text { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.review-stars { color: #F5A623; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review-property { font-size: 0.78rem; color: var(--mid-gray); }

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.email-capture {
  background: var(--sand);
  padding: 64px 0;
}

.email-capture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.email-copy h2 { color: var(--navy); margin-bottom: 12px; }
.email-copy p { color: rgba(28,28,28,0.75); font-size: 1rem; margin: 0; }

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

.email-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(26,58,74,0.2);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  min-height: 48px;
}
.email-form input:focus {
  outline: none;
  border-color: var(--navy);
}
.email-form input::placeholder { color: #999; }

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

.form-note {
  font-size: 0.78rem;
  color: rgba(28,28,28,0.55);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.7);
}

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

.footer-brand .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--terracotta); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--sand);
  font-style: italic;
}

/* ============================================================
   PROPERTY PAGE — OVERVIEW SECTION
   ============================================================ */
.property-overview {
  background: var(--white);
  padding: 80px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-grid .gallery-main {
  grid-column: 1 / -1;
  height: 300px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.gallery-grid .gallery-thumb {
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid .gallery-main:hover img,
.gallery-grid .gallery-thumb:hover img { transform: scale(1.04); }

.overview-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 12px;
}
.overview-content h2 { margin-bottom: 20px; }
.overview-content p { color: #555; font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}
.highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   BOOKING WIDGET SECTION
   ============================================================ */
.booking-section {
  background: var(--linen);
  padding: 80px 0;
}

.booking-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.booking-section-header h2 { margin-bottom: 12px; }
.booking-section-header p { color: #666; font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ── SLEEPING ARRANGEMENTS ── */
.sleeping-section {
  padding: 80px 0;
  background: var(--white);
}
.sleeping-section .section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.sleeping-section .section-intro p {
  color: var(--mid-gray);
  max-width: 560px;
  margin: 12px auto 0;
}
.bedroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.bedroom-card {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bedroom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.bedroom-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.bedroom-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.bedroom-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

/* Fix 1 — Hide StayFi/Campaign Monitor 'Embedded Form' lozenge */
span.c-preview-lozenge { display: none !important; }

/* Fix 2 — Booking widget: centered, max 780px, full width on mobile */
.widget-container {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.widget-container iframe {
  width: 100% !important;
  min-height: 900px;
  display: block;
  border: none;
}

.widget-placeholder {
  min-height: 900px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 2px dashed var(--light-gray);
  border-radius: var(--radius-lg);
  text-align: center;
  gap: 16px;
}
.widget-placeholder .widget-icon { font-size: 3rem; }
.widget-placeholder h3 { color: var(--navy); }
.widget-placeholder p { color: var(--mid-gray); font-size: 0.9rem; max-width: 400px; }
.widget-placeholder code {
  background: var(--linen);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.85rem;
  color: var(--terracotta);
}

/* ============================================================
   AMENITIES GRID
   ============================================================ */
.amenities-section {
  background: var(--white);
  padding: 80px 0;
}

.amenities-header {
  text-align: center;
  margin-bottom: 52px;
}

.amenities-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.amenity-category h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--light-gray);
}

.amenity-category ul { display: flex; flex-direction: column; gap: 8px; }
.amenity-category li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}
.amenity-category li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--linen);
  padding: 80px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 { margin-bottom: 16px; }
.location-info p { color: #555; margin-bottom: 24px; }

.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nearby-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #444;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
}
.nearby-icon { font-size: 1rem; }

/* ============================================================
   REVIEWS + CTA SECTION
   ============================================================ */
.reviews-cta {
  background: var(--navy);
  padding: 80px 0;
}

.reviews-cta .reviews-grid { margin-bottom: 52px; }

.reviews-cta .review-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}
.reviews-cta .review-text { color: rgba(255,255,255,0.8); }
.reviews-cta .review-name { color: var(--white); }
.reviews-cta .review-property { color: var(--sand); }
.reviews-cta .review-avatar { background: rgba(201,185,154,0.3); color: var(--sand); }

.cta-block {
  text-align: center;
  padding: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,185,154,0.2);
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.cta-block .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   WHY BOOK DIRECT PAGE
   ============================================================ */
.book-direct-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  text-align: center;
}
.book-direct-hero h1 { color: var(--white); margin-bottom: 16px; }
.book-direct-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.comparison-section {
  background: var(--white);
  padding: 80px 0;
}

.comparison-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.comparison-intro h2 { margin-bottom: 16px; }
.comparison-intro p { color: #555; font-size: 1.05rem; }

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.comparison-table th {
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}
.comparison-table th:first-child { color: var(--navy); background: var(--linen); }
.comparison-table th.col-direct { background: var(--navy); color: var(--white); }
.comparison-table th.col-ota { background: #f0ede8; color: #777; }

.comparison-table td {
  padding: 16px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--light-gray);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 500; color: var(--navy); background: var(--linen); }
.comparison-table td.col-direct { background: rgba(26,58,74,0.04); color: var(--navy); font-weight: 600; }
.comparison-table td.col-ota { color: #888; }

.check-yes { color: #2E7D32; font-weight: 700; }
.check-no { color: #C62828; }

.savings-callout {
  background: var(--linen);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.savings-callout p {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  margin: 0;
}
.savings-callout strong { color: var(--terracotta); }

.book-direct-cta {
  background: var(--linen);
  padding: 80px 0;
  text-align: center;
}
.book-direct-cta h2 { margin-bottom: 12px; }
.book-direct-cta p { color: #666; margin-bottom: 36px; font-size: 1.05rem; }
.book-direct-cta .btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PHOTO GALLERY LIGHTBOX (simple)
   ============================================================ */
.gallery-section {
  background: var(--linen);
  padding: 80px 0;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.full-gallery-grid .gallery-item {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.full-gallery-grid .gallery-item:first-child {
  grid-column: 1 / 3;
  height: 320px;
}
.full-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.full-gallery-grid .gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .amenities-categories { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero { height: 80vh; }
  .hero-property { height: 50vh; }

  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .email-capture-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .amenities-categories { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr 1fr; }
  .full-gallery-grid .gallery-item:first-child { grid-column: 1 / -1; }

  .perks-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

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

  .section { padding: 56px 0; }
  .booking-section { padding: 56px 0; }

  .cta-block { padding: 32px 24px; }
  .savings-callout { padding: 24px; }
}

@media (max-width: 480px) {
  .perks-grid { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr; }
  .full-gallery-grid .gallery-item:first-child { height: 240px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 16px 28px; }
}

/* ============================================================
   UTILITY / ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }
