:root {
  --bg: #f2f5f1;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5b655d;
  --line: #d7dfd6;
  --accent: #cfdccc;
  --nav-hover: #7ee08f;
  --dark: #171a1f;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

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

.hero {
  position: relative;
  --hero-sunset-progress: 0;
  --hero-night-progress: 0;
  min-height: 230vh;
  margin: 0;
  width: 100%;
  border-radius: 0;
  overflow: visible;
  background: var(--bg);
}

.hero-image {
  position: relative;
  z-index: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 700px;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-image-sunset,
.hero-image-night,
.hero-image-dim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-image-sunset {
  background-image: url("assets/hero1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-sunset-progress);
}

.hero-image-night {
  background-image: url("assets/hero2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-night-progress);
}

.hero-image-dim {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 26, calc(0.05 + (var(--hero-sunset-progress) * 0.16) + (var(--hero-night-progress) * 0.12))) 0%,
    rgba(5, 8, 16, calc(0.08 + (var(--hero-sunset-progress) * 0.2) + (var(--hero-night-progress) * 0.24))) 100%
  );
}

.hero-image span {
  display: none;
}

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

.hero-overlay .container {
  position: relative;
  height: 100%;
  padding-top: 148px;
}

.top-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1360px, calc(100% - 24px));
  z-index: 110;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 22px;
  border: 1px solid rgba(226, 236, 224, 0.82);
  background: rgba(101, 126, 95, 0.68);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 30, 17, 0.2);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, min-height 0.35s ease, top 0.35s ease;
}

.top-nav.nav-scrolled {
  top: 10px;
  min-height: 66px;
  background: rgba(86, 110, 80, 0.8);
  border-color: rgba(214, 227, 210, 0.92);
  box-shadow: 0 12px 30px rgba(12, 20, 12, 0.26);
}

.brand {
  font-weight: 700;
  font-size: 1.16rem;
  color: #f9fffa;
  letter-spacing: 0.02em;
}

.top-nav a,
.top-nav button {
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
}

.lang-switcher select {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #f4fbff;
  padding: 0 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-switcher select option {
  color: #1a251c;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: clamp(12px, 1.65vw, 28px);
  width: 100%;
  margin-inline: auto;
  min-width: 0;
}

.menu a {
  color: #f4fbff;
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.menu a:hover {
  color: var(--nav-hover);
  opacity: 1;
}

.top-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #f4fbff;
}

.top-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav button:hover,
.top-nav button:focus-visible {
  color: var(--nav-hover);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  color: #131313;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: min(520px, 100%);
  margin-top: 0;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 32, 20, 0.22) 0%, rgba(20, 32, 20, 0.06) 100%);
  backdrop-filter: blur(1px);
  z-index: 4;
}

.hero-content.is-pinned {
  position: fixed;
  top: 148px;
  left: max(24px, calc((100vw - 1120px) / 2));
  width: min(520px, calc(100vw - 48px));
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #f5f9fb;
  font-weight: 600;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.34);
}

.hero-content p {
  margin: 18px 0 0;
  color: #eff7fb;
  max-width: 430px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.btn-dark {
  background: #151515;
  color: #f6f6f6;
}

.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: #121212;
}

.hero-float-card {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 38px;
  width: min(1180px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(199, 214, 198, 0.95);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.85rem;
  box-shadow: 0 12px 26px rgba(16, 26, 15, 0.17);
}

.card-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.hero-float-card p {
  margin: 6px 0;
}

.hero-float-card .card-title,
.hero-float-card > p:not(.booking-title) {
  display: none;
}

.booking-title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #162418;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr auto;
  align-items: end;
  gap: 10px;
}

.booking-field {
  display: grid;
  gap: 5px;
}

.booking-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4c5c4e;
  margin-top: 0;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 38px;
  border-radius: var(--radius);
  border: 1px solid #d3ddd2;
  background: #ffffff;
  padding: 0 10px;
  font: inherit;
  color: #1a261c;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(63, 143, 82, 0.45);
  outline-offset: 1px;
  border-color: #8dbb97;
}

.booking-btn {
  min-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 36px;
  max-width: 290px;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(16, 30, 41, 0.68);
}

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

.section .container {
  padding: 84px 0;
}

.intro h2,
.stats h2,
.villas h2,
.testimonial h2,
.blog h2,
.contact h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.7vw, 3.1rem);
  line-height: 1.15;
  font-weight: 500;
  max-width: 860px;
}

.intro p,
.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 700px;
}

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

.feature-card {
  border-radius: var(--radius);
  background: #f7f9fb;
  border: 1px solid var(--line);
  min-height: 220px;
  padding: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  font-weight: 500;
  transition: color 0.35s ease;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  transition: color 0.35s ease;
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a5f4b;
  font-weight: 600;
}

.stat-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  border-right: 1px solid var(--line);
  padding-right: 16px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 500;
}

.stat-label {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
}

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

.villa-card,
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.villa-card {
  background: linear-gradient(145deg, #d9e6d5 0%, #e9f0e6 100%);
}

.feature-card:hover,
.villa-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  background: linear-gradient(180deg, #181c24, #12161c);
  border-color: #1d222b;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #edf3f7;
}

.villa-card .image-placeholder {
  min-height: 420px;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease, clip-path 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  clip-path: inset(0% 0% 0% 0% round 0%);
  transform-origin: 50% 50%;
  will-change: transform, clip-path, filter;
  backface-visibility: hidden;
}

.villa-card h3,
.blog-card h3 {
  margin: 14px 14px 6px;
  font-size: 1.08rem;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.villa-card p {
  margin: 0 14px 16px;
  color: var(--muted);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .villa-card:hover .villa-image {
    animation: villaMaskMorph 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  .villa-card:hover h3 {
    transform: translateY(-2px);
    opacity: 0.96;
  }

  .villa-card:hover p {
    transform: translateY(-1px);
    opacity: 0.9;
  }
}

@keyframes villaMaskMorph {
  0% {
    clip-path: inset(0% 0% 0% 0% round 0%);
    transform: scale(1) rotate(0deg);
    filter: saturate(1) contrast(1);
  }
  36% {
    clip-path: inset(8% 10% 8% 10% round 18%);
    transform: scale(1.02) rotate(-1.2deg);
    filter: saturate(1.05) contrast(1.02);
  }
  68% {
    clip-path: inset(13% 15% 13% 15% round 30%);
    transform: scale(1.03) rotate(1deg);
    filter: saturate(1.06) contrast(1.03);
  }
  100% {
    clip-path: inset(10% 12% 10% 12% round 22%);
    transform: scale(1.02) rotate(0deg);
    filter: saturate(1.05) contrast(1.02);
  }
}

.image-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  background: linear-gradient(145deg, #d8e2d4 0%, #edf2ea 100%);
  color: rgba(17, 17, 17, 0.46);
  border: 1px solid rgba(154, 172, 152, 0.56);
}

.image-placeholder span {
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-shell {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  border-radius: var(--radius);
  background: var(--dark);
  border: 1px solid #1e2430;
  padding: 26px;
  color: #eef3f7;
}

.testimonial-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.testimonial-copy p {
  margin: 0;
  font-size: 1.08rem;
  max-width: 560px;
}

.author {
  color: #b4c3cf;
  font-size: 0.9rem;
}

.person-placeholder {
  min-height: 280px;
  background: linear-gradient(140deg, #becfb8, #dee8da);
}

.cta-strip .container {
  padding: 26px;
}

.cta-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
  background: linear-gradient(135deg, #edf3ea 0%, #dce8d7 100%);
  border: 1px solid #cad8c7;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 14px 30px rgba(25, 39, 23, 0.1);
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  padding: 4px 6px 4px 2px;
}

.cta-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #4f664f;
}

.cta-copy p {
  margin: 0;
  max-width: 52ch;
  color: #4e5f4f;
}

.cta-actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-points {
  display: grid;
  gap: 10px;
  padding: 4px 2px 4px 6px;
}

.point {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d0ddcd;
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.point:hover {
  transform: translateY(-3px);
  border-color: #b8c8b3;
  box-shadow: 0 10px 18px rgba(34, 49, 30, 0.1);
}

.point-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.point p {
  margin: 0;
  color: #4e5f4f;
}

.plans-note {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 700px;
}

.schematic-layout {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.schematic-tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf8;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.schematic-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schematic-button {
  border: 1px solid #cad8c7;
  background: #ffffff;
  color: #1f2f24;
  min-height: 42px;
  border-radius: 10px;
  padding: 0 14px;
  text-align: center;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.schematic-villas .schematic-button {
  flex: 1 1 180px;
}

.schematic-plans .schematic-button {
  flex: 1 1 150px;
}

.schematic-button:hover {
  transform: translateY(-1px);
  border-color: #a9c3ac;
  box-shadow: 0 8px 14px rgba(21, 34, 22, 0.1);
}

.schematic-button.is-active {
  background: #eaf4e9;
  border-color: #8fb496;
  box-shadow: inset 0 0 0 1px rgba(120, 164, 131, 0.2);
}

.schematic-viewer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 12px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
}

.schematic-image {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid #dde6db;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
  filter: saturate(0.94);
}

.schematic-image.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.schematic-caption {
  margin: 0;
  color: #405242;
  font-weight: 600;
  font-size: 0.93rem;
}

.gallery-section h2 {
  margin-bottom: 18px;
}

.gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 12px;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  touch-action: pan-y;
}

.gallery-viewport::before,
.gallery-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(34px, 6vw, 70px);
  height: 100%;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.3s ease;
  opacity: 0.24;
}

.gallery-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.gallery-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.gallery-shell.is-at-start .gallery-viewport::before {
  opacity: 0.52;
}

.gallery-shell.is-at-end .gallery-viewport::after {
  opacity: 0.52;
}

.gallery-track {
  display: flex;
  gap: 0;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  margin: 0;
  position: relative;
  opacity: 0.74;
  transform: scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  height: clamp(280px, 52vw, 560px);
  object-fit: cover;
  display: block;
}

.gallery-slide figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(14, 20, 15, 0.46);
  color: #f2f8f0;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

.gallery-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #c8d7c5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2a3a2b;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-arrow:hover {
  transform: translateY(-1px);
  color: #3f8f52;
  border-color: #9ec4a7;
  box-shadow: 0 8px 14px rgba(21, 36, 19, 0.12);
}

.gallery-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.blog-card .image-placeholder {
  min-height: 180px;
}

.blog-date {
  margin: 12px 14px 0;
  color: #667666;
  font-size: 0.86rem;
}

.blog-card a {
  margin: 0 14px 16px;
  display: inline-flex;
  color: #172839;
  font-weight: 600;
}

.contact-form {
  margin-top: 26px;
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.contact-form label {
  font-size: 0.9rem;
  color: #2b3845;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
  background: #fff;
}

.contact-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.contact-layout .contact-form {
  margin-top: 0;
}

.contact-map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-map-card:hover {
  transform: translateY(-2px);
  border-color: #bfd0bd;
  box-shadow: 0 12px 24px rgba(20, 34, 21, 0.1);
}

.contact-map-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.contact-map-card p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-inline-list {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
}

.contact-inline-link {
  width: fit-content;
  font-weight: 600;
  color: #2f4330;
  transition: color 0.22s ease;
}

.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  color: #0f7d2c;
}

.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #c7d8c4;
  min-height: 320px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  pointer-events: none;
  z-index: 2;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
}

.location-section .container {
  padding-top: 22px;
}

.location-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.location-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.location-item:hover {
  transform: translateY(-2px);
  border-color: #bfd1bd;
  box-shadow: 0 10px 20px rgba(23, 39, 24, 0.08);
}

.location-item-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: space-between;
}

.location-item-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.location-item-head span {
  font-size: 1rem;
  font-weight: 700;
  color: #2f4f34;
}

.location-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.location-visual {
  position: relative;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 30, 17, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.location-visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
  z-index: 2;
}

.location-visual:hover {
  transform: translateY(-3px);
  border-color: #b9ccb8;
  box-shadow: 0 18px 34px rgba(16, 30, 17, 0.16);
}

.location-visual img {
  width: 100%;
  display: block;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #f5f7f4;
}

.location-visual figcaption {
  margin: 0;
  padding: 10px 12px;
  color: #415443;
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.top-nav a:focus,
.btn:focus,
.nav-cta:focus,
.menu-toggle:focus,
.whatsapp-fab:focus {
  outline: 2px solid #1b3550;
  outline-offset: 2px;
}

.footer {
  background: linear-gradient(180deg, #dfe8dc 0%, #e7efe5 100%);
  border-top: 1px solid #c8d6c5;
  padding: 26px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-logo {
  width: 170px;
  max-width: 100%;
  height: auto;
}

.footer-project {
  margin: 4px 0 0;
  font-weight: 700;
  color: #203022;
}

.footer-madeby {
  margin: 0;
  color: #3f5141;
  font-size: 0.9rem;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-title {
  margin: 0;
  font-size: 1rem;
  color: #253825;
}

.footer-link {
  width: fit-content;
  color: #314532;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.22s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #0f7d2c;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid #cfdbcc;
}

.footer-copy {
  margin: 0;
  font-size: 0.84rem;
  color: #4a5b4c;
}

.villa-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.villa-image-1 {
  background-image: url("assets/villa-1.jpg");
}

.villa-image-2 {
  background-image: url("assets/villa-2.jpg");
}

.villa-image-3 {
  background-image: url("assets/villa-3.jpg");
}

.villa-image span {
  display: none;
}

.testimonial-image,
.blog-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial-image-1 {
  background-image: url("assets/testimonial-1.jpg");
}

.blog-image-1 {
  background-image: url("assets/blog-1.jpg");
}

.blog-image-2 {
  background-image: url("assets/blog-2.jpg");
}

.blog-image-3 {
  background-image: url("assets/blog-3.jpg");
}

.testimonial-image span,
.blog-image span {
  display: none;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1fae55;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  z-index: 120;
}

.whatsapp-fab svg {
  width: 36px;
  height: 36px;
  fill: #ffffff;
}

.whatsapp-fab {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  filter: blur(3px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal-up {
  transform: translate3d(0, 28px, 0);
}

.reveal-left {
  transform: translate3d(-34px, 0, 0);
}

.reveal-right {
  transform: translate3d(34px, 0, 0);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1200px) {
  .top-nav {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 1.04rem;
  }

  .menu {
    gap: 10px;
  }

  .menu a {
    font-size: 0.86rem;
  }

  .nav-cta {
    height: 36px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .top-social {
    gap: 3px;
  }

  .top-social a {
    width: 28px;
    height: 28px;
  }

  .lang-switcher select {
    min-height: 32px;
    padding-inline: 8px;
  }

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

  .schematic-image {
    min-height: 360px;
  }

  .section-head,
  .cta-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: 190vh;
  }

  .hero-image {
    height: 100vh;
    min-height: 660px;
  }

  .top-nav {
    top: 10px;
    width: calc(100% - 18px);
    min-height: 60px;
    padding: 10px 14px;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.2);
    color: #eff9ff;
    min-height: 36px;
    padding: 0 12px;
    font: inherit;
    align-items: center;
  }

  .menu {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    width: 100%;
  }

  .menu.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .top-social {
    justify-self: end;
  }

  .lang-switcher {
    justify-self: end;
  }

  .schematic-image {
    min-height: 340px;
  }

  .gallery-shell {
    grid-template-columns: 42px 1fr 42px;
    gap: 8px;
  }

  .gallery-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-float-card,
  .hero-note {
    position: static;
    margin-top: 16px;
  }

  .hero-float-card {
    width: 100%;
    max-width: 100%;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .booking-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-content {
    width: min(520px, 100%);
    margin-top: 0;
  }

  .hero-content.is-pinned {
    top: 86px;
    left: 14px;
    width: min(520px, calc(100vw - 28px));
  }

  .hero-overlay .container {
    padding-top: 86px;
  }

  .villa-grid,
  .blog-grid,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-row {
    gap: 18px;
    padding: 24px;
  }

  .cta-copy,
  .cta-points {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 170vh;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section .container {
    padding: 62px 0;
  }

  .feature-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .lang-switcher select {
    min-height: 32px;
    font-size: 0.78rem;
    padding: 0 8px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .schematic-tab-row .schematic-button {
    flex-basis: 100%;
  }

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

  .gallery-arrow {
    position: absolute;
    top: calc(50% - 21px);
    z-index: 5;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-shell .gallery-viewport {
    grid-column: 1;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

[dir="rtl"] .hero-content,
[dir="rtl"] .hero-note,
[dir="rtl"] .intro,
[dir="rtl"] .section-head,
[dir="rtl"] .schematic-caption,
[dir="rtl"] .contact-form,
[dir="rtl"] .location-item,
[dir="rtl"] .cta-copy {
  text-align: right;
}

[dir="rtl"] .menu {
  direction: rtl;
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .whatsapp-fab {
    right: 12px;
    bottom: 12px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-fab svg {
    width: 32px;
    height: 32px;
  }
}
