/* ═══════════════════════════════════════════════════════════
   AGRO E CIDADE IMÓVEIS — Design System v3
   Mobile-first. Tested: 375 → 430 → 768 → 1024 → 1440
═══════════════════════════════════════════════════════════ */

/* 1. IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap');

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* 3. TOKENS */
:root {
  /* Brand */
  --deep:      #0C241A;
  --green:     #194734;
  --green-mid: #1E5840;
  --gold:      #F1BD37;
  --gold-dark: #C99A18;

  /* Surfaces */
  --bg:        #F5F3EE;
  --bg-card:   #FFFFFF;
  --bg-dark:   #0A1F14;

  /* Text */
  --ink:       #111916;
  --ink-2:     #3D4F47;
  --ink-3:     #7A8C84;

  /* Borders */
  --line:      #DDD9D0;
  --line-2:    #C5C0B5;

  /* Radii */
  --r-xs: 0.375rem;
  --r-sm: 0.625rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-pill: 62.5rem;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(12,36,26,.06);
  --sh-sm: 0 2px 10px rgba(12,36,26,.09);
  --sh-md: 0 6px 28px rgba(12,36,26,.13);
  --sh-lg: 0 20px 56px rgba(12,36,26,.20);

  /* Type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Manrope", system-ui, sans-serif;

  /* Nav height (used for hero offset) */
  --nav-h: 3.75rem;
}

/* 4. BASE */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 5. UTILITIES */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ''; width: 1.6rem; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500; line-height: 1.1; color: var(--deep);
}

/* 6. NAVBAR (escuro — logo branca) */
.navbar {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(10, 26, 18, .9);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar__inner {
  height: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 0 1.25rem;
}
.navbar__logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.navbar__logo-img { height: 2.5rem; width: auto; display: block; }

.navbar__nav { display: none; flex: 1; gap: 2rem; margin-left: 2rem; }
.navbar__nav a { font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.62); position: relative; padding-bottom: .15rem; transition: color .2s; }
.navbar__nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .25s; }
.navbar__nav a:hover, .navbar__nav a.active { color: #fff; }
.navbar__nav a:hover::after, .navbar__nav a.active::after { width: 100%; }

.navbar__right { display: flex; align-items: center; gap: .65rem; margin-left: auto; }
.navbar__wapp {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: var(--r-pill);
  background: var(--gold); color: var(--deep);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.navbar__wapp:hover { background: #fff; transform: scale(1.02); }
.navbar__wapp svg { width: .9rem; height: .9rem; flex-shrink: 0; }
.navbar__wapp-text { display: none; } /* hidden until 480px */

.navbar__burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.4rem; height: 2.4rem; padding: .4rem .45rem;
  border: 1.5px solid rgba(255,255,255,.22); border-radius: var(--r-sm);
  transition: border-color .2s;
}
.navbar__burger:hover { border-color: rgba(255,255,255,.5); }
.navbar__burger span { display: block; height: 1.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.navbar__burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* 7. MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  display: flex; flex-direction: column;
  pointer-events: none; visibility: hidden;
  transition: visibility 0s .35s;
}
.mobile-menu.open { pointer-events: all; visibility: visible; transition-delay: 0s; }
.mobile-menu__bg {
  position: absolute; inset: 0;
  background: rgba(10,31,20,.65);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; transition: opacity .32s;
}
.mobile-menu.open .mobile-menu__bg { opacity: 1; }
.mobile-menu__panel {
  position: relative; z-index: 1; margin-top: var(--nav-h);
  background: var(--bg-card);
  border-bottom-left-radius: var(--r-xl); border-bottom-right-radius: var(--r-xl);
  padding: 1.5rem 1.25rem 2rem; overflow-y: auto;
  transform: translateY(-1rem); opacity: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .3s;
}
.mobile-menu.open .mobile-menu__panel { transform: translateY(0); opacity: 1; }
.mobile-menu__nav a {
  display: flex; align-items: center; gap: .85rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__nav a:last-child { border-bottom: none; }
.mobile-menu__nav a:hover { color: var(--green); padding-left: .5rem; }
.mobile-menu__nav svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; opacity: .45; }
.mobile-menu__cta { margin-top: 1.5rem; }
.mobile-menu__cta .btn-wapp { width: 100%; justify-content: center; }

/* 8. WHATSAPP FAB */
.wapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.25rem; z-index: 400;
  display: flex; align-items: center; gap: .55rem;
  background: #25D366; color: #fff;
  padding: .85rem 1.25rem; border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.wapp-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.wapp-fab svg { width: 1.3rem; height: 1.3rem; flex-shrink: 0; }
.wapp-fab__label { display: none; }
/* show label at 480px */

/* 9. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: var(--r-pill);
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn svg { width: .95rem; height: .95rem; flex-shrink: 0; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

.btn-gold    { background: var(--gold); color: var(--deep); }
.btn-gold:hover  { background: var(--gold-dark); }
.btn-dark    { background: var(--deep); color: #fff; }
.btn-dark:hover  { background: var(--green); }
.btn-green   { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--gold); color: var(--deep); }
.btn-outline { border: 1.5px solid var(--line-2); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--deep); color: var(--deep); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-wapp { background: #25D366; color: #fff; }
.btn-wapp:hover { background: #20b858; }
.btn-sm { padding: .55rem 1.1rem; font-size: .72rem; }
.btn-full { width: 100%; }

/* 10. HERO */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
  min-height: calc(100vh - var(--nav-h));
  background: var(--deep); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 1.25rem 2.5rem;
}

/* Video background */
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media-inner { position: absolute; inset: 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.6s ease;
}
.hero__video.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,24,14,.95) 0%, rgba(8,24,14,.45) 55%, rgba(8,24,14,.2) 100%),
    linear-gradient(100deg, rgba(8,24,14,.5) 0%, transparent 60%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

/* Hero content */
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .65rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero__eyebrow::before { content: ''; width: 1.8rem; height: 1px; background: var(--gold); }

.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 11vw, 8rem);
  line-height: .92; letter-spacing: -.02em; color: #fff;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero__title strong { font-weight: 500; display: block; }

.hero__sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 3.5vw, 1.7rem); color: rgba(255,255,255,.75);
  margin-top: .85rem; min-height: 1.4em;
}

.hero__actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.hero__actions .btn { width: 100%; }

/* Slide indicator dots */
.hero__dots { display: flex; gap: .45rem; margin-top: 1.75rem; }
.hero__dot { width: .3rem; height: .3rem; border-radius: 999px; background: rgba(255,255,255,.3); transition: width .35s, background .35s; border: none; padding: 0; cursor: pointer; }
.hero__dot.active { width: 1.5rem; background: var(--gold); }

/* Hero glass card — desktop only */
.hero__glass {
  display: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg); padding: 1.25rem;
  background: rgba(12,36,26,.42);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  min-width: 18rem;
}
.hero__glass-tag { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.hero__glass-key { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-top: .35rem; color: #fff; transition: opacity .35s; }
.hero__glass-desc { font-size: .8rem; color: rgba(255,255,255,.68); margin-top: .3rem; line-height: 1.5; transition: opacity .35s; }
.hero__glass.swapping .hero__glass-key,
.hero__glass.swapping .hero__glass-desc { opacity: 0; }

/* Hero scroll cue */
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem; z-index: 1;
  font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.hero__scroll-line { width: 1px; height: 2.5rem; background: linear-gradient(var(--gold), transparent); animation: scroll-drip 2s ease-in-out infinite; }
@keyframes scroll-drip {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero reveal animations */
.hero__reveal { overflow: hidden; }
.hero__reveal > * { display: block; transform: translateY(110%); opacity: 0; transition: transform 1s cubic-bezier(.16,1,.3,1), opacity .9s cubic-bezier(.16,1,.3,1); }
.hero.ready .hero__reveal > * { transform: translateY(0); opacity: 1; }
.hero__actions { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); transition-delay: .7s; }
.hero.ready .hero__actions { opacity: 1; transform: translateY(0); }

/* 11. LOADER */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--deep); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.2rem;
  transition: transform .9s cubic-bezier(.65,0,.35,1);
}
.loader.done { transform: translateY(-105%); }
.loader__logo-img {
  width: clamp(160px, 42vw, 240px); height: auto;
  opacity: 0; transform: translateY(12px) scale(.97);
  transition: opacity .8s ease .1s, transform .8s cubic-bezier(.16,1,.3,1) .1s;
}
.loader.in .loader__logo-img { opacity: 1; transform: translateY(0) scale(1); }
.loader__track { width: 9rem; height: 2px; background: rgba(255,255,255,.15); border-radius: 999px; overflow: hidden; }
.loader__fill { display: block; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 1.35s cubic-bezier(.65,0,.35,1) .15s; }
.loader.in .loader__fill { transform: scaleX(1); }

/* 11b. PAGE TRANSITION (SliceRevealer) */
.pt {
  position: fixed; inset: 0; z-index: 950;
  pointer-events: none; visibility: hidden;
}
.pt--active { visibility: visible; }
.pt__slices {
  position: absolute; inset: 0;
  display: flex; flex-direction: row;
}
.pt__slice {
  flex: 1; background: var(--deep);
  transform: translateY(101%);
  box-shadow: 1px 0 0 var(--deep); /* evita frestas entre fatias */
  will-change: transform;
}
.pt__logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(130px, 30vw, 190px); height: auto;
  opacity: 0; z-index: 1;
}

/* 12. FILTER PANEL */
.filter-panel {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 1.35rem;
  box-shadow: var(--sh-sm);
}
.filter-panel__toggle { /* mobile accordion trigger */
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: .82rem; font-weight: 700; color: var(--deep); padding: .1rem 0;
}
.filter-panel__toggle svg { width: 1.1rem; height: 1.1rem; transition: transform .3s; }
.filter-panel__toggle.open svg { transform: rotate(180deg); }
.filter-panel__body { overflow: hidden; transition: max-height .35s ease, opacity .3s; max-height: 0; opacity: 0; }
.filter-panel__body.open { max-height: 800px; opacity: 1; }
.filter-panel__grid { display: flex; flex-direction: column; gap: .85rem; margin-top: 1rem; }
.filter-panel label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-2); margin-bottom: .35rem; }
.filter-panel select,
.filter-panel input[type="number"],
.filter-panel input[type="text"] {
  width: 100%; padding: .7rem .95rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--bg);
  font-family: var(--sans); font-size: .9rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.filter-panel select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%233D4F47'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.5rem;
}
.filter-panel select:focus,
.filter-panel input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(25,71,52,.12); }
.filter-panel__actions { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.25rem; }
.filter-panel__actions .btn { width: 100%; }

/* 13. PROPERTY CARDS */
.prop-card {
  background: var(--bg-card); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-xs);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.prop-card__img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(145deg, var(--green) 0%, var(--deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
/* SVG placeholder — shows when no image */
.prop-card__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .22; color: var(--gold);
}
.prop-card__placeholder svg { width: 3rem; height: 3rem; }
.prop-card__placeholder span { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(241,189,55,.6); }

.prop-card__img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.prop-card:hover .prop-card__img img { transform: scale(1.06); }

.prop-card__badges { position: absolute; top: .75rem; left: .75rem; display: flex; gap: .4rem; flex-wrap: wrap; z-index: 1; }
.prop-card__badge {
  font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: var(--r-pill);
  background: var(--green); color: #fff;
}
.prop-card__badge--gold { background: var(--gold); color: var(--deep); }
.prop-card__badge--rent { background: rgba(12,36,26,.75); color: #fff; backdrop-filter: blur(6px); }

/* WhatsApp quick action — hover on desktop */
.prop-card__wapp-quick {
  position: absolute; bottom: .75rem; right: .75rem; z-index: 1;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.prop-card:hover .prop-card__wapp-quick { opacity: 1; transform: translateY(0); }
.prop-card__wapp-quick a,
.prop-card__wapp-quick button {
  display: flex; align-items: center; gap: .35rem;
  background: #25D366; color: #fff;
  padding: .45rem .85rem; border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 700;
}
.prop-card__wapp-quick svg { width: .9rem; height: .9rem; }

.prop-card__body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.prop-card__tipo { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.prop-card__titulo {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  line-height: 1.25; margin-top: .3rem; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prop-card__local { display: flex; align-items: center; gap: .3rem; font-size: .75rem; color: var(--ink-3); margin-top: .3rem; }
.prop-card__local svg { width: .8rem; height: .8rem; flex-shrink: 0; }
.prop-card__attrs { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .75rem; }
.prop-card__attr { display: flex; align-items: center; gap: .28rem; font-size: .73rem; color: var(--ink-2); }
.prop-card__attr svg { width: .85rem; height: .85rem; opacity: .55; flex-shrink: 0; }
.prop-card__price { margin-top: auto; padding-top: .85rem; border-top: 1px solid var(--line); margin-top: .85rem; }
.prop-card__value { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--deep); }
.prop-card__cond { font-size: .67rem; color: var(--ink-3); margin-top: .1rem; }

/* 14. CARDS GRID */
.props-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.props-grid__empty {
  grid-column: 1/-1; text-align: center; padding: 4rem 1rem; color: var(--ink-3);
}
.props-grid__empty svg { width: 3rem; height: 3rem; margin: 0 auto 1rem; opacity: .25; }
.props-grid__empty p { font-family: var(--serif); font-size: 1.2rem; color: var(--ink-2); }
.props-grid__empty small { font-size: .85rem; display: block; margin-top: .35rem; }

/* 15. STATS BAND */
.stats { background: var(--deep); color: #fff; padding: 3.5rem 1.25rem; }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
.stat { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.1rem; }
.stat__val { font-family: var(--serif); font-size: clamp(2rem,6vw,3.5rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat__label { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .45rem; letter-spacing: .07em; text-transform: uppercase; }

/* 16. CTA BAND */
.cta-band { background: var(--green); color: #fff; padding: 4rem 1.25rem; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 300; line-height: 1.05; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { margin: .85rem auto 2rem; max-width: 34rem; opacity: .78; font-size: .95rem; }
.cta-band__btns { display: flex; flex-direction: column; gap: .75rem; align-items: center; }
.cta-band__btns .btn { width: 100%; max-width: 20rem; }

/* 17. FOOTER */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.55); padding: 3.5rem 1.25rem 2rem; font-size: .82rem; }
.footer__brand { margin-bottom: 2.5rem; }
.footer__logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer__logo-img { height: 2.6rem; width: auto; opacity: .92; }
.footer__blurb { color: rgba(255,255,255,.45); line-height: 1.7; max-width: 28rem; }
.footer__address { margin-top: 1.1rem; font-style: normal; }
.footer__address a { color: rgba(255,255,255,.6); display: block; margin-top: .3rem; transition: color .2s; }
.footer__address a:hover { color: var(--gold); }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; margin-bottom: 2.5rem; }
.footer__col-title { font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .85rem; }
.footer__col li + li { margin-top: .55rem; }
.footer__col a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; color: rgba(255,255,255,.3); font-size: .76rem; }
.footer__bottom-wapp { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.5); transition: color .2s; font-weight: 600; }
.footer__bottom-wapp:hover { color: var(--gold); }
.footer__bottom-wapp svg { width: .9rem; height: .9rem; }

/* 18. SPINNER */
.spinner { width: 2rem; height: 2rem; border: 2.5px solid var(--line); border-top-color: var(--green); border-radius: 50%; animation: spin .65s linear infinite; margin: 3.5rem auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 19. TOAST */
.toast {
  position: fixed; bottom: 5rem; right: 1.25rem; z-index: 800;
  background: var(--deep); color: #fff; border-radius: var(--r-md);
  padding: .85rem 1.2rem; font-size: .84rem; font-weight: 500;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: .55rem;
  max-width: 300px; transform: translateY(10px); opacity: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .35s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.ok  { border-left: 3px solid var(--gold); }
.toast.err { border-left: 3px solid #e53e3e; }

/* 20. LOAD MORE */
.load-more-wrap { text-align: center; padding: 2rem 0; }
.load-more-wrap .btn { min-width: 12rem; }

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS — additive (mobile-first)
═══════════════════════════════════════════════════════════ */

/* 480px — small phones wider */
@media (min-width: 480px) {
  .navbar__wapp-text { display: inline; }
  .wapp-fab__label { display: inline; }
  .wapp-fab { padding: .85rem 1.5rem; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .hero__actions .btn { width: auto; }
  .cta-band__btns .btn { width: auto; }
  .cta-band__btns { flex-direction: row; justify-content: center; }
  .filter-panel__actions { flex-direction: row; }
  .filter-panel__actions .btn-gold { flex: 1; }
}

/* 640px */
@media (min-width: 640px) {
  :root { --nav-h: 4rem; }
  .container { padding: 0 1.75rem; }
  .navbar__inner { padding: 0 1.75rem; }
  .navbar__logo-img { height: 2.8rem; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-panel__toggle { display: none; } /* always visible on 640+ */
  .filter-panel__body { max-height: none !important; opacity: 1 !important; }
  .filter-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* 768px — tablet */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .navbar__inner { padding: 0 2rem; }
  .navbar__nav { display: flex; }
  .navbar__burger { display: none; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 2.5rem 2rem 3rem; }
  .hero__glass { display: block; }
  .hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
  .hero__left { flex: 1; max-width: 50rem; }
  .filter-panel__grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1024px — laptop */
@media (min-width: 1024px) {
  .props-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-panel__grid { grid-template-columns: repeat(5, 1fr); }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
  .footer__brand { margin-bottom: 0; }
  .footer__main { display: grid; grid-template-columns: 1.6fr 2fr; gap: 4rem; }
}

/* 1280px — desktop */
@media (min-width: 1280px) {
  .container { padding: 0 2.5rem; }
  .navbar__inner { padding: 0 2.5rem; }
  .stats { padding: 5rem 2.5rem; }
  .hero { padding: 3rem 2.5rem 3.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .hero__scroll-line { animation: none; }
}
