/* ================================================
   Marisol Group – Alternative Home (index2) Stylesheet
   Editorial / Magazine layout based on wireframe
   ================================================ */

/* ------------------------------------------------
   Design Tokens (shared with styles.css)
   ------------------------------------------------ */
:root {
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;

  --color-background: #faf8f5;
  --color-foreground: #1a1d2e;
  --color-card: #fcfaf8;
  --color-surface: #f5f2ed;
  --color-surface-alt: #ebe6dd;

  --color-primary: #1a9ba3;
  --color-primary-dark: #147980;
  --color-primary-light: #e6f4f5;

  --color-secondary: #e07850;
  --color-secondary-dark: #c5613a;

  --color-accent: #e8c547;
  --color-accent-light: #fdf8e6;

  --color-muted: #f0ede8;
  --color-muted-foreground: #6b7280;

  --color-border: #e5e0d8;
  --color-border-light: #f0ede8;

  --shadow-sm: 0 1px 2px rgba(26, 29, 46, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(26, 29, 46, 0.08), 0 2px 4px -2px rgba(26, 29, 46, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(26, 29, 46, 0.1), 0 4px 6px -4px rgba(26, 29, 46, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(26, 29, 46, 0.1), 0 8px 10px -6px rgba(26, 29, 46, 0.05);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1400px;
}

/* ------------------------------------------------
   Reset & Base
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* ------------------------------------------------
   Typography
   ------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-foreground);
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted-foreground);
  margin-bottom: var(--space-3);
}

.eyebrow-primary {
  color: var(--color-primary);
}

/* ------------------------------------------------
   Layout
   ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

@media (min-width: 1280px) {
  .container { padding-inline: var(--space-12); }
}

.section {
  padding-block: var(--space-16);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-20); }
}

@media (min-width: 1024px) {
  .section { padding-block: var(--space-24); }
}

.bg-white  { background-color: #fff; }
.bg-surface { background-color: var(--color-surface); }
.bg-dark   { background-color: var(--color-foreground); color: rgba(255,255,255,0.85); }

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn-dark {
  background-color: var(--color-foreground);
  color: white;
  border: 1.5px solid var(--color-foreground);
}

.btn-dark:hover {
  background-color: #2b2f4a;
  border-color: #2b2f4a;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border: 1.5px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-ghost-light {
  background-color: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-ghost-light:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-ghost-dark {
  background-color: transparent;
  color: var(--color-foreground);
  border: 1.5px solid var(--color-border);
}

.btn-ghost-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-light {
  background-color: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 0.9375rem;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base);
}

.v2-header.scrolled {
  box-shadow: var(--shadow-md);
}

.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: var(--space-6);
  max-width: var(--container-2xl);
  margin-inline: auto;
}

@media (min-width: 1280px) {
  .v2-header-inner { padding-inline: var(--space-12); }
}

.v2-logo img {
  height: 70px;
  object-fit: contain;
  display: block;
}

.v2-nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .v2-nav { display: flex; }
}

.v2-nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  transition: color var(--transition-fast);
}

.v2-nav-link:hover {
  color: var(--color-foreground);
}

.v2-header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.v2-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-foreground);
}

@media (min-width: 1024px) {
  .v2-mobile-btn { display: none; }
}

.v2-header-book {
  display: none;
}

@media (min-width: 1024px) {
  .v2-header-book { display: inline-flex; }
}

.v2-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-background);
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-110%);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  z-index: 99;
  opacity: 0;
}

.v2-mobile-menu.open {
  transform: translateY(calc(0% + 72px));
  opacity: 1;
}

.v2-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.v2-mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-muted-foreground);
}

.v2-mobile-nav-link:last-child { border-bottom: none; }

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.v2-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
}

.v2-hero-bg img,
.v2-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,29,46,0.15) 0%,
    rgba(26,29,46,0.2) 40%,
    rgba(26,29,46,0.65) 100%
  );
}

.v2-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: var(--space-12) var(--space-6);
  max-width: var(--container-2xl);
  margin-inline: auto;

display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1280px) {
  .v2-hero-content { padding: var(--space-16) var(--space-12); }
}

.v2-hero h1 {
  color: white;
  max-width: 700px;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.v2-hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 520px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ------------------------------------------------
   WELCOME SPLIT SECTION
   ------------------------------------------------ */
.v2-welcome {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .v2-welcome {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.v2-welcome-text h2 {
  margin-bottom: var(--space-5);
}

.v2-welcome-text p {
  color: var(--color-muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.v2-discover-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground);
  border-bottom: 2px solid var(--color-foreground);
  padding-bottom: 2px;
  transition: all var(--transition-fast);
}

.v2-discover-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.v2-discover-link svg {
  transition: transform var(--transition-fast);
}

.v2-discover-link:hover svg {
  transform: translateX(4px);
}

.v2-welcome-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.v2-welcome-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .v2-welcome-image img { aspect-ratio: 3/4; }
}

/* ------------------------------------------------
   VALUES
   ------------------------------------------------ */
.v2-values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .v2-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .v2-values-grid { grid-template-columns: repeat(4, 1fr); }
}

.v2-value-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.v2-value-icon {
  width: 72px;
  height: 72px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: white;
}

.v2-value-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-foreground);
}

.v2-value-text {
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ------------------------------------------------
   SECTION HEADER (editorial style)
   ------------------------------------------------ */
.v2-section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .v2-section-header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--space-12);
  }
}

.v2-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
}

.v2-section-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  transition: color var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.v2-section-link:hover { color: var(--color-primary); }

/* ------------------------------------------------
   EDITORIAL DESTINATION / HOTEL CARDS
   ------------------------------------------------ */
.v2-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 540px) {
  .v2-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .v2-cards-grid { grid-template-columns: repeat(4, 1fr); }
}

.v2-dest-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.v2-dest-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  margin-bottom: var(--space-4);
}

.v2-dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.v2-dest-card:hover .v2-dest-card-img img {
  transform: scale(1.06);
}

.v2-dest-card-location {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: var(--space-1);
}

.v2-dest-card-name {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: var(--space-2);
  color: var(--color-foreground);
}

.v2-dest-card-desc {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color var(--transition-fast);
}

.v2-dest-card-cta:hover { color: var(--color-primary); }

.v2-dest-card-cta svg {
  transition: transform var(--transition-fast);
}

.v2-dest-card:hover .v2-dest-card-cta svg {
  transform: translateX(3px);
}

/* Badge on card */
.v2-dest-card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 3px var(--space-3);
  background-color: rgba(255,255,255,0.92);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.v2-dest-card-badge.family     { color: var(--color-primary); }
.v2-dest-card-badge.beachfront { color: #2563eb; }
.v2-dest-card-badge.luxury     { color: #7c3aed; }
.v2-dest-card-badge.villas     { color: #059669; }
.v2-dest-card-badge.apartments { color: var(--color-secondary); }

/* ------------------------------------------------
   CATEGORY BENTO GRID
   ------------------------------------------------ */
.v2-category-section {
  background-color: var(--color-foreground);
  padding-block: var(--space-16);
}

@media (min-width: 768px) {
  .v2-category-section { padding-block: var(--space-20); }
}

.v2-category-intro {
  text-align: center;
  margin-bottom: var(--space-10);
  color: white;
}

.v2-category-intro .eyebrow {
  color: rgba(255,255,255,0.5);
}

.v2-category-intro h2 {
  color: white;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.v2-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .v2-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 180px 180px;
  }

  .v2-bento-span-2 { grid-row: span 2; }

}

@media (min-width: 1024px) {
  .v2-bento {
    grid-template-rows: 220px 220px;
    gap: var(--space-4);
  }
}

.v2-bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  min-height: 120px;
  cursor: pointer;
  transition: background-color var(--transition-base);
  text-align: center;
}

.v2-bento-tile:hover {
  background-color: rgba(255,255,255,0.1);
}

.v2-bento-tile-bg {
  position: absolute;
  inset: 0;
}

.v2-bento-tile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity var(--transition-base), transform 0.5s ease;
}

.v2-bento-tile:hover .v2-bento-tile-bg img {
  opacity: 0.5;
  transform: scale(1.05);
}

.v2-bento-tile-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
}

.v2-bento-tile-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  margin-inline: auto;
  margin-bottom: var(--space-3);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.v2-bento-beachfront .v2-bento-tile-label {
  font-size: 0.875rem;
}

/* ------------------------------------------------
   STATS BAR
   ------------------------------------------------ */
.v2-stats {
  background-color: white;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding-block: var(--space-24);
}

.v2-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-12);
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.v2-stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-align: left;
}

.v2-stat-item + .v2-stat-item {
  padding-left: var(--space-12);
  border-left: 1px solid var(--color-border);
}

.v2-stat-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.v2-stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-foreground);
  line-height: 1;
  margin-bottom: 2px;
}

.v2-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
}

/* ------------------------------------------------
   MAP SECTION
   ------------------------------------------------ */
.v2-map-section {
  background-color: var(--color-surface);
  padding-block: var(--space-16);
}

.v2-map-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.v2-map-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-3);
}

.v2-map-header p {
  color: var(--color-muted-foreground);
  max-width: 540px;
  margin-inline: auto;
  font-size: 1.0625rem;
}

.v2-map-placeholder {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  aspect-ratio: 16/7;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: #d1e8ea;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------
   PEOPLE / PLACE / FUTURE / SEA
   ------------------------------------------------ */
.v2-mission {
  background-color: white;
}

.v2-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 1024px) {
  .v2-mission-grid {
    grid-template-columns: 2fr 3fr;
    gap: var(--space-20);
  }
}

.v2-mission-words {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
}

@media (min-width: 1024px) {
  .v2-mission-words {
    flex-direction: column;
    gap: 0;
  }
}

.v2-mission-word {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--color-foreground);
  line-height: 1.15;

  /* border-bottom: 1px solid var(--color-primary-dark); */
}

.v2-mission-desc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .v2-mission-desc-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v2-mission-desc h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.v2-mission-desc p {
  font-size: 0.9375rem;
  color: var(--color-muted-foreground);
  line-height: 1.8;
}

/* ------------------------------------------------
   SUSTAINABILITY
   ------------------------------------------------ */
.v2-sustainability {
  background-color: var(--color-surface);
}

.v2-sus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .v2-sus-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.v2-sus-text .eyebrow {
  margin-bottom: var(--space-3);
}

.v2-sus-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-5);
}

.v2-sus-text p {
  color: var(--color-muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.v2-sus-text p:last-of-type { margin-bottom: var(--space-8); }

.v2-sus-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.v2-sus-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.v2-footer {
  background-color: var(--color-foreground);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-16);
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .v2-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
  }
}

.v2-footer-brand-logo {
  margin-bottom: var(--space-5);
}

.v2-footer-brand-logo img {
  height: 150px;
  object-fit: contain;
}

.v2-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: var(--space-5);
}

.v2-footer-socials {
  display: flex;
  gap: var(--space-3);
}

.v2-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}

.v2-social-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.v2-footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-5);
}

.v2-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.v2-footer-link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.v2-footer-link:hover { color: white; }

.v2-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (min-width: 480px) {
  .v2-newsletter-form {
    flex-direction: row;
  }
}

.v2-newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition-fast);
}

.v2-newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.v2-newsletter-input:focus {
  border-color: var(--color-primary);
}

.v2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .v2-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.v2-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ------------------------------------------------
   Utility
   ------------------------------------------------ */
[x-cloak] { display: none !important; }

/*-------------------------------------------------
   Filters
   ------------------------------------------------ */
       /* ── Page-specific overrides ── */
    [x-cloak] { display: none !important; }

    /* ── Page header ── */
    .hotels-hero {
      padding: var(--space-20) var(--space-6) var(--space-16);
      text-align: center;
      color: #fff;
      position: relative;
    }

    .hotels-hero__background {
      position: absolute;
      object-fit: cover;
      width: 100%;
      height: 100%;
      inset: 0;
      z-index: -2;
    }

     .hotels-hero::before {
      content: "";
      position: absolute;
           width: 100%;
      height: 100%;
      inset: 0;
      background: linear-gradient(160deg, rgba(26,29,46,0.5) 0%, rgba(26,29,46,0.8) 40%, rgba(26,29,46,0.65) 100%);
      z-index: -1;
     }

    .hotels-hero h1 {
      color: #fff;
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: var(--space-4);
    }
    .hotels-hero p {
      color: rgba(255,255,255,0.7);
      font-size: 1.125rem;
      max-width: 520px;
      margin: 0 auto;
    }
    .hotels-hero-meta {
      display: flex;
      justify-content: center;
      gap: var(--space-6);
      margin-top: var(--space-8);
      flex-wrap: wrap;
    }
    .hotels-hero-stat {
      text-align: center;
    }
    .hotels-hero-stat strong {
      display: block;
      font-family: var(--font-serif);
      font-size: 2rem;
      color: var(--color-accent);
      line-height: 1;
    }
    .hotels-hero-stat span {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55);
      font-weight: 600;
    }

    /* ── Filter bar ── */
    .filter-bar-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--color-card);
      border-bottom: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }
    .filter-bar {
      max-width: var(--container-2xl);
      margin: 0 auto;
      padding: var(--space-4) var(--space-6);
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      align-items: center;
    }
    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
      min-width: 140px;
      max-width: 200px;
    }
    .filter-group label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-muted-foreground);
    }
    .filter-select {
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: var(--space-2) var(--space-3);
      font-family: var(--font-sans);
      font-size: 0.875rem;
      color: var(--color-foreground);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      padding-right: 2rem;
      cursor: pointer;
      transition: border-color var(--transition-fast);
    }
    .filter-select:focus {
      outline: none;
      border-color: var(--color-primary);
    }

    /* Feature tag pills */
    .filter-tags-wrap {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1 1 100%;
    }
    .filter-tags-wrap label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-muted-foreground);
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
    }
    .filter-tag {
      padding: var(--space-1) var(--space-3);
      border-radius: var(--radius-full);
      border: 1.5px solid var(--color-border);
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition-fast);
      background: transparent;
      color: var(--color-muted-foreground);
      user-select: none;
    }
    .filter-tag:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
    }
    .filter-tag.active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
    }

    /* Clear / count row */
    .filter-actions {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      margin-left: auto;
      flex-shrink: 0;
    }
    .filter-count {
      font-size: 0.875rem;
      color: var(--color-muted-foreground);
      white-space: nowrap;
    }
    .filter-count strong {
      color: var(--color-foreground);
      font-weight: 700;
    }
    .btn-clear {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--color-muted-foreground);
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
      transition: color var(--transition-fast);
      white-space: nowrap;
    }
    .btn-clear:hover { color: var(--color-secondary); }

    /* ── Properties grid ── */
    .hotels-grid-section {
      max-width: var(--container-2xl);
      margin: 0 auto;
      padding: var(--space-10) var(--space-6) var(--space-20);
    }

    /* ── No results ── */
    .no-results {
      grid-column: 1 / -1;
      text-align: center;
      padding: var(--space-20) var(--space-6);
    }
    .no-results h3 {
      font-size: 1.5rem;
      margin-bottom: var(--space-3);
      color: var(--color-muted-foreground);
    }
    .no-results p {
      color: var(--color-muted-foreground);
      font-size: 0.9rem;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .filter-bar { padding: var(--space-4); gap: var(--space-2); }
      .filter-group { min-width: calc(50% - var(--space-2)); max-width: none; }
      .filter-actions { width: 100%; justify-content: space-between; }
      .hotels-grid-section { padding: var(--space-6) var(--space-4) var(--space-12); }
      .hotels-hero { padding: var(--space-16) var(--space-4) var(--space-12); }
    }