:root {
  --ink: #13241c;
  --ink-soft: #3a5246;
  --mist: #eef3ef;
  --paper: #f7faf7;
  --green: #1f4d3a;
  --green-deep: #143528;
  --leaf: #2f6b52;
  --gold: #9a7340;
  --line: rgba(19, 36, 28, 0.12);
  --shadow: 0 24px 60px rgba(19, 36, 28, 0.18);
  --radius: 1.25rem;
  --header: 4.25rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9e8df 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 20%, #e5efe8 0%, transparent 50%),
    var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: white;
  padding: 0.5rem 0.75rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 247, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  min-height: var(--header);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  gap: 1.25rem;
  margin-left: 1.5rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--green);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: white;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--green-deep);
  color: white;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: white;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(247, 250, 247, 0.98);
}

.mobile-nav a {
  padding: 0.75rem 0.25rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 2.4rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--green-deep);
  color: #f5faf7;
}

.btn-primary:hover {
  background: var(--leaf);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  backdrop-filter: blur(8px);
}

.btn-whatsapp {
  background: #1f6b48;
  color: white;
}

.contact .btn-ghost,
.price-band .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero-media,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-veil {
  background:
    linear-gradient(180deg, rgba(10, 24, 18, 0.28) 0%, rgba(10, 24, 18, 0.18) 35%, rgba(10, 24, 18, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 24, 18, 0.45), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.25rem 3.5rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero-brand {
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  margin: 0 0 0.85rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.price-band {
  max-width: 1120px;
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.35rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  width: calc(100% - 2.5rem);
}

.price-label,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0;
}

.price-note {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.25rem 0;
}

.section-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-photo img,
.area-photo img,
.lifestyle-visual img,
.nearby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.25rem;
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-list span {
  color: var(--ink-soft);
}

.lifestyle {
  display: grid;
  gap: 1.5rem;
  padding-top: 4.5rem;
}

.lifestyle-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.lifestyle-visual img {
  min-height: 280px;
}

.lifestyle-copy {
  max-width: 40rem;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-intro {
  max-width: 42rem;
  color: var(--ink-soft);
  margin: 0;
}

.location-story {
  padding-bottom: 1rem;
}

.connect-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.connect-item {
  padding: 1.25rem 1.15rem 1.35rem;
  border-top: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.72);
}

.connect-time {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--green-deep);
}

.connect-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.connect-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.area-split {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.area {
  display: grid;
  gap: 2rem;
  padding-bottom: 1rem;
}

.area-panel {
  background: linear-gradient(160deg, #1b3d2f 0%, #244f3d 55%, #1a3429 100%);
  color: #f3f8f4;
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 2rem 1.5rem;
}

.area-panel .eyebrow {
  color: #d7b27a;
}

.area-panel h2 {
  color: white;
}

.area-panel p,
.area-points {
  color: rgba(243, 248, 244, 0.88);
}

.area-points {
  margin: 1.25rem 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.area-note {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.8;
}

.area-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.nearby-block {
  margin-top: 1rem;
}

.nearby-grid {
  display: grid;
  gap: 1.25rem;
}

.nearby-card {
  display: grid;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.nearby-card img {
  min-height: 200px;
  aspect-ratio: 16 / 10;
}

.nearby-copy {
  padding: 1.2rem 1.15rem 1.35rem;
}

.nearby-meta {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.nearby-copy h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.nearby-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  margin: 0;
  border: 0;
  padding: 0;
  background: #d7e2db;
  border-radius: 1rem;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  position: relative;
}

.gallery-item:nth-child(3n) {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.contact {
  padding-bottom: 5rem;
}

.contact-inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  border-radius: calc(var(--radius) + 0.35rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 107, 82, 0.12), transparent 55%),
    white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.contact-person {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.site-footer {
  padding: 2rem 1.25rem 6rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.2rem 0;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(20, 80, 45, 0.35);
  z-index: 50;
  animation: floatIn 0.8s 0.4s var(--ease) both;
}

.wa-float svg {
  width: 1.7rem;
  height: 1.7rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 12, 0.92);
  display: grid;
  place-items: center;
  z-index: 60;
  padding: 3rem 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  border-radius: 0.75rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .area-split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .area-panel {
    padding: 2.75rem;
  }

  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .section-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .lifestyle {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }

  .connect-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .nearby-card {
    grid-template-rows: auto 1fr;
  }

  .btn-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 719px) {
  .btn-whatsapp {
    display: none;
  }
}
