:root {
  --color-primary: #049540;
  --color-primary-deep: #037532;
  --color-primary-soft: #e5f6eb;
  --color-accent: #312982;
  --color-accent-deep: #241d6e;
  --color-slate: #5c666f;
  --color-slate-deep: #3f474e;
  --color-sand: #f6f0e7;
  --color-cream: #fffdf9;
  --color-ink: #1f2a24;
  --color-muted: #66746d;
  --color-border: rgba(31, 42, 36, 0.12);
  --shadow-soft: 0 18px 45px rgba(14, 41, 25, 0.12);
  --shadow-card: 0 20px 40px rgba(16, 33, 24, 0.08);
  --shadow-card-hover: 0 28px 52px rgba(16, 33, 24, 0.14);
  --radius-lg: 28px;
  --container: min(1280px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 110px; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--color-ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(251, 202, 24, 0.14), transparent 30%),
    linear-gradient(180deg, #fbfcf8 0%, #fffdf9 52%, #f6f0e7 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.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;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
}

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

.brand img { width: clamp(220px, 22vw, 340px); }

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

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

.main-nav a {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  transition: color 180ms ease;
}

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

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 30px rgba(4, 149, 64, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  color: var(--color-primary-deep);
  box-shadow: 0 22px 34px rgba(4, 149, 64, 0.28);
}

.whatsapp-cta img { width: 20px; height: 20px; }

.whatsapp-cta img,
.whatsapp-cta span {
  transition: filter 180ms ease, color 180ms ease;
}

.whatsapp-cta img {
  filter: brightness(0) invert(1);
}

.whatsapp-cta:hover img,
.whatsapp-cta:focus-visible img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(84%) saturate(955%) hue-rotate(86deg) brightness(91%) contrast(92%);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-actions .social-link {
  border-color: rgba(49, 41, 130, 0.14);
  background: rgba(49, 41, 130, 0.06);
  color: var(--color-secondary);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 54vh;
  display: flex;
  align-items: center;
  padding: 36px calc(30vw / 5) 24px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  transform: scale(1.04);
  opacity: 0;
  animation: heroFadeIn 1200ms ease forwards;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(12, 22, 18, 0.74) 10%, rgba(12, 22, 18, 0.38) 46%, rgba(12, 22, 18, 0.58) 100%);
}

.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
}

.hero-copy {
  color: #fff;
  max-width: 920px;
  opacity: 0;
  transform: translateY(22px);
  animation: heroSlideUp 850ms ease 260ms forwards;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: clamp(2.85rem, 5.2vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.hero-copy p {
  margin: 24px 0 8px;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.search-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 243, 0.9) 100%);
  box-shadow:
    0 18px 40px rgba(10, 24, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  width: min(760px, 100%);
  opacity: 0;
  transform: translateY(22px);
  animation: heroSlideUp 850ms ease 520ms forwards;
}

.search-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-card h2 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.05;
}

.destination-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  margin-top: 0;
}

.destination-form select,
.destination-form button {
  width: 100%;
  min-height: 60px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.destination-select {
  text-align: center;
  text-align-last: center;
  padding-left: 14px;
  padding-right: 14px;
}

.destination-select option {
  text-align: center;
}

.destination-form select {
  padding: 0 20px;
  background: #fff;
  color: var(--color-ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.destination-form button {
  border: 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #237b98 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(49, 41, 130, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.destination-form button:hover,
.destination-form button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 34px rgba(49, 41, 130, 0.38);
  filter: saturate(1.05);
}

.destination-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.2) 48%, rgba(255, 255, 255, 0) 76%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.destination-form button {
  position: relative;
  overflow: hidden;
}

.destination-form button:hover::after,
.destination-form button:focus-visible::after {
  transform: translateX(120%);
}

section { position: relative; padding: 92px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading--single {
  grid-template-columns: 1fr;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.06;
}

.section-heading p { margin: 0; color: var(--color-muted); line-height: 1.8; }
.featured-section { padding-top: 48px; }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: var(--container);
  margin: 0 auto;
}

.property-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 36, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(31, 42, 36, 0.14);
}

.property-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}

.property-image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  background:
    linear-gradient(135deg, rgba(4, 149, 64, 0.09), rgba(49, 41, 130, 0.12)),
    #f3f6f1;
  color: var(--color-muted);
  font-weight: 800;
}

.property-card:hover img {
  transform: scale(1.05);
}

.property-content {
  padding: 18px 18px 22px;
}

.property-destination {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.property-card {
  position: relative;
}

.property-content h3 {
  margin: -18px -18px 16px;
  padding: 12px 14px;
  border-radius: 0;
  background: linear-gradient(135deg, #4d43b8 0%, #312982 100%);
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.property-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.property-content li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  text-align: center;
}

.property-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: rgba(31, 42, 36, 0.42);
  flex-shrink: 0;
}

.property-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.property-content li span:last-child,
.property-meta-row > span span:last-child,
.property-price-row span:last-child {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.property-content li:last-child {
  grid-column: 1 / -1;
  color: #fff;
  font-weight: 800;
  margin: 4px -18px -22px;
  padding: 12px 14px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-slate-deep) 100%);
}

.property-card--alt .property-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
}

.property-card--alt .property-content h3 {
  margin-bottom: 0;
}

.property-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  align-items: center;
  margin: 0;
  padding: 6px 0;
  border-radius: 0;
}

.property-meta-row.has-garage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-meta-row > span,
.property-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  text-align: center;
}

.property-meta-row > span {
  min-height: 36px;
  padding: 4px 6px;
}

.property-meta-row > span + span {
  border-left: 1px solid rgba(31, 42, 36, 0.06);
}

.property-card--alt .property-icon {
  width: 24px;
  height: 24px;
  color: rgba(31, 42, 36, 0.52);
}

.property-card--alt .property-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.8;
}

.property-price-row {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  margin: 0 -18px -22px;
  padding: 11px 14px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-slate-deep) 100%);
  flex-direction: row;
  justify-content: center;
  gap: 7px;
  width: calc(100% + 36px);
  box-sizing: border-box;
  align-self: stretch;
}

.property-card--alt {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-favorite-indicator {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #e53b3b;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(16, 33, 24, 0.16);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.property-favorite-indicator svg {
  width: 13px;
  height: 13px;
  display: block;
}

.property-favorite-indicator.is-visible {
  opacity: 1;
  transform: scale(1);
}

.property-meta-row {
  margin-top: auto;
}

.property-card--alt .property-price-row .property-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.96);
}

.about-section {
  overflow: hidden;
  padding: 68px 0;
  background:
    radial-gradient(circle at top right, rgba(251, 202, 24, 0.14), transparent 25%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #241d6e 0%, #312982 38%, #049540 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 32%, rgba(255, 255, 255, 0) 70%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 2px,
      transparent 2px,
      transparent 16px
    );
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

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

.about-copy .eyebrow,
.about-copy h2,
.about-copy p {
  color: #fff;
}

.about-copy h2 {
  margin: 14px 0 18px;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  line-height: 1.1;
}

.about-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
  font-size: 1.03rem;
}

.testimonials-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(251, 202, 24, 0.1), transparent 26%),
    linear-gradient(180deg, #fffefb 0%, #f8f5ef 100%);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.testimonials-copy h2 {
  margin: 14px 0 14px;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.1;
}

.testimonials-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  gap: 24px;
  align-items: center;
}

.carousel-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(31, 42, 36, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.testimonial-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(31, 42, 36, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.testimonial-track {
  display: flex;
  transition: transform 280ms ease;
}

.testimonial-item {
  min-width: 100%;
  display: block;
  padding: 30px 34px;
}

.testimonial-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(49, 41, 130, 0.12);
  color: #19647d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-item h3 {
  margin: 0 0 14px;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.testimonial-item p {
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.testimonial-item strong {
  letter-spacing: 0.01em;
}

.destinations-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at top right, rgba(251, 202, 24, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #5c51c8 0%, #312982 42%, #fbca18 100%);
}

.destinations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0) 72%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 16px
    );
}

.destinations-section .container {
  position: relative;
  z-index: 1;
}

.destinations-section .eyebrow,
.destinations-section .section-heading h2 {
  color: #fff;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 42, 36, 0.08);
  box-shadow: var(--shadow-card);
  min-height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.destination-card img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 32, 35, 0.04) 6%, rgba(7, 32, 35, 0.68) 100%);
}

.destination-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px 18px 20px;
}

.destination-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
}

.destination-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.destination-card:hover,
.destination-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.destination-card:hover img,
.destination-card:focus-visible img {
  transform: scale(1.05);
}

.reveal {
  opacity: 0;
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms ease;
  will-change: opacity, transform, clip-path, filter;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0 round 0);
  filter: blur(0);
}

.reveal-fade {
  transform: translateY(18px);
}

.reveal-rise {
  transform: translateY(54px);
}

.reveal-clip {
  clip-path: inset(0 0 18% 0 round 24px);
  transform: translateY(26px);
}

.reveal-slide-left {
  transform: translateX(46px);
}

.reveal-zoom-soft {
  transform: scale(0.96);
  filter: blur(4px);
}

.stagger-group > * {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-group.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group.in-view > *:nth-child(1) { transition-delay: 40ms; }
.stagger-group.in-view > *:nth-child(2) { transition-delay: 90ms; }
.stagger-group.in-view > *:nth-child(3) { transition-delay: 140ms; }
.stagger-group.in-view > *:nth-child(4) { transition-delay: 190ms; }
.stagger-group.in-view > *:nth-child(5) { transition-delay: 240ms; }
.stagger-group.in-view > *:nth-child(6) { transition-delay: 290ms; }
.stagger-group.in-view > *:nth-child(7) { transition-delay: 340ms; }
.stagger-group.in-view > *:nth-child(8) { transition-delay: 390ms; }
.stagger-group.in-view > *:nth-child(9) { transition-delay: 440ms; }
.stagger-group.in-view > *:nth-child(10) { transition-delay: 490ms; }
.stagger-group.in-view > *:nth-child(11) { transition-delay: 540ms; }
.stagger-group.in-view > *:nth-child(12) { transition-delay: 590ms; }

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

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding: 34px 0;
  background: linear-gradient(180deg, rgba(12, 34, 20, 0.98) 0%, rgba(18, 37, 24, 1) 100%);
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-brand {
  width: min(250px, 48vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand-link,
.footer-signature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible,
.footer-signature-link:hover,
.footer-signature-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.86;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links-separator {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.social-links--footer .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.footer-policy-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-policy-link:hover,
.footer-policy-link:focus-visible {
  color: rgba(255, 255, 255, 0.74);
}

.footer-signature {
  width: min(120px, 26vw);
}

@media (max-width: 1400px) {
  .properties-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-heading,
  .about-grid,
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .properties-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .destinations-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .carousel-shell { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }

  .hero-section {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .header-inner { padding: 18px 0; }
  .site-header { position: static; }
  .hero-copy h1 { line-height: 1; }
  .destination-form {
    grid-template-columns: 1fr;
  }
  .search-card,
  .testimonial-item { padding: 24px; }
  .properties-grid { grid-template-columns: 1fr; }
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .destination-card {
    border-radius: 16px;
  }
  .destination-copy {
    padding: 12px;
  }
  .destination-card h3 {
    font-size: 0.88rem;
    line-height: 1.15;
  }
  .destination-copy p {
    font-size: 0.76rem;
    line-height: 1.25;
  }
  .property-content ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  section { padding: 72px 0; }
  .hero-center {
    gap: 22px;
  }
  .hero-section {
    padding-bottom: 12px;
  }

  .reveal,
  .stagger-group > * {
    transition-duration: 640ms;
  }
}
