/* Screen-reader-only utility — visually hides content while keeping it
   accessible to assistive tech. Fixes the case where a <span class="sr-only">
   was rendering as visible text because the class had no rule. */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Refined Light Theme Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-tertiary: #f0f3f8;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --accent-primary: #D36224;      /* Premium copper */
  --accent-secondary: #A34A1B; 
  --accent-subtle: #fbf5f2;
  
  /* Borders & UI Elements */
  --border-light: rgba(17, 24, 39, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.06);

  /* Geometry */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container-max: 1280px;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle background decoration */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: 
    radial-gradient(circle at 10% 20%, rgba(211, 98, 36, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(31, 41, 55, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.page-glow { display: none; } /* Removed old glow in favor of subtle modern gradients */

/* Base Layout Constraints */
.site-header, .hero, .direct-book-strip, .stats-strip, .section, .site-footer {
  width: min(calc(100% - 2rem), var(--container-max));
  margin-inline: auto;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, .brand-copy strong {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p, span, li, a {
  font-family: var(--font-body);
}

.eyebrow, .form-note, .brand-copy small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
}

.lead, .section-head p, .apartment-body p, .benefit-card p, .location-copy p, .booking-copy p, .site-footer p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================================================================
   GLOBAL ANNOUNCEMENT BAR & WRAPPER
   ========================================================================= */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  pointer-events: none;
}

.announcement-bar {
  background: var(--accent-primary);
  color: var(--bg-primary); /* White/light contrasting text */
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
  width: 100%;
  pointer-events: auto;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.25rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  box-shadow: var(--shadow-glass);
  margin-top: 0;
  transition: all var(--transition-smooth);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--bg-primary);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover {
  color: var(--text-primary);
}
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* =========================================================================
   BUTTONS & INPUTS
   ========================================================================= */
.button, .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 99rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.button-solid, .header-cta {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
}

.button-solid:hover, .header-cta:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-ghost {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.button-ghost:hover {
  background: var(--bg-tertiary);
  transform: translateY(-2px);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%22%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234b5563%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.lang-switcher select {
  height: 44px;
  padding: 0 2.5rem 0 1rem;
  border-radius: 99rem;
  border: 1px solid var(--border-light);
  background-color: var(--glass-bg);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.lang-switcher select:hover {
  border-color: var(--accent-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
}

/* =========================================================================
   SECTIONS & PANELS
   ========================================================================= */
.section {
  padding: 0.5rem 0; /* Ultra-tight section padding */
  margin-top: 0.5rem; /* Ultra-tight section margin */
}

.apartments-section {
  padding-bottom: 2rem;
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.experience-section {
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem; /* Overrides massive 5rem default section padding under the cards */
}

.experience-section .section-head {
  margin-bottom: 1.5rem; /* Slashes empty gap pushing the cards downwards */
}

.experience-section .section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Explicitly requested font shrinkage */
}

.location-section {
  margin-top: 0;
  padding-top: 1.5rem; /* Cut massive default section top padding */
}

.section-head {
  max-width: 680px;
  margin-bottom: 1.5rem; /* Globally slash bottom gap before section bodies */
  text-align: left;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Consistently sized down headers globally */
  margin: 0.5rem 0;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 0;
  padding: 2rem 4rem 1.5rem 4rem; /* Sliced bottom padding to eliminate dead space under buttons */
  border-radius: var(--radius-xl);
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Gentle reveal animation on load */
.hero-copy {
  animation: slideUp 0.8s ease-out forwards;
  max-width: 800px; /* Constrain text width so it doesn't span full page */
  margin-inline: auto;
  text-align: center;
  margin-bottom: -1.5rem; /* Negate the 3rem flex gap pushing the images down */
}

.hero-copy-bottom {
  text-align: left; /* Let the bottom actions and bullets stay left-aligned */
  margin-top: -2rem; /* Negate the parent flex gap to pull the buttons right under the search bar */
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4rem); /* slightly scaled down to fit nicely above the cards */
  margin: 0 0 0.5rem; /* Cut bottom margin to pull subtitle tightly up */
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.hero-highlights {
  list-style: none;
  margin-top: 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-highlights li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
}

.hero-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.hero-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  width: 100%;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
  height: 420px; /* Big, uniform height */
}

/* Removed .hero-photo-large */

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo:hover img {
  transform: scale(1.05);
}

.hero-photo figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 99rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* Callout Box */
.direct-booking-callout {
  margin-top: 1rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.direct-booking-callout h2 {
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
}

.callout-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* =========================================================================
   STRIPS
   ========================================================================= */
.direct-book-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem 3rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-primary);
}

.direct-book-strip strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
}

.direct-comparison-section {
  margin-top: 2rem;
  padding: 3rem;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
}

.direct-price-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(211, 98, 36, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(211, 98, 36, 0.08), rgba(255, 255, 255, 0.96));
}

.price-proof-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-proof-kicker {
  color: var(--accent-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-proof-intro h3 {
  margin: 0.35rem 0 0.55rem;
  color: var(--text-primary);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.price-proof-intro p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.price-proof-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.price-proof-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-proof-card-direct {
  border-color: rgba(211, 98, 36, 0.28);
  background: #fff8f4;
}

.price-proof-source {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-proof-amount {
  margin-top: 0.35rem;
  color: var(--text-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.price-proof-card-direct .price-proof-amount {
  color: var(--accent-primary);
}

.price-proof-detail {
  margin-top: 0.35rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
}

.price-proof-note {
  margin-top: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-proof-saving {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: var(--text-primary);
  color: #fff;
}

.price-proof-saving strong {
  color: #fff;
  font-size: 1.35rem;
  white-space: nowrap;
}

.price-proof-saving span {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--accent-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:nth-child(2) {
  color: var(--text-primary);
  background: rgba(211, 98, 36, 0.05);
}

.comparison-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.direct-book-strip-actions {
  display: flex;
  gap: 1rem;
}

.direct-booking-perks {
  display: flex;
  flex-direction: column;
}

.direct-booking-perks .perks-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.direct-booking-perks .perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.direct-booking-perks .perks-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.direct-booking-perks .perks-list li strong {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-top: 0;
  display: inline;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stats-strip article {
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.stats-strip article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stats-strip strong {
  display: block;
  font-size: 2.5rem;
  color: var(--accent-primary);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.stats-strip span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* =========================================================================
   APARTMENTS
   ========================================================================= */
.apartment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.apartment-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.apartment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.apartment-media {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.apartment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.apartment-card:hover .apartment-media img {
  transform: scale(1.05);
}

.apartment-body {
  padding: 2.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.apartment-body h3 {
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
}

.apartment-body ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.apartment-body ul li {
  position: relative;
  padding-left: 1.5rem;
}

.apartment-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.tour-card {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.tour-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.tour-link:hover { text-decoration: underline; }

.tour-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-tertiary);
}
.tour-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================================
   EXPERIENCE
   ========================================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-primary);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* =========================================================================
   LOCATION
   ========================================================================= */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.location-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 1rem 0 1.5rem;
}

.place-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.place-list li {
  position: relative;
  padding-left: 2rem;
}

.place-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  margin-top: 1rem;
}
.text-link:hover { text-decoration: underline; }

.map-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 500px;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.map-card:hover img {
  transform: scale(1.02);
}

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews-section {
  overflow: hidden;
  padding: 5rem 0;
}

.review-source-panel {
  max-width: 1180px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.review-source-panel strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
}

.review-source-panel span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

.review-source-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.review-source-actions a,
.review-source {
  color: var(--accent-primary);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

.review-source-actions a {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(220, 95, 32, 0.24);
  border-radius: 999px;
  background: rgba(220, 95, 32, 0.08);
}

.review-source-actions a:hover,
.review-source:hover {
  text-decoration: underline;
}

.elfsight-reviews-wrapper {
  max-width: 1180px;
  margin: 0 auto 2rem;
}

.elfsight-reviews-wrapper:empty {
  display: none;
}



.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.review-logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.review-booking .review-logo {
  color: #003580;
}

.review-google .review-logo {
  color: #4285F4;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.review-booking .score {
  background: #003580;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.review-google .stars, .review-booking .stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 1.1rem;
  line-height: 1;
}

.review-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
}

.review-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.review-source {
  margin-top: auto;
}

@media (max-width: 768px) {
  .review-source-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-source-actions {
    width: 100%;
  }

  .review-source-actions a {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--bg-primary);
}

.gallery-carousel {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  height: 600px;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s linear;
}

.gallery-slide.active img {
  transform: scale(1.05);
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.gallery-nav-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 1.5rem; }
.next-btn { right: 1.5rem; }

.gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* =========================================================================
   BOOKING
   ========================================================================= */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: 4rem;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.booking-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0 2rem;
}

.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-item > svg {
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-item strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 700;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.contact-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}
.social-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.social-links a:hover {
  color: var(--text-primary);
}

.booking-form {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.widget-shell {
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: white;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

.booking-form button[type="submit"] {
  margin-top: 0.8rem;
}

/* =========================================================================
   BLOG
   ========================================================================= */
.blog-section {
  display: grid;
  gap: 2rem;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.96));
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  align-items: center;
}

.blog-featured-copy {
  display: grid;
  gap: 1rem;
}

.blog-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-meta {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-featured-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 14ch;
}

.blog-featured-card p:last-of-type {
  margin: 0;
}

.blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-featured-media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.blog-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 320px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-smooth);
}

.blog-featured-card:hover .blog-featured-media img {
  transform: scale(1.03);
}

.blog-shell {
  min-height: 100vh;
}

.blog-page {
  padding: 3rem 0 5rem;
}

.blog-grid {
  width: min(calc(100% - 2rem), 1200px);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.blog-topic-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-editorial-intro,
.blog-curated-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.topic-cluster-card,
.seo-hub-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.topic-cluster-card h2,
.seo-hub-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.topic-cluster-links,
.seo-hub-links {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.65rem;
}

.topic-cluster-links a,
.seo-hub-links a {
  color: var(--accent-primary);
  text-decoration: none;
}

.blog-listing-hero,
.blog-listing-card,
.article-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.blog-listing-hero {
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
}

.blog-listing-hero h1,
.article-intro h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.blog-listing-hero p,
.article-intro p,
.article-content p,
.article-content li {
  color: var(--text-secondary);
}

.blog-listing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}

.blog-listing-card img {
  width: 100%;
  height: auto;
  min-height: 280px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  align-self: start;
}

.blog-listing-copy {
  display: grid;
  gap: 1rem;
}

.blog-listing-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.article-shell {
  width: min(calc(100% - 2rem), 960px);
  margin: 0 auto;
  padding: 2.5rem;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.article-breadcrumbs a {
  color: var(--accent-primary);
  text-decoration: none;
}

.article-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.article-lead {
  font-size: 1.15rem;
  line-height: 1.8;
}

.article-cover {
  width: min(100%, 760px);
  margin: 0 auto 2rem;
}

.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  display: block;
}

.article-content {
  display: grid;
  gap: 1.5rem;
}

.article-content h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.article-content h3 {
  margin: 0.5rem 0 0;
  font-size: 1.3rem;
}

.article-content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 0.5rem 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.article-content th,
.article-content td {
  border: 1px solid var(--border-light);
  padding: 0.9rem 1rem;
  text-align: left;
}

.article-content th {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text-primary);
}

.article-note,
.article-source {
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

.article-cta {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 255, 255, 1));
  border: 1px solid var(--border-light);
  display: grid;
  gap: 1rem;
}

.article-key-points,
.article-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-link-card,
.article-stat-card {
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
}

.article-link-card h3,
.article-stat-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.article-link-card p,
.article-stat-card p {
  margin: 0;
}

.article-link-card a {
  color: var(--accent-primary);
  text-decoration: none;
}

.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(300px, auto) minmax(420px, 1fr);
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 2rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-light);
  gap: 1.5rem;
}

.footer-left {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.footer-left p {
  margin: 0;
  line-height: 1.45;
  font-size: 0.9rem !important;
}

.footer-left a {
  color: inherit;
  overflow-wrap: anywhere;
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  justify-self: center;
  align-self: center;
  flex-wrap: wrap;
}

.footer-middle .button {
  white-space: nowrap;
  min-height: 52px;
  padding-inline: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-playbook h4 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  color: var(--text-primary);
}

.footer-playbook p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer .footer-left p.footer-copy {
  font-size: 0.86rem !important;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3 !important;
  margin-bottom: 0;
}

.site-footer .footer-left p.footer-company-details {
  color: var(--text-tertiary);
  max-width: 100%;
  font-size: 0.78rem !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4 !important;
}

.footer-design {
  font-size: 0.85rem !important;
  color: var(--text-tertiary) !important;
  margin-top: 1rem;
}

.footer-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-self: end;
  align-self: center;
  justify-content: flex-end;
  max-width: 760px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.65rem 0.95rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
}

/* =========================================================================
   REVEAL ANIMATIONS (Triggered by JS)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .hero {
    padding: 3rem;
  }
  .hero-media {
    grid-template-columns: 1fr;
  }
  .hero-photo, .hero-photo-large { 
    height: 320px; 
    grid-row: auto;
  }
  .location-section, .booking-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .apartment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-slide {
    height: 400px;
  }
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .prev-btn { left: 1rem; }
  .next-btn { right: 1rem; }
}

@media (max-width: 768px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.25rem; /* Make it thinner on mobile too */
    border-radius: 0; /* Square on mobile too */
    width: 100% !important;
    margin: 0 !important;
  }
  .brand { flex: 1 1 auto; }
  .header-actions { order: 2; margin-left: auto; justify-content: flex-end; }
  .menu-toggle { display: block; order: 3; }
  .header-cta {
    display: inline-flex !important;
    position: relative;
    z-index: 10;
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  /* Stripe SVG has intrinsic 150x34 (aspect ~4.41). Keep that ratio on mobile
     so the inner text stays crisp — 72x16 was too small and was rendering
     the "Powered by Stripe" lettering as garbled glyphs. */
  .header-cta-wrapper .stripe-badge img {
    width: 124px;
    height: 28px;
  }

  /* =========================================================================
     Scrolled state for mobile header — collapse to a one-line ribbon that
     shows ONLY "Book Direct" + the Stripe badge, centered under the orange
     announcement bar. Everything else in the menu disappears.
     ========================================================================= */
  .site-header.is-scrolled {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.4rem 0.75rem !important;
    gap: 0 !important;
    min-height: 0 !important;
  }
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .menu-toggle,
  .site-header.is-scrolled .site-nav,
  .site-header.is-scrolled .lang-switcher {
    display: none !important;
  }
  .site-header.is-scrolled .header-actions {
    margin: 0 auto !important;
    width: 100%;
    order: 0;
    justify-content: center !important;
    gap: 0;
  }
  /* Flatten the CTA + Stripe badge into a single centered row so the ribbon
     stays one line tall instead of two. */
  .site-header.is-scrolled .header-cta-wrapper {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
  }
  .site-header.is-scrolled .header-cta {
    padding: 0.5rem 1.1rem !important;
    font-size: 0.95rem !important;
    line-height: 1.1 !important;
  }
  /* Match the unscrolled size so the Stripe badge reads clearly. */
  .site-header.is-scrolled .stripe-badge img {
    width: 124px !important;
    height: 28px !important;
  }


  .site-nav {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .direct-book-strip {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .direct-comparison-section {
    padding: 1.5rem;
  }
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .apartment-grid, .benefits-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-photo, .hero-photo-large, .hero-photo-small { 
    height: 280px; 
  }
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    text-align: center;
  }

  .footer-left {
    max-width: 680px;
    align-items: center;
  }

  .footer-middle,
  .footer-right {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero { padding: 1.5rem 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .stats-strip { grid-template-columns: 1fr; }
  .location-section, .booking-section { padding: 1rem; }
  .booking-form { padding: 1.5rem; }
}

/* =========================================================================
   REVIEWS CAROUSEL
   ========================================================================= */
.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 5vw;
  box-sizing: border-box;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  padding: 1rem 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 2rem;
}

.review-card {
  width: calc(25% - 1.5rem); /* 4 reviews on desktop */
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

@media (max-width: 1024px) {
  .review-card {
    width: calc(50% - 1rem); /* 2 reviews on tablet */
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .review-card {
    width: 100%; /* 1 review on mobile */
    flex: 0 0 auto;
  }
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: var(--shadow-md);
}

.reviews-nav-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.reviews-prev { left: 1rem; }
.reviews-next { right: 1rem; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .direct-price-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .direct-price-proof {
    padding: 1rem;
  }

  .price-proof-cards {
    grid-template-columns: 1fr;
  }

  .price-proof-card {
    min-height: 150px;
  }

  .price-proof-saving {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================================
   NEW UI: Dates & Guests Bar and Sticky Mobile CTA
   ========================================================================= */

.hero-search-bar {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  border-radius: 0; /* Square instead of round */
  padding: 0.25rem 0.75rem; /* Thinner padding */
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  margin: -3rem auto 0.5rem auto;
  position: relative;
  z-index: 5;
  transition: transform var(--transition-bounce), box-shadow 0.3s;
}

.hero-search-bar:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-search-item {
  display: flex;
  flex-direction: row; /* Horizontal layout for maximum thinness */
  align-items: center;
  gap: 0.4rem;
  padding-right: 1rem;
  border-right: 1px solid var(--border-light);
}

.hero-search-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.hero-search-value {
  color: var(--accent-primary);
  font-weight: 600;
  white-space: nowrap;
}

.hero-search-action {
  background: var(--accent-primary);
  color: white;
  border-radius: 0; /* Square button to match the ribbon */
  width: 32px; /* Thinner button */
  height: 32px; /* Thinner button */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  padding: 1rem 1.5rem;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-middle,
  .footer-right {
    justify-self: center;
    justify-content: center;
  }

  .blog-featured-card,
  .blog-editorial-intro,
  .blog-topic-cluster,
  .blog-curated-sections,
  .seo-hub-grid,
  .article-key-points,
  .article-link-grid,
  .blog-listing-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-media img,
  .blog-listing-card img {
    min-height: 240px;
  }

  .article-shell,
  .blog-listing-hero,
  .blog-listing-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .mobile-sticky-cta {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
  }
  body {
    padding-bottom: 100px; /* Make space so footer doesn't get obscured */
  }
  .hero-search-bar {
    width: 100%;
    margin-top: 2rem; /* Avoid pulling up over image ungracefully on mobile */
    justify-content: space-between;
  }
  .hero-search-item {
    padding-right: 0.75rem;
  }
}

#check-availability {
  scroll-margin-top: 120px; /* Offset to prevent the widget from hiding beneath the sticky header */
}

/* --- Trust banner (sits directly under the hero) --- */
.trust-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 1.5rem;
  margin: 0;
}
.trust-banner-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--container-max);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.trust-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.3;
}
.trust-banner-item .trust-banner-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
}
.trust-banner-item svg.trust-banner-icon {
  width: 20px;
  height: 20px;
  font-size: 0;
}
.trust-banner-text strong {
  color: var(--text-primary);
  font-weight: 700;
  margin-right: 0.3rem;
}
.trust-banner-divider {
  width: 1px;
  height: 18px;
  background: var(--border-light);
  list-style: none;
}
@media (max-width: 640px) {
  .trust-banner-divider { display: none; }
  .trust-banner-list { gap: 0.6rem 1.2rem; }
  .trust-banner-item { font-size: 0.9rem; }
}

/* --- Powered-by-Stripe badge (official SVG, replaces 3 PBS.png renders) --- */
/* Each <img> carries inline width/height attributes; do NOT set width/height in CSS
   or the browser collapses the SVG (it has viewBox but no intrinsic size). */
.stripe-badge {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  border: 0;
  background: none;
  padding: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}
.stripe-badge:hover,
.stripe-badge:focus-visible {
  opacity: 1;
}
.stripe-badge img {
  display: block;
  max-width: 100%;
  height: auto; /* scale down proportionally on narrow screens */
}

/* --- Accepted payment methods (inline SVG set) --- */
.payment-methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.payment-methods .payment-method {
  display: inline-flex;
  line-height: 0;
}
.payment-methods .payment-method svg {
  display: block;
  width: 40px;
  height: 25px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.payment-methods-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.15rem;
  line-height: 1;
}
.payment-methods-sm .payment-method svg {
  width: 34px;
  height: 21px;
}
.payment-methods-hero {
  justify-content: center;
  margin-top: 0.1rem;
}
.booking-payment-methods {
  margin: 0.85rem auto 0;
  justify-content: center;
  display: flex;
}
@media (max-width: 640px) {
  .payment-methods .payment-method svg { width: 36px; height: 22px; }
  .payment-methods-sm .payment-method svg { width: 30px; height: 19px; }
  .payment-methods-label { font-size: 0.7rem; }
}

/* =========================================================================
   URGENCY BANNER (bottom-of-page: live concurrent viewers)
   ========================================================================= */
.pulse-dot-white {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-white 1.6s infinite;
}

@keyframes pulse-white {
  0%   { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.85); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.urgency-banner {
  margin: 1.25rem auto 2.5rem;
  max-width: var(--container-max, 1200px);
  background: linear-gradient(90deg, #e07a2c 0%, #d66422 50%, #e07a2c 100%);
  color: #fff;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px -6px rgba(214, 100, 34, 0.45);
  text-align: center;
}
.urgency-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.urgency-banner-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.55rem;
  text-align: center;
}
.urgency-banner-text strong { font-weight: 700; }
.urgency-banner-sep { opacity: 0.55; }
.urgency-banner-live { display: inline; white-space: nowrap; }
.urgency-banner-live .concurrent-viewers {
  display: inline-block;
  min-width: 1.2em;
  padding: 0 0.1em;
}
@media (max-width: 640px) {
  .urgency-banner { padding: 0.8rem 1rem; margin: 1rem 0.75rem 2rem; font-size: 0.9rem; border-radius: 10px; }
  .urgency-banner-inner { font-size: 0.88rem; gap: 0.55rem; }
  .urgency-banner-sep { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-dot-white { animation: none; }
}

/* =========================================================================
   URGENCY BANNER — DUAL PLACEMENT (desktop vs mobile)
   Desktop renders the top-of-page copy (under the orange announcement bar).
   Mobile renders the bottom-of-page copy (fixed under the "Lock In 15% Off"
   sticky CTA). Each viewport only ever shows ONE of the two.
   ========================================================================= */
/* Desktop copy: narrow pill that sits FLUSH against the bottom of the orange
   announcement bar (no gap, no side margins). Rounded bottom corners only so
   it reads as a tab hanging off the bar. */
.urgency-banner--desktop {
  margin: 0 auto !important;
  width: fit-content;
  max-width: fit-content;
  padding: 0.3rem 1.1rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 10px -3px rgba(214, 100, 34, 0.35);
  font-size: 0.82rem;
  position: relative;
  z-index: 99; /* keep above the site-header pill that follows */
}
.urgency-banner--desktop .urgency-banner-inner {
  font-size: 0.82rem;
  gap: 0.55rem;
  line-height: 1.2;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.urgency-banner--mobile { display: none; }

@media (max-width: 768px) {
  /* Hide the top copy on phones */
  .urgency-banner--desktop { display: none !important; }

  /* Show the bottom copy — fixed to the viewport bottom, directly under the
     "Lock In 15% Off" sticky CTA (which is lifted up by this banner's height). */
  .urgency-banner--mobile {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.35rem 0.75rem;
    border-radius: 0;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
    z-index: 1999; /* just below .mobile-sticky-cta (2000) */
    font-size: 0.78rem;
  }
  .urgency-banner--mobile .urgency-banner-inner {
    font-size: 0.78rem;
    gap: 0.5rem;
    line-height: 1.2;
  }
  /* Lift the "Lock In 15% Off" sticky CTA so the urgency banner sits
     directly under it instead of being obscured. 38px matches the banner's
     intrinsic height at this font-size/padding. */
  .mobile-sticky-cta { bottom: 38px; }
  /* Keep page content clear of both fixed strips when scrolled to the end. */
  body { padding-bottom: 140px; }
}

/* =========================================================================
   REVIEWS CAROUSEL
   ========================================================================= */
.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  padding: 1rem 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 2rem;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.33rem); /* 3 reviews on desktop */
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem); /* 2 reviews on tablet */
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%; /* 1 review on mobile */
  }
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: var(--shadow-md);
}

.reviews-nav-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.reviews-prev { left: -1.5rem; }
.reviews-next { right: -1.5rem; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
}

/* =========================================================================
   REVIEWS CAROUSEL
   ========================================================================= */
.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  padding: 1rem 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 2rem;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.33rem); /* 3 reviews on desktop */
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem); /* 2 reviews on tablet */
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%; /* 1 review on mobile */
  }
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: var(--shadow-md);
}

.reviews-nav-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.reviews-prev { left: -1.5rem; }
.reviews-next { right: -1.5rem; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
}

/* =========================================================================
   REVIEWS CAROUSEL
   ========================================================================= */
.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  padding: 1rem 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 2rem;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.33rem); /* 3 reviews on desktop */
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem); /* 2 reviews on tablet */
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%; /* 1 review on mobile */
  }
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: var(--shadow-md);
}

.reviews-nav-btn:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.reviews-prev { left: -1.5rem; }
.reviews-next { right: -1.5rem; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dot.active {
  background: var(--accent-primary);
  transform: scale(1.3);
}
