:root {
  color-scheme: dark;
  --obsidian: #0a0a0a;
  --charcoal: #171717;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d4af37;
  --amber: #f59e0b;
  --text-soft: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.5);
}

/* Local Tailwind-style utility fallback for file:// and offline rendering. */
.absolute { position: absolute; }
.fixed { position: fixed; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.mx-auto { margin-inline: auto; }
.mb-5 { margin-bottom: 1.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.h-11 { height: 2.75rem; }
.w-11 { width: 2.75rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.place-items-center { place-items: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.rounded { border-radius: 0.25rem; }
.p-4 { padding: 1rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-5 { padding-block: 1.25rem; }
.py-12 { padding-block: 3rem; }
.py-14 { padding-block: 3.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pt-28 { padding-top: 7rem; }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-display { font-family: "Playfair Display", Georgia, serif; }
.uppercase { text-transform: uppercase; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-tight { line-height: 1.25; }
.transition { transition-property: color, background-color, border-color, opacity, box-shadow, transform; transition-duration: 180ms; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.text-black { color: #000; }
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.bg-black { background-color: #000; }
.bg-gold { background-color: var(--gold); }
.bg-obsidian { background-color: var(--obsidian); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.56), var(--obsidian)); }
[class~="min-h-[calc(100vh-7rem)]"] { min-height: calc(100vh - 7rem); }
[class~="tracking-[0.22em]"] { letter-spacing: 0.22em; }
[class~="tracking-[0.28em]"] { letter-spacing: 0.28em; }
[class~="text-white/45"] { color: rgba(255, 255, 255, 0.45); }
[class~="text-white/58"] { color: rgba(255, 255, 255, 0.58); }
[class~="text-white/68"] { color: rgba(255, 255, 255, 0.68); }
[class~="text-white/76"] { color: rgba(255, 255, 255, 0.76); }
[class~="text-white/82"] { color: rgba(255, 255, 255, 0.82); }
[class~="bg-black/35"] { background-color: rgba(0, 0, 0, 0.35); }
[class~="bg-black/45"] { background-color: rgba(0, 0, 0, 0.45); }
[class~="bg-black/95"] { background-color: rgba(0, 0, 0, 0.95); }
[class~="bg-gold/10"] { background-color: rgba(212, 175, 55, 0.1); }
[class~="bg-charcoal/70"] { background-color: rgba(23, 23, 23, 0.7); }
[class~="bg-charcoal/80"] { background-color: rgba(23, 23, 23, 0.8); }
[class~="border-white/10"] { border-color: rgba(255, 255, 255, 0.1); }
[class~="border-gold/35"] { border-color: rgba(212, 175, 55, 0.35); }
[class~="border-gold/45"] { border-color: rgba(212, 175, 55, 0.45); }
[class~="border-gold/60"] { border-color: rgba(212, 175, 55, 0.6); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.hover\:bg-amberlux:hover { background-color: var(--amber); }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-6 { padding-inline: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.08; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:px-8 { padding-inline: 2rem; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1.02; }
  [class~="lg:grid-cols-[0.8fr_1.2fr]"] { grid-template-columns: 0.8fr 1.2fr; }
  [class~="lg:grid-cols-[0.9fr_1.1fr]"] { grid-template-columns: 0.9fr 1.1fr; }
  [class~="lg:grid-cols-[0.95fr_1.05fr]"] { grid-template-columns: 0.95fr 1.05fr; }
  [class~="lg:grid-cols-[1.25fr_1fr_1fr_1fr_auto]"] { grid-template-columns: 1.25fr 1fr 1fr 1fr auto; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: #080808;
}

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

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

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
select,
textarea {
  min-width: 0;
}

.nav-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 1rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.08);
}

.icon-button,
.social-link {
  display: inline-grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button svg,
.social-link svg,
.service-icon svg,
.search-button svg,
.property-search svg,
.contact-card svg,
.whatsapp-float svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover,
.icon-button:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.14);
  transform: translateY(-2px);
}

.hero {
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(110deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.34) 48%, rgba(10, 10, 10, 0.86)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2400&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, transparent 32%, rgba(212, 175, 55, 0.08) 48%, transparent 63%, transparent 100%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.12), transparent 34%);
  opacity: 0.8;
  animation: sheenMove 9s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes sheenMove {
  from {
    transform: translateX(-2%);
    opacity: 0.45;
  }

  to {
    transform: translateX(2%);
    opacity: 0.85;
  }
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  border: 1px solid rgba(212, 175, 55, 0.75);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #050505;
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.16);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  backdrop-filter: blur(14px);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.12);
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.field-wrap {
  display: grid;
  gap: 0.45rem;
}

.field-wrap span,
.lead-form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-wrap input,
.field-wrap select,
.lead-form input,
.lead-form select,
.lead-form textarea,
.property-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.45rem;
  background: rgba(6, 6, 6, 0.72);
  color: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-wrap input,
.field-wrap select {
  min-height: 3.25rem;
  padding: 0 0.95rem;
}

.field-wrap input::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder,
.property-search input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field-wrap input:focus,
.field-wrap select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.property-search input:focus {
  border-color: rgba(212, 175, 55, 0.75);
  background: rgba(6, 6, 6, 0.88);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.search-button {
  display: grid;
  min-height: 3.25rem;
  place-items: center;
  align-self: end;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 0.45rem;
  background: var(--gold);
  color: #050505;
  transition: transform 180ms ease, background 180ms ease;
}

.search-button:hover,
.search-button:focus-visible {
  background: var(--amber);
  transform: translateY(-2px);
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.2rem;
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stat-card strong::after {
  content: "+";
}

.stat-card:last-child strong::before {
  content: "₹";
}

.stat-card span {
  margin-top: 0.5rem;
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.section-padding {
  padding: clamp(4.75rem, 8vw, 7.5rem) 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.8rem;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.15rem);
  font-weight: 700;
  line-height: 1.08;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 0.75rem;
  background: #111;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.experience-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(14rem, calc(100% - 2.4rem));
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 0.6rem;
  background: rgba(10, 10, 10, 0.74);
  padding: 1rem;
  backdrop-filter: blur(15px);
}

.experience-badge strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.3rem;
  line-height: 0.95;
}

.experience-badge span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-mini-card,
.service-card,
.why-card,
.property-card,
.testimonial-card,
.insight-card,
.faq-item,
.lead-form,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.about-mini-card {
  padding: 1.2rem;
}

.about-mini-card span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.about-mini-card h3,
.why-card h3,
.service-card h3,
.timeline-item h3,
.property-card h3,
.insight-card h3 {
  margin-top: 0.55rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.28;
}

.about-mini-card p,
.why-card p,
.service-card p,
.timeline-item p,
.property-card p {
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: ;
}

.trust-pill,
.property-chip {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card,
.why-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before,
.why-card::before,
.property-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.service-card:focus-within,
.why-card:hover,
.why-card:focus-within,
.property-card:hover,
.property-card:focus-within {
  border-color: rgba(212, 175, 55, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  transform: translateY(-5px);
}

.service-card:hover::before,
.why-card:hover::before,
.property-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 0.55rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.property-search {
  display: flex;
  width: min(100%, 26rem);
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.45rem 0.75rem;
  color: var(--gold);
}

.property-search input {
  border: 0;
  background: transparent;
  padding: 0.7rem 0;
  color: #fff;
  box-shadow: none;
}

.property-search input:focus {
  background: transparent;
  box-shadow: none;
}

.filter-tab {
  flex: 0 0 auto;
  min-height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-tab:hover,
.filter-tab:focus-visible,
.filter-tab.active {
  border-color: rgba(212, 175, 55, 0.62);
  background: rgba(212, 175, 55, 0.14);
  color: #fff;
}

.property-card {
  position: relative;
  overflow: hidden;
}

.property-card img {
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover;
}

.property-card-body {
  padding: 1.25rem;
}

.property-meta {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.property-meta span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.22);
  padding: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.property-price {
  color: var(--gold);
  font-size: 1.32rem;
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
}

.timeline::before {
  /* position: absolute;
  top: 0;
  bottom: 0;
  left: 1.45rem;
  width: 1px;
  content: "";
  background: linear-gradient(var(--gold), rgba(212, 175, 55, 0.05));
*/
 content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;

    width: 4px;
    background: #d4af37;

    transform: translateX(-50%);
  } 

.timeline-item {
  position: relative;
  margin-left: 3.35rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.25rem;
}

.timeline-item span {
  position: absolute;
  top: 1.1rem;
  left: -1.35rem;
  display: grid;
  width: 4.9rem;
  height: 4.9rem;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  background: #101010;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500; 
}

.testimonial-shell {
  overflow: hidden;
}

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

.testimonial-card {
  flex: 0 0 100%;
  padding: 1.35rem;
}

.testimonial-head {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.testimonial-head img {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-head h3 {
  color: #fff;
  font-weight: 900;
}

.testimonial-head p,
.testimonial-card blockquote {
  color: var(--text-soft);
}

.testimonial-card blockquote {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.75;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.14em;
}

.insight-card {
  overflow: hidden;
}

.insight-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.insight-card div {
  padding: 1rem;
}

.insight-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight-card a {
  margin-top: 1rem;
  display: inline-flex;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  color: #fff;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

.faq-item button span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-content p {
  overflow: hidden;
  padding: 0 1.2rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-content p {
  padding-bottom: 1.2rem;
}

.faq-item.active button span::after {
  transform: translateY(-50%) rotate(0deg);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(212, 175, 55, 0.2);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.035)),
    url("https://images.unsplash.com/photo-1605146769289-440113cc3d00?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.66);
}

.cta-band > div {
  position: relative;
  z-index: 1;
}

.lead-form {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.lead-form label {
  display: grid;
  gap: 0.55rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 0.85rem 0.9rem;
}

.lead-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(212, 175, 55, 0.48);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.contact-card span {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.45rem;
  color: var(--gold);
}

.contact-card strong {
  color: #fff;
}

.contact-card small,
.footer-title ~ a,
footer p {
  color: var(--text-muted);
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 18rem;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.95);
}

.footer-title {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 900;
}

.footer-title ~ a {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.footer-title ~ a:hover,
.footer-title ~ a:focus-visible {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #22c55e;
  color: #06120b;
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 1.6rem;
  height: 1.6rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 54px rgba(34, 197, 94, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex-basis: 50%;
  }

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

  .timeline::before {
    left: 50%;
  }

  .timeline-item {
    margin-left: 0;
  }

  .timeline-item:nth-child(odd) {
    margin-right: 2.2rem;
  }

  .timeline-item:nth-child(even) {
    margin-left: 2.2rem;
  }

  .timeline-item span {
    left: auto;
    right: -3.7rem;
  }

  .timeline-item:nth-child(even) span {
    right: auto;
    left: -3.7rem;
  }
}

@media (min-width: 1180px) {
  .testimonial-card {
    flex-basis: 33.333%;
  }
}

@media (max-width: 640px) {
  main {
    overflow-x: hidden;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero [class~="max-w-4xl"] {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .hero .eyebrow,
  .hero p[class*="tracking"] {
    max-width: 100%;
    white-space: normal;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    max-width: 100%;
  }

  .property-meta {
    grid-template-columns: 1fr;
  }

  .image-frame,
  .image-frame img {
    min-height: 24rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none !important;
  }
}
