:root {
  --ink: #111111;
  --muted: #62605c;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #ded8ce;
  --accent: #9f6b32;
  --accent-dark: #6f431a;
  --green: #1f7a4d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding-block: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 4vw, 56px) 34px;
  overflow: hidden;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 140px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c993;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.search-panel button,
.contact-actions a,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: #ffffff;
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.search-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 1px;
  max-width: 1120px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.search-panel label {
  display: grid;
  gap: 7px;
  padding: 16px;
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel select,
.search-panel input {
  width: 100%;
  min-height: 34px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  text-transform: none;
  outline: 0;
}

.search-panel button {
  border: 0;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--ink);
}

.stats div {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 24px;
  background: #1c1b19;
  color: #ffffff;
}

.stats strong {
  font-size: 25px;
}

.stats span {
  color: rgba(255, 255, 255, 0.68);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head a {
  color: var(--accent-dark);
  font-weight: 800;
  white-space: nowrap;
}

.property-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.property-card {
  display: grid;
  min-width: 0;
  background: var(--surface);
}

.property-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.property-card div {
  padding: 22px;
}

.property-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-card p,
.service-grid p,
.about-band p,
.contact-copy p {
  color: var(--muted);
}

.property-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.property-meta div {
  min-width: 0;
  padding: 0;
}

.property-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-meta dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.property-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.property-link.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.empty-state {
  display: none;
  padding: 18px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 700;
}

.empty-state.is-visible {
  display: block;
}

.services {
  background: #ffffff;
}

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

.service-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #ffffff;
}

.about-band p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: #ede7dc;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  justify-content: flex-start;
  border-color: var(--line);
  background: #ffffff;
}

.contact-actions a:first-child {
  background: var(--green);
  color: #ffffff;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 52px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 14px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 100svh;
    padding-top: 96px;
  }

  .hero-content {
    padding-bottom: 260px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .stats,
  .property-grid,
  .service-grid,
  .about-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head a {
    display: inline-flex;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 160px;
    overflow-wrap: anywhere;
    line-height: 1.1;
  }

  h1 {
    font-size: 40px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stats div,
  .property-card div,
  .service-grid article {
    padding: 18px;
  }

  footer {
    display: grid;
  }
}
