:root {
  --cream: #f7f2ea;
  --cream-2: #efe7d9;
  --white: #fffdf9;
  --espresso: #2e2620;
  --espresso-deep: #241d17;
  --espresso-soft: #5b4e40;
  --sage: #6e7f5c;
  --sage-dark: #55644a;
  --tan: #be9a67;
  --tan-light: #d9c3a0;
  --border: #e4dac8;
  --shadow-sm: 0 6px 18px rgba(46, 38, 32, 0.07);
  --shadow-md: 0 14px 34px rgba(46, 38, 32, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) - 12px);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-alt {
  background: var(--cream-2);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--sage);
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--tan);
}

.kicker-light {
  color: var(--tan-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin: 18px 0 20px;
}

.section-title em {
  font-style: italic;
  color: var(--tan);
}

.section-sub {
  max-width: 560px;
  color: var(--espresso-soft);
  font-size: 1.02rem;
  margin-inline: auto;
}

.align-start {
  margin-inline: 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(44px, 6vw, 70px);
}

.section-head .kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--tan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}

.btn-lg {
  padding: 17px 42px;
}

.btn-sm {
  padding: 11px 24px;
}

.btn-block {
  width: 100%;
}

.btn-solid {
  background: var(--espresso);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 1px solid rgba(255, 253, 249, 0.65);
  color: var(--white);
}

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

.btn-ghost-light {
  border: 1px solid rgba(255, 253, 249, 0.45);
  color: var(--white);
  background: rgba(255, 253, 249, 0.06);
  backdrop-filter: blur(4px);
}

.btn-ghost-light:hover {
  background: rgba(255, 253, 249, 0.16);
  border-color: var(--white);
}

.link-arrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  position: relative;
  transition: color 0.3s ease;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.link-arrow:hover {
  color: var(--tan);
}

.link-arrow:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 120;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s ease;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--tan-light);
  margin-top: 5px;
  transition: color 0.4s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav-link {
  position: relative;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255, 253, 249, 0.88);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--tan-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-mobile-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 120;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 253, 249, 0.6);
  padding: 4px 2px;
  transition: color 0.3s ease, opacity 0.3s;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active {
  color: var(--tan-light);
  border-bottom: 1px solid var(--tan-light);
}

.lang-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 253, 249, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  z-index: 120;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.6px;
  background: var(--white);
  margin-inline: auto;
  transition: transform 0.35s ease, background 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 2px 0;
}

.navbar.scrolled .logo-main {
  color: var(--espresso);
}

.navbar.scrolled .logo-sub {
  color: var(--tan);
}

.navbar.scrolled .nav-link {
  color: var(--espresso-soft);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--espresso);
}

.navbar.scrolled .nav-link::after {
  background: var(--tan);
}

.navbar.scrolled .lang-btn {
  color: var(--espresso-soft);
}

.navbar.scrolled .lang-btn:hover {
  color: var(--espresso);
}

.navbar.scrolled .lang-btn.active {
  color: var(--sage-dark);
  border-bottom-color: var(--sage-dark);
}

.navbar.scrolled .lang-divider {
  background: var(--border);
}

.navbar.scrolled .hamburger span {
  background: var(--espresso);
}

.navbar.scrolled .btn-outline-light {
  border-color: var(--espresso);
  color: var(--espresso);
}

.navbar.scrolled .btn-outline-light:hover {
  background: var(--espresso);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow: clip;
  width: 100%;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 24, 18, 0.52) 0%, rgba(30, 24, 18, 0.28) 45%, rgba(30, 24, 18, 0.62) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(46, 38, 32, 0.35), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 6.6vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  max-width: 13ch;
  margin: 26px 0 24px;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--tan-light);
}

.hero-sub {
  max-width: 520px;
  color: rgba(255, 253, 249, 0.85);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

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

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 16px 32px;
  }
  .hero-scroll {
    display: none;
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.75);
  transition: color 0.3s ease;
}

.hero-scroll:hover {
  color: var(--white);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 253, 249, 0.85), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-media {
  position: relative;
  padding-bottom: 90px;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 160px 160px 14px 14px;
  box-shadow: var(--shadow-md);
}

.about-img-second {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 12px;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-md);
  max-width: 100%;
}

.about-badge {
  position: absolute;
  left: 0;
  bottom: 34px;
  background: var(--sage);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.25;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
}

.badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-text p:not(.kicker):not(.section-sub) {
  color: var(--espresso-soft);
  margin-bottom: 16px;
  max-width: 54ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: var(--sage-dark);
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

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

.fac-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 38px 32px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.fac-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--sage-dark);
  background: rgba(110, 127, 92, 0.12);
  margin-bottom: 22px;
  transition: background 0.4s ease, color 0.4s ease;
}

.fac-icon svg {
  width: 27px;
  height: 27px;
}

.fac-card:hover .fac-icon {
  background: var(--sage);
  color: var(--white);
}

.fac-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.fac-card p {
  font-size: 0.95rem;
  color: var(--espresso-soft);
}

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

.vil-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vil-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.vil-featured {
  border-color: var(--tan-light);
  box-shadow: 0 18px 44px rgba(190, 154, 103, 0.18);
}

.vil-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vil-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vil-card:hover .vil-media img {
  transform: scale(1.06);
}

.vil-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--tan);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.vil-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vil-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.vil-meta {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 8px 0 14px;
}

.vil-desc {
  font-size: 0.94rem;
  color: var(--espresso-soft);
  margin-bottom: 22px;
}

.vil-foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price-from {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

.price-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--espresso);
}

.price-per {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--espresso-soft);
  letter-spacing: 0.04em;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  gap: 14px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
}

.gi-a {
  grid-column: span 2;
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.72);
}

.gal-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(30, 24, 18, 0.65), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.gal-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 19, 14, 0.93);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  max-width: min(1080px, 90vw);
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox figcaption {
  margin-top: 16px;
  color: rgba(255, 253, 249, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 249, 0.3);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.lb-btn:hover {
  background: rgba(255, 253, 249, 0.14);
  border-color: var(--white);
}

.lb-close {
  top: 26px;
  right: 26px;
}

.lb-prev {
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

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

.tes-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tes-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--tan);
  letter-spacing: 0.3em;
  font-size: 0.95rem;
}

.tes-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--espresso);
  flex: 1;
}

.tes-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.tes-card cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.info-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--tan-light);
  color: var(--sage-dark);
  background: var(--white);
}

.info-icon svg {
  width: 21px;
  height: 21px;
}

.info-list strong {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.info-list p {
  color: var(--espresso-soft);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(110, 127, 92, 0.15);
  outline: none;
  font-size: 1rem;
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #c0392b;
  background: #fdf2f2;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--espresso-soft);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 12px;
  background: rgba(110, 127, 92, 0.12);
  border: 1px solid rgba(110, 127, 92, 0.35);
  color: var(--sage-dark);
  font-size: 0.94rem;
  animation: successIn 0.5s ease;
}

.form-success[hidden] {
  display: none;
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.success-check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer {
  background: var(--espresso-deep);
  color: rgba(255, 253, 249, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(56px, 7vw, 84px) 0 48px;
}

.logo-footer .logo-main {
  color: var(--white);
}

.logo-footer .logo-sub {
  color: var(--tan);
}

.footer-brand p {
  margin: 20px 0 24px;
  max-width: 34ch;
  font-size: 0.95rem;
}

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

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 249, 0.25);
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-3px);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
  color: var(--tan-light);
  padding-left: 6px;
}

.footer-contact li {
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  padding: 22px 0;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255, 253, 249, 0.55);
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, background 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--sage-dark);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.36s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.48s;
}

.reveal[data-delay="5"] {
  transition-delay: 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .fac-grid,
  .tes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .vil-card:last-child {
    grid-column: span 2;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .gal-grid {
    grid-auto-rows: 200px;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 72px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 82vw);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(46, 38, 32, 0.18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.45s;
    z-index: 110;
    padding: 90px 36px 40px;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(30, 24, 18, 0.5);
    z-index: 105;
    animation: fadeIn 0.3s ease;
  }

  body.menu-open .nav-menu {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu .nav-link {
    color: var(--espresso);
    font-size: 1.05rem;
  }

  .navbar.scrolled ~ * .nav-menu .nav-link,
  .nav-menu .nav-link {
    color: var(--espresso);
  }

  .nav-mobile-cta {
    display: block;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-media {
    max-width: 520px;
    width: 100%;
    padding-bottom: 70px;
  }

  .about-img-second {
    right: 0;
  }

  .about-badge {
    left: 0;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }

  .gi-a {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-content {
    padding-top: calc(var(--nav-h) + 10px);
  }
}

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

@media (max-width: 640px) {
  .container {
    width: min(1180px, 90%);
  }

  .section {
    padding: clamp(48px, 12vw, 72px) 0;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 24px) 0 72px;
  }

  .hero-content {
    padding-top: 0;
    width: min(1180px, 90%);
  }

  .hero-title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    max-width: 100%;
    margin: 20px 0 18px;
  }

  .hero-title br {
    display: none;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .kicker {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    gap: 10px;
    max-width: 100%;
  }

  .kicker::before {
    width: 28px;
    flex-shrink: 0;
  }

  .section-head .kicker::after {
    width: 28px;
    flex-shrink: 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  /* Nav */
  .nav-container {
    gap: 12px;
  }

  .logo-main {
    font-size: 1.6rem;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.32em;
  }

  .nav-actions {
    gap: 10px;
  }

  .lang-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
  }

  /* Grids → single column */
  .fac-grid,
  .tes-grid,
  .vil-grid,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .vil-card:last-child {
    grid-column: auto;
  }

  .gal-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
  }

  .gi-a,
  .gi-wide {
    grid-column: auto;
    grid-row: auto;
  }

  /* About */
  .about-media {
    padding-bottom: 0;
    max-width: 100%;
  }

  .about-img-main {
    border-radius: 90px 90px 14px 14px;
  }

  .about-badge {
    position: static;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
  }

  .about-img-second {
    position: static;
    width: 100%;
    margin-top: 16px;
    border-width: 4px;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-num {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  /* Villas */
  .vil-foot {
    flex-wrap: wrap;
  }

  .price-num {
    font-size: 1.3rem;
    overflow-wrap: break-word;
  }

  /* Testimonials */
  .tes-card p {
    font-size: 1.05rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* Contact */
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 14px 16px;
  }

  .contact-form {
    padding: 24px 20px;
    border-radius: 16px;
  }

  /* Footer — was missing, caused horizontal overflow */
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 48px 0 36px;
  }

  /* Lightbox + floating */
  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }

  .lb-btn {
    width: 56px;
    height: 56px;
    font-size: 2.2rem;
  }

  .lb-close {
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
  }

  .lightbox figure {
    max-width: 92vw;
  }

  .wa-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    overflow-wrap: break-word;
  }

  .fac-card {
    padding: 28px 24px;
  }

  .vil-body {
    padding: 22px 20px 24px;
  }
}

/* Minimum touch targets — only interactive elements */
button,
.btn,
.nav-link,
.lang-btn,
.lb-btn,
.hamburger,
.socials a,
.wa-float,
.gal-item {
  min-height: 44px;
}

.btn,
button,
.lang-btn,
.lb-btn,
.hamburger,
.socials a,
.wa-float {
  min-width: 44px;
}

/* Prevent grid blowout on narrow screens */
.about-grid > *,
.fac-card,
.vil-card,
.tes-card,
.gal-item,
.contact-form,
.footer-grid > *,
.vil-body,
.tes-card p,
.vil-desc,
.section-sub {
  min-width: 0;
  overflow-wrap: break-word;
}

/* Extra-small screens */
@media (max-width: 380px) {
  .nav-container {
    gap: 8px;
  }

  .logo-main {
    font-size: 1.45rem;
  }

  .stats {
    gap: 8px;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .kicker {
    letter-spacing: 0.16em;
  }

  .btn-lg {
    padding: 15px 28px;
    font-size: 0.76rem;
  }

  .gal-grid {
    grid-auto-rows: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  html {
    scroll-behavior: auto;
  }
}
