*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #faf8f5;
  --panel: #f1ede8;
  --accent: #c68b00;
  --accent-dark: #a87300;
  --text: #2d3436;
  --muted: #636e72;
  --sage: #395846;
  --beige: #e8dfd0;
  --card: rgba(255, 255, 255, 0.6);
  --border: rgba(57, 88, 70, 0.15);
  --gradient: radial-gradient(800px circle at 10% 20%, rgba(198, 139, 0, 0.08), transparent 40%),
    radial-gradient(700px circle at 90% 0%, rgba(57, 88, 70, 0.06), transparent 30%),
    linear-gradient(120deg, #faf8f5, #f1ede8 35%, #faf8f5 70%);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  --font-base: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--gradient);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
}

.hero {
  position: relative;
  padding: 112px 5vw 120px;
  isolation: isolate;
  color: #0b1020;
  overflow: hidden;
  min-height: 100vh;
}

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

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  animation: kenburns 20s ease-in-out infinite;
}

.hero__slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenburns {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.15));
  z-index: 2;
  backdrop-filter: blur(1px);
}

.hero__scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #0b1020;
  cursor: pointer;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-arrow svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(250, 248, 245, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 20px;
  color: var(--sage);
  transition: font-size 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo {
  height: 32px;
  width: auto;
  transition: height 0.3s ease;
}

.nav.scrolled .nav__brand {
  font-size: 18px;
}

.nav.scrolled .nav__logo {
  height: 28px;
}

.nav__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
  color: var(--sage);
  font-weight: 600;
  font-size: 15px;
}

.nav.scrolled .nav__links a {
  padding: 8px 12px;
  font-size: 14px;
}

.nav__links a:hover {
  background: rgba(57, 88, 70, 0.1);
}

.nav__links a.button {
  background: var(--accent);
  color: white;
  border: none;
}

.nav__links a.button:hover {
  background: var(--accent-dark);
}

.nav__lang-toggle {
  display: flex;
  gap: 4px;
  background: rgba(57, 88, 70, 0.1);
  padding: 4px;
  border-radius: 999px;
  margin-left: 8px;
}

.nav-lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--sage);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.nav-lang-btn:hover {
  background: rgba(57, 88, 70, 0.15);
}

.nav-lang-btn.active {
  background: var(--accent);
  color: white;
}

/* Hamburger menu button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav__hamburger span {
  width: 28px;
  height: 3px;
  background: var(--sage);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 50px);
}

.lead {
  font-size: 18px;
  color: #1d2438;
  max-width: 620px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
  color: #1d2438;
  font-weight: 600;
}

.section {
  padding: 90px 5vw;
}

.section--alt {
  background: radial-gradient(600px circle at 20% 20%, rgba(198, 139, 0, 0.03), transparent 60%), var(--panel);
}

.section__header {
  max-width: 720px;
  margin-bottom: 36px;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.icon {
  margin-bottom: 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.space-section {
  margin-bottom: 60px;
}

.space-section:last-child {
  margin-bottom: 0;
}

.space-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 8px;
}

.space-desc {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.space-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.space-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.amenities ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.amenities li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.map {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.map iframe {
  width: 100%;
  border: none;
  min-height: 360px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.map__callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.booking {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.booking__form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-base);
}

textarea {
  resize: vertical;
}

.booking__dates {
  grid-template-columns: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 20px rgba(198, 139, 0, 0.25);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 10px 25px rgba(198, 139, 0, 0.35);
}

.button--ghost {
  background: rgba(57, 88, 70, 0.08);
  color: var(--sage);
  box-shadow: none;
  border: 1px solid var(--sage);
}

.button--ghost:hover {
  background: var(--sage);
  color: #fff;
}

.booking__aside {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 165, 36, 0.15);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.booking__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.footer {
  padding: 30px 5vw 40px;
  background: #0a0f1d;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


@media (max-width: 900px) {
  .nav__links {
    justify-content: flex-end;
    width: 100%;
  }

  .map, .booking {
    grid-template-columns: 1fr;
  }
}

/* Tablet optimization */
@media (max-width: 900px) {
  .space-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .space-gallery img {
    height: 180px;
  }
}

/* Mobile optimization */
@media (max-width: 640px) {
  /* Reduce overall spacing on mobile */
  .hero {
    padding: 72px 5vw 60px;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 8px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__ctas {
    margin: 16px 0 12px;
  }

  /* Compact navigation */
  .nav {
    padding: 12px 0;
  }

  .nav.scrolled {
    padding: 10px 0;
  }

  .nav__container {
    padding: 0 16px;
    gap: 0;
    flex-wrap: nowrap;
  }

  .nav__brand {
    font-size: 18px;
    gap: 8px;
  }

  .nav__logo {
    height: 28px;
  }

  .nav.scrolled .nav__brand {
    font-size: 17px;
  }

  .nav.scrolled .nav__logo {
    height: 26px;
  }

  /* Show hamburger, hide nav links on mobile */
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
    text-align: left;
  }

  .nav__links a.button {
    margin-top: 8px;
    text-align: center;
  }

  .nav__lang-toggle {
    width: 100%;
    margin: 16px 0 0 0;
    padding: 6px;
    justify-content: center;
  }

  .nav-lang-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Reduce section spacing */
  .section {
    padding: 50px 5vw;
  }

  .section__header {
    margin-bottom: 24px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  /* Optimize photo galleries */
  .space-section {
    margin-bottom: 40px;
  }

  .space-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .space-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .space-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .space-gallery img {
    width: 100%;
    height: auto;
    min-height: 240px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  /* Optimize cards */
  .card {
    padding: 20px;
  }

  .grid {
    gap: 16px;
  }

  /* Compact hero meta */
  .hero__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 14px;
  }

  /* Reduce review cards spacing */
  .reviews-grid {
    gap: 16px;
  }

  .review-card {
    padding: 16px;
  }
}

.reviews-rating {
  margin-top: 12px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.rating-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.rating-stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-count {
  color: var(--muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #0b1020;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  font-weight: 700;
  color: var(--text);
}

.review-author small {
  color: var(--muted);
  font-size: 13px;
}

.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .rating-badge {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card--highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(198, 139, 0, 0.05), rgba(255, 255, 255, 0.6));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card__title {
  font-size: 24px;
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: var(--sage);
}

.pricing-card__period {
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-card__rate {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.pricing-card__min,
.pricing-card__constraint {
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 16px;
}

.pricing-card__degressive {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.pricing-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}

.pricing-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-info {
  text-align: center;
  padding: 24px;
  background: var(--panel);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pricing-info p {
  margin: 8px 0;
  font-weight: 600;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.faq-answer {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Price Calculator */
.price-calculator {
  max-width: 600px;
  margin: 48px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.price-calculator h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 8px;
  font-family: var(--font-display);
  text-align: center;
}

.price-calculator .muted {
  text-align: center;
  margin-bottom: 24px;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.calculator-inputs .calculator-field:nth-child(3),
.calculator-inputs .calculator-field:nth-child(4) {
  grid-column: span 1;
}

.calculator-field {
  display: flex;
  flex-direction: column;
}

.calculator-field label {
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 8px;
  font-size: 14px;
}

.calculator-field input {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.calculator-field input:focus {
  outline: none;
  border-color: var(--accent);
}

.calculator-result {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.calculator-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calculator-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text);
}

.calculator-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--border);
  font-size: 18px;
  font-weight: 700;
  color: var(--sage);
}

.calculator-errors {
  margin-top: 16px;
  padding: 12px;
  background: rgba(198, 139, 0, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--accent-dark);
  line-height: 1.5;
}

.calculator-errors:empty {
  display: none;
}

@media (max-width: 640px) {
  .calculator-inputs {
    grid-template-columns: 1fr;
  }
}

/* Around section */
.around-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.around-category {
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.around-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.around-category__icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.around-category__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--sage);
}

.around-category h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.around-category p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.around-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.around-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.around-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.around-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.around-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.around-distance {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card__rate {
    font-size: 28px;
  }
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(198, 139, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.scroll-to-top:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(198, 139, 0, 0.4);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__caption {
  margin-top: 20px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Gallery item cursor */
.gallery-item {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer logo */
.footer__logo {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.8;
}

/* Subtitles in photos section */
.space-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--sage);
  margin: 32px 0 8px;
  font-family: var(--font-display);
}

.space-subdesc {
  margin-bottom: 16px;
  font-size: 14px;
}

/* Booking benefits */
.booking__benefits {
  margin: 24px 0;
  padding: 20px;
  background: rgba(57, 88, 70, 0.05);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.booking__benefits h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* Booking form enhancements */
.booking__guests {
  display: flex;
  gap: 16px;
}

.booking__price-summary {
  background: rgba(57, 88, 70, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.price-total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  color: var(--sage);
  font-size: 16px;
}

.booking-errors {
  margin-top: 12px;
  padding: 12px;
  background: rgba(198, 139, 0, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--accent-dark);
  line-height: 1.5;
}

.booking-errors:empty {
  display: none;
}

@media (max-width: 640px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }

  .booking__guests {
    flex-direction: column;
    gap: 0;
  }
}
