/* ═══════════════════════════════════════════════════════════════
   DHARA FARMS · BESPOKE LUXURY NATURE ESTATE DESIGN SYSTEM
   Official Logo Palette (Deep Forest Green · Olive Leaf Sprout · Ivory Linen)
   Fully Managed Farm Plots · Kanakapura, Bengaluru
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Official Logo Color Palette */
  --c-forest: #1A382A;            /* Deep Sanctuary Forest Green (Logo text) */
  --c-forest-dark: #10241A;       /* Deep Night Atmospheric Surfaces */
  --c-forest-deep: #0B1C14;       /* Deep Grounding Base */
  --c-forest-card: #152E22;       /* Elevated dark card */
  --c-forest-elevated: #1F4232;
  
  --c-leaf: #7AA439;              /* Signature Olive Lime Sprout from Logo */
  --c-leaf-bright: #8DB843;       /* Vibrant Sprout Glow & Hover */
  --c-leaf-glow: rgba(122, 164, 57, 0.32);
  --c-leaf-tint: rgba(122, 164, 57, 0.12);
  
  --c-sage: #5D9180;              /* Herbal Eucalyptus Sage from Logo */
  --c-sage-light: #E3EDE8;
  --c-sage-tint: rgba(93, 145, 128, 0.14);
  
  --c-linen: #FAFBF5;             /* Warm Organic Ivory Canvas from Logo */
  --c-linen-card: #FFFFFF;        /* Crisp White Cards */
  --c-linen-alt: #F3F6EC;         /* Soft Meadow Tint */
  --c-border: #D8E4CD;            /* Delicate Green-Tinted Border */
  --c-border-light: #E9EFE3;
  
  --c-ink: #11261B;               /* Deep Forest Ink */
  --c-ink-muted: #3D5548;         /* Medium Forest Slate */
  --c-ink-faint: #6A8574;         /* Subtle Slate */
  --c-white: #FFFFFF;
  --c-gold: #C8A362;
  
  --font-disp: 'Italiana', serif;
  --font-serif: 'Marcellus', serif;
  --font-ui: 'Manrope', sans-serif;
  --font-script: 'WindSong', cursive;
  
  --ease: cubic-bezier(.16, 1, .3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 12px rgba(17, 38, 27, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 38, 27, 0.09);
  --shadow-lg: 0 24px 54px rgba(17, 38, 27, 0.14);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--c-leaf) var(--c-linen-alt);
}

body {
  background-color: var(--c-linen);
  color: var(--c-ink);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ── Container Utility ── */
.df-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Typography & Section Headers ── */
.df-section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}

.df-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-leaf);
  margin-bottom: 12px;
}

.df-section-eyebrow::before {
  content: "🌿";
  font-size: 12px;
}

.df-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.15;
  color: var(--c-ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.df-section-heading em {
  font-style: italic;
  color: var(--c-leaf);
}

.df-section-desc {
  max-width: 650px;
  margin: 14px 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-ink-muted);
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .df-section-desc {
  margin-left: auto;
  margin-right: auto;
}

.text-center .df-section-eyebrow {
  justify-content: center;
}

.df-body-lead {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.8;
  color: var(--c-ink-muted);
  margin-top: 18px;
}

/* ── Buttons ── */
.df-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.df-btn-primary {
  background: linear-gradient(135deg, var(--c-leaf) 0%, var(--c-leaf-bright) 100%);
  color: var(--c-white);
  box-shadow: 0 8px 24px var(--c-leaf-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.df-btn-primary:hover {
  background: linear-gradient(135deg, var(--c-leaf-bright) 0%, #9BC44C 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(122, 164, 57, 0.45);
  color: var(--c-white);
}

.df-btn-outline {
  border: 1.5px solid var(--c-leaf);
  color: var(--c-forest);
  background: transparent;
}

.df-btn-outline:hover {
  background: var(--c-leaf);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--c-leaf-glow);
}

.df-btn-wa {
  background: #25D366;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.df-btn-wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  color: var(--c-white);
}

.df-btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

.df-btn-lg {
  padding: 16px 34px;
  font-size: 12.5px;
}

.df-btn-full {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   1. MODERN FLOATING NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.df-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(8, 20, 13, 0.78) 0%, rgba(8, 20, 13, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-navbar.scrolled {
  padding: 14px 0;
  background: rgba(250, 251, 245, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(17, 38, 27, 0.08);
  border-bottom: 1px solid var(--c-border);
}

/* Light text on transparent hero navbar */
.df-navbar:not(.scrolled) .df-brand-title {
  color: var(--c-linen);
}

.df-navbar:not(.scrolled) .df-nav-link {
  color: rgba(250, 251, 245, 0.85);
}

.df-navbar:not(.scrolled) .df-nav-link:hover {
  color: #D6F29C;
}

.df-navbar:not(.scrolled) .df-nav-phone {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-linen);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.df-navbar:not(.scrolled) .df-mobile-toggle {
  background: rgba(255, 255, 255, 0.15);
}

.df-navbar:not(.scrolled) .df-mobile-toggle span {
  background: var(--c-linen);
}

.df-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
}

.df-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.df-logo-img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}

.df-brand:hover .df-logo-img {
  transform: scale(1.04);
}

.df-brand-text {
  display: flex;
  flex-direction: column;
}

.df-brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1;
}

.df-brand-tag {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  color: var(--c-leaf);
  font-weight: 700;
  margin-top: 3px;
}

.df-nav-menu {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1040px) {
  .df-nav-menu { display: flex; }
}

.df-nav-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  position: relative;
  padding: 6px 0;
}

.df-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-leaf);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}

.df-nav-link:hover {
  color: var(--c-forest);
}

.df-nav-link:hover::after {
  width: 100%;
}

.df-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.df-nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-forest);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--c-linen-alt);
}

@media (min-width: 1200px) {
  .df-nav-phone { display: inline-flex; }
}

.df-nav-phone:hover {
  background: var(--c-sage-light);
  color: var(--c-forest);
}

.df-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--c-linen-alt);
  justify-content: center;
  align-items: center;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.df-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-forest);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

.df-mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.df-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.df-mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1040px) {
  .df-mobile-toggle { display: none; }
}

/* Mobile Drawer */
.df-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(16, 36, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.df-mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.df-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: var(--c-linen);
  padding: 24px 24px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 36px rgba(0,0,0,0.22);
}

.df-mobile-drawer.is-open .df-drawer-inner {
  transform: translateX(0);
}

.df-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}

.df-drawer-brand {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-forest);
}

.df-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-linen-alt);
  color: var(--c-forest);
  display: grid;
  place-items: center;
  font-size: 15px;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all 0.25s ease;
}

.df-drawer-close:hover {
  background: var(--c-leaf);
  color: var(--c-white);
}

.df-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.df-drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-forest);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--c-border-light);
  transition: all 0.2s ease;
}

.df-drawer-links a small {
  font-family: monospace;
  font-size: 11px;
  color: var(--c-leaf);
  font-weight: 700;
}

.df-drawer-links a:hover,
.df-drawer-links a:active {
  background: var(--c-linen-alt);
  color: var(--c-leaf);
  padding-left: 18px;
}

.df-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}

/* ═══════════════════════════════════════════════════════════════
   2. GRAND HERO SECTION (MICASA CINEMATIC AESTHETIC)
   ═══════════════════════════════════════════════════════════════ */
.df-hero.df-hero-micasa {
  position: relative;
  min-height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad, clamp(20px, 4.5vw, 70px)) clamp(110px, 14vh, 160px);
  background: var(--c-forest-deep);
  overflow: hidden;
}

.df-hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #09130C;
}

.df-hero-media {
  position: absolute;
  inset: -4% 0;
  width: 100%;
  height: 108%;
}

.df-hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroCinematicPan 28s cubic-bezier(0.2, 0.8, 0.2, 1) infinite alternate;
}

@keyframes heroCinematicPan {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -2%, 0); }
}

.df-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 13, 0.65) 0%,
    rgba(8, 20, 13, 0.18) 32%,
    rgba(8, 20, 13, 0.45) 60%,
    rgba(8, 20, 13, 0.94) 100%
  );
}

/* MiCasa Signature Vertical Side Kicker */
.df-hero-side {
  position: absolute;
  top: 50%;
  right: clamp(16px, 2.8vw, 36px);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(250, 251, 245, 0.65);
  z-index: 4;
  pointer-events: none;
}

@media (max-width: 800px) {
  .df-hero-side { display: none; }
}

.df-hero-ui {
  position: relative;
  z-index: 3;
  max-width: 1050px;
  color: var(--c-white);
}

.df-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(10px, 1.05vw, 12px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-leaf-bright);
  margin-bottom: clamp(16px, 2.6vh, 26px);
}

.df-kick-line {
  display: inline-block;
  width: 38px;
  height: 1.5px;
  background: var(--c-leaf-bright);
  box-shadow: 0 0 10px var(--c-leaf-glow);
}

.df-hero-h {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8.2vw, 118px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--c-linen);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.df-hero-line {
  display: block;
  overflow: hidden;
}

.df-hero-line span {
  display: inline-block;
  animation: heroLineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.df-hero-line:nth-child(2) span {
  animation-delay: 0.18s;
}

@keyframes heroLineReveal {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}

.df-hero-h em {
  font-family: var(--font-disp);
  font-style: italic;
  font-weight: 400;
  color: #D6F29C;
  letter-spacing: 0.02em;
}

.df-hero-sub {
  margin-top: clamp(16px, 2.4vh, 28px);
  max-width: 720px;
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.75;
  color: rgba(250, 251, 245, 0.88);
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.df-hero-action-row {
  margin-top: clamp(28px, 4vh, 42px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.df-btn-drone {
  background: rgba(16, 36, 26, 0.7);
  border: 1px solid var(--c-leaf-bright);
  color: #EBF8DC;
  backdrop-filter: blur(10px);
}

.df-btn-drone:hover {
  background: var(--c-leaf-bright);
  color: var(--c-forest-deep);
  box-shadow: 0 0 24px rgba(141, 184, 67, 0.6);
  transform: translateY(-2px);
}

/* MiCasa Signature Foot Bar with running line */
.df-hero-foot {
  position: absolute;
  left: var(--pad, clamp(20px, 4.5vw, 70px));
  right: var(--pad, clamp(20px, 4.5vw, 70px));
  bottom: clamp(18px, 3vh, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 251, 245, 0.62);
  z-index: 4;
}

.df-foot-ln {
  flex: 1;
  height: 1px;
  background: rgba(250, 251, 245, 0.22);
  position: relative;
  overflow: hidden;
}

.df-foot-ln::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 35%;
  height: 1.5px;
  background: var(--c-leaf-bright);
  animation: footLineSweep 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes footLineSweep {
  to { left: 105%; }
}

@media (max-width: 640px) {
  .df-hero-foot .df-foot-item:last-child { display: none; }
}

/* Floating WhatsApp / Experience Orb (MiCasa Inspired) */
.df-fab-orb {
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3.5vh, 38px);
  z-index: 1080;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}

.df-fab-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: orbSpin 18s linear infinite;
  pointer-events: none;
}

.df-fab-ring text {
  font-family: var(--font-ui);
  font-size: 8.6px;
  letter-spacing: 0.32em;
  fill: #E3EDE8;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes orbSpin {
  to { transform: rotate(360deg); }
}

.df-fab-core {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--c-leaf-bright);
  display: grid;
  place-items: center;
  background: rgba(16, 36, 26, 0.82);
  backdrop-filter: blur(10px);
  color: var(--c-leaf-bright);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px var(--c-leaf-glow);
  transition: all 0.35s ease;
}

.df-fab-orb:hover .df-fab-core {
  background: var(--c-leaf-bright);
  color: var(--c-forest-deep);
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(122, 164, 57, 0.6);
}

@media (max-width: 640px) {
  .df-fab-orb { width: 78px; height: 78px; }
  .df-fab-core { width: 42px; height: 42px; }
}

/* Stats Ribbon */
.df-stats-ribbon {
  position: relative;
  z-index: 3;
  margin-top: 40px;
  background: rgba(250, 251, 245, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 0;
  display: none; /* Embedded cleanly inside overview to avoid viewport clutter, like MiCasa */
}

.df-ribbon-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.df-ribbon-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.df-ribbon-num {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1.1;
}

.df-ribbon-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-ink-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.df-ribbon-sep {
  width: 1px;
  height: 38px;
  background: var(--c-border);
}

@media (max-width: 768px) {
  .df-ribbon-sep { display: none; }
  .df-ribbon-item { min-width: 45%; }
}

/* ═══════════════════════════════════════════════════════════════
   3. ESTATE OVERVIEW & WHY MANAGED FARMLAND
   ═══════════════════════════════════════════════════════════════ */
.df-overview {
  background: var(--c-linen);
}

.df-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .df-overview-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
  }
}

.df-overview-media {
  position: relative;
  min-height: 480px;
}

.df-media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.df-media-card.main-shot {
  width: 82%;
  aspect-ratio: 4/3;
}

.df-media-card.main-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.df-media-card.sub-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  aspect-ratio: 4/3;
  border: 4px solid var(--c-linen);
  box-shadow: var(--shadow-lg);
}

.df-media-card.sub-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.df-experience-badge {
  position: absolute;
  left: 30px;
  bottom: 20px;
  background: var(--c-forest);
  color: var(--c-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-leaf);
}

.df-experience-badge strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--c-leaf-bright);
}

.df-experience-badge span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-linen);
}

.df-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.df-pillar-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.df-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-leaf);
  box-shadow: var(--shadow-sm);
}

.df-pillar-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.df-pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--c-forest);
  margin-bottom: 6px;
}

.df-pillar-card p {
  font-size: 13px;
  color: var(--c-ink-muted);
  line-height: 1.6;
}

.df-overview-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* MiCasa In Numbers / Estate Metrics Highlight Cards */
.df-in-numbers-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding-top: 48px;
  border-top: 1px solid var(--c-border);
}

.df-in-num-card {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}

.df-in-num-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-leaf);
  box-shadow: 0 16px 36px rgba(17, 38, 27, 0.1);
}

.df-num-glyph {
  font-size: 28px;
  margin-bottom: 12px;
}

.df-num-val {
  font-family: var(--font-disp);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1;
  font-weight: 400;
  color: var(--c-forest);
  margin-bottom: 6px;
}

.df-num-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-leaf);
  margin-bottom: 10px;
}

.df-in-num-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   3B. CINEMATIC DRONE FLYOVER (SCROLLYTELLING INTERACTIVE SECTION)
   ═══════════════════════════════════════════════════════════════ */
.df-drone-section {
  position: relative;
  background: var(--c-forest-deep);
  color: var(--c-white);
  /* 300vh total height creates smooth multi-stage scroll journey */
  height: 300vh;
  margin: 0;
  box-sizing: border-box;
}

.df-drone-sticky-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-drone-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #08140D;
}

/* Drone Views / Layers */
.df-drone-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  pointer-events: none;
}

.df-drone-layer.active {
  opacity: 1;
  pointer-events: auto;
}

.df-drone-cam-img,
.df-drone-resort-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  transform: scale(1.02);
  transition: transform 0.1s linear, filter 0.3s ease;
}

/* HUD Overlay Styling */
.df-drone-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 2.5vw, 32px);
  background: radial-gradient(circle at center, transparent 40%, rgba(8, 20, 13, 0.45) 90%);
}

.df-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.df-hud-telemetry {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.df-hud-rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 36, 26, 0.85);
  border: 1px solid rgba(220, 53, 69, 0.6);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FF5A5F;
  backdrop-filter: blur(8px);
}

.df-hud-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5A5F;
  animation: hudBlink 1.4s infinite ease-in-out;
}

@keyframes hudBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.75); }
}

.df-hud-chip {
  background: rgba(16, 36, 26, 0.75);
  border: 1px solid rgba(122, 164, 57, 0.35);
  color: #E6F3DB;
  font-family: monospace;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
}

.df-hud-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.df-hud-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 56, 42, 0.85);
  border: 1px solid var(--c-leaf);
  color: var(--c-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.df-hud-btn:hover {
  background: var(--c-leaf);
  color: var(--c-white);
  box-shadow: 0 0 16px rgba(122, 164, 57, 0.5);
}

.df-hud-badge {
  background: rgba(250, 251, 245, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--c-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

/* Crosshair & Gimbal Target */
.df-drone-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.df-ch-ring {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(141, 184, 67, 0.7);
  border-radius: 50%;
}

.df-ch-h-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 184, 67, 0.8), transparent);
}

.df-ch-v-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(141, 184, 67, 0.8), transparent);
}

.df-ch-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-leaf-bright);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--c-leaf-bright);
}

.df-ch-tag {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--c-leaf-bright);
  white-space: nowrap;
}

/* POI Radar Pins */
.df-drone-pois {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.df-drone-poi {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.df-drone-poi:hover {
  transform: translate(-50%, -50%) scale(1.15);
  z-index: 20;
}

.df-poi-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-leaf-bright);
  transform: translate(-50%, -50%);
  animation: poiPulse 2.4s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

@keyframes poiPulse {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.df-poi-pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-forest);
  border: 2px solid var(--c-leaf-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 11px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), 0 0 12px var(--c-leaf-glow);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.df-drone-poi:hover .df-poi-pin {
  background: var(--c-leaf-bright);
  color: var(--c-forest-deep);
  border-color: var(--c-white);
}

.df-poi-card {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: rgba(16, 36, 26, 0.94);
  border: 1px solid var(--c-leaf);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.df-drone-poi:hover .df-poi-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.df-poi-card small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-leaf-bright);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.df-poi-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: 6px;
}

.df-poi-card p {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(250, 251, 245, 0.85);
  margin: 0;
}

/* Bottom Flight Status */
.df-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.df-flight-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 36, 26, 0.85);
  border: 1px solid rgba(122, 164, 57, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.df-fi-label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-leaf-bright);
  font-weight: 600;
}

.df-fi-bar {
  width: 140px;
  height: 6px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  overflow: hidden;
}

.df-fi-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-leaf), var(--c-leaf-bright));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.df-fi-percent {
  font-family: monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-white);
  min-width: 38px;
}

.df-drone-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 251, 245, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-white);
}

.df-scroll-arrow-anim {
  font-size: 13px;
  animation: bounceDown 1.8s infinite ease-in-out;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Scrollytelling Story Overlays */
.df-drone-stories {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;
}

.df-drone-story-step {
  position: absolute;
  left: clamp(24px, 5vw, 70px);
  bottom: clamp(60px, 12vh, 120px);
  max-width: 460px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.df-drone-story-step.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.df-story-panel {
  background: rgba(16, 36, 26, 0.88);
  border: 1px solid rgba(122, 164, 57, 0.45);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.df-story-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-leaf-bright);
  margin-bottom: 8px;
}

.df-story-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.22;
  color: var(--c-white);
  margin-bottom: 12px;
}

.df-story-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(250, 251, 245, 0.9);
  margin-bottom: 16px;
}

.df-story-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--c-linen);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.df-story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.df-leaf-icon {
  color: var(--c-leaf-bright);
  font-style: normal;
}

.df-story-action {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .df-drone-hud {
    padding: 14px;
  }
  .df-hud-chip:nth-child(n+3) {
    display: none;
  }
  .df-drone-crosshair {
    width: 90px;
    height: 90px;
  }
  .df-drone-story-step {
    left: 16px;
    right: 16px;
    max-width: 100%;
    bottom: 70px;
  }
  .df-story-panel {
    padding: 18px 20px;
  }
  .df-drone-scroll-hint {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   4. THE THREE SIGNATURE GROVES (PROPERTY SHOWCASE)
   ═══════════════════════════════════════════════════════════════ */
.df-groves-section {
  background: var(--c-linen-alt);
}

.df-tab-nav {
  display: inline-flex;
  gap: 10px;
  background: var(--c-linen-card);
  padding: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  margin-top: 36px;
  max-width: 100%;
  overflow-x: auto;
}

.df-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink-muted);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.df-tab-num {
  font-family: var(--font-disp);
  font-size: 15px;
  color: var(--c-leaf);
}

.df-tab-btn:hover {
  color: var(--c-forest);
}

.df-tab-btn.is-active {
  background: var(--c-forest);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(26, 56, 42, 0.25);
}

.df-tab-btn.is-active .df-tab-num {
  color: var(--c-leaf-bright);
}

.df-grove-cards-wrap {
  margin-top: 48px;
}

.df-grove-card {
  display: none;
  grid-template-columns: 1fr;
  gap: 40px;
  background: var(--c-linen-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 48px);
  animation: fadeIn 0.45s var(--ease);
}

.df-grove-card.is-active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 992px) {
  .df-grove-card {
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
  }
}

.df-grove-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.df-grove-plan {
  position: relative;
  background: var(--c-linen-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 16px;
}

.df-grove-plan img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.df-grove-plan:hover img {
  transform: scale(1.02);
}

.df-plan-badge, .df-render-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16, 36, 26, 0.85);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.df-grove-render {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--c-border);
}

.df-grove-render img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.df-grove-render:hover img {
  transform: scale(1.04);
}

.df-grove-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-leaf);
  margin-bottom: 8px;
}

.df-grove-header h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--c-forest);
  font-weight: 400;
}

.df-grove-header h3 em {
  font-style: italic;
  color: var(--c-leaf);
}

.df-grove-lead {
  font-size: 15px;
  color: var(--c-ink-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.df-grove-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 20px;
  background: var(--c-linen-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.df-spec-box small {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--c-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.df-spec-box strong {
  font-size: 14px;
  color: var(--c-forest);
  font-weight: 700;
  margin-top: 4px;
  display: block;
}

.df-grove-species-list {
  margin-bottom: 32px;
}

.df-sp-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-forest);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.df-sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.df-sp-tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--c-linen);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  color: var(--c-ink-muted);
}

.df-sp-tag:hover {
  border-color: var(--c-leaf);
  color: var(--c-forest);
}

.df-grove-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   5. BOTANICAL & TIMBER ASSETS (CATALOG)
   ═══════════════════════════════════════════════════════════════ */
.df-botanical-section {
  background: var(--c-linen);
}

.df-section-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .df-section-header:not(.text-center) {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.df-bot-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.df-filter-pill {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--c-linen-card);
  color: var(--c-ink-muted);
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.df-filter-pill:hover {
  border-color: var(--c-leaf);
  color: var(--c-forest);
}

.df-filter-pill.is-active {
  background: var(--c-leaf);
  color: var(--c-white);
  border-color: var(--c-leaf);
  box-shadow: 0 4px 16px var(--c-leaf-glow);
}

.df-species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.df-species-card {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}

.df-species-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-leaf);
  box-shadow: var(--shadow-md);
}

.df-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.df-cat-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-leaf);
  background: var(--c-linen-alt);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.df-card-icon {
  font-size: 22px;
}

.df-species-card h4 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--c-forest);
  font-weight: 400;
}

.df-bot-latin {
  font-size: 12.5px;
  font-style: italic;
  color: var(--c-ink-faint);
  margin: 4px 0 12px;
}

.df-species-card p {
  font-size: 13.5px;
  color: var(--c-ink-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.df-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--c-border-light);
  font-size: 11.5px;
  color: var(--c-ink-muted);
  font-weight: 600;
}

.df-yield-tag {
  color: var(--c-leaf);
  background: rgba(122, 164, 57, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   6. THE LIVING MASTER PLAN
   ═══════════════════════════════════════════════════════════════ */
.df-masterplan-section {
  background: var(--c-linen-alt);
}

.df-mp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 992px) {
  .df-mp-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
  }
}

.df-mp-features-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.df-mp-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 16px;
  background: var(--c-linen-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.df-mp-dot-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-leaf);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.df-mp-feature strong {
  display: block;
  font-size: 13.5px;
  color: var(--c-forest);
}

.df-mp-feature small {
  display: block;
  font-size: 11.5px;
  color: var(--c-ink-muted);
  margin-top: 2px;
}

.df-mp-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.df-mp-canvas-card {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.df-canvas-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.df-estate-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-forest);
}

.df-canvas-badges {
  display: flex;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
}

.df-badge-green { color: var(--c-leaf); }
.df-badge-gold { color: var(--c-gold); }

.df-mp-viewport {
  position: relative;
  background: #EBF1E4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.df-mp-viewport img {
  width: 100%;
  height: auto;
  display: block;
}

.df-hotspot-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-leaf);
  color: var(--c-white);
  border: 2px solid var(--c-white);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s var(--ease);
  z-index: 5;
}

.df-hotspot-pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--c-leaf);
  opacity: 0.6;
  animation: pinPulse 2s infinite ease-out;
}

@keyframes pinPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.df-hotspot-pin:hover {
  transform: translate(-50%, -50%) scale(1.25);
  background: var(--c-forest);
}

.df-hotspot-tooltip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(16, 36, 26, 0.95);
  color: var(--c-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(122, 164, 57, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 10;
}

.df-hotspot-tooltip.is-active {
  opacity: 1;
  transform: none;
}

.df-hotspot-tooltip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-leaf-bright);
}

.df-hotspot-tooltip p {
  font-size: 12px;
  color: rgba(250, 251, 245, 0.85);
  margin-top: 4px;
}

.df-mp-hint {
  font-size: 12px;
  color: var(--c-ink-faint);
  text-align: center;
  margin-top: 14px;
}

/* Masterplan Fullscreen Modal */
.df-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 28, 20, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.df-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.df-modal-box {
  background: var(--c-linen);
  width: 100%;
  max-width: 1180px;
  height: 85vh;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--c-border);
}

.df-modal-box.df-modal-sm {
  max-width: 600px;
  height: auto;
}

.df-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--c-forest);
  color: var(--c-white);
  font-family: var(--font-serif);
  font-size: 16px;
}

.df-modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.df-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--c-white);
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.df-modal-close:hover {
  background: var(--c-leaf);
}

.df-modal-body {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  background: #2D3A31;
}

.df-pan-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transform-origin: center center;
  transition: transform 0.15s ease-out;
}

.df-pan-wrapper img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════
   7. RESORT & ECO AMENITIES
   ═══════════════════════════════════════════════════════════════ */
.df-amenities-section {
  background: var(--c-linen);
}

.df-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.df-amenity-card {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

.df-amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-leaf);
  box-shadow: var(--shadow-md);
}

.df-amenity-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.df-amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.df-amenity-card:hover .df-amenity-img img {
  transform: scale(1.06);
}

.df-amenity-content {
  padding: 22px;
}

.df-amenity-content h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--c-forest);
  margin-bottom: 8px;
}

.df-amenity-content p {
  font-size: 13.5px;
  color: var(--c-ink-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   8. SANCTUARY GALLERY (MASONRY & LIGHTBOX)
   ═══════════════════════════════════════════════════════════════ */
.df-gallery-section {
  background: var(--c-linen-alt);
}

.df-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.df-gallery-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--c-border);
}

.df-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.df-gallery-tile:hover img {
  transform: scale(1.08);
}

.df-tile-zoom {
  position: absolute;
  inset: 0;
  background: rgba(16, 36, 26, 0.45);
  display: grid;
  place-items: center;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.df-gallery-tile:hover .df-tile-zoom {
  opacity: 1;
}

/* Lightbox Modal */
.df-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.df-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.df-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 20, 0.94);
  backdrop-filter: blur(10px);
}

.df-lb-box {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-lb-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.df-lb-img-wrap img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
}

.df-lb-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--c-white);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.df-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: var(--c-white);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s;
}

.df-lb-arrow:hover {
  background: var(--c-leaf);
}

.df-lb-prev { left: -56px; }
.df-lb-next { right: -56px; }

@media (max-width: 768px) {
  .df-lb-prev { left: 10px; }
  .df-lb-next { right: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   9. STRATEGIC LOCATION & KANAKAPURA GROWTH CORRIDOR
   ═══════════════════════════════════════════════════════════════ */
.df-location-section {
  background: var(--c-linen);
}

.df-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .df-location-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.df-distance-matrix {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.df-matrix-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}

.df-matrix-time {
  background: var(--c-leaf);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.df-matrix-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--c-forest);
}

.df-matrix-item small {
  display: block;
  font-size: 11.5px;
  color: var(--c-ink-muted);
  margin-top: 3px;
}

.df-loc-btn-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.df-location-map-card {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.df-map-frame {
  height: 380px;
  width: 100%;
}

.df-map-footer {
  padding: 18px 24px;
  background: var(--c-linen-alt);
  border-top: 1px solid var(--c-border);
  font-size: 12.5px;
  color: var(--c-ink-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.df-map-footer strong {
  color: var(--c-forest);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   10. LAND TITLE & SECURITY (TRUST PILLARS)
   ═══════════════════════════════════════════════════════════════ */
.df-trust-section {
  background: var(--c-linen-alt);
}

.df-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.df-trust-card {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.df-trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-leaf);
  box-shadow: var(--shadow-md);
}

.df-trust-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.df-trust-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--c-forest);
  margin-bottom: 10px;
}

.df-trust-card p {
  font-size: 13.5px;
  color: var(--c-ink-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   11. HIGH-CONVERTING SITE VISIT BOOKING
   ═══════════════════════════════════════════════════════════════ */
.df-booking-section {
  background: linear-gradient(180deg, var(--c-forest) 0%, var(--c-forest-dark) 100%);
  color: var(--c-white);
}

.df-booking-section .df-section-heading {
  color: var(--c-white);
}

.df-booking-section .df-body-lead {
  color: rgba(250, 251, 245, 0.85);
}

.df-booking-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .df-booking-wrap {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.df-booking-perks {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.df-perk-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: rgba(250, 251, 245, 0.9);
}

.df-perk-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-leaf);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.df-direct-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.df-direct-box span {
  font-size: 12px;
  color: rgba(250, 251, 245, 0.7);
}

.df-phone-big {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-leaf-bright);
}

/* Booking Form Card */
.df-booking-card {
  background: var(--c-linen);
  color: var(--c-ink);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 1px solid var(--c-border);
}

.df-booking-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--c-forest);
}

.df-card-sub {
  font-size: 13.5px;
  color: var(--c-ink-muted);
  margin-top: 4px;
  margin-bottom: 24px;
}

.df-form-group {
  margin-bottom: 18px;
}

.df-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .df-form-row { grid-template-columns: 1fr; }
}

.df-form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-forest);
  margin-bottom: 6px;
}

.df-form-group input,
.df-form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--c-ink);
  transition: border-color 0.25s;
}

.df-form-group input:focus,
.df-form-group select:focus {
  outline: none;
  border-color: var(--c-leaf);
  box-shadow: 0 0 0 3px var(--c-leaf-glow);
}

.df-slot-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 500px) {
  .df-slot-pills { grid-template-columns: 1fr; }
}

.df-slot-pill {
  position: relative;
  cursor: pointer;
}

.df-slot-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.df-slot-pill span {
  display: block;
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  background: var(--c-white);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-ink-muted);
  transition: all 0.25s;
}

.df-slot-pill input:checked + span {
  background: var(--c-forest);
  color: var(--c-white);
  border-color: var(--c-forest);
}

.df-form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 13px;
  color: var(--c-ink-muted);
}

.df-form-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--c-leaf);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   12. BUYER FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.df-faq-section {
  background: var(--c-linen);
}

.df-faq-list {
  max-width: 860px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.df-faq-item {
  background: var(--c-linen-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.df-faq-item.is-open {
  border-color: var(--c-leaf);
}

.df-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--c-forest);
  font-weight: 400;
  cursor: pointer;
}

.df-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-linen-alt);
  color: var(--c-leaf);
  font-size: 18px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.df-faq-item.is-open .df-faq-icon {
  transform: rotate(45deg);
  background: var(--c-leaf);
  color: var(--c-white);
}

.df-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.df-faq-content p {
  padding: 0 26px 24px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--c-ink-muted);
}

/* ═══════════════════════════════════════════════════════════════
   13. CLEAN LUXURY FOOTER
   ═══════════════════════════════════════════════════════════════ */
.df-footer {
  background: var(--c-forest-dark);
  color: var(--c-linen);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(122, 164, 57, 0.2);
}

.df-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.df-ft-logo {
  height: 48px;
  width: auto;
}

.df-ft-slogan {
  font-size: 13.5px;
  color: rgba(250, 251, 245, 0.7);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.df-developer-tag {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: rgba(250, 251, 245, 0.6);
}

.df-developer-tag strong {
  font-size: 13px;
  color: var(--c-leaf-bright);
}

.df-ft-col h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--c-white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.df-ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.df-ft-col ul a {
  font-size: 13.5px;
  color: rgba(250, 251, 245, 0.75);
}

.df-ft-col ul a:hover {
  color: var(--c-leaf-bright);
}

.df-ft-addr {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(250, 251, 245, 0.7);
  margin-bottom: 16px;
}

.df-ft-phone, .df-ft-wa {
  font-size: 13px;
  margin-bottom: 8px;
}

.df-ft-phone a, .df-ft-wa a {
  color: var(--c-leaf-bright);
  font-weight: 600;
}

.df-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  font-size: 12.5px;
  color: rgba(250, 251, 245, 0.55);
}

.df-ft-legal button {
  color: rgba(250, 251, 245, 0.7);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
}

.df-ft-legal button:hover {
  color: var(--c-leaf-bright);
}

/* ═══════════════════════════════════════════════════════════════
   14. COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (MOBILE, TABLET & COMPACT)
   ═══════════════════════════════════════════════════════════════ */

/* ── Prevent any horizontal overflow ── */
body, html {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ── Global Touch Target & Image scaling ── */
button, a, input, select {
  touch-action: manipulation;
}

/* ── Breakpoint: Tablet & Small Desktops (<= 1040px) ── */
@media (max-width: 1040px) {
  .df-navbar {
    padding: 14px 0;
  }

  .df-nav-actions .df-btn-primary {
    padding: 8px 16px;
    font-size: 11px;
  }

  .df-nav-container {
    padding: 0 18px;
  }
}

/* ── Breakpoint: Tablets & Below (<= 991px) ── */
@media (max-width: 991px) {
  .df-section {
    padding: clamp(56px, 8vh, 88px) 0;
  }

  .df-hero.df-hero-micasa {
    min-height: 100svh;
    padding: 100px 20px 84px;
    justify-content: center;
  }

  .df-hero-h {
    font-size: clamp(38px, 9vw, 56px);
    line-height: 1.08;
  }

  .df-hero-sub {
    font-size: 15px;
    margin-top: 16px;
    line-height: 1.65;
  }

  .df-hero-foot {
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 8.5px;
  }

  /* Overview & Story */
  .df-overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .df-overview-media {
    min-height: 380px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .df-experience-badge {
    left: 16px;
    bottom: 16px;
    padding: 12px 18px;
  }

  .df-experience-badge strong {
    font-size: 16px;
  }

  /* Masterplan Layout */
  .df-mp-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .df-mp-canvas-card {
    padding: 16px;
  }

  /* Location Section */
  .df-location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Booking Wrap */
  .df-booking-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Breakpoint: Standard Mobile Phones (<= 768px) ── */
@media (max-width: 768px) {
  .df-container {
    padding: 0 16px;
  }

  /* Top Navbar */
  .df-navbar {
    padding: 12px 0;
  }

  .df-brand-title {
    font-size: 17px;
    letter-spacing: 0.06em;
  }

  .df-brand-tag {
    font-size: 7.5px;
    letter-spacing: 0.2em;
  }

  .df-logo-img {
    height: 36px;
  }

  .df-nav-actions {
    gap: 8px;
  }

  /* Keep preview CTA compact or hide on very small phones if drawer has it */
  .df-nav-actions .df-btn-primary {
    display: none;
  }

  /* Hero Section */
  .df-hero.df-hero-micasa {
    min-height: 100svh;
    padding: 96px 16px 74px;
  }

  .df-hero-kicker {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
  }

  .df-kick-line {
    width: 24px;
  }

  .df-hero-h {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
  }

  .df-hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 14px;
  }

  .df-hero-foot {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 12px;
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .df-hero-foot .df-foot-item:last-child {
    display: none;
  }

  /* Interactive Drone Section Mobile Optimization */
  .df-drone-section {
    height: 220vh; /* Shorter scroll travel for smooth mobile fingers */
  }

  .df-drone-hud {
    padding: 12px 14px;
  }

  .df-hud-top {
    gap: 8px;
  }

  .df-hud-telemetry {
    gap: 6px;
  }

  .df-hud-rec {
    font-size: 9.5px;
    padding: 4px 10px;
  }

  .df-hud-chip {
    font-size: 9.5px;
    padding: 4px 8px;
  }

  .df-hud-chip:nth-child(n+3) {
    display: none;
  }

  .df-hud-badge {
    display: none;
  }

  .df-hud-btn {
    font-size: 10px;
    padding: 6px 12px;
  }

  .df-drone-crosshair {
    width: 80px;
    height: 80px;
  }

  .df-ch-tag {
    font-size: 8px;
    bottom: -18px;
  }

  .df-drone-pois {
    pointer-events: auto;
  }

  .df-poi-pin {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .df-poi-radar {
    width: 36px;
    height: 36px;
  }

  .df-poi-card {
    width: 190px;
    padding: 10px 12px;
  }

  .df-poi-card strong {
    font-size: 12.5px;
  }

  .df-poi-card p {
    font-size: 10.5px;
  }

  .df-drone-story-step {
    left: 12px;
    right: 12px;
    max-width: 100%;
    bottom: 56px;
  }

  .df-story-panel {
    padding: 16px 18px;
    border-radius: var(--radius-md);
  }

  .df-story-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .df-story-text {
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .df-story-meta {
    font-size: 11px;
    gap: 12px;
    padding-top: 10px;
  }

  .df-flight-indicator {
    padding: 6px 12px;
    gap: 8px;
  }

  .df-fi-bar {
    width: 80px;
    height: 5px;
  }

  .df-fi-label, .df-fi-percent {
    font-size: 10px;
  }

  .df-drone-scroll-hint {
    display: none;
  }

  /* Overview Section */
  .df-overview-media {
    min-height: 280px;
  }

  .df-media-card.main-shot {
    width: 88%;
  }

  .df-media-card.sub-shot {
    width: 55%;
  }

  .df-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .df-pillar-card {
    padding: 16px;
  }

  .df-in-numbers-wrap {
    margin-top: 40px;
    padding-top: 32px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .df-in-num-card {
    padding: 20px 16px;
  }

  .df-num-val {
    font-size: 28px;
  }

  /* Grove Tabs & Showcase */
  .df-tab-nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px;
    gap: 6px;
    margin-top: 24px;
  }

  .df-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .df-tab-btn {
    padding: 10px 16px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .df-grove-cards-wrap {
    margin-top: 28px;
  }

  .df-grove-card {
    padding: 20px 16px;
    gap: 24px;
  }

  .df-grove-header h3 {
    font-size: 24px;
  }

  .df-grove-lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .df-grove-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    margin: 20px 0;
  }

  .df-spec-box strong {
    font-size: 12.5px;
  }

  .df-sp-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  .df-grove-actions {
    flex-direction: column;
    gap: 10px;
  }

  .df-grove-actions .df-btn {
    width: 100%;
  }

  /* Botanical Catalog Section */
  .df-bot-filters {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .df-bot-filters::-webkit-scrollbar {
    display: none;
  }

  .df-filter-pill {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 11px;
    flex-shrink: 0;
  }

  .df-species-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Master Plan Card & Hotspots */
  .df-canvas-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .df-hotspot-pin {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .df-hotspot-tooltip {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 14px;
  }

  .df-hotspot-tooltip strong {
    font-size: 13px;
  }

  .df-hotspot-tooltip p {
    font-size: 11px;
  }

  .df-mp-cta-bar {
    flex-direction: column;
    width: 100%;
  }

  .df-mp-cta-bar .df-btn {
    width: 100%;
  }

  /* Amenities Grid */
  .df-amenities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .df-amenity-content {
    padding: 18px;
  }

  .df-amenity-content h4 {
    font-size: 17px;
  }

  /* Gallery Grid */
  .df-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  /* Distance Matrix */
  .df-distance-matrix {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
  }

  .df-loc-btn-bar {
    flex-direction: column;
    width: 100%;
  }

  .df-loc-btn-bar .df-btn {
    width: 100%;
  }

  .df-map-frame {
    height: 280px;
  }

  /* Trust Section */
  .df-trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .df-trust-card {
    padding: 24px 18px;
  }

  /* Booking Card */
  .df-booking-card {
    padding: 24px 18px;
  }

  .df-booking-card h3 {
    font-size: 22px;
  }

  .df-card-sub {
    font-size: 12.5px;
    margin-bottom: 18px;
  }

  .df-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .df-slot-pills {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* FAQs */
  .df-faq-list {
    margin-top: 32px;
    gap: 10px;
  }

  .df-faq-trigger {
    padding: 16px 18px;
    font-size: 15px;
  }

  .df-faq-content p {
    padding: 0 18px 18px;
    font-size: 13.5px;
  }

  /* Footer */
  .df-footer {
    padding: 56px 0 28px;
  }

  .df-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .df-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 24px;
    font-size: 11.5px;
  }

  /* Floating WhatsApp Orb */
  .df-fab-orb {
    width: 68px;
    height: 68px;
    right: 14px;
    bottom: 18px;
  }

  .df-fab-core {
    width: 38px;
    height: 38px;
  }

  .df-fab-core svg {
    width: 17px;
    height: 17px;
  }

  /* Modals Fullscreen on Mobile */
  .df-modal-backdrop {
    padding: 10px;
  }

  .df-modal-box {
    width: 100%;
    height: 92vh;
    border-radius: var(--radius-md);
  }

  .df-modal-bar {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ── Breakpoint: Small Mobile Screens (<= 480px) ── */
@media (max-width: 480px) {
  .df-section-heading {
    font-size: 28px;
  }

  .df-section-desc {
    font-size: 14px;
  }

  .df-hero.df-hero-micasa {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .df-hero-h {
    font-size: 32px;
  }

  .df-in-numbers-wrap {
    grid-template-columns: 1fr;
  }

  .df-gallery-grid {
    grid-template-columns: 1fr;
  }

  .df-grove-specs-grid {
    grid-template-columns: 1fr;
  }

  .df-experience-badge {
    position: static;
    margin-top: 14px;
    border-radius: var(--radius-sm);
  }

  .df-overview-media {
    min-height: auto;
  }

  .df-media-card.main-shot {
    width: 100%;
  }

  .df-media-card.sub-shot {
    display: none;
  }
}
