:root {
  --color-primary: #0c4a6e;
  --color-primary-light: #0369a1;
  --color-primary-dark: #082f49;
  --color-accent: #ea580c;
  --color-accent-light: #fb923c;
  --color-accent-dark: #c2410c;
  --color-gold: #ca8a04;
  --color-gold-light: #fde68a;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-bg: #ffffff;
  --color-bg-soft: #fafaf9;
  --color-bg-warm: #fef7ed;
  --color-bg-dark: #0c0a09;
  --color-text: #0c0a09;
  --color-text-soft: #44403c;
  --color-text-muted: #78716c;
  --color-border: #e7e5e4;
  --color-border-soft: #f5f5f4;
  --gradient-hero: linear-gradient(135deg, rgba(8, 47, 73, 0.78) 0%, rgba(7, 89, 133, 0.62) 50%, rgba(234, 88, 12, 0.45) 100%);
  --gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  --gradient-cool: linear-gradient(135deg, #dbeafe 0%, #cffafe 100%);
  --gradient-cta: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  --gradient-blue: linear-gradient(135deg, #082f49 0%, #0c4a6e 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.2);
  --shadow-glow: 0 8px 30px -5px rgba(234, 88, 12, 0.4);
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --container: 80rem;
  --container-narrow: 64rem;
  --container-form: 42rem;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

button, input, select, textarea { font-family: inherit; }

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: 1.75rem;
}

@media (min-width: 1024px) { .nav-links { display: flex; } }

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

.nav-links a:hover { color: var(--color-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.lang-switcher {
  display: inline-flex;
  background: rgba(0,0,0,0.05);
  border-radius: 9999px;
  padding: 3px;
  gap: 2px;
}

.lang-switcher button {
  background: transparent;
  border: none;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-soft);
  transition: all 0.2s ease;
}

.lang-switcher button.active {
  background: var(--color-primary);
  color: white;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-cta);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-glow);
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -5px rgba(234, 88, 12, 0.55);
  }
}

/* ========== HERO WITH CAROUSEL ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-dark);
  padding-top: 4rem;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: heroZoom 12s ease-out infinite alternate;
}

.hero-slide.active { opacity: 1; }

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  padding: 1.5rem;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

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

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-tagline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 1.4vw, 1.3125rem);
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  opacity: 0.96;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

.hero-buttons {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  opacity: 0.92;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.hero-trust-item .star { color: #fbbf24; font-size: 1.125rem; }

@media (max-width: 640px) {
  .hero-trust { gap: 1rem; font-size: 0.8125rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 22rem; margin: 0 auto; }
  .hero-buttons a { width: 100%; }
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: white;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  opacity: 0.7;
  animation: bounce 2s infinite;
  font-size: 1.5rem;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-cta);
  color: white !important;
  padding: 1.0625rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  min-height: 52px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px -5px rgba(234, 88, 12, 0.55);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary);
  padding: 1.0625rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.95);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 52px;
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(0,0,0,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: var(--color-primary);
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--gradient-blue);
  color: white;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(234, 88, 12, 0.15), transparent 50%);
  pointer-events: none;
}

.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
  position: relative;
}

.stat-item .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.375rem;
  background: linear-gradient(135deg, #fff 0%, #fed7aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item .stat-label {
  font-size: 0.8125rem;
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .stat-item .stat-value { font-size: 1.875rem; }
  .stat-item .stat-label { font-size: 0.6875rem; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 5.5rem 1.25rem;
  position: relative;
}

@media (min-width: 768px) { .section { padding: 7rem 2rem; } }

.section-soft { background: var(--color-bg-soft); }
.section-warm { background: var(--color-bg-warm); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gradient-warm);
  color: var(--color-accent-dark);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

.container { max-width: var(--container); margin: 0 auto; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; }
.container-form { max-width: var(--container-form); margin: 0 auto; }

/* ========== HOST STORY (NEW) ========== */
.host-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.host-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) { .host-card { grid-template-columns: 5fr 7fr; } }

.host-image {
  aspect-ratio: 1;
  background-image: url('../images/img-04.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 300px;
}

.host-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(8, 47, 73, 0.3) 100%);
}

.host-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) { .host-content { padding: 3.5rem; } }

.host-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.host-role {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.host-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 1.25rem 0 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-accent-light);
  font-style: italic;
}

.host-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--color-text-soft);
  padding-top: 1.25rem;
  border-top: 1px dashed var(--color-border);
}

.host-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== UNIQUE MECHANISM ========== */
.mechanism-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.mechanism-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mechanism-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.mechanism-row {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.mechanism-row:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: transparent;
}

.mechanism-bad, .mechanism-good { padding: 1.5rem; }

.mechanism-bad {
  background: #fef2f2;
  color: #7f1d1d;
  font-size: 0.9375rem;
  border-bottom: 1px solid #fecaca;
}

.mechanism-good {
  background: white;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
}

.mechanism-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}

.mechanism-bad .mechanism-label { color: #b91c1c; }
.mechanism-good .mechanism-label { color: var(--color-success); }

/* ========== USP CARDS ========== */
.usps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .usps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usps-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }

.usp-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.usp-card:hover::before { transform: scaleX(1); }

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.usp-icon {
  font-size: 2.75rem;
  margin-bottom: 0.875rem;
  display: inline-block;
  transition: transform 0.4s ease;
  line-height: 1;
}

.usp-card:hover .usp-icon { transform: scale(1.15) rotate(-5deg); }

.usp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.usp-text {
  color: var(--color-text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========== ROOM CARDS ========== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.room-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
  border-color: transparent;
}

.room-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-soft);
}

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

.room-card:hover .room-image img { transform: scale(1.05); }

.room-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.room-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.room-subtitle {
  color: var(--color-text-soft);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.room-meta {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-soft);
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.room-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
}

.room-features .check {
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.room-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-label {
  font-size: 0.8125rem;
  color: var(--color-text-soft);
}

/* ========== GALLERY ========== */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-tab {
  background: white;
  border: 1.5px solid var(--color-border);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-soft);
  transition: all 0.2s ease;
}

.gallery-tab:hover { border-color: var(--color-primary); }

.gallery-tab.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--color-bg-soft);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item.hidden {
  display: none;
}

@media (min-width: 768px) {
  .gallery-large { grid-column: span 2; grid-row: span 2; }
  .gallery-tall { grid-row: span 2; }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.25rem;
  animation: fadeIn 0.3s ease;
}

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

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 0.75rem;
}

.lightbox-close, .lightbox-nav {
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  position: absolute;
}

.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.3); }

/* ========== STACK ========== */
.stack-section {
  background: var(--gradient-blue);
  color: white;
  position: relative;
  overflow: hidden;
}

.stack-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.stack-section .section-eyebrow {
  background: rgba(234, 88, 12, 0.2);
  color: #fb923c;
}

.stack-section .section-title { color: white; }
.stack-section .section-subtitle { color: rgba(255,255,255,0.8); }

.stack-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .stack-list { grid-template-columns: repeat(2, 1fr); gap: 0.875rem 1.5rem; }
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
}

.stack-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-success);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========== PRICING ========== */
.pricing-table {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-table table { width: 100%; border-collapse: collapse; }

.pricing-table th {
  background: var(--color-primary);
  color: white;
  text-align: left;
  padding: 1.125rem 1.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-table th + th { text-align: right; }

.pricing-table td {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.pricing-table tr.highlight {
  background: linear-gradient(90deg, #fef3c7 0%, #fed7aa 100%);
}

.pricing-table tr.highlight td:first-child { font-weight: 700; }
.pricing-table tr:hover { background: var(--color-bg-soft); }
.pricing-table tr.highlight:hover {
  background: linear-gradient(90deg, #fde68a 0%, #fb923c 100%);
}

.price-cell {
  text-align: right;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--color-primary);
}

tr.highlight .price-cell { font-size: 1.5rem; color: var(--color-accent-dark); }

@media (max-width: 640px) {
  .pricing-table th, .pricing-table td { padding: 0.75rem 0.875rem; font-size: 0.8125rem; }
  .price-cell { font-size: 1rem; }
  tr.highlight .price-cell { font-size: 1.125rem; }
}

/* ========== BENEFITS ========== */
.benefits-section {
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
}

.benefits-section::before, .benefits-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.benefits-section::before {
  width: 400px; height: 400px;
  background: var(--color-accent-light);
  top: -100px; left: -100px;
}

.benefits-section::after {
  width: 300px; height: 300px;
  background: var(--color-gold);
  bottom: -80px; right: -80px;
}

.benefits-list {
  display: grid;
  gap: 0.875rem;
  position: relative;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: 1rem;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

/* ========== AMENITIES ========== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }

.amenity-group {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.amenity-group:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.amenity-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1.125rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--color-bg-soft);
}

.amenity-group ul { list-style: none; padding: 0; margin: 0; }
.amenity-group li { padding: 0.4rem 0; font-size: 0.9375rem; line-height: 1.55; }

/* ========== SOCIAL PROOF ========== */
.proof-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.rating-large {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  margin: 0.5rem 0;
}

.rating-suffix {
  font-size: 1.25rem;
  color: var(--color-text-soft);
  font-weight: 500;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}

@media (min-width: 768px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }

.proof-item {
  background: var(--color-bg-soft);
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.proof-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.proof-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.proof-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.25rem;
  transition: all 0.2s ease;
}

.proof-cta:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ========== FAQ ========== */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-item.open { box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--gradient-cta); color: white; }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ========== CALENDAR ========== */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #d1fae5;
  transition: transform 0.2s ease;
}

.calendar-day:hover:not(.empty):not(.weekday):not(.past):not(.booked) {
  transform: scale(1.08);
  background: #d1fae5;
}

.calendar-day.booked {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
  text-decoration: line-through;
  cursor: not-allowed;
}

.calendar-day.past {
  background: #f5f5f4;
  color: #a8a29e;
  border-color: #e7e5e4;
}

.calendar-day.empty { background: transparent; border: none; }

.calendar-day.weekday {
  background: transparent;
  border: none;
  color: var(--color-text-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  aspect-ratio: auto;
  padding: 0.5rem 0;
}

/* ========== FORM ========== */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) { .form-card { padding: 2.5rem; } }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 0.75rem;
  font-size: 16px;
  transition: all 0.2s ease;
  background: white;
  min-height: 50px;
  color: var(--color-text);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.1);
}

.form-input.error, .form-select.error { border-color: var(--color-danger); }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-error {
  display: none;
  color: var(--color-danger);
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

.form-error.visible { display: block; }

.radio-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  min-height: 56px;
}

.radio-card:hover { border-color: var(--color-primary-light); }
.radio-card input[type="radio"] { display: none; }
.radio-card:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(12, 74, 110, 0.05);
  color: var(--color-primary);
}

.gdpr-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-soft);
  cursor: pointer;
  line-height: 1.5;
}

.gdpr-row input { margin-top: 0.25rem; flex-shrink: 0; width: 18px; height: 18px; }

/* ========== CONTACT CARDS ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
}

.contact-card.whatsapp .contact-icon {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.4rem;
}

.contact-value {
  font-weight: 700;
  color: var(--color-primary);
  word-break: break-word;
  font-size: 0.875rem;
}

/* ========== LOCATION ========== */
.location-list { list-style: none; padding: 0; margin: 0; }

.location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
}

.location-item:last-child { border-bottom: none; }

.location-item-label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 1;
  min-width: 0;
}

.location-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.location-distance {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ========== STICKY MOBILE CTA BAR ========== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  box-shadow: 0 -8px 25px -5px rgba(0,0,0,0.1);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta-bar.visible { transform: translateY(0); }

.mobile-cta-text { flex: 1; min-width: 0; }

.mobile-cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.mobile-cta-label {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.mobile-cta-bar .btn-primary {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  white-space: nowrap;
  min-height: 48px;
}

@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }

/* ========== WHATSAPP FLOATING ========== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.625rem;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 2.5s ease-in-out infinite;
}

@media (min-width: 1024px) { .whatsapp-float { bottom: 1.5rem; } }

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; }

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: white;
  border-radius: var(--radius);
  padding: 1.125rem 1.5rem;
  box-shadow: var(--shadow-2xl);
  border-left: 4px solid var(--color-success);
  max-width: calc(100vw - 2rem);
  width: 26rem;
  z-index: 100;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 0.9375rem;
}

.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { border-left-color: var(--color-danger); }

/* ========== UTILITIES ========== */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-dark);
  color: white;
  padding: 4rem 1.25rem 6.5rem;
  text-align: center;
}

@media (min-width: 1024px) { .footer { padding: 4rem 1.25rem 2rem; } }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: white; }

/* ================================================== */
/* ================ OFFERS CARDS ====================== */
/* ================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.offer-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border-color: var(--color-accent);
}

.offer-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.offer-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.offer-card-badge {
  position: relative;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  z-index: 1;
}

.offer-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.offer-card-desc {
  color: var(--color-text-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.offer-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.offer-card-features li {
  padding: 0.3125rem 0;
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.offer-card-price-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.offer-card-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-text-soft);
  font-weight: 500;
}

.offer-card-cta {
  background: linear-gradient(135deg, var(--color-accent), #fb923c);
  color: white;
  padding: 0.75rem 1.125rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(234,88,12,0.25);
}

.offer-card:hover .offer-card-cta {
  background: linear-gradient(135deg, #c2410c, #ea580c);
}

/* Groups card distinct accent */
.offer-groups .offer-card-badge { background: rgba(254,243,199,0.95); color: #92400e; }
.offer-family .offer-card-badge { background: rgba(220,252,231,0.95); color: #166534; }
.offer-couples .offer-card-badge { background: rgba(252,231,243,0.95); color: #be185d; }
.offer-longstay .offer-card-badge { background: rgba(207,250,254,0.95); color: #0e7490; }
.offer-midweek .offer-card-badge { background: rgba(254,243,199,0.95); color: #b45309; }
.offer-explorer .offer-card-badge { background: rgba(187,247,208,0.95); color: #14532d; }

@media (max-width: 600px) {
  .offers-grid { grid-template-columns: 1fr; gap: 1.125rem; }
  .offer-card-image { height: 180px; }
  .offer-card-body { padding: 1.25rem; }
  .offer-card-title { font-size: 1.25rem; }
  .offer-card-price { font-size: 1.625rem; }
}

/* ================================================== */
/* ================ SOCIAL ICONS ===================== */
/* ================================================== */
.social-icons {
  text-align: center;
  margin: 2rem auto 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 38rem;
}
.social-icons-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.social-icons-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  background: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: var(--color-text);
}
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.social-icon-fb { color: #1877f2; }
.social-icon-fb:hover { background: #1877f2; color: white; }
.social-icon-google { color: #4285f4; }
.social-icon-google:hover { background: #4285f4; color: white; }
.social-icon-google:hover svg path { fill: white !important; }
.social-icon-booking { color: #003580; }
.social-icon-booking:hover { background: #003580; color: white; }
.social-icon-whatsapp { color: #25d366; }
.social-icon-whatsapp:hover { background: #25d366; color: white; }
.social-icon span { line-height: 1; }

@media (max-width: 600px) {
  .social-icon { padding: 0.625rem 0.875rem; font-size: 0.8125rem; }
  .social-icon svg { width: 18px; height: 18px; }
  .social-icons-row { gap: 0.5rem; }
}

/* ================================================== */
/* ================ MOBILE POLISH =================== */
/* ================================================== */
@media (max-width: 767px) {
  body { font-size: 16px; }

  .section { padding: 4rem 1.25rem; }

  .nav-inner { padding: 0.75rem 1rem; }
  .nav-brand { font-size: 1.1875rem; }

  .hero { min-height: 88vh; padding-top: 3.5rem; }
  .hero-content { padding: 1rem; }
  .hero-tagline { font-size: 0.6875rem; padding: 0.4rem 0.875rem; margin-bottom: 1.25rem; }
  .hero-title { font-size: 2rem; line-height: 1.1; margin-bottom: 1rem; }
  .hero-subtitle { font-size: 0.9375rem; margin-bottom: 1.75rem; padding: 0 0.5rem; }
  .hero-trust { margin-top: 2rem; gap: 0.875rem; font-size: 0.75rem; }
  .hero-trust-item { gap: 0.375rem; }
  .hero-dots { bottom: 4rem; }

  .stats-bar { padding: 2rem 1rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { grid-column: span 1; }
  .stat-item .stat-value { font-size: 1.625rem; }
  .stat-item .stat-label { font-size: 0.625rem; letter-spacing: 0.04em; }

  .section-header { margin-bottom: 2.5rem; }
  .section-eyebrow { font-size: 0.625rem; padding: 0.3rem 0.875rem; margin-bottom: 1rem; }
  .section-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .section-subtitle { font-size: 0.9375rem; }

  .host-card { border-radius: var(--radius-lg); }
  .host-image { aspect-ratio: 4/3; min-height: 220px; }
  .host-content { padding: 1.75rem 1.5rem; }
  .host-name { font-size: 1.5rem; }
  .host-quote { font-size: 0.9375rem; padding-left: 1rem; }

  .versus-card {
    padding: 1.5rem 1.25rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    position: relative;
  }
  .versus-side {
    padding: 1.125rem 1rem 1.25rem;
  }
  .versus-side .versus-text { font-size: 0.875rem; }
  .versus-icon { font-size: 1.625rem; }

  .usp-card { padding: 1.5rem 1rem; }
  .usp-icon { font-size: 2.5rem; }
  .usp-title { font-size: 1.125rem; }
  .usp-text { font-size: 0.875rem; }

  .room-card { border-radius: var(--radius-lg); }
  .room-body { padding: 1.5rem 1.25rem; }
  .room-name { font-size: 1.375rem; }
  .room-features li { font-size: 0.875rem; }
  .price-value { font-size: 1.625rem; }
  .room-price { gap: 0.75rem; }
  .room-price .btn-primary { padding: 0.625rem 1rem; font-size: 0.8125rem; min-height: 42px; }

  .gallery-tabs { gap: 0.375rem; margin-bottom: 1.5rem; }
  .gallery-tab { padding: 0.5rem 0.875rem; font-size: 0.75rem; }
  .gallery-grid { grid-auto-rows: 120px; }

  .stack-card { padding: 1.5rem 1.25rem; }
  .stack-item { font-size: 0.875rem; }

  .seasons-grid { gap: 0.75rem; }
  .season-card { padding: 1.25rem 1rem; }
  .season-dates { font-size: 0.9375rem; margin-bottom: 0.875rem; }
  .season-tag { font-size: 0.625rem; padding: 0.2rem 0.625rem; }
  .season-price-row .amount { font-size: 1.25rem; }
  .season-card.season-peak .season-price-row .amount { font-size: 1.375rem; }
  .season-peak-badge { top: 0.75rem; right: 0.75rem; font-size: 0.5625rem; padding: 0.2rem 0.5rem; }

  .benefit-item { padding: 0.875rem 1rem; gap: 0.625rem; font-size: 0.875rem; }
  .benefit-icon { width: 1.625rem; height: 1.625rem; font-size: 0.8125rem; }

  .amenity-categories { gap: 2rem; }
  .amenity-category-header h3 { font-size: 1.25rem; padding: 0 0.75rem; }
  .amenity-tile { padding: 1rem 0.625rem; gap: 0.5rem; }
  .amenity-icon-circle { width: 2.5rem; height: 2.5rem; font-size: 1.25rem; }
  .amenity-name { font-size: 0.6875rem; }

  .proof-card { padding: 2rem 1.25rem; }
  .rating-large { font-size: 3rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; margin-top: 1.75rem; }
  .proof-item { padding: 1.125rem 0.75rem; }
  .proof-value { font-size: 1.5rem; }
  .proof-icon { font-size: 1.625rem; }
  .proof-label { font-size: 0.6875rem; }

  .faq-question { padding: 1rem 1.125rem; font-size: 0.9375rem; }
  .faq-answer { padding: 0 1.125rem 1rem; font-size: 0.875rem; }
  .faq-toggle { width: 1.5rem; height: 1.5rem; font-size: 1rem; }

  .form-side-info { padding: 1.75rem 1.25rem; border-radius: var(--radius-lg); }
  .form-side-title { font-size: 1.5rem; }
  .form-side-text { font-size: 0.9375rem; margin-bottom: 1.25rem; }
  .form-benefits-list li { font-size: 0.875rem; }
  .form-card-premium { padding: 1.5rem 1.125rem; border-radius: var(--radius-lg); }
  .form-progress { font-size: 0.75rem; padding-bottom: 1rem; }
  .form-progress-icon { width: 1.25rem; height: 1.25rem; font-size: 0.75rem; }
  .form-label { font-size: 0.8125rem; }
  .radio-card { padding: 0.875rem; min-height: 50px; font-size: 0.875rem; }

  .contact-grid { gap: 0.625rem; }
  .contact-card { padding: 1.25rem 0.625rem; }
  .contact-icon { width: 2.5rem; height: 2.5rem; font-size: 1.25rem; }
  .contact-label { font-size: 0.625rem; }
  .contact-value { font-size: 0.75rem; }

  .location-item { padding: 0.75rem 0; }
  .location-item-label { gap: 0.625rem; font-size: 0.875rem; }
  .location-icon { width: 2rem; height: 2rem; font-size: 1rem; }
  .location-distance { font-size: 0.8125rem; }

  .pricing-note { font-size: 0.8125rem; margin-top: 1.25rem; padding: 0 1rem; }

  .mobile-cta-bar { padding: 0.625rem 0.875rem; gap: 0.625rem; }
  .mobile-cta-price { font-size: 1.0625rem; }
  .mobile-cta-label { font-size: 0.6875rem; }
  .mobile-cta-bar .btn-primary { padding: 0.75rem 1.125rem; font-size: 0.8125rem; min-height: 42px; }

  .whatsapp-float { width: 3rem; height: 3rem; font-size: 1.375rem; bottom: 4.75rem; right: 1rem; }

  .toast { bottom: 5.5rem; padding: 0.875rem 1.125rem; font-size: 0.875rem; }

  .cookie-banner { padding: 1rem; }
  .cookie-text { font-size: 0.8125rem; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; padding: 0.75rem 0.75rem; font-size: 0.8125rem; }

  .footer { padding-top: 3rem; }
  .footer-brand { font-size: 1.5rem; }
  .footer-links { gap: 1rem; font-size: 0.8125rem; }
}

/* Smaller phones */
@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .hero-trust { gap: 0.5rem; font-size: 0.6875rem; }
  .stat-item .stat-value { font-size: 1.375rem; }
  .versus-side { padding: 1rem 0.875rem 1.125rem; }
}

/* ================================================== */
/* ============ PREMIUM REDESIGN OVERRIDES ========== */
/* ================================================== */

/* ====== PREMIUM MECHANISM (VERSUS CARDS) ====== */
.versus-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

.versus-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .versus-card {
    grid-template-columns: auto 1fr auto 1fr;
    gap: 1.5rem;
    padding: 2.25rem;
    align-items: stretch;
  }
}

.versus-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.versus-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  background: var(--gradient-cta);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.versus-card:hover::after { transform: scaleY(1); }

.versus-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: left;
  -webkit-text-stroke: 2px var(--color-accent);
  color: transparent;
  letter-spacing: -0.04em;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

@media (min-width: 768px) {
  .versus-number {
    position: static;
    text-align: center;
    align-self: center;
  }
}

.versus-side {
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}

.versus-bad {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
}

.versus-good {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
}

.versus-icon {
  font-size: 1.875rem;
  line-height: 1;
}

.versus-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.versus-bad .versus-label { color: #b91c1c; }
.versus-good .versus-label { color: #15803d; }

.versus-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

.versus-bad .versus-text { color: #7f1d1d; }
.versus-good .versus-text { color: #14532d; font-weight: 500; }

.versus-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
  margin: -0.25rem 0;
}

@media (min-width: 768px) {
  .versus-arrow { font-size: 1.75rem; margin: 0; }
}

/* ====== PREMIUM PRICING (SEASON CARDS) ====== */
.seasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) { .seasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .seasons-grid { grid-template-columns: repeat(4, 1fr); } }

.season-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.season-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--season-color, #94a3b8);
}

.season-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.season-card.season-peak {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border-color: var(--color-accent);
  box-shadow: 0 8px 25px -5px rgba(234, 88, 12, 0.25);
}

.season-card.season-peak::before { background: var(--color-accent); height: 6px; }

.season-card.season-peak .season-prices { color: var(--color-accent-dark); }

.season-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--season-tag-bg, #f1f5f9);
  color: var(--season-tag-color, #475569);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  align-self: flex-start;
}

.season-peak-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
}

.season-dates {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.season-prices {
  display: grid;
  gap: 0.625rem;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px dashed var(--color-border);
  color: var(--color-primary);
}

.season-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.season-price-row .label {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  font-weight: 500;
}

.season-price-row .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.season-card.season-peak .season-price-row .amount { font-size: 1.75rem; }

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-text-soft);
  font-size: 0.875rem;
  font-style: italic;
}

/* ====== PREMIUM AMENITIES (ICON GRID) ====== */
.amenity-categories {
  display: grid;
  gap: 3rem;
}

.amenity-category-header {
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
}

.amenity-category-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  display: inline-block;
  padding: 0 1rem;
  background: var(--color-bg-soft);
  position: relative;
  z-index: 2;
}

.amenity-category-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--color-border);
  z-index: 1;
}

.amenity-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) { .amenity-tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .amenity-tile-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.amenity-tile {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.amenity-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.amenity-icon-circle {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.amenity-tile:hover .amenity-icon-circle {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gradient-warm);
}

.amenity-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

/* ====== PREMIUM FORM SECTION ====== */
.form-premium-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.form-premium-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.form-layout {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .form-layout {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: start;
  }
}

.form-side-info {
  background: var(--gradient-blue);
  color: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.form-side-info::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.form-side-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(234, 88, 12, 0.2);
  color: #fb923c;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.form-side-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.form-side-text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
}

.form-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.form-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}

.form-benefits-list .check {
  width: 1.375rem;
  height: 1.375rem;
  background: var(--color-success);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.form-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.875rem;
}

.form-trust-badge .star { color: #fbbf24; font-size: 1.125rem; }

.form-side-whatsapp {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.form-side-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateX(4px);
}

.form-card-premium {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

@media (min-width: 768px) { .form-card-premium { padding: 2.75rem; } }

.form-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-success);
}

.form-progress-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-success);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -10px 30px -5px rgba(0,0,0,0.15);
  padding: 1.25rem 1.25rem;
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-inner { grid-template-columns: 1fr auto; gap: 1.5rem; }
}

.cookie-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.cookie-text strong { color: var(--color-text); }

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-btn-primary {
  background: var(--gradient-cta);
  color: white;
  box-shadow: var(--shadow-glow);
}

.cookie-btn-primary:hover { transform: translateY(-1px); }

.cookie-btn-secondary {
  background: white;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.cookie-btn-secondary:hover { background: var(--color-bg-soft); }

/* ====== LEGAL PAGES ====== */
.legal-hero {
  background: var(--gradient-blue);
  color: white;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.legal-hero p {
  opacity: 0.85;
  font-size: 1.0625rem;
  margin: 0;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 4rem;
  z-index: 40;
}

.legal-tab {
  background: white;
  border: 1.5px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-soft);
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }

.legal-tab.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.legal-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) { .legal-section { padding: 3rem; } }

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.legal-section .legal-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.legal-section h3:first-of-type { margin-top: 0; }

.legal-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0 0 1rem;
}

.legal-section ul {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.legal-section li { margin-bottom: 0.5rem; }

.legal-section strong { color: var(--color-text); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.legal-back:hover { text-decoration: underline; }

.footer-copyright { font-size: 0.8125rem; opacity: 0.5; }
