/* ============================================================
   RDG Casas Investimentos — Design System
   Estilo: Acolhedor e Natural (tons terrosos, verdes, bege)
   ============================================================ */

:root {
  /* Cores principais */
  --green-900: #2c3a30;
  --green-800: #38493c;
  --green-700: #46594a;
  --green-600: #5a6f5d;
  --green-500: #768a78;
  --terracotta: #c0734f;
  --terracotta-dark: #a85f3e;
  --sand: #e8dfd1;
  --beige-50: #faf7f2;
  --beige-100: #f4eee4;
  --beige-200: #ece3d4;
  --cream: #fffdf9;

  /* Texto */
  --ink: #2a2620;
  --ink-soft: #5b5448;
  --ink-mute: #8a8275;

  /* Utilidades */
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(44, 58, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 58, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(44, 58, 48, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--beige-50);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--green-900); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tint { background: var(--beige-100); }
.section--dark { background: var(--green-900); color: var(--beige-100); }
.section--dark h2, .section--dark h3 { color: var(--cream); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--terracotta); display: inline-block; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -0.01em; }
.section-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--green-800); color: var(--cream); }
.btn--dark:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid var(--green-700); color: var(--green-800); }
.btn--outline:hover { background: var(--green-800); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }

/* ============================================================
   Header / Navbar
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 20px;
}
.header.scrolled, .header.solid {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; z-index: 1002; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: grid; place-items: center; color: var(--cream);
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.brand__text { line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--green-900); letter-spacing: .01em; }
.brand__tag { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.header:not(.scrolled):not(.solid) .brand__name { color: #fff; }
.header:not(.scrolled):not(.solid) .brand__tag { color: var(--sand); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  position: relative; padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.95rem; color: var(--ink-soft);
  transition: color .25s, background .25s;
}
.header:not(.scrolled):not(.solid) .nav__links a { color: rgba(255,255,255,.88); }
.nav__links a:hover, .nav__links a.active { color: var(--terracotta); background: rgba(192,115,79,.10); }
.header:not(.scrolled):not(.solid) .nav__links a:hover,
.header:not(.scrolled):not(.solid) .nav__links a.active { color: #fff; background: rgba(255,255,255,.16); }

.nav__right { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.88rem;
  color: var(--ink-soft); border: 1px solid rgba(44,58,48,.16);
  transition: background .25s, border-color .25s, color .25s;
}
.lang__btn .flag { font-size: 1.05rem; line-height: 1; }
.lang__btn .chev { transition: transform .3s var(--ease); }
.lang.open .lang__btn .chev { transform: rotate(180deg); }
.header:not(.scrolled):not(.solid) .lang__btn { color: #fff; border-color: rgba(255,255,255,.4); }
.lang__btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.header:not(.scrolled):not(.solid) .lang__btn:hover { color: #fff; border-color: #fff; }

.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 190px;
  background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  border: 1px solid var(--beige-200); z-index: 1001;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  padding: 11px 14px; border-radius: 10px; font-weight: 500; font-size: 0.92rem; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.lang__menu button:hover { background: var(--beige-100); color: var(--green-900); }
.lang__menu button.active { background: rgba(192,115,79,.12); color: var(--terracotta); font-weight: 600; }
.lang__menu .flag { font-size: 1.2rem; }

/* Bandeiras como imagem (renderizam em qualquer sistema, inclusive Windows) */
.flag-img {
  width: 22px; height: 16px; object-fit: cover; border-radius: 3px;
  vertical-align: middle; display: inline-block; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.lang__btn .flag, .lang__menu .flag { display: inline-flex; align-items: center; }
.prop-card__flag .flag-img { width: 20px; height: 14px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; justify-content: center; z-index: 1002; }
.burger span { width: 100%; height: 2.4px; background: var(--green-900); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.header:not(.scrolled):not(.solid) .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
body.menu-open .burger span { background: var(--green-900) !important; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding-top: 90px;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--green-900, #2c3a30); }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out; will-change: opacity; pointer-events: none; }
.hero__video.show { opacity: 1; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,38,30,.82) 0%, rgba(28,38,30,.55) 45%, rgba(28,38,30,.25) 100%);
}
.hero__inner { max-width: 720px; padding-block: 60px; }
.hero .eyebrow { color: var(--sand); }
.hero .eyebrow::before { background: var(--sand); }
.hero__title { font-size: clamp(2.6rem, 6.2vw, 4.6rem); color: #fff; letter-spacing: -0.015em; }
.hero__title em { font-style: italic; color: var(--sand); }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,.9); max-width: 560px; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats { margin-top: 56px; display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); }
.stat__num { font-family: var(--font-head); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; color: #fff; }
.stat__label { font-size: 0.86rem; color: rgba(255,255,255,.78); letter-spacing: .04em; }

/* Search bar */
.search {
  position: relative; margin-top: 44px; background: rgba(255,255,255,.96); border-radius: var(--radius-lg);
  padding: 14px; box-shadow: var(--shadow-lg); display: grid;
  grid-template-columns: repeat(3, 1fr) auto; gap: 10px; max-width: 860px;
}
.search__field { display: flex; flex-direction: column; gap: 3px; padding: 8px 16px; border-radius: var(--radius); position: relative; }
.search__field + .search__field::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--beige-200); }
.search__field label { font-size: 0.7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.search__field select { border: none; background: none; color: var(--ink); font-weight: 600; font-size: 0.98rem; outline: none; cursor: pointer; padding: 2px 0; }
.search__btn { align-self: stretch; }

/* ============================================================
   Trust / logos strip
   ============================================================ */
.trust { background: var(--green-900); color: var(--beige-200); padding-block: 26px; }
.trust__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 44px; text-align: center; }
.trust__item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,.78); }
.trust__item svg { width: 20px; height: 20px; color: var(--sand); }

/* ============================================================
   Section: About / Intro
   ============================================================ */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media .badge-float {
  position: absolute; bottom: -26px; right: -10px; background: var(--cream);
  border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-lg); text-align: center;
  border: 1px solid var(--beige-200);
}
.about__media .badge-float .n { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--terracotta); }
.about__media .badge-float .t { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: .03em; }
.about__text p { color: var(--ink-soft); margin-top: 18px; font-size: 1.05rem; }
.about__list { margin-top: 28px; display: grid; gap: 14px; }
.about__list li { display: flex; gap: 14px; align-items: flex-start; }
.about__list .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(118,138,120,.18); display: grid; place-items: center; color: var(--green-700); margin-top: 2px; }
.about__list .ico svg { width: 15px; height: 15px; }
.about__list b { color: var(--green-900); font-weight: 600; }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 34px 30px;
  border: 1px solid var(--beige-200); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--terracotta); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800)); color: var(--cream); margin-bottom: 22px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; }
.service-card .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--terracotta); font-weight: 600; font-size: 0.9rem; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   Properties / Cards
   ============================================================ */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prop-card {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--beige-200);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); cursor: pointer; display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prop-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.prop-card:hover .prop-card__media img { transform: scale(1.07); }
.prop-card__badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 0.74rem; font-weight: 700; letter-spacing: .03em; padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.92); color: var(--green-900); backdrop-filter: blur(4px); text-transform: uppercase;
}
.chip--sale { background: var(--terracotta); color: #fff; }
.chip--rent { background: var(--green-700); color: #fff; }
.chip--reforma { background: #b8862f; color: #fff; }
.chip--construcao { background: #5b7a9d; color: #fff; }
.prop-card__flag { position: absolute; top: 14px; right: 14px; background: rgba(28,38,30,.78); color: #fff; padding: 6px 12px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); }
.prop-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prop-card__price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--green-900); }
.prop-card__price span { font-size: 0.82rem; font-family: var(--font-body); color: var(--ink-mute); font-weight: 500; }
.prop-card__title { font-family: var(--font-body); font-weight: 600; font-size: 1.08rem; color: var(--ink); margin-top: 6px; }
.prop-card__loc { display: flex; align-items: center; gap: 6px; color: var(--ink-soft); font-size: 0.9rem; margin-top: 6px; }
.prop-card__loc svg { width: 15px; height: 15px; color: var(--terracotta); flex: none; }
.prop-card__feats { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--beige-200); display: flex; gap: 18px; }
.prop-card__feat { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 0.86rem; font-weight: 500; }
.prop-card__feat svg { width: 17px; height: 17px; color: var(--green-600); }

/* Filters bar */
.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 38px; background: var(--cream); padding: 16px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--beige-200); }
.filters__group { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 150px; padding-inline: 8px; }
.filters__group label { font-size: 0.68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.filters__group select { border: none; background: none; font-weight: 600; color: var(--ink); padding: 5px 0; outline: none; cursor: pointer; }
.filters__count { margin-left: auto; color: var(--ink-soft); font-size: 0.9rem; padding-inline: 12px; font-weight: 500; }

.chips-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tab-chip { padding: 9px 20px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); background: var(--cream); border: 1px solid var(--beige-200); transition: all .25s; }
.tab-chip:hover { border-color: var(--terracotta); color: var(--terracotta); }
.tab-chip.active { background: var(--green-800); color: #fff; border-color: var(--green-800); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); grid-column: 1 / -1; }
.empty-state svg { width: 48px; height: 48px; color: var(--ink-mute); margin-bottom: 16px; }
.empty-state--soon { padding: 72px 24px; background: var(--cream); border: 1.5px dashed var(--beige-200); border-radius: var(--radius-lg); }
.empty-state--soon svg { width: 54px; height: 54px; color: var(--terracotta); }
.empty-state__title { font-family: var(--font-head); font-size: 1.5rem; color: var(--green-900); margin-bottom: 6px; }
.empty-state--soon p:not(.empty-state__title) { max-width: 420px; margin-inline: auto; }

/* ============================================================
   Modal (property detail)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(28,38,30,.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .35s; }
.modal.open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative; max-width: 920px; margin: 5vh auto; background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); transform: translateY(24px) scale(.98); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease); max-height: 90vh; display: flex; flex-direction: column;
}
.modal.open .modal__dialog { transform: translateY(0) scale(1); opacity: 1; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .25s, background .25s; }
.modal__close:hover { transform: rotate(90deg); background: #fff; }
.modal__close svg { width: 20px; height: 20px; color: var(--ink); }
.modal__media { aspect-ratio: 16/9; overflow: hidden; flex: none; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: 30px clamp(24px, 4vw, 40px) 36px; overflow-y: auto; }
.modal__thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.modal__thumb { width: 76px; height: 58px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; transition: border-color .2s, transform .2s; }
.modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal__thumb:hover { transform: translateY(-2px); }
.modal__thumb.active { border-color: var(--terracotta); }
.modal__price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--terracotta); }
.modal__title { font-size: 1.6rem; margin-top: 4px; }
.modal__loc { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); margin-top: 8px; }
.modal__loc svg { width: 17px; height: 17px; color: var(--terracotta); }
.modal__feats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.modal__feat { display: flex; align-items: center; gap: 9px; background: var(--beige-100); padding: 12px 18px; border-radius: var(--radius); font-weight: 600; color: var(--green-900); font-size: 0.92rem; }
.modal__feat svg { width: 19px; height: 19px; color: var(--green-600); }
.modal__feat span { color: var(--ink-mute); font-weight: 500; font-size: 0.78rem; display: block; }
.modal__desc { margin-top: 24px; color: var(--ink-soft); line-height: 1.8; }
.modal__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Process / Steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step__num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--sand); line-height: 1; }
.step h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }
.section--dark .step__num { color: var(--green-600); }
.section--dark .step p { color: rgba(255,255,255,.74); }

/* ============================================================
   Destinations
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; height: 560px; }
.dest { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.dest:nth-child(1) { grid-row: span 2; }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dest:hover img { transform: scale(1.08); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,38,30,.82), rgba(28,38,30,0) 55%); }
.dest__label { position: absolute; bottom: 22px; left: 24px; z-index: 2; color: #fff; }
.dest__label .city { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; }
.dest__label .count { font-size: 0.86rem; color: rgba(255,255,255,.82); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   Testimonials
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst {
  background: var(--cream); border-radius: var(--radius-lg); padding: 32px 30px; border: 1px solid var(--beige-200);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.tst__stars { display: flex; gap: 3px; color: var(--terracotta); margin-bottom: 16px; }
.tst__stars svg { width: 18px; height: 18px; }
.tst__quote { font-size: 1.04rem; color: var(--ink); line-height: 1.7; flex: 1; }
.tst__person { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.tst__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; background: var(--sand); }
.tst__name { font-weight: 700; color: var(--green-900); font-size: 0.96rem; }
.tst__role { font-size: 0.84rem; color: var(--ink-mute); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; isolation: isolate; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px, 7vw, 80px); color: #fff; text-align: center; background: linear-gradient(120deg, #2c3a30, #a85f3e); }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(44,58,48,.92), rgba(168,95,62,.72)); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 16px; font-size: 1.1rem; max-width: 560px; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================
   Contact
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact__info .lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: 16px; }
.contact__items { margin-top: 32px; display: grid; gap: 20px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__item .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--beige-100); display: grid; place-items: center; color: var(--terracotta); }
.contact__item .ico svg { width: 22px; height: 22px; }
.contact__item .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); font-weight: 700; }
.contact__item .v { font-weight: 600; color: var(--green-900); font-size: 1.02rem; }
.contact__item a.v:hover { color: var(--terracotta); }
.socials { margin-top: 30px; display: flex; gap: 12px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: var(--green-800); color: #fff; display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.socials a:hover { background: var(--terracotta); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.form { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); border: 1px solid var(--beige-200); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--green-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--beige-200); border-radius: var(--radius);
  background: var(--beige-50); color: var(--ink); transition: border-color .25s, background .25s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--terracotta); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: 0.82rem; color: var(--ink-mute); margin-top: 6px; text-align: center; }
.form__success { display: none; text-align: center; padding: 30px 10px; }
.form__success.show { display: block; }
.form__success svg { width: 56px; height: 56px; color: var(--green-600); margin-bottom: 16px; }
.form__success h3 { font-size: 1.4rem; }
.form__success p { color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--green-900); color: rgba(255,255,255,.74); padding-block: 70px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand__name { color: #fff; }
.footer__about { margin-top: 20px; font-size: 0.95rem; max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { display: grid; gap: 12px; }
.footer__links a { color: rgba(255,255,255,.72); font-size: 0.95rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--sand); padding-left: 5px; }
.footer__news p { font-size: 0.95rem; margin-bottom: 16px; }
.footer__news form { display: flex; gap: 8px; }
.footer__news input { flex: 1; padding: 12px 16px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; outline: none; }
.footer__news input::placeholder { color: rgba(255,255,255,.5); }
.footer__news button { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--terracotta); color: #fff; display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer__news button:hover { background: var(--terracotta-dark); transform: scale(1.05); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: 0.86rem; color: rgba(255,255,255,.55); }
.footer__bottom a:hover { color: var(--sand); }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { position: relative; padding: 160px 0 80px; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(28,38,30,.86), rgba(28,38,30,.45)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; }
.page-hero p { margin-top: 16px; font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.88rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--sand); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ============================================================
   Toast
   ============================================================ */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--green-900); color: #fff; padding: 14px 26px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); z-index: 3000; transition: transform .45s var(--ease); font-weight: 500; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .prop-grid, .tst-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .dest:nth-child(1) { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw); flex-direction: column;
    align-items: flex-start; justify-content: flex-start; gap: 4px; background: var(--cream);
    padding: 110px 28px 40px; box-shadow: var(--shadow-lg); transform: translateX(105%); transition: transform .45s var(--ease);
    z-index: 1001;
  }
  body.menu-open .nav__links { transform: translateX(0); }
  .nav__links a { width: 100%; color: var(--ink-soft) !important; font-size: 1.05rem; padding: 14px 16px; }
  .header:not(.scrolled):not(.solid) .nav__links a { color: var(--ink-soft) !important; }
  .burger { display: flex; }
  .about, .contact { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .search { grid-template-columns: 1fr 1fr; }
  .search__field + .search__field::before { display: none; }
  .search__btn { grid-column: span 2; }
}
@media (max-width: 600px) {
  .services-grid, .prop-grid, .tst-grid, .steps, .form__row { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest:nth-child(1) { grid-column: span 1; }
  .hero { padding-top: 76px; }
  .hero__inner { padding-block: 40px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero__stats { gap: 24px; }
  .search { grid-template-columns: 1fr; }
  .search__btn { grid-column: span 1; }
  .filters__count { margin-left: 0; width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__media .badge-float { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
