@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Unbounded:wght@500;600;700;800;900&family=Onest:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --color-bg: #F9F7F2;          /* Tropic Beige - warm off-white background */
  --color-text-dark: #1B3B36;   /* Tropic Dark - deep forest green/teal */
  --color-text-muted: #4F6B66;  /* Muted dark green/teal */
  --color-primary: #D45D4B;     /* Terracotta orange/red - retro hippie punch */
  --color-primary-hover: #BD4A39;
  --color-secondary: #B5936B;   /* Tropic Gold - sand/gold color */
  --color-secondary-hover: #9E7D56;
  --color-teal: #92A8A4;        /* Tropic Teal - soft sage green */
  --color-teal-dark: #587570;
  --color-teal-light: #F0F4F3;  /* Soft light tropic teal background */
  --color-card-bg: #FFFFFF;     
  --color-accent-light: #FDFBF8;
  
  --font-heading: 'Unbounded', sans-serif;  /* Rounded retro-geometric display, full Cyrillic */
  --font-logo: 'Pacifico', cursive;         /* Groovy retro script, supports Cyrillic */
  --font-serif: 'Unbounded', sans-serif;    /* Readable display for prices, spec & FAQ titles */
  --font-script: 'Pacifico', cursive;       /* Script accent for subtitles only */
  --font-body: 'Onest', sans-serif;         /* Clean modern body, designed for Cyrillic */
  
  --border-radius-lg: 32px;
  --border-radius-md: 20px;
  --border-radius-sm: 12px;
  --transition-speed: 0.3s;
  
  --shadow-sm: 0 4px 6px -1px rgba(27, 59, 54, 0.05), 0 2px 4px -1px rgba(27, 59, 54, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(27, 59, 54, 0.08), 0 4px 6px -2px rgba(27, 59, 54, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(27, 59, 54, 0.12), 0 10px 10px -5px rgba(27, 59, 54, 0.06);
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  opacity: 0;
  transition: opacity 0.15s ease;
}

body.ready {
  opacity: 1;
}

/* Base Headings */
h1, h2, h3, h4 {
  color: var(--color-text-dark);
  letter-spacing: -0.02em;   /* Unbounded runs wide — tighten for display use */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

/* Custom Selection Colors */
::selection {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
}

/* --- Layout Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* --- Header Section --- */
.site-header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--color-primary);
  text-shadow: 2px 2px 0px rgba(181, 147, 107, 0.3);
  letter-spacing: 0;
  padding-top: 4px;          /* Pacifico has tall ascenders/descenders */
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(27, 59, 54, 0.12);
  padding: 6px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  padding: 8px 18px;
  border-radius: 50px;
  line-height: 1;
}

.main-nav a:hover {
  background-color: var(--color-text-dark);
  color: var(--color-bg);
}

@media (max-width: 960px) {
  .main-nav { display: none; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language Toggle Switch */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(45, 34, 30, 0.06);
  border: 1px solid rgba(45, 34, 30, 0.1);
  padding: 4px;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.lang-btn {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  transition: color var(--transition-speed) ease;
}

.lang-btn.active {
  color: var(--color-text-dark);
}

.lang-btn:not(.active) {
  color: var(--color-text-muted);
}

.lang-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: calc(50% - 4px);
  background-color: var(--color-secondary);
  border-radius: 50px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.lang-en .lang-slider {
  transform: translateX(100%);
}

.header-contacts {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--color-text-dark);
  box-shadow: 3px 3px 0px var(--color-text-dark);
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--color-text-dark);
}

.social-icon-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px var(--color-text-dark);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-dark);
}

/* --- Hero Section --- */
.hero {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, rgba(226, 165, 64, 0.22) 0%, rgba(212, 93, 75, 0.06) 40%, var(--color-bg) 72%);
}

/* Decorative Clouds/Sun */
.hero-deco-sun {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 165, 64, 0.15) 0%, rgba(226, 165, 64, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-teal-light);
  border: 1.5px solid var(--color-teal);
  color: var(--color-teal-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-teal);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
  margin-bottom: 22px;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: var(--color-text-dark);
}

.hero-title span:last-child {
  color: var(--color-primary);
  text-shadow: 3px 3px 0px rgba(226, 165, 64, 0.25);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-price-tag {
  background-color: white;
  border: 2px solid var(--color-text-dark);
  border-radius: var(--border-radius-md);
  padding: 22px 28px;
  margin-bottom: 40px;
  display: inline-grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 28px;
  box-shadow: 6px 6px 0px var(--color-text-dark);
  position: relative;
  max-width: 100%;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  white-space: nowrap;
}

.price-value span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text-dark);
}

.price-divider {
  width: 2px;
  align-self: stretch;
  background-color: rgba(45, 34, 30, 0.12);
  border-radius: 2px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Retro Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--border-radius-sm);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border: 2px solid var(--color-text-dark);
  box-shadow: 4px 4px 0px var(--color-text-dark);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px var(--color-text-dark);
  background-color: var(--color-primary-hover);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--color-text-dark);
}

/* WhatsApp CTA gets a leading glyph (added via ::before so [data-i18n] textContent can't wipe it) */
.btn-whatsapp::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--wa-icon) center / contain no-repeat;
  mask: var(--wa-icon) center / contain no-repeat;
}

:root {
  --wa-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.472 13.714c-.297-.149-1.758-.867-2.031-.967-.273-.099-.472-.148-.67.15-.198.297-.767.967-.94 1.164-.173.198-.347.223-.644.075-.297-.149-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.151-.174.2-.298.3-.497.099-.198.05-.372-.025-.52-.075-.148-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.372-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.099 3.205 5.077 4.372.71.306 1.263.489 1.695.626.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.288.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12.004 2.003c-5.514 0-9.997 4.483-9.997 9.997 0 1.762.462 3.484 1.34 4.997l-1.389 5.081a1 1 0 0 0 1.225 1.225l5.08-1.389a9.953 9.953 0 0 0 4.997 1.34c5.514 0 9.997-4.483 9.997-9.997 0-2.669-1.04-5.178-2.929-7.067-1.889-1.889-4.398-2.929-7.067-2.929zm0 17.994c-1.529 0-3.036-.393-4.345-1.137a1 1 0 0 0-.765-.085l-3.497.956.957-3.497a1 1 0 0 0-.085-.765A7.963 7.963 0 0 1 4.004 12c0-4.411 3.589-8 8-8s8 3.589 8 8-3.589 8-8 8z'/%3E%3C/svg%3E");
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
  box-shadow: 4px 4px 0px var(--color-text-dark);
}

.btn-secondary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px var(--color-text-dark);
  background-color: var(--color-secondary-hover);
}

.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--color-text-dark);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border: 3px solid var(--color-text-dark);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 12px 12px 0px var(--color-text-dark);
  background: white;
  aspect-ratio: 1;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Section Styling --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-teal {
  background-color: var(--color-teal-light);
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 10;
}

.section-subtitle {
  font-family: var(--font-script);
  color: var(--color-primary);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.section-divider .line {
  width: 40px;
  height: 2px;
  background-color: var(--color-text-muted);
}

.section-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* --- Features / Specifications --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.spec-card {
  background-color: white;
  border: 2px solid var(--color-text-dark);
  border-radius: var(--border-radius-md);
  padding: 32px;
  box-shadow: 6px 6px 0px var(--color-text-dark);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  transform: translateY(-6px);
}
.spec-card:nth-child(3n+1):hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(212, 93, 75, 0.18), 10px 10px 0px var(--color-text-dark);
}
.spec-card:nth-child(3n+2):hover {
  border-color: var(--color-secondary);
  box-shadow: 0 12px 24px rgba(181, 147, 107, 0.18), 10px 10px 0px var(--color-text-dark);
}
.spec-card:nth-child(3n+3):hover {
  border-color: var(--color-teal-dark);
  box-shadow: 0 12px 24px rgba(88, 117, 112, 0.18), 10px 10px 0px var(--color-text-dark);
}

.spec-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-teal-light);
  border: 1.5px solid var(--color-text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0px var(--color-text-dark);
}

.spec-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: var(--color-teal-dark);
}

/* Rotate accent colors across the spec icons for a livelier grid */
.spec-card:nth-child(3n+1) .spec-icon-wrapper { background-color: #FBE7E2; }
.spec-card:nth-child(3n+1) .spec-icon-wrapper svg { fill: var(--color-primary); }
.spec-card:nth-child(3n+2) .spec-icon-wrapper { background-color: #F4EADD; }
.spec-card:nth-child(3n+2) .spec-icon-wrapper svg { fill: var(--color-secondary-hover); }
.spec-card:nth-child(3n+3) .spec-icon-wrapper { background-color: var(--color-teal-light); }
.spec-card:nth-child(3n+3) .spec-icon-wrapper svg { fill: var(--color-teal-dark); }

.spec-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.spec-description {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex-grow: 1;
}

/* Highlight badge inside specs */
.spec-highlight-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  background-color: var(--color-primary);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* --- Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 32px 24px;
}

/* Featured first tile spans 2 columns & 2 rows for an editorial layout */
.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item {
  background-color: white;
  padding: 14px 14px 52px 14px;
  border: 2px solid var(--color-text-dark);
  border-radius: 4px;
  box-shadow: 6px 6px 0px var(--color-text-dark);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1.5px solid var(--color-text-dark);
  border-radius: 2px;
  transition: transform 0.5s ease;
  display: block;
}

/* Scattered effect */
.gallery-item:nth-child(3n+1) {
  --tilt-hover: -1.5deg;
  transform: rotate(0.8deg);
}
.gallery-item:nth-child(3n+2) {
  --tilt-hover: 1.5deg;
  transform: rotate(-1deg);
}
.gallery-item:nth-child(3n+3) {
  --tilt-hover: -0.8deg;
  transform: rotate(0.5deg);
}

.gallery-item:hover {
  transform: scale(1.03) translateY(-8px) rotate(var(--tilt-hover, 1deg));
  border-color: var(--color-primary);
  box-shadow: 0 16px 28px rgba(27, 59, 54, 0.15), 10px 10px 0px var(--color-text-dark);
  z-index: 10;
}

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

.gallery-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: white;
  border: 1.5px solid var(--color-text-dark);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 3;
  box-shadow: 2px 2px 0px var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--color-text-dark);
}

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

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
  background: none;
}

/* --- Pricing & Booking Details --- */
.booking-section {
  position: relative;
  overflow: hidden;
}

.booking-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.booking-card {
  background-color: white;
  border: 3px solid var(--color-text-dark);
  border-radius: var(--border-radius-lg);
  box-shadow: 12px 12px 0px var(--color-text-dark);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.booking-visual {
  background-color: var(--color-teal-light);
  border-right: 3px solid var(--color-text-dark);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.booking-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  background-image: radial-gradient(circle, var(--color-text-dark) 4px, transparent 5px);
  background-size: 15px 15px;
  background-repeat: repeat-x;
  transform: translateY(7px);
}

.booking-visual-icon {
  width: 80px;
  height: 80px;
  background: var(--color-secondary);
  border: 2px solid var(--color-text-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0px var(--color-text-dark);
}

.booking-visual-icon svg {
  width: 44px;
  height: 44px;
  fill: var(--color-text-dark);
}

.booking-visual-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.booking-visual-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.booking-details {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-rates {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background-color: var(--color-teal-light);
  border: 2px solid var(--color-text-dark);
  border-radius: var(--border-radius-sm);
  box-shadow: 4px 4px 0px var(--color-text-dark);
  transition: all 0.2s ease;
}

.rate-row:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-text-dark);
}

.rate-info {
  display: flex;
  flex-direction: column;
}

.rate-title {
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-dark);
}

.rate-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-align: right;
  white-space: nowrap;
}

.rate-price span {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.rate-row--popular {
  border-color: var(--color-primary);
  background-color: #FFFDFB;
  position: relative;
}

.rate-row--popular:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px var(--color-primary);
}

.popular-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1.5px solid var(--color-text-dark);
  box-shadow: 2px 2px 0px var(--color-text-dark);
  letter-spacing: 0.8px;
}

.booking-note {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  padding-left: 12px;
  border-left: 3.5px solid var(--color-teal);
}

.booking-note a {
  color: var(--color-primary);
  font-weight: 700;
  border-bottom: 1.5px solid transparent;
}

.booking-note a:hover {
  border-bottom-color: var(--color-primary);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 580px) {
  .booking-actions {
    flex-direction: row;
  }
  .booking-actions .btn {
    flex: 1;
  }
}

/* --- FAQ Accordion --- */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background-color: white;
  border: 2px solid var(--color-text-dark);
  border-radius: var(--border-radius-md);
  box-shadow: 4px 4px 0px var(--color-text-dark);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-item:hover {
  box-shadow: 6px 6px 0px var(--color-text-dark);
  transform: translate(-1px, -1px);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-dark);
  background-color: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-text-dark);
  transition: transform var(--transition-speed) ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--color-secondary);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  visibility: hidden;
  overflow: hidden;
}

.faq-answer-content {
  min-height: 0;
  padding: 0 24px 24px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  border-top: 1.5px dashed rgba(45, 34, 30, 0);
  transition: border-color var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
}

.faq-item.active .faq-answer-content {
  border-top-color: rgba(45, 34, 30, 0.1);
}

/* --- Footer --- */
.site-footer {
  background-color: #2D221E;
  color: #FAF7F0;
  padding: 80px 0 40px 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(circle, var(--color-bg) 5px, transparent 6px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  transform: translateY(-8px);
}

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

.footer-info-logo {
  font-family: var(--font-logo);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-secondary);
  text-shadow: 2px 2px 0px rgba(212, 93, 75, 0.3);
  margin-bottom: 18px;
  padding-top: 4px;
}

.footer-info-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.7);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FAF7F0;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(250, 247, 240, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: #FAF7F0;
  font-weight: 700;
}

.footer-contact-list a:hover {
  color: var(--color-secondary);
}

.footer-company-badge {
  display: inline-block;
  background: rgba(250, 247, 240, 0.08);
  border: 1px solid rgba(250, 247, 240, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 4px;
  color: #FAF7F0;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.88rem;
  color: rgba(250, 247, 240, 0.5);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.08);
  border: 1px solid rgba(250, 247, 240, 0.15);
  transition: all var(--transition-speed) ease;
}

.footer-social-btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.footer-social-btn:hover svg {
  fill: var(--color-text-dark);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: #FAF7F0;
  transition: fill var(--transition-speed) ease;
}

/* --- Sticky Booking Bar for Mobile --- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 2px solid var(--color-text-dark);
  padding: 12px 24px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -10px 25px rgba(45, 34, 30, 0.15);
}

.sticky-bar-price {
  display: flex;
  flex-direction: column;
}

.sticky-bar-price-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.sticky-bar-price-val span {
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0;
}

.sticky-bar-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.sticky-bar-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- Custom Lightbox Modal --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 34, 30, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1010;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border: 4px solid white;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: block;
}

.lightbox-caption {
  color: white;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: white;
  border: 2px solid var(--color-text-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1020;
  box-shadow: 4px 4px 0px var(--color-text-dark);
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.05);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-dark);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--color-text-dark);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1020;
  box-shadow: 4px 4px 0px var(--color-text-dark);
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text-dark);
}

/* --- Media Queries (Aesthetics & Mobile Responsiveness) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-visual {
    border-right: none;
    border-bottom: 3px solid var(--color-text-dark);
    padding: 32px 20px;
  }
  .booking-details {
    padding: 32px 20px;
  }
  .rate-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    text-align: left;
    padding: 14px 18px;
  }
  .rate-price {
    text-align: right;
  }
  .booking-actions {
    flex-direction: column;
  }
  .booking-actions .btn {
    width: 100%;
  }
}

/* Stack the hero into a single centered column early — a narrow side-by-side
   layout squeezes the illustration and leaves a wall of text. */
@media (max-width: 980px) {
  .hero {
    padding: 130px 0 72px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    justify-items: center;
  }
  .hero-content {
    max-width: 620px;
  }
  .hero-visual {
    order: -1;
    width: 100%;
  }
  .hero-illustration-wrapper {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 11;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 92px 0 56px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  /* Lead with the campervan shot on mobile so the offer is instantly clear */
  .hero-visual {
    order: -1;
  }
  .hero-illustration-wrapper {
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 11;       /* wide banner — less vertical, more "hero shot" */
    box-shadow: 8px 8px 0px var(--color-text-dark);
  }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  .hero-price-tag {
    display: inline-grid;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .spec-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    padding: 20px;
    box-shadow: 4px 4px 0px var(--color-text-dark);
  }
  .spec-icon-wrapper {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    box-shadow: 2px 2px 0px var(--color-text-dark);
  }
  .spec-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  .spec-title {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 2px;
    font-size: 1.1rem;
  }
  .spec-description {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.92rem;
  }
  .gallery-grid-wrapper {
    position: relative;
    margin: 0 -24px;
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 12px 24px 28px 24px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-item {
    flex: 0 0 80%;
    aspect-ratio: 1;
    scroll-snap-align: center;
    transform: none !important;
    padding: 10px 10px 42px 10px;
    box-shadow: 4px 4px 0px var(--color-text-dark);
  }
  .gallery-item img {
    border-width: 1.5px;
  }
  .gallery-item--featured {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
  .gallery-caption {
    left: 10px;
    right: 10px;
    bottom: 8px;
    font-size: 0.75rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .gallery-badge {
    opacity: 1 !important;
    top: 18px;
    right: 18px;
    padding: 3px 6px;
    font-size: 0.65rem;
  }
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -8px;
    margin-bottom: 12px;
  }
  .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-teal);
    opacity: 0.4;
    transition: all 0.3s ease;
  }
  .gallery-dot.active {
    opacity: 1;
    background-color: var(--color-primary);
    transform: scale(1.2);
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 1.0rem;
  }
  .faq-answer-content {
    padding: 0 18px 18px 18px;
    font-size: 0.92rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-info-desc {
    max-width: 100%;
  }
  
  .site-header {
    padding: 12px 0;
  }
  .logo {
    font-size: 1.7rem;
  }
  .header-actions {
    gap: 12px;
  }
  .lang-switch {
    padding: 3px;
  }
  .lang-btn {
    padding: 5px 12px;
    font-size: 0.78rem;
  }
  .social-icon-btn {
    width: 38px;
    height: 38px;
    box-shadow: 2px 2px 0px var(--color-text-dark);
  }
  .social-icon-btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* Show sticky booking bar for mobile */
  .sticky-bar {
    display: flex;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 2px solid var(--color-text-dark);
    border-radius: var(--border-radius-md);
    box-shadow: 4px 4px 0px var(--color-text-dark), 0 10px 30px rgba(27, 59, 54, 0.15);
    padding: 12px 20px;
    animation: stickySlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  @keyframes stickySlideUp {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  /* Add padding to body to prevent content hidden by sticky bar */
  body {
    padding-bottom: 96px;
  }
  
  .lightbox-nav {
    display: none; /* Swipe/touch navigation or zoom on mobile, remove arrows to avoid clutter */
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.45rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .btn {
    width: 100%;
    padding: 15px 24px;
  }
  .hero-price-tag {
    grid-template-columns: 1fr 1px 1fr;
    gap: 12px;
    width: 100%;
    padding: 16px 12px;
    box-shadow: 4px 4px 0px var(--color-text-dark);
  }
  .price-divider {
    display: block;
    align-self: center;
    height: 32px;
    background-color: rgba(45, 34, 30, 0.12);
  }
  .price-value {
    font-size: 1.3rem;
  }
  .price-label {
    font-size: 0.75rem;
  }
  .rate-row {
    padding: 10px 12px;
    gap: 8px;
  }
  .rate-title {
    font-size: 0.85rem;
  }
  .rate-desc {
    font-size: 0.75rem;
    margin-top: 2px;
  }
  .rate-price {
    font-size: 1.1rem;
  }
  .rate-price span {
    font-size: 0.7rem;
  }
  .popular-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    top: -9px;
    right: 10px;
  }
  .booking-actions {
    grid-template-columns: 1fr;
  }
  .lightbox-close {
    width: 40px;
    height: 40px;
  }
  .lightbox-close svg {
    width: 16px;
    height: 16px;
  }
}
