:root {
  --blue-deep: #0f4c81;
  --blue-main: #1f6fa8;
  --blue-soft: #57b7d4;
  --sand: #f5ead7;
  --sand-strong: #e6d1ad;
  --stone: #c8aa7a;
  --coral: #e07a5f;
  --white: #ffffff;
  --offwhite: #fffdf8;
  --text: #1c2a35;
  --muted: #5b6b78;
  --shadow: 0 18px 45px rgba(13, 47, 74, 0.14);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87, 183, 212, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(224, 122, 95, 0.08), transparent 28%),
    var(--offwhite);
}

img {
  max-width: 100%;
  display: block;
}

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

.site-shell {
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 252, 247, 0.88);
  border-bottom: 1px solid rgba(31, 111, 168, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

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

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  gap: 24px;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  color: var(--blue-deep);
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--coral);
}

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

.lang-toggle,
.menu-toggle {
  border: 1px solid rgba(31, 111, 168, 0.18);
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 1.1rem;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 252, 247, 0.96);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 33, 54, 0.82) 5%, rgba(15, 76, 129, 0.63) 45%, rgba(87, 183, 212, 0.28) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  padding: 90px 0 70px;
}

.hero-copy {
  color: var(--white);
  max-width: 760px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 660px;
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.92);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 600;
}

.hero-card,
.contact-card,
.stay-card,
.amenity-card,
.location-image {
  box-shadow: var(--shadow);
}

.hero-card {
  align-self: end;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card-label,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-main);
}

.section-label.light {
  color: rgba(255,255,255,0.78);
}

.hero-card h2,
.contact-card h2,
.contact-card h3 {
  margin: 12px 0 10px;
  font-size: 1.8rem;
  color: var(--blue-deep);
}

.hero-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.stack-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-soft));
  color: var(--white);
}

.btn-secondary {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.24);
}

.btn-outline {
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid rgba(31, 111, 168, 0.18);
}

.mini-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--sand);
  border-radius: var(--radius-md);
  color: var(--text);
  line-height: 1.6;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(245, 234, 215, 0.65), rgba(255, 253, 248, 0.85));
}

.split {
  display: grid;
  gap: 40px;
  align-items: center;
}

.split-about {
  grid-template-columns: 1fr 1fr;
}

.split-location {
  grid-template-columns: 0.92fr 1.08fr;
}

.copy-block p,
.section-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-title {
  margin: 10px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--blue-deep);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.amenity-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(31, 111, 168, 0.08);
}

.amenity-card span {
  font-size: 1.35rem;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stay-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(31, 111, 168, 0.08);
}

.stay-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.stay-card-body {
  padding: 22px;
}

.stay-card-body h3 {
  margin: 0 0 12px;
  color: var(--blue-deep);
}

.stay-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.stay-card-body ul,
.booking-list,
.location-list {
  margin: 0;
  padding-left: 18px;
}

.stay-card-body li,
.booking-list li,
.location-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text);
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  position: relative;
  min-height: 240px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 496px;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

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

.location-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 111, 168, 0.08);
}

.location-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(31, 111, 168, 0.04), rgba(224, 122, 95, 0.04));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(31, 111, 168, 0.08);
}

.contact-card-dark {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-main));
  color: var(--white);
  border: none;
}

.contact-card-dark h2,
.contact-card-dark p {
  color: var(--white);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-links a {
  display: block;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-links a span {
  display: block;
  font-size: 0.92rem;
  opacity: 0.86;
  margin-bottom: 6px;
}

.contact-links a strong {
  font-size: 1rem;
}

.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.86);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255,255,255,0.92);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 17, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .hero-content,
  .split-about,
  .split-location,
  .contact-grid,
  .stay-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .hero {
    min-height: auto;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 70px 0 50px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 240px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.booking-hero {
  padding-bottom: 40px;
}

.booking-hero-soft {
  background:
    linear-gradient(180deg, rgba(245, 234, 215, 0.75), rgba(255, 253, 248, 0.95));
}

.booking-hero-inner {
  max-width: 760px;
}

.booking-form {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 700;
  color: var(--blue-deep);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 111, 168, 0.18);
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(31, 111, 168, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
  line-height: 1.6;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 4px;
}

.booking-note {
  margin-top: 22px;
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.book-hero-premium {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.book-hero-media {
  position: absolute;
  inset: 0;
}

.book-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 31, 49, 0.84) 0%, rgba(15, 76, 129, 0.68) 44%, rgba(87, 183, 212, 0.24) 100%);
}

.book-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  padding: 90px 0 60px;
}

.book-hero-copy {
  color: var(--white);
  max-width: 760px;
}

.book-hero-copy h1 {
  margin: 14px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 1.02;
}

.book-hero-copy p {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.book-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.book-hero-sidecard {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.book-side-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.book-side-content {
  padding: 22px;
}

.book-side-content h2 {
  margin: 10px 0 10px;
  color: var(--blue-deep);
}

.book-side-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.book-mini-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.book-mini-links a {
  color: var(--blue-main);
  font-weight: 700;
}

.book-form-section {
  background:
    radial-gradient(circle at top right, rgba(87, 183, 212, 0.11), transparent 24%),
    radial-gradient(circle at bottom left, rgba(224, 122, 95, 0.08), transparent 22%),
    var(--offwhite);
}

.book-layout-premium {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr) !important;
  gap: 28px;
  align-items: start;
}

.book-form-card,
.book-contact-panel {
  min-width: 0;
}

.book-contact-panel {
  position: sticky;
  top: 96px;
}

.book-form-card,
.book-contact-panel {
  min-width: 0;
}

.book-form-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 111, 168, 0.09);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.book-form-title {
  margin: 10px 0 8px;
  font-size: 2rem;
  color: var(--blue-deep);
}

.book-form-intro {
  margin-bottom: 26px;
}

.booking-group-title {
  margin: 24px 0 14px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-main);
}

.premium-grid {
  gap: 16px;
}

.guests-grid {
  grid-template-columns: repeat(3, 1fr);
}

.premium-booking-form .form-field input,
.premium-booking-form .form-field textarea {
  border: 1px solid rgba(31, 111, 168, 0.15);
  background: linear-gradient(180deg, #ffffff, #fffdf8);
  border-radius: 16px;
  padding: 15px 16px;
}

.premium-booking-form .form-field label {
  font-size: 0.95rem;
}

.premium-checkbox {
  margin-top: 6px;
  margin-bottom: 20px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.premium-submit {
  min-width: 240px;
}

.form-side-note {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.book-contact-panel {
  overflow: hidden;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 111, 168, 0.09);
}

.book-contact-top img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.book-contact-body {
  padding: 24px;
}

.book-contact-body h3 {
  margin: 10px 0 10px;
  color: var(--blue-deep);
  font-size: 1.7rem;
}

.book-contact-body p {
  color: var(--muted);
  line-height: 1.7;
}

.book-contact-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.book-contact-links a {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31, 111, 168, 0.06), rgba(87, 183, 212, 0.05));
  border: 1px solid rgba(31, 111, 168, 0.09);
}

.book-contact-links a span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.book-contact-links a strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.book-contact-info-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  color: var(--text);
}

.book-contact-info-list div {
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.book-contact-info-list div::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .book-hero-grid {
    grid-template-columns: 1fr;
  }
}

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

  .book-hero-grid {
    padding: 76px 0 42px;
  }

  .book-hero-copy h1 {
    font-size: 2.35rem;
  }

  .book-form-card,
  .book-contact-body {
    padding: 22px;
  }
}

.book-form-card,
.book-contact-panel,
.book-hero-sidecard,
.stay-card,
.amenity-card,
.gallery-slide,
.location-image {
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
}

.book-form-card:hover,
.book-contact-panel:hover,
.book-hero-sidecard:hover,
.stay-card:hover,
.amenity-card:hover,
.location-image:hover {
  transform: translateY(-4px);
}

.icon-field .input-shell {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-main);
  font-size: 0.95rem;
  pointer-events: none;
  opacity: 0.88;
}

.textarea-shell .textarea-icon {
  top: 18px;
  transform: none;
}

.icon-field input,
.icon-field textarea {
  padding-left: 40px !important;
}

.booking-success-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(87, 183, 212, 0.1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(31, 111, 168, 0.12);
  text-align: center;
  box-shadow: var(--shadow);
}

.booking-success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-soft));
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
}

.booking-success-card h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 1.8rem;
}

.booking-success-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.book-form-card.is-hidden {
  display: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

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

@media (max-width: 760px) {
  .gallery-head-luxury {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-slide {
    flex-basis: 86vw;
  }

  .gallery-slide img {
    height: 280px;
  }
}
.floating-book-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-soft));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(15, 76, 129, 0.28);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 76, 129, 0.34);
}

@media (max-width: 760px) {
  .floating-book-btn {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 0 18px;
  }
}

@media (max-width: 1100px) {
  .book-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .book-layout-premium {
    grid-template-columns: 1fr !important;
  }

  .book-contact-panel {
    position: static;
  }
}

.villa-gallery-swiper {
  overflow: visible;
  margin-top: 22px;
  padding-bottom: 36px;
}

.villa-gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-slide {
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(13, 47, 74, 0.12);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(13, 47, 74, 0.16);
}

.gallery-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-slide-caption {
  padding: 12px 16px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-deep);
  background: linear-gradient(180deg, #ffffff, #fffaf2);
  text-align: center;
}

.villa-gallery-swiper .swiper-pagination {
  position: static;
  margin-top: 14px;
}

@media (max-width: 760px) {
  .gallery-slide img {
    height: 280px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 17, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

.lightbox img {
  max-width: min(1100px, 88vw);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.lightbox-close {
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 760px) {
  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox img {
    max-width: 84vw;
    max-height: 78vh;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
    align-items: center;
  }

  .brand-title {
    font-size: 1.2rem;
    line-height: 0.95;
  }

  .brand-subtitle {
    font-size: 0.78rem;
    margin-top: 2px;
  }

  .lang-toggle,
  .menu-toggle {
    padding: 8px 12px;
    min-height: 42px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 52px 0 34px;
    gap: 20px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-kicker {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
    line-height: 0.98;
    max-width: 92%;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 18px;
    max-width: 100%;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-buttons .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 1rem;
  }

  .hero-highlights {
    gap: 10px;
    margin-top: 18px;
  }

  .pill {
    padding: 10px 13px;
    font-size: 0.92rem;
  }

  .hero-card {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-card h2 {
    font-size: 1.45rem;
  }

  .hero-card p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .stack-buttons {
    gap: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .contact-card,
  .book-form-card,
  .book-contact-body {
    padding: 22px 18px;
  }

  .floating-book-btn {
    right: 14px;
    bottom: 88px; /* lifts it above mobile browser bar */
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.98rem;
  }
}
