/* =========================================================
   COCOA COUNTY — SHARED DESIGN SYSTEM
   Future sections should reuse these tokens.
   ========================================================= */

:root {
  --bg-dark: #160d08;
  --bg-dark-soft: #21150e;
  --bg-cream: #f5f0e8;
  --bg-cream-2: #eae1d5;

  --gold: #c99a55;
  --gold-light: #e1b873;
  --gold-soft: #f0ca8b;

  --white: #fffdf9;
  --text-dark: #211a16;
  --text-muted: rgba(255, 255, 255, 0.72);
  --border-light: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(214, 166, 94, 0.55);

  --heading-font: "Lora", Georgia, serif;
  --body-font: "Manrope", sans-serif;

  --header-height: 74px;
  --container: 1760px;
  --section-space: 100px;

  --radius-sm: 6px;
  --radius-md: 9px;
  --radius-lg: 12px;

  --transition: 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: var(--body-font);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, rgba(26, 12, 5, 0.97), rgba(38, 18, 8, 0.95));
  backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(20, 12, 8, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(calc(100% - 64px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  color: #e8bb75;
  font-family: var(--heading-font);
  font-size: 26px;
  line-height: 0.78;
  letter-spacing: 0.02em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.45vw, 29px);
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-light);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.mobile-bottom-bar a:focus-visible,
.mobile-bottom-bar button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.btn-primary {
  color: #211309;
  background: linear-gradient(180deg, #f0c981, #c89248);
  border-color: rgba(255, 224, 164, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 26px rgba(182, 125, 52, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f5d28d, #d09d52);
  box-shadow: 0 14px 36px rgba(182, 125, 52, 0.25);
}

.btn-outline {
  color: var(--white);
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(233, 187, 117, 0.8);
}

.btn-outline:hover {
  color: #211309;
  background: var(--gold-light);
}

.btn-large {
  min-height: 54px;
  min-width: 250px;
  padding-inline: 32px;
}

.btn i,
.form-submit i {
  width: 17px;
  min-width: 17px;
  text-align: center;
  font-size: 15px;
  line-height: 1;
}

/* =========================
   MOBILE NAV
   ========================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  width: 100%;
  height: 1px;
  margin: 5px 0;
  display: block;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  isolation: isolate;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.015);
  animation: heroScale 10s ease-out forwards;
}

@keyframes heroScale {
  from { transform: scale(1.06); }
  to { transform: scale(1.015); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(18, 10, 5, 0.96) 0%,
      rgba(18, 10, 5, 0.78) 23%,
      rgba(18, 10, 5, 0.34) 47%,
      rgba(18, 10, 5, 0.12) 66%,
      rgba(18, 10, 5, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.14),
      rgba(10, 6, 3, 0.15) 56%,
      rgba(12, 7, 4, 0.78) 100%
    );
}

.hero-inner {
  width: min(calc(100% - 72px), var(--container));
  min-height: calc(100svh - var(--header-height) - 142px);
  margin-inline: auto;
  padding: clamp(68px, 8vh, 112px) 0 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.55fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
}

.hero-content {
  max-width: 970px;
  animation: revealUp 850ms ease-out both;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  max-width: 470px;
  margin: 0 0 22px;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.89);
}

.hero-eyebrow strong {
  display: block;
  font-weight: 500;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  color: #e4b66c;
  font-family: var(--heading-font);
  font-size: clamp(60px, 6.1vw, 113px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.34);
}

.hero h2 {
  max-width: 770px;
  margin: 18px 0 17px;
  font-family: var(--heading-font);
  font-size: clamp(30px, 2.7vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero h2 span {
  display: block;
}

.hero-description {
  max-width: 730px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
}

/* =========================
   HERO STATS
   ========================= */

.hero-stats {
  width: max-content;
  max-width: 100%;
  display: flex;
  border: 1px solid rgba(218, 170, 95, 0.25);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 9, 5, 0.5);
  backdrop-filter: blur(14px);
}

.stat-card {
  min-width: 145px;
  padding: 15px 19px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(218, 170, 95, 0.16);
  transition: background var(--transition);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card:hover {
  background: rgba(205, 157, 85, 0.07);
}

.stat-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 178, 105, 0.75);
  border-radius: 50%;
  color: #e4b56f;
}

.stat-icon i {
  font-size: 17px;
  line-height: 1;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

/* =========================
   ENQUIRY FORM
   ========================= */

.hero-form-card {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(232, 184, 111, 0.55);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(32, 26, 24, 0.92), rgba(23, 15, 11, 0.96));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  animation: formReveal 900ms 150ms ease-out both;
}

@keyframes formReveal {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-header {
  padding-bottom: 17px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.form-header span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.form-header h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  color: var(--white);
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(232, 183, 107, 0.9);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(204, 153, 78, 0.08);
}

.form-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #dcb472 50%),
    linear-gradient(135deg, #dcb472 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 14px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-group option {
  background: #20140d;
}

.form-submit {
  width: 100%;
  height: 54px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 227, 171, 0.5);
  border-radius: var(--radius-sm);
  color: #1c120a;
  background: linear-gradient(180deg, #f2cc87, #c8944d);
  font-weight: 700;
  transition: all var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #f8d696, #d09f58);
  box-shadow: 0 14px 30px rgba(199, 146, 72, 0.24);
}

.form-submit i {
  transition: transform var(--transition);
}

.form-submit:hover i {
  transform: translateX(4px);
}

.form-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.form-status.error {
  color: #ffb7ad;
}

/* =========================
   PRICE STRIP
   ========================= */

.price-strip {
  width: min(calc(100% - 72px), var(--container));
  min-height: 112px;
  margin: -10px auto 24px;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(226, 178, 105, 0.65);
  border-radius: var(--radius-md);
  background: linear-gradient(
    90deg,
    rgba(26, 13, 7, 0.94),
    rgba(47, 23, 10, 0.88),
    rgba(24, 13, 8, 0.95)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.price-strip-copy > span {
  color: var(--gold-light);
  font-family: var(--heading-font);
  font-size: 17px;
}

.price-main {
  margin-top: 3px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.price-main strong {
  font-family: var(--heading-font);
  font-size: clamp(27px, 2.2vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.price-main p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.price-strip-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

/* =========================
   FUTURE SECTION BASE
   Remove hidden attribute when each section is built.
   ========================= */

.future-section {
  min-height: 400px;
  padding: var(--section-space) 0;
}

/* =========================
   MOBILE BOTTOM BAR
   ========================= */

.mobile-bottom-bar {
  display: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1500px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 12px; }
  .header-actions .btn { padding-inline: 16px; }

  .hero-inner {
    grid-template-columns: minmax(0, 1.35fr) 390px;
  }

  .stat-card {
    min-width: 130px;
    padding-inline: 14px;
  }
}

@media (max-width: 1280px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
    background: rgba(20, 12, 8, 0.98);
    transition: max-height 450ms ease, opacity 300ms ease;
  }

  .mobile-menu.active {
    max-height: 760px;
    opacity: 1;
  }

  .mobile-menu nav {
    width: min(calc(100% - 48px), 850px);
    margin: 0 auto;
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
  }

  .mobile-menu-actions {
    width: min(calc(100% - 48px), 850px);
    margin: 0 auto;
    padding-bottom: 28px;
    display: flex;
    gap: 12px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    padding-top: 80px;
  }

  .hero-stats {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .hero-stats::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    min-width: 145px;
  }

  .price-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .price-strip-actions {
    width: 100%;
  }

  .price-strip-actions .btn {
    flex: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
    --section-space: 72px;
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 22px;
  }

  .hero {
    padding-bottom: 84px;
  }

  .hero-background {
    background-position: 61% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 7, 4, 0.42) 0%,
      rgba(12, 7, 4, 0.7) 28%,
      rgba(12, 7, 4, 0.94) 70%,
      rgba(12, 7, 4, 0.98) 100%
    );
  }

  .hero-inner {
    width: calc(100% - 32px);
    display: block;
    padding: 70px 0 35px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-eyebrow {
    max-width: 350px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .hero h2 {
    font-size: clamp(31px, 7vw, 43px);
  }

  .hero-description {
    max-width: 650px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-form-card {
    max-width: 100%;
    margin-top: 35px;
    padding: 24px;
    animation: none;
  }

  .price-strip {
    width: calc(100% - 32px);
    margin-top: 0;
    padding: 24px;
  }

  .price-main {
    display: block;
  }

  .price-main p {
    margin-top: 10px;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1200;
    width: 100%;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(226, 178, 105, 0.4);
    background: rgba(20, 12, 8, 0.97);
    backdrop-filter: blur(16px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-bottom-bar a,
  .mobile-bottom-bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    background: transparent;
    font-size: 10px;
  }

  .mobile-bottom-bar i {
  width: 18px;
  text-align: center;
  color: var(--gold-light);
  font-size: 17px;
  line-height: 1;
}
}

@media (max-width: 600px) {
  :root {
    --section-space: 56px;
  }

  .mobile-menu nav {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .mobile-menu-actions {
    width: calc(100% - 32px);
    flex-direction: column;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero-eyebrow {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .hero h1 {
    letter-spacing: -0.04em;
  }

  .hero h2 {
    margin-top: 13px;
  }

  .hero-description {
    font-size: 14px;
  }

  .stat-card {
    min-width: 142px;
    padding: 14px;
  }

  .hero-form-card {
    padding: 21px;
  }

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

  .price-strip {
    padding: 21px;
  }

  .price-strip-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-large {
    width: 100%;
    min-width: 0;
  }
}

@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;
  }
}

/* ==========================================================
   HERO PRICE TAB + ENQUIRY FIELD POLISH
   ========================================================== */
.price-strip {
  animation: priceStripReveal 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition:
    transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 240ms ease,
    box-shadow 280ms ease,
    background-color 240ms ease;
}

@keyframes priceStripReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-strip-copy > span,
.price-main strong,
.price-main p {
  transition: color 220ms ease, transform 240ms ease;
}

.form-group input,
.form-group select {
  transition:
    transform 260ms cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 230ms ease,
    background-color 230ms ease,
    box-shadow 260ms ease;
}

@media (hover: hover) {
  .price-strip:hover {
    transform: translateY(-5px) scale(1.004);
    border-color: rgba(238, 190, 116, 0.88);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.38);
  }

  .price-strip:hover .price-strip-copy > span,
  .price-strip:hover .price-main strong {
    transform: translateX(3px);
    color: #f4c47c;
  }

  .price-strip:hover .price-main p {
    color: rgba(255, 255, 255, 0.9);
  }

  .form-group input:hover,
  .form-group select:hover {
    transform: translateY(-2px) scale(1.008);
    border-color: rgba(239, 191, 117, 0.88);
    background-color: rgba(255, 255, 255, 0.085);
    box-shadow: 0 8px 20px rgba(7, 2, 0, 0.18);
  }
}

.form-group input:focus,
.form-group select:focus {
  transform: translateY(-2px) scale(1.008);
  border-color: #efbd72;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 3px rgba(239, 189, 114, 0.16),
    0 10px 24px rgba(7, 2, 0, 0.22);
}

@media (min-width: 901px) {
  .price-strip {
    margin: -4px auto 18px;
  }

  .price-strip-copy > span {
    font-size: 13.5px;
  }

  .price-main strong {
    font-size: clamp(24px, 1.7vw, 30px);
  }

  .price-main p {
    font-size: 12px;
  }

  .price-strip-actions .btn {
    font-size: 11.5px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .form-group label {
    font-size: 11.5px;
  }

  .form-group input,
  .form-group select {
    font-size: 13.5px;
  }

  .form-note {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-strip,
  .price-strip-copy > span,
  .price-main strong,
  .price-main p,
  .form-group input,
  .form-group select {
    animation: none;
    transition: none !important;
  }

  .price-strip:hover,
  .price-strip:hover .price-strip-copy > span,
  .price-strip:hover .price-main strong,
  .form-group input:hover,
  .form-group select:hover,
  .form-group input:focus,
  .form-group select:focus {
    transform: none;
  }
}

/* =========================================================
   ICON SYSTEM — FONT AWESOME ONLY
   One library across the entire website.
   ========================================================= */

.stat-icon,
.mobile-bottom-bar i,
.btn i,
.form-submit i {
  -webkit-font-smoothing: antialiased;
}

.stat-icon {
  background:
    linear-gradient(
      180deg,
      rgba(225, 184, 115, 0.08),
      rgba(225, 184, 115, 0.02)
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.stat-card:hover .stat-icon {
  border-color: rgba(240, 202, 139, 0.95);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.stat-icon {
  transition:
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    background var(--transition);
}

.btn i,
.form-submit i {
  transition: transform var(--transition);
}

.btn:hover .fa-arrow-right,
.form-submit:hover .fa-arrow-right {
  transform: translateX(4px);
}


/* =========================================================
   SECTION 02 — PROJECT OVERVIEW — CURRENT FINAL RULES
   Left: title, copy + 2x2 feature cards
   Right: supplied lifestyle image
   Horizontal rhythm matches the hero section.
   ========================================================= */

.project-overview-section {
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 154, 85, 0.07), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, #f3ece3 100%);
}

.project-overview-shell {
  width: min(calc(100% - 112px), 1560px);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  padding: 38px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(56px, 5.5vw, 92px);
  align-items: start;
}

.overview-copy-panel {
  min-width: 0;
  align-self: start;
  padding: 0;
  margin: 0;
  background: transparent;
}

.section-kicker {
  margin: 0 0 12px;
  color: #79532f;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em !important;
}

.overview-title {
  max-width: 650px;
  margin: 0;
  color: #1f140e;
  font-family: var(--heading-font);
  font-size: clamp(42px, 3.55vw, 61px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.038em;
}

.overview-title span {
  color: #a17649;
  font-weight: 400;
}

.overview-intro {
  max-width: 650px;
  margin: 20px 0 0;
  color: #3a3029;
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.62;
}

.overview-feature-grid {
  width: 100%;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.overview-feature-card {
  min-width: 0;
  min-height: 88px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(171, 128, 76, 0.28);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 10px 24px rgba(69, 45, 28, 0.07);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.overview-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 128, 76, 0.46);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 16px 32px rgba(69, 45, 28, 0.11);
}

.overview-feature-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(177, 131, 75, 0.34);
  border-radius: 50%;
  color: #825d2d;
  background: linear-gradient(145deg, rgba(238, 221, 197, 0.76), rgba(220, 192, 156, 0.54));
}

.overview-feature-icon i {
  font-size: 17px;
}

.overview-feature-copy {
  min-width: 0;
}

.overview-feature-copy h3 {
  margin: 0 0 3px;
  color: #1f140e;
  font-family: var(--heading-font);
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 600;
  line-height: 1.06;
}

.overview-feature-copy p {
  margin: 0;
  color: #5b4e45;
  font-size: clamp(10.5px, 0.72vw, 12px);
  line-height: 1.35;
}

.overview-visual-panel {
  position: relative;
  width: 100%;
  height: clamp(470px, 66vh, 650px);
  min-height: 470px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(55, 35, 22, 0.16);
}

.overview-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.overview-visual-panel:hover img {
  transform: scale(1.025);
}

.overview-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 14, 8, 0.02) 35%, rgba(25, 14, 8, 0.30) 100%),
    linear-gradient(90deg, transparent 60%, rgba(27, 15, 9, 0.16) 100%);
  pointer-events: none;
}

.overview-image-message {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: auto;
  color: #fff4e3;
  font-family: var(--heading-font);
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-align: right;
  text-shadow: 0 3px 18px rgba(0,0,0,0.38);
}

.overview-image-message span {
  display: block;
}

.overview-image-message i {
  display: block;
  width: 92px;
  height: 1px;
  margin: 12px 0 0 auto;
  background: rgba(244, 214, 174, 0.72);
}

@media (min-width: 1101px) and (max-width: 1366px) {
  .project-overview-shell {
    width: calc(100% - 88px);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(42px, 4vw, 62px);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .overview-title {
    font-size: clamp(39px, 3.25vw, 52px);
  }

  .overview-intro {
    font-size: 14px;
    line-height: 1.55;
  }

  .overview-feature-grid {
    margin-top: 22px;
    gap: 10px;
  }

  .overview-feature-card {
    min-height: 80px;
    padding: 11px 12px;
  }

  .overview-feature-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .overview-feature-copy h3 {
    font-size: 17px;
  }

  .overview-feature-copy p {
    font-size: 10.5px;
  }

  .overview-visual-panel {
    height: clamp(430px, 62vh, 560px);
    min-height: 430px;
  }
}

@media (min-width: 1101px) and (max-height: 760px) {
  .project-overview-shell {
    min-height: calc(100svh - var(--header-height));
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .overview-title {
    font-size: clamp(38px, 3.2vw, 51px);
  }

  .overview-intro {
    margin-top: 15px;
    font-size: 13.5px;
    line-height: 1.48;
  }

  .overview-feature-grid {
    margin-top: 18px;
  }

  .overview-feature-card {
    min-height: 74px;
    padding: 10px 11px;
  }

  .overview-visual-panel {
    height: clamp(410px, 64vh, 520px);
    min-height: 410px;
  }
}

@media (max-width: 1100px) {
  .project-overview-shell {
    width: calc(100% - 48px);
    min-height: auto;
    padding: 48px 0 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .overview-copy-panel {
    max-width: 800px;
  }

  .overview-title,
  .overview-intro,
  .overview-feature-grid {
    max-width: 760px;
  }

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

  .overview-visual-panel {
    height: clamp(380px, 56vw, 560px);
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .project-overview-shell {
    width: calc(100% - 28px);
    padding: 30px 0 34px;
    gap: 20px;
  }

  .section-kicker {
    margin-bottom: 9px;
    font-size: 10px !important;
  }

  .overview-title {
    font-size: clamp(30px, 7.8vw, 38px);
    line-height: 1.05;
  }

  .overview-intro {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .overview-feature-grid {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .overview-feature-card {
    min-height: 54px;
    padding: 5px 8px;
    align-items: flex-start;
    gap: 6px;
  }

  .overview-feature-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .overview-feature-icon i {
    font-size: 11px;
  }

  .overview-feature-copy h3 {
    font-size: 14px;
    line-height: 1.1;
  }

  .overview-feature-copy p {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .overview-visual-panel {
    height: 330px;
    min-height: 330px;
    border-radius: 14px;
  }

  .overview-image-message {
    right: 18px;
    bottom: 18px;
    font-size: 19px;
  }
}

/* Project Overview collision-safety refinement */
@media (min-width: 1101px) {
  .project-overview-shell {
    align-items: start;
  }

  .overview-copy-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  .overview-intro {
    position: static;
  }

  .overview-feature-grid {
    position: static;
    width: 100%;
    max-width: 650px;
    margin: 24px 0 0;
  }
}

/* =========================================================
   SECTION 03 — AT A GLANCE / HIGHLIGHTS
   ========================================================= */

.at-glance-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(35, 15, 7, 0.28), rgba(35, 15, 7, 0.38)),
    url("../images/backgrounds/at-glance-marble.png") center / cover no-repeat;
}

.at-glance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(210, 128, 59, 0.12), transparent 30%),
    radial-gradient(circle at 88% 90%, rgba(103, 48, 19, 0.26), transparent 36%);
}

.section-container {
  width: min(calc(100% - 64px), 1760px);
  margin-inline: auto;
}

.at-glance-inner {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 5vw, 88px) 0 clamp(68px, 5vw, 92px);
}

.at-glance-heading {
  margin-bottom: 28px;
}

.dark-section-kicker {
  margin: 0 0 7px;
  color: #e4c196;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.at-glance-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(42px, 3.55vw, 61px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #f6eadb;
}

.at-glance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.glance-card {
  min-height: 126px;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(218, 169, 102, 0.68);
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      rgba(45, 20, 9, 0.90),
      rgba(29, 13, 7, 0.82)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 14px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.glance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 193, 126, 0.95);
  background:
    linear-gradient(
      135deg,
      rgba(58, 27, 12, 0.94),
      rgba(35, 16, 8, 0.88)
    );
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.glance-number {
  position: relative;
  padding-right: 16px;
  font-family: var(--heading-font);
  font-size: clamp(42px, 3.2vw, 56px);
  font-weight: 500;
  line-height: 0.95;
  color: #e5b979;
}

.glance-number::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 1px;
  height: 64px;
  background: linear-gradient(
    180deg,
    rgba(231, 185, 118, 0.78),
    rgba(231, 185, 118, 0.36)
  );
}

.glance-content h3 {
  margin: 3px 0 6px;
  color: #fff8ef;
  font-family: var(--body-font);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 600;
  line-height: 1.12;
}

.glance-content p {
  margin: 0;
  color: rgba(255, 247, 238, 0.78);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.5;
}

/* Decorative botanical accent — not an icon system */
.at-glance-decor {
  position: absolute;
  top: -34px;
  right: 24px;
  width: 280px;
  height: 250px;
  z-index: 1;
  opacity: 0.52;
  transform: rotate(7deg);
  pointer-events: none;
}

.at-glance-decor::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 70px;
  width: 2px;
  height: 220px;
  background: linear-gradient(180deg, #526532, #2f3a1e);
  transform: rotate(35deg);
  transform-origin: top;
}

.at-glance-decor .leaf {
  position: absolute;
  width: 112px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(90deg, #596b38, #2f3a1f);
  box-shadow: inset 10px 0 18px rgba(143, 160, 85, 0.14);
}

.at-glance-decor .leaf::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: rgba(151, 166, 89, 0.28);
  transform: translateY(-50%);
}

.at-glance-decor .leaf-1 { top: 22px; right: 18px; transform: rotate(18deg); }
.at-glance-decor .leaf-2 { top: 68px; right: 62px; transform: rotate(42deg); }
.at-glance-decor .leaf-3 { top: 112px; right: 2px; transform: rotate(15deg); }
.at-glance-decor .leaf-4 { top: 154px; right: 55px; transform: rotate(38deg); }
.at-glance-decor .leaf-5 { top: 196px; right: 8px; transform: rotate(18deg); }

@media (min-width: 1101px) and (max-width: 1366px) {
  .at-glance-heading h2 {
    font-size: clamp(39px, 3.25vw, 52px);
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .at-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glance-card {
    min-height: 148px;
  }
}

@media (max-width: 900px) {
  .section-container {
    width: calc(100% - 32px);
  }

  .at-glance-inner {
    padding: 58px 0 62px;
  }

  .at-glance-decor {
    right: -48px;
    opacity: 0.32;
    transform: scale(0.82) rotate(7deg);
    transform-origin: top right;
  }

  .at-glance-heading {
    padding-right: 110px;
  }

  .at-glance-heading h2 {
    font-size: clamp(38px, 7vw, 54px);
  }

  .glance-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }

  .glance-number {
    padding-right: 16px;
    font-size: 44px;
  }

  .glance-number::after {
    height: 68px;
  }
}

@media (max-width: 640px) {
  .at-glance-inner {
    padding: 38px 0 44px;
  }

  .at-glance-heading {
    margin-bottom: 18px;
    padding-right: 0;
  }

  .dark-section-kicker {
    font-size: 10px;
  }

  .at-glance-heading h2 {
    max-width: 100%;
    font-size: clamp(30px, 7vw, 36px);
    line-height: 1.08;
  }

  .at-glance-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .glance-card {
    min-height: 86px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
    border-color: rgba(218, 169, 102, 0.48);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 20, 9, 0.94), rgba(29, 13, 7, 0.86));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  }

  .glance-number {
    padding-right: 10px;
    font-size: 31px;
  }

  .glance-number::after {
    height: 40px;
  }

  .glance-content h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.25;
  }

  .glance-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .at-glance-decor {
    top: -18px;
    right: -90px;
    opacity: 0.24;
    transform: scale(0.65) rotate(7deg);
  }
}

/* =========================================================
   SECTION 04 — MASTER PLAN
   ========================================================= */

.master-plan-section {
  background: #f6f1e8;
  color: #1f1711;
  border-top: 1px solid rgba(175, 136, 86, 0.08);
}

.master-plan-inner {
  width: min(100%, 1920px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 720px minmax(0, 1fr);
  align-items: stretch;
}

.master-plan-copy {
  padding: 48px 34px 42px 58px;
  background: linear-gradient(180deg, #f7f3ec 0%, #f4eee5 100%);
}

.master-plan-kicker {
  margin: 0 0 10px;
  color: #5c3c27;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.master-plan-copy h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #1d130d;
}

.master-plan-intro {
  max-width: 600px;
  margin: 18px 0 0;
  color: #302720;
  font-size: 17px;
  line-height: 1.38;
}

.master-plan-actions {
  margin-top: 22px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.master-btn {
  min-width: 334px;
  min-height: 64px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
}

.master-btn-outline {
  min-width: 224px;
  color: #382013;
  background: transparent;
  border-color: rgba(184, 138, 83, 0.8);
}

.master-btn-outline:hover {
  color: #fff8ef;
  background: #8f6338;
  border-color: #8f6338;
}

.master-plan-legend {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 44px;
  row-gap: 12px;
}

.legend-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.legend-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.legend-badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 142, 99, 0.78);
  border-radius: 50%;
  color: #2d1f15;
  background: #efe3d3;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.legend-item span:last-child {
  color: #231a14;
  font-size: 17px;
  line-height: 1.15;
}

.master-plan-visual {
  min-height: 100%;
  background: #efefec;
}

.master-plan-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1600px) {
  .master-plan-inner {
    grid-template-columns: 660px minmax(0, 1fr);
  }

  .master-plan-copy {
    padding-inline: 34px 24px;
  }

  .master-btn {
    min-width: 290px;
  }

  .master-plan-legend {
    column-gap: 28px;
  }
}

@media (max-width: 1280px) {
  .master-plan-inner {
    grid-template-columns: 1fr;
  }

  .master-plan-copy {
    padding: 42px 28px 30px;
  }

  .master-plan-intro {
    max-width: 860px;
  }

  .master-plan-visual {
    height: auto;
  }

  .master-plan-visual img {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 900px) {
  .master-plan-copy {
    padding: 34px 20px 28px;
  }

  .master-plan-copy h2 {
    font-size: clamp(34px, 7vw, 46px);
  }

  .master-plan-intro {
    font-size: 15px;
    line-height: 1.45;
  }

  .master-plan-actions {
    gap: 14px;
  }

  .master-btn,
  .master-btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 16px;
  }

  .master-plan-legend {
    margin-top: 28px;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .legend-column {
    gap: 8px;
  }

  .legend-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .legend-badge {
    width: 31px;
    height: 31px;
    font-size: 13px;
  }

  .legend-item span:last-child {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .master-plan-copy {
    padding: 26px 16px 24px;
  }

  .master-plan-kicker {
    font-size: 11px;
  }

  .master-plan-copy h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.08;
  }

  .master-plan-intro {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .master-plan-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .master-btn,
  .master-btn-outline {
    min-height: 46px;
    padding: 6px 8px;
    font-size: clamp(10px, 2.7vw, 12px);
    line-height: 1.2;
    text-align: center;
  }

  .master-plan-legend {
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .legend-column {
    min-width: 0;
    gap: 7px;
  }

  .legend-item {
    min-height: 54px;
    padding: 7px 8px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    border: 1px solid rgba(179, 142, 99, 0.32);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.58);
  }

  .legend-badge {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .legend-item span:last-child {
    font-size: 12px;
    line-height: 1.25;
  }
}


/* =========================================================
   SECTION 05 — LIFESTYLE / AMENITIES
   ========================================================= */

.lifestyle-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(31, 12, 6, 0.80), rgba(31, 12, 6, 0.84)),
    url("../images/backgrounds/highlights-marble.webp") center / cover no-repeat;
}

.lifestyle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(208, 122, 54, 0.12), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(96, 37, 13, 0.26), transparent 32%);
}

.lifestyle-inner {
  position: relative;
  z-index: 2;
  padding: 28px 0 34px;
}

.lifestyle-heading {
  margin-bottom: 14px;
}

.lifestyle-heading .dark-section-kicker {
  margin-bottom: 2px;
}

.lifestyle-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.032em;
  color: #f9ecdf;
}

.lifestyle-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lifestyle-tab {
  height: 54px;
  min-width: 278px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 1px solid rgba(194, 144, 92, 0.52);
  border-radius: 10px;
  color: #f4e6d6;
  background: rgba(72, 28, 11, 0.34);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.lifestyle-tab i {
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #d6a15f;
}

.lifestyle-tab:hover {
  border-color: rgba(236, 194, 142, 0.82);
  transform: translateY(-1px);
}

.lifestyle-tab.is-active {
  color: #2b1c15;
  background: #f2eee9;
  border-color: #f2eee9;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.lifestyle-tab.is-active i {
  color: #b27634;
}

.lifestyle-carousel-shell {
  position: relative;
  padding-inline: 34px;
}

.lifestyle-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.lifestyle-carousel:active {
  cursor: grabbing;
}

.lifestyle-carousel::-webkit-scrollbar {
  display: none;
}

.lifestyle-track {
  display: flex;
  gap: 14px;
  min-width: max-content;
}

.lifestyle-card {
  width: 248px;
  flex: 0 0 248px;
  transition: transform 280ms ease;
}

.lifestyle-card-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.lifestyle-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(229, 219, 206, 0.82);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.lifestyle-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(27, 10, 4, 0.62) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.lifestyle-card-image {
  width: 100%;
  height: 154px;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lifestyle-card-view {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #3d1b0d;
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(7px) scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease;
}

.lifestyle-card:hover,
.lifestyle-card:focus-within {
  transform: translateY(-4px);
}

.lifestyle-card-trigger:hover .lifestyle-card-image,
.lifestyle-card-trigger:focus-visible .lifestyle-card-image {
  transform: scale(1.055);
}

.lifestyle-card-trigger:hover .lifestyle-card-media::after,
.lifestyle-card-trigger:focus-visible .lifestyle-card-media::after,
.lifestyle-card-trigger:hover .lifestyle-card-view,
.lifestyle-card-trigger:focus-visible .lifestyle-card-view {
  opacity: 1;
}

.lifestyle-card-trigger:hover .lifestyle-card-view,
.lifestyle-card-trigger:focus-visible .lifestyle-card-view {
  transform: translateY(0) scale(1);
}

.lifestyle-card-trigger:focus-visible {
  outline: none;
}

.lifestyle-card-trigger:focus-visible .lifestyle-card-media {
  outline: 3px solid #efbd7e;
  outline-offset: 3px;
}

.lifestyle-card-caption {
  display: block;
  margin-top: 8px;
  color: #fff5ea;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 500;
  transition: color 220ms ease;
}

.lifestyle-card-trigger:hover .lifestyle-card-caption,
.lifestyle-card-trigger:focus-visible .lifestyle-card-caption {
  color: #f0c78f;
}

.lifestyle-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-34%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(229, 176, 108, 0.92);
  border-radius: 50%;
  color: #efc998;
  background: rgba(62, 24, 10, 0.80);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  z-index: 5;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.lifestyle-nav i {
  font-size: 22px;
}

.lifestyle-nav:hover {
  color: #fff7ee;
  border-color: #f0c48a;
  background: rgba(89, 38, 16, 0.94);
}

.lifestyle-nav-prev {
  left: -54px;
}

.lifestyle-nav-next {
  right: -54px;
}

@media (max-width: 1720px) {
  .lifestyle-nav-prev {
    left: -36px;
  }

  .lifestyle-nav-next {
    right: -36px;
  }
}

@media (max-width: 1500px) {
  .lifestyle-card {
    width: 230px;
    flex-basis: 230px;
  }

  .lifestyle-card-image {
    height: 144px;
  }
}

@media (max-width: 1280px) {
  .lifestyle-inner {
    padding: 34px 0 36px;
  }

  .lifestyle-tabs {
    gap: 12px;
  }

  .lifestyle-tab {
    min-width: 0;
    flex: 1 1 220px;
  }

  .lifestyle-card {
    width: 228px;
    flex-basis: 228px;
  }

  .lifestyle-nav {
    display: none;
  }

  .lifestyle-carousel-shell {
    padding-inline: 0;
  }
}

@media (max-width: 900px) {
  .lifestyle-inner {
    padding: 36px 0 34px;
  }

  .lifestyle-heading h2 {
    font-size: clamp(34px, 8vw, 44px);
  }

  .lifestyle-tabs {
    margin-bottom: 14px;
  }

  .lifestyle-tab {
    height: 50px;
    padding: 12px 16px;
    gap: 10px;
    font-size: 15px;
  }

  .lifestyle-tab i {
    font-size: 16px;
  }

  .lifestyle-card {
    width: 214px;
    flex-basis: 214px;
  }

  .lifestyle-card-image {
    height: 136px;
  }

  .lifestyle-card-caption {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .lifestyle-inner {
    padding: 28px 0 30px;
  }

  .lifestyle-heading h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.08;
  }

  .lifestyle-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .lifestyle-tab {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 60px;
    padding: 7px 4px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-size: clamp(10px, 2.6vw, 12px);
    line-height: 1.15;
    text-align: center;
  }

  .lifestyle-tab i {
    width: auto;
    font-size: 15px;
  }

  .lifestyle-card {
    width: clamp(240px, 72vw, 320px);
    flex-basis: clamp(240px, 72vw, 320px);
  }

  .lifestyle-card-image {
    height: clamp(170px, 52vw, 220px);
  }

  .lifestyle-card-caption {
    font-size: 15px;
  }
}

.lifestyle-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 32px;
  border: 0;
  color: #fff8ef;
  background: rgba(18, 7, 3, 0.88);
  backdrop-filter: blur(14px);
}

.lifestyle-lightbox::backdrop {
  background: rgba(18, 7, 3, 0.88);
  backdrop-filter: blur(10px);
}

.lifestyle-lightbox[open] {
  display: grid;
  place-items: center;
}

.lifestyle-lightbox-panel {
  position: relative;
  width: min(1080px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 20px;
}

.lifestyle-lightbox-figure {
  min-width: 0;
  margin: 0;
}

.lifestyle-lightbox-figure img {
  width: 100%;
  max-height: calc(100dvh - 150px);
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255, 240, 222, 0.45);
  border-radius: 16px;
  background: #1d0d06;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.lifestyle-lightbox-figure figcaption {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  font-weight: 600;
}

.lifestyle-lightbox-figure figcaption span:last-child {
  color: rgba(255, 242, 227, 0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.lifestyle-lightbox-close,
.lifestyle-lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 194, 138, 0.74);
  border-radius: 50%;
  color: #ffe4c2;
  background: rgba(64, 27, 12, 0.78);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.lifestyle-lightbox-close:hover,
.lifestyle-lightbox-nav:hover {
  border-color: #f4c990;
  background: rgba(105, 49, 22, 0.96);
}

.lifestyle-lightbox-close:focus-visible,
.lifestyle-lightbox-nav:focus-visible {
  outline: 3px solid rgba(244, 201, 144, 0.5);
  outline-offset: 3px;
}

.lifestyle-lightbox-close {
  position: absolute;
  top: -18px;
  right: 62px;
  z-index: 3;
  width: 46px;
  height: 46px;
  font-size: 20px;
}

.lifestyle-lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 17px;
}

.lifestyle-lightbox-prev:hover {
  transform: translateX(-3px);
}

.lifestyle-lightbox-next:hover {
  transform: translateX(3px);
}

@media (max-width: 700px) {
  .lifestyle-lightbox {
    padding: 18px;
  }

  .lifestyle-lightbox-panel {
    width: calc(100vw - 36px);
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .lifestyle-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lifestyle-lightbox-close {
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
  }

  .lifestyle-lightbox-figure img {
    max-height: calc(100dvh - 130px);
    border-radius: 12px;
  }

  .lifestyle-lightbox-figure figcaption {
    margin-top: 9px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lifestyle-card,
  .lifestyle-card-image,
  .lifestyle-card-view {
    transition: none;
  }
}


/* =========================================================
   SECTION 06 — RESIDENCES
   ========================================================= */

.residences-section {
  position: relative;
  overflow: hidden;
  background: #241107;
}

.residences-slider {
  position: relative;
  min-height: 720px;
}

.residence-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 51.5% 48.5%;
  pointer-events: none;
}

.residence-slide.is-active {
  position: absolute;
}

.residence-slide:first-child {
  position: relative;
}

.residence-slide .residence-image-panel {
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.residence-slide.is-active .residence-image-panel {
  opacity: 1;
  visibility: visible;
}

.residence-slide:first-child .residence-content-panel {
  pointer-events: auto;
}

.residence-slide:not(:first-child) .residence-content-panel {
  display: none;
}

.residence-image-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.residence-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
}

.residence-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 72%, rgba(46, 20, 8, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.residence-content-panel {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(48, 20, 8, 0.58), rgba(24, 9, 3, 0.74)),
    url("../images/backgrounds/at-glance-marble.png") center / cover no-repeat;
}

.residence-content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 55% 22%, rgba(255, 206, 146, 0.05), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(137, 75, 32, 0.12), transparent 35%);
}

.residence-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 88px));
  margin: 0 auto;
  padding: 58px 0 70px;
}

.residence-kicker {
  margin: 0 0 24px;
  color: #e9c99e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.residence-copy h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(48px, 4.2vw, 76px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: #fffaf5;
}

.residence-copy h2 span {
  color: #e7b879;
}

.residence-intro {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 247, 238, 0.9);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.55;
}

.residence-features {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid transparent;
}

.residence-feature {
  min-width: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(220, 170, 104, 0.42);
}

.residence-feature:first-child {
  padding-left: 0;
}

.residence-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.residence-feature i {
  flex: 0 0 auto;
  color: #e8b974;
  font-size: 31px;
}

.residence-feature span {
  color: #f5e7d8;
  font-size: 15px;
  line-height: 1.35;
}

.residence-actions {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(240px, 1fr);
  gap: 20px;
}

.residence-btn {
  min-height: 64px;
  padding: 0 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid rgba(230, 180, 110, 0.92);
  font-size: 18px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.residence-btn:hover {
  transform: translateY(-2px);
}

.residence-btn-primary {
  color: #201209;
  background: linear-gradient(180deg, #f2cf91, #c99450);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 12px 30px rgba(182, 124, 52, 0.16);
}

.residence-btn-primary i {
  font-size: 18px;
  transition: transform var(--transition);
}

.residence-btn-primary:hover i {
  transform: translateX(4px);
}

.residence-btn-outline {
  color: #f5e5d2;
  background: rgba(29, 12, 5, 0.26);
}

.residence-btn-outline:hover {
  color: #241107;
  background: #e6b873;
}

.residence-arrow {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 72px;
  z-index: 7;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid rgba(245, 232, 215, 0.92);
  border-radius: 50%;
  color: #fff8f1;
  background: rgba(37, 16, 7, 0.64);
  backdrop-filter: blur(8px);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.residence-arrow:hover {
  background: rgba(79, 35, 14, 0.88);
  border-color: #e8bb7c;
}

.residence-arrow i {
  font-size: 26px;
}

.residence-arrow-prev {
  left: 30px;
}

.residence-arrow-next {
  right: 30px;
}

.residence-dots {
  position: absolute;
  left: calc(51.5% - 54px);
  bottom: 28px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.residence-dot {
  width: 18px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(235, 234, 228, 0.55);
  transition: width var(--transition), background var(--transition);
}

.residence-dot.is-active {
  width: 20px;
  background: #e8c28d;
}

.residence-botanical {
  position: absolute;
  inset: 0 0 0 auto;
  width: 36%;
  opacity: 0.08;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 100% 5%, transparent 0 30%, rgba(218, 177, 116, 0.5) 31% 31.5%, transparent 32%),
    radial-gradient(ellipse at 110% 25%, transparent 0 25%, rgba(218, 177, 116, 0.45) 26% 26.5%, transparent 27%),
    radial-gradient(ellipse at 100% 73%, transparent 0 30%, rgba(218, 177, 116, 0.45) 31% 31.5%, transparent 32%);
}

@media (max-width: 1500px) {
  .residences-slider,
  .residence-image-panel,
  .residence-image-panel img,
  .residence-content-panel {
    min-height: 650px;
  }

  .residence-copy {
    width: min(680px, calc(100% - 72px));
    padding-block: 48px 62px;
  }

  .residence-copy h2 {
    font-size: clamp(44px, 4vw, 64px);
  }

  .residence-intro {
    margin-top: 24px;
  }

  .residence-features {
    margin-top: 30px;
  }

  .residence-feature {
    padding-inline: 16px;
  }

  .residence-feature i {
    font-size: 26px;
  }

  .residence-actions {
    margin-top: 34px;
  }
}

@media (max-width: 1180px) {
  .residence-slide {
    grid-template-columns: 1fr;
  }

  .residence-image-panel {
    min-height: 460px;
  }

  .residence-image-panel img {
    min-height: 460px;
  }

  .residence-image-overlay {
    background: linear-gradient(180deg, transparent 70%, rgba(47, 20, 8, 0.88) 100%);
  }

  .residence-content-panel {
    min-height: auto;
  }

  .residence-copy {
    width: min(calc(100% - 48px), 920px);
    padding: 48px 0 72px;
  }

  .residence-copy h2 br {
    display: none;
  }

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

  .residence-arrow {
    top: 230px;
  }

  .residence-dots {
    left: 50%;
    bottom: auto;
    top: 430px;
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .residences-slider {
    --residence-mobile-image-height: clamp(300px, 52vw, 360px);
  }

  .residence-image-panel,
  .residence-image-panel img {
    height: var(--residence-mobile-image-height);
    min-height: 0;
  }

  .residence-copy {
    width: calc(100% - 32px);
    padding: 30px 0 44px;
  }

  .residence-kicker {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .residence-copy h2 {
    font-size: clamp(30px, 6.5vw, 38px);
    line-height: 1.08;
  }

  .residence-intro {
    margin-top: 16px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .residence-features {
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
  }

  .residence-feature {
    min-height: 48px;
    gap: 8px;
  }

  .residence-feature i {
    font-size: 20px;
  }

  .residence-feature span {
    font-size: 12px;
  }

  .residence-feature:nth-child(2) {
    border-right: 0;
  }

  .residence-feature:nth-child(3) {
    padding-left: 0;
  }

  .residence-actions {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .residence-btn {
    min-height: 48px;
    padding-inline: 8px;
    gap: 6px;
    font-size: clamp(11px, 2.7vw, 13px);
    white-space: nowrap;
  }

  .residence-arrow {
    top: clamp(150px, 26vw, 180px);
    width: 54px;
    height: 54px;
  }

  .residence-arrow-prev {
    left: 16px;
  }

  .residence-arrow-next {
    right: 16px;
  }

  .residence-arrow i {
    font-size: 20px;
  }

  .residence-dots {
    top: calc(var(--residence-mobile-image-height) - 26px);
  }
}

@media (max-width: 480px) {
  .residences-slider {
    --residence-mobile-image-height: clamp(230px, 58vw, 280px);
  }

  .residence-arrow {
    top: clamp(115px, 29vw, 140px);
    width: 44px;
    height: 44px;
  }

  .residence-arrow i {
    font-size: 16px;
  }

  .residence-feature {
    padding-inline: 8px;
    gap: 7px;
  }

  .residence-feature i {
    font-size: 19px;
  }

  .residence-feature span {
    font-size: 11.5px;
  }
}


/* =========================================================
   SECTION 07 — FLOOR PLANS
   ========================================================= */

.floor-plans-section {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  color: #21170f;
  background: #f8f3eb;
}

.floor-plans-section::before,
.floor-plans-section::after {
  content: none;
}

.floor-plans-section::before {
  left: -160px;
  top: -110px;
}

.floor-plans-section::after {
  right: -170px;
  bottom: -120px;
}

.floor-plans-inner {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.floor-plans-topbar {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(620px, 1.22fr);
  gap: 28px;
  align-items: end;
  padding: 6px 10px 12px;
}

.floor-plans-intro {
  max-width: 610px;
}

.floor-plans-intro .section-kicker-alt {
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #8a5c37;
}

.floor-plans-intro h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(30px, 2.45vw, 43px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #21140d;
}

.floor-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
}

.floor-tab {
  min-height: 56px;
  padding: 7px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #2b1a11;
  background: rgba(236, 226, 214, 0.72);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.floor-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 128, 68, 0.32);
}

.floor-tab.is-active {
  color: #fff5e8;
  background:
    linear-gradient(135deg, #5a2b12 0%, #3d1b0c 100%);
  border-color: rgba(208, 151, 80, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 28px rgba(69, 33, 14, 0.18);
}

.floor-tab-title {
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1;
}

.floor-tab-size {
  margin-top: 3px;
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1;
}

.floor-content {
  padding: 10px 24px 8px;
}

.floor-content-head {
  display: none;
}

.floor-content-head h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #1d130d;
}

.floor-content-head p {
  margin: 8px 0 0;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.25;
  color: #241c17;
}

.floor-main-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.floor-plan-visual {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

.floor-plan-visual:focus-visible {
  outline: 3px solid #b77938;
  outline-offset: 3px;
}

.floor-plan-visual img {
  width: 100%;
  max-height: 510px;
  display: block;
  object-fit: contain;
  filter: blur(1.5px);
  transform: scale(1.015);
}

.floor-plan-details {
  min-width: 0;
}

.floor-area-table {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(231, 219, 205, 0.56);
}

.floor-area-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
}

.floor-area-row:last-child {
  border-bottom: 0;
}

.floor-area-row > span,
.floor-area-row > strong {
  min-height: 78px;
  padding: 0 34px;
  display: flex;
  align-items: center;
}

.floor-area-row > span {
  font-size: clamp(17px, 1.5vw, 24px);
  border-right: 2px solid rgba(255, 255, 255, 0.82);
}

.floor-area-row > strong {
  justify-content: center;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 700;
}

.floor-actions {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
}

.floor-btn {
  min-height: 82px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid #5d341e;
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.floor-btn:hover {
  transform: translateY(-2px);
}

.floor-btn-primary {
  color: #24140b;
  border-color: rgba(212, 155, 82, 0.72);
  background: linear-gradient(180deg, #efc77f, #c88e43);
  box-shadow: 0 12px 28px rgba(173, 112, 48, 0.16);
}

.floor-btn-primary i {
  font-size: 18px;
  transition: transform var(--transition);
}

.floor-btn-primary:hover i {
  transform: translateX(4px);
}

.floor-btn-outline {
  color: #2a1a11;
  background: rgba(255,255,255,0.25);
}

.floor-btn-outline:hover {
  color: #fff7ef;
  background: #56301a;
}

@media (max-width: 1280px) {
  .floor-plans-topbar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .floor-plans-intro {
    max-width: 760px;
  }

  .floor-main-grid {
    grid-template-columns: 1fr;
  }

  .floor-plan-visual img {
    max-height: 560px;
  }

  .floor-plan-details {
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .floor-plans-section {
    padding: 10px 0;
  }

  .floor-plans-inner {
    padding: 10px;
    border-radius: 18px;
  }

  .floor-plans-topbar {
    gap: 18px;
    padding: 8px 2px 14px;
  }

  .floor-plans-intro h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

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

  .floor-tab {
    min-height: 58px;
    border-radius: 10px;
  }

  .floor-content {
    padding: 14px 12px 8px;
  }

  .floor-content-head h2 {
    font-size: clamp(42px, 10vw, 58px);
  }

  .floor-content-head p {
    font-size: 16px;
  }

  .floor-main-grid {
    gap: 22px;
  }

  .floor-area-row {
    min-height: 56px;
  }

  .floor-area-row > span,
  .floor-area-row > strong {
    min-height: 56px;
    padding: 0 18px;
  }

  .floor-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floor-btn {
    min-height: 50px;
  }
}

@media (max-width: 560px) {
  .floor-plans-section {
    padding: 8px 0;
  }

  .floor-plans-inner {
    padding: 4px;
  }

  .floor-plans-topbar {
    gap: 10px;
    padding: 4px 0 8px;
  }

  .floor-plans-intro h2 {
    font-size: clamp(25px, 6vw, 31px);
    line-height: 1.1;
  }

  .floor-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .floor-tab {
    min-height: 48px;
    padding: 5px 2px;
    border-radius: 8px;
  }

  .floor-tab-title {
    font-size: 14px;
  }

  .floor-tab-size {
    font-size: clamp(8.5px, 2.2vw, 10px);
    white-space: nowrap;
  }

  .floor-content {
    padding: 0;
  }

  .floor-main-grid {
    margin-top: 0;
    gap: 10px;
  }

  .floor-plan-visual img {
    height: clamp(180px, 48vw, 230px);
    max-height: none;
    object-fit: contain;
    filter: blur(0.6px);
    transform: none;
  }

  .floor-area-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    background: transparent;
  }

  .floor-content-head h2 {
    font-size: 40px;
  }

  .floor-content-head p {
    font-size: 14px;
    line-height: 1.35;
  }

  .floor-area-row {
    min-height: 52px;
    padding: 7px 9px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    border: 0;
    border-radius: 9px;
    background: rgba(231, 219, 205, 0.56);
    box-shadow: inset 0 0 0 1px rgba(179, 142, 99, 0.2);
  }

  .floor-area-row > span,
  .floor-area-row > strong {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .floor-area-row > span {
    border-right: 0;
    font-size: 10px;
  }

  .floor-area-row > strong {
    justify-content: flex-start;
    font-size: 12px;
  }

  .floor-actions {
    display: flex;
    margin-top: 8px;
  }

  .floor-btn {
    min-height: 42px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 12px;
  }

  .floor-btn-primary i {
    font-size: 14px;
  }
}


/* =========================================================
   SECTIONS 08–12 — SUMMARY / SPECS / LOCATION / RERA / FAQ
   ========================================================= */

.section-kicker-alt {
  margin: 0;
  color: #8f673d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.section-kicker-alt-light {
  color: #e8c99f;
}

/* ---------- Section 08: Plan Summary ---------- */

.plan-summary-section {
  padding: 16px 0 20px;
  background: linear-gradient(180deg, #f8f4ec, #f5eee4);
}

.plan-summary-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) 420px;
  gap: 26px;
  align-items: start;
}

.plan-summary-main {
  min-width: 0;
}

.plan-summary-head {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.plan-summary-head h2 {
  margin: 4px 0 0;
  font-family: var(--heading-font);
  font-size: clamp(42px, 3.55vw, 61px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: #27170f;
}

.plan-summary-line {
  height: 1px;
  background: rgba(175, 136, 86, 0.38);
}

.plan-summary-table-wrap {
  min-width: 0;
}

.plan-summary-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(126, 81, 40, 0.26);
  border-radius: 12px;
}

.plan-summary-table thead th {
  padding: 11px 16px;
  color: #fff2e0;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #5a2b12, #6a3417);
  border-right: 1px solid rgba(255,255,255,0.24);
}

.plan-summary-table thead th:last-child {
  border-right: 0;
}

.plan-summary-table tbody td {
  padding: 13px 16px;
  font-size: 18px;
  color: #2a1a10;
  background: rgba(255,255,255,0.12);
  border-top: 1px solid rgba(165, 131, 96, 0.30);
  border-right: 1px solid rgba(165, 131, 96, 0.30);
  transition: background-color 220ms ease, color 220ms ease;
}

.plan-summary-table tbody tr:hover td {
  background: rgba(224, 198, 165, 0.24);
}

.plan-summary-table tbody tr td:last-child {
  border-right: 0;
  text-align: center;
}

.plan-summary-table tbody tr td:first-child {
  width: 80px;
  text-align: center;
  font-size: 20px;
}

.summary-price-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 210px;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(214, 160, 91, 0.62);
  border-radius: 12px;
  color: #fff2e0;
  background: linear-gradient(90deg, #4c220d, #6a3417);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 7px 16px rgba(82, 37, 15, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.summary-price-btn::before,
.advisor-btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 232, 193, 0.34) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.summary-price-btn:hover,
.advisor-btn:hover {
  transform: translateY(-3px) scale(1.018);
  border-color: rgba(231, 182, 112, 0.95);
  filter: brightness(1.1);
  box-shadow: 0 14px 28px rgba(82, 37, 15, 0.28);
}

.summary-price-btn:hover::before,
.advisor-btn:hover::before {
  transform: translateX(130%);
}

.summary-price-btn > span,
.summary-price-btn > i,
.advisor-btn > span,
.advisor-btn > i {
  position: relative;
  z-index: 1;
}

.summary-price-btn:active,
.advisor-btn:active {
  transform: translateY(0) scale(0.985);
}

.summary-price-btn:focus-visible,
.advisor-btn:focus-visible {
  outline: 3px solid rgba(190, 128, 58, 0.36);
  outline-offset: 3px;
}

.summary-price-btn i {
  font-size: 15px;
  transition: transform 220ms ease;
}

.summary-price-btn:hover i,
.advisor-btn:hover i {
  transform: translateX(6px);
}

.plan-summary-note {
  margin: 8px 0 0;
  color: #4e4138;
  font-size: 14px;
}

.plan-summary-aside {
  min-height: 344px;
  padding: 46px 34px;
  border-radius: 18px;
  background: rgba(233, 222, 209, 0.62);
}

.plan-summary-aside h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(32px, 2.3vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  color: #2a1810;
}

.advisor-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 42px;
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(214, 160, 91, 0.64);
  border-radius: 14px;
  color: #fff3e5;
  background: linear-gradient(90deg, #4b220d, #6c3417);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(82, 37, 15, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.advisor-btn i {
  transition: transform 220ms ease;
}

/* ---------- Section 09: Specifications ---------- */

.specifications-section {
  position: relative;
  overflow: hidden;
  padding: 18px 0 22px;
  background:
    linear-gradient(90deg, rgba(30, 8, 1, 0.82), rgba(60, 18, 3, 0.62), rgba(28, 7, 1, 0.84)),
    url("../images/backgrounds/at-glance-marble.png") center / cover no-repeat;
}

.specs-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.specs-copy h2 {
  margin: 6px 0 0;
  font-family: var(--heading-font);
  font-size: clamp(34px, 2.8vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: #fff8ef;
}

.specifications-section .section-kicker-alt {
  color: #f0bd72;
}

.specs-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
}

.spec-item {
  min-height: 132px;
  padding: 0 26px 0 0;
  border-right: 1px solid rgba(238, 190, 121, 0.32);
  transition: transform 260ms ease, border-color 260ms ease;
}

.spec-item:not(:first-child) {
  padding-left: 36px;
}

.spec-item:last-child {
  border-right: 0;
}

.spec-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid #dfa052;
  border-radius: 50%;
  background: rgba(34, 9, 1, 0.38);
  color: #f0b665;
  font-size: 18px;
  transition: transform 300ms cubic-bezier(0.2, 0.75, 0.2, 1), background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.spec-text h3 {
  margin: 16px 0 2px;
  font-size: 18px;
  font-weight: 700;
  color: #fff7ed;
  transition: color 220ms ease, transform 220ms ease;
}

.spec-text p {
  margin: 0;
  color: rgba(255, 242, 225, 0.74);
  font-size: 16px;
  line-height: 1.35;
  transition: color 220ms ease;
}

@media (hover: hover) {
  .spec-item:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 199, 128, 0.58);
  }

  .spec-item:hover .spec-icon {
    transform: translateY(-3px) rotate(-6deg) scale(1.08);
    background: #e3a14d;
    color: #351204;
    box-shadow: 0 10px 24px rgba(227, 161, 77, 0.3);
  }

  .spec-item:hover .spec-text h3 {
    transform: translateX(3px);
    color: #f6c77f;
  }

  .spec-item:hover .spec-text p {
    color: rgba(255, 247, 237, 0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spec-item,
  .spec-icon,
  .spec-text h3,
  .spec-text p {
    transition: none;
  }

  .spec-item:hover,
  .spec-item:hover .spec-icon,
  .spec-item:hover .spec-text h3 {
    transform: none;
  }
}

.specs-image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.specs-image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.specs-image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249,245,238,0.95) 0%, rgba(249,245,238,0.68) 22%, rgba(249,245,238,0.06) 62%, transparent 100%);
}

/* ---------- Section 10: Location ---------- */

.location-section {
  padding: 16px 0 22px;
  background: linear-gradient(180deg, #fbf8f1, #f5ede3);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 780px;
  gap: 28px;
  padding: 24px 30px 30px;
  border: 1px solid rgba(180, 139, 91, 0.20);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.56);
  box-shadow: 0 10px 34px rgba(72, 44, 26, 0.06);
}

.location-copy h2 {
  margin: 6px 0 0;
  font-family: var(--heading-font);
  font-size: clamp(42px, 3.6vw, 76px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #20130d;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
}

.location-address i {
  color: #a36b2b;
  font-size: 54px;
  margin-top: 2px;
}

.location-address p {
  margin: 0;
  color: #3a2d24;
  font-size: clamp(22px, 1.85vw, 28px);
  line-height: 1.25;
}

.location-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: #5c4a3d;
  font-size: 18px;
  line-height: 1.55;
}

.location-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.location-mini-card {
  min-height: 108px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(195, 171, 144, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
}

.location-mini-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0e2cd;
  color: #9f6f35;
  font-size: 30px;
  flex: 0 0 64px;
}

.location-mini-card h3 {
  margin: 0;
  font-size: 20px;
  color: #23170f;
}

.location-mini-card p {
  margin: 4px 0 0;
  color: #5c5146;
  font-size: 18px;
}

.location-action-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.location-btn {
  min-height: 76px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 14px;
  border: 1px solid #b78045;
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
}

.location-btn-primary {
  color: #fff6eb;
  background: linear-gradient(90deg, #cba464, #b88441);
}

.location-btn-outline {
  color: #2c1c12;
  background: transparent;
}

.nearby-block {
  margin-top: 28px;
}

.nearby-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.nearby-head h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(28px, 2.2vw, 44px);
  font-weight: 600;
  color: #24170f;
}

.nearby-head span {
  height: 1px;
  background: rgba(181, 148, 114, 0.38);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.nearby-card {
  min-height: 84px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(195, 171, 144, 0.55);
  border-radius: 16px;
  background: rgba(255,255,255,0.42);
}

.nearby-card i {
  color: #a36b2b;
  font-size: 28px;
}

.nearby-card h4 {
  margin: 0;
  color: #2d2018;
  font-size: 14px;
  line-height: 1.1;
}

.nearby-card p {
  margin: 2px 0 0;
  color: #8e6639;
  font-size: 18px;
  font-weight: 600;
}

.location-map-panel {
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #f2ede4;
}

.location-map-panel img,
.location-map-panel iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.location-map-panel iframe {
  min-height: inherit;
}

/* ---------- Section 11: RERA + CTA ---------- */

.rera-developer-section {
  background: linear-gradient(180deg, #faf7f1, #f6efe6);
}

.rera-dev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  padding: 20px 0 14px;
}

.rera-panel,
.developer-panel {
  padding: 0 26px 10px;
}

.rera-panel {
  border-right: 1px solid rgba(177, 142, 105, 0.44);
}

.rera-panel h2,
.developer-panel h2 {
  margin: 4px 0 0;
  font-family: var(--heading-font);
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 600;
  line-height: 1;
  color: #1f130c;
}

.rera-phases {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.rera-phase h3 {
  margin: 0;
  font-size: 18px;
  color: #21140d;
}

.rera-phase p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: #3b332b;
}

.rera-info-btn {
  margin-top: 20px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(209, 156, 85, 0.74);
  color: #2b1a10;
  background: linear-gradient(180deg, #efc77f, #c99148);
  font-size: 16px;
  font-weight: 700;
}

.developer-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.developer-panel h3 {
  margin: 10px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  color: #33261d;
}

.developer-address-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.developer-address-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #23150e;
}

.developer-address-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #3b332b;
}

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

.brand-emblem {
  width: 74px;
  height: 102px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border: 3px solid #d3a257;
  border-radius: 22px;
  color: #d3a257;
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
}

.brand-name {
  color: #23150d;
  font-family: var(--heading-font);
  font-size: clamp(22px, 1.8vw, 38px);
  font-weight: 600;
}

.brand-tag {
  margin-top: 4px;
  color: #40362e;
  font-size: 14px;
}

.visit-cta-band {
  margin-top: 8px;
  background:
    linear-gradient(rgba(35, 13, 7, 0.38), rgba(35, 13, 7, 0.46)),
    url("../images/backgrounds/marble-light.png") center / cover no-repeat;
}

.visit-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.visit-cta-copy {
  padding: 22px 0 22px;
}

.visit-cta-copy h2 {
  margin: 4px 0 0;
  font-family: var(--heading-font);
  font-size: clamp(34px, 3.3vw, 60px);
  font-weight: 500;
  line-height: 0.96;
  color: #fff8ef;
}

.visit-cta-copy h2 span {
  color: #e4bf83;
  font-style: italic;
}

.visit-cta-copy p {
  margin: 10px 0 0;
  color: rgba(255, 247, 238, 0.9);
  font-size: 16px;
}

.visit-cta-form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 210px 190px 190px 210px 300px 160px 170px;
  gap: 10px;
  align-items: center;
}

.visit-cta-form input,
.visit-cta-select-wrap {
  min-height: 52px;
  border: 1px solid rgba(235, 185, 111, 0.58);
  border-radius: 10px;
  background: rgba(37, 12, 4, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 236, 204, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.visit-cta-form input,
.visit-cta-select-wrap select {
  width: 100%;
  height: 100%;
  padding: 0 14px;
  color: #fff6ea;
  font-size: 14px;
  outline: none;
}

.visit-cta-select-wrap select {
  padding-right: 42px;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.visit-cta-select-wrap option {
  background: #2b0d03;
  color: #fff6ea;
}

.visit-cta-form input::placeholder {
  color: rgba(255, 239, 218, 0.9);
}

.visit-cta-select-wrap {
  position: relative;
}

.visit-cta-select-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  color: #fff1dd;
  transform: translateY(-50%);
  pointer-events: none;
}

.visit-cta-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid rgba(214, 160, 91, 0.72);
  color: #2a1a10;
  background: linear-gradient(180deg, #efc77f, #c88e43);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(19, 5, 0, 0.2);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.visit-cta-submit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  left: -26%;
  width: 22%;
  height: 260%;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(20deg) translateX(-320%);
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.visit-cta-submit i,
.visit-cta-chip i {
  transition: transform 220ms ease;
}

.visit-cta-chip {
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(214, 160, 91, 0.72);
  border-radius: 10px;
  color: #fff5e8;
  background: rgba(46, 20, 10, 0.48);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.visit-cta-form input:hover,
.visit-cta-select-wrap:hover {
  border-color: rgba(232, 184, 111, 0.62);
  background: rgba(58, 24, 10, 0.66);
}

.visit-cta-form input:focus,
.visit-cta-select-wrap:focus-within {
  transform: translateY(-2px);
  border-color: #edb867;
  background: rgba(58, 24, 10, 0.76);
  box-shadow: 0 0 0 3px rgba(237, 184, 103, 0.13), 0 10px 24px rgba(14, 3, 0, 0.2);
}

.visit-cta-form input.is-invalid,
.visit-cta-select-wrap.is-invalid {
  border-color: #ff9f8e;
  box-shadow: 0 0 0 3px rgba(255, 111, 91, 0.12);
}

.visit-cta-status {
  grid-column: 1 / -1;
  min-height: 16px;
  margin: 0;
  color: #bff1c8;
  font-size: 12px;
  line-height: 1.35;
}

.visit-cta-status.is-error {
  color: #ffc0b5;
}

.visit-cta-status:not(:empty) {
  animation: visitStatusIn 240ms ease-out both;
}

@keyframes visitStatusIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) {
  .visit-cta-submit:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 14px 30px rgba(19, 5, 0, 0.3);
  }

  .visit-cta-submit:hover::before {
    transform: rotate(20deg) translateX(720%);
  }

  .visit-cta-submit:hover i {
    transform: translateX(4px);
  }

  .visit-cta-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 190, 119, 0.92);
    background: rgba(86, 34, 11, 0.68);
    box-shadow: 0 12px 26px rgba(15, 4, 0, 0.24);
  }

  .visit-cta-chip:hover i {
    transform: scale(1.14) rotate(-7deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visit-cta-form input,
  .visit-cta-select-wrap,
  .visit-cta-submit,
  .visit-cta-submit::before,
  .visit-cta-submit i,
  .visit-cta-chip,
  .visit-cta-chip i,
  .visit-cta-status {
    animation: none;
    transition: none;
  }

  .visit-cta-form input:focus,
  .visit-cta-select-wrap:focus-within,
  .visit-cta-submit:hover,
  .visit-cta-chip:hover,
  .visit-cta-submit:hover i,
  .visit-cta-chip:hover i {
    transform: none;
  }
}

.visit-cta-image {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.visit-cta-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visit-cta-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46, 20, 10, 0.25), rgba(46, 20, 10, 0.02));
}

.visit-cta-image-text {
  position: absolute;
  right: 40px;
  bottom: 34px;
  text-align: right;
  color: #efe3cf;
  font-family: var(--heading-font);
  font-size: clamp(24px, 2vw, 42px);
  line-height: 1.05;
}

/* ---------- Section 12: FAQ ---------- */

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0 36px;
  background:
    radial-gradient(circle at 8% 88%, rgba(190, 145, 84, 0.08), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(190, 145, 84, 0.07), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f5eee4 100%);
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 250px;
  opacity: 0.07;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 15%, transparent 0 60%, rgba(177, 142, 105, 0.55) 61% 61.5%, transparent 62%),
    radial-gradient(ellipse at 40% 35%, transparent 0 50%, rgba(177, 142, 105, 0.55) 51% 51.5%, transparent 52%),
    radial-gradient(ellipse at 20% 70%, transparent 0 50%, rgba(177, 142, 105, 0.55) 51% 51.5%, transparent 52%);
}

.faq-section::before {
  left: -34px;
  bottom: 6px;
}

.faq-section::after {
  right: -18px;
  top: 10px;
  transform: scaleX(-1);
}

.faq-kicker-row {
  display: grid;
  grid-template-columns: auto 110px;
  gap: 20px;
  align-items: center;
}

.faq-kicker-row span {
  height: 1px;
  background: linear-gradient(90deg, rgba(175, 136, 86, 0.62), rgba(175, 136, 86, 0.12));
}

.faq-heading h2 {
  margin: 9px 0 0;
  max-width: 980px;
  font-family: var(--heading-font);
  font-size: clamp(40px, 3.15vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #1d130d;
}

.faq-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117, 76, 43, 0.08);
  border-radius: 12px;
  background: rgba(247, 241, 232, 0.82);
  box-shadow: 0 5px 16px rgba(63, 36, 20, 0.035);
  transition:
    transform 260ms cubic-bezier(.2,.8,.2,1),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #d7a552, #9f6428);
  opacity: 0;
  transform: scaleY(.35);
  transform-origin: center;
  transition: opacity 240ms ease, transform 300ms cubic-bezier(.2,.8,.2,1);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 132, 67, 0.26);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 10px 28px rgba(63, 36, 20, 0.09);
}

.faq-item[open] {
  border-color: rgba(184, 132, 67, 0.32);
  background: #fffaf2;
  box-shadow: 0 12px 30px rgba(63, 36, 20, 0.10);
}

.faq-item:hover::before,
.faq-item[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq-item summary {
  min-height: 50px;
  padding: 0 17px 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  color: #2a1a10;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  transition: color 220ms ease, padding 220ms ease;
}

.faq-item summary:hover,
.faq-item[open] summary {
  color: #6f3f18;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(181, 125, 55, 0.58);
  outline-offset: -3px;
  border-radius: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(182, 126, 58, 0.09);
  color: #7f4b20;
  font-size: 14px;
  transition:
    transform 320ms cubic-bezier(.2,.8,.2,1),
    background-color 220ms ease,
    color 220ms ease;
}

.faq-item:hover summary i {
  background: rgba(182, 126, 58, 0.16);
}

.faq-item[open] summary i {
  transform: rotate(180deg);
  background: #9f6428;
  color: #fff8ee;
}

.faq-item p {
  margin: 0;
  padding: 0 48px 17px 19px;
  color: #59483a;
  font-size: 14px;
  line-height: 1.62;
}

.faq-item[open] p {
  animation: faqAnswerIn 320ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-item::before,
  .faq-item summary,
  .faq-item summary i,
  .faq-item[open] p {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1600px) {
  .plan-summary-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .specs-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .location-card {
    grid-template-columns: minmax(0, 1fr) 640px;
  }

  .visit-cta-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

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

@media (max-width: 1280px) {
  .plan-summary-inner,
  .specs-inner,
  .location-card,
  .rera-dev-grid,
  .visit-cta-inner {
    grid-template-columns: 1fr;
  }

  .plan-summary-aside {
    min-height: 0;
  }

  .specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
  }

  .spec-item {
    min-height: 0;
    padding-right: 16px;
  }

  .spec-item:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }

  .location-card {
    padding: 22px;
  }

  .location-map-panel {
    min-height: 420px;
  }

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

  .rera-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(177, 142, 105, 0.44);
    padding-bottom: 20px;
  }

  .developer-panel {
    padding-top: 20px;
  }

  .visit-cta-copy {
    padding-bottom: 10px;
  }

  .visit-cta-image {
    min-height: 220px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .plan-summary-section,
  .specifications-section,
  .location-section,
  .faq-section {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .plan-summary-inner {
    gap: 16px;
  }

  .plan-summary-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .plan-summary-head h2,
  .specs-copy h2,
  .faq-heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .plan-summary-table thead th,
  .plan-summary-table tbody td {
    font-size: 14px;
    padding: 10px;
  }

  .summary-price-btn {
    min-width: 150px;
    min-height: 38px;
    font-size: 14px;
  }

  .plan-summary-aside {
    padding: 24px 20px;
  }

  .plan-summary-aside h3 {
    font-size: 34px;
  }

  .advisor-btn {
    margin-top: 22px;
    min-height: 56px;
    font-size: 16px;
  }

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

  .spec-item {
    border-right: 0;
    padding: 0 12px 0 0 !important;
  }

  .location-copy h2 {
    font-size: clamp(38px, 9vw, 54px);
  }

  .location-address i {
    font-size: 42px;
  }

  .location-address p {
    font-size: 18px;
  }

  .location-feature-row {
    grid-template-columns: 1fr;
  }

  .location-action-row {
    flex-direction: column;
  }

  .location-btn {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

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

  .rera-phases,
  .developer-address-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .developer-panel {
    grid-template-columns: 1fr;
  }

  .visit-cta-copy h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .visit-cta-form {
    grid-template-columns: 1fr;
  }

  .visit-cta-submit,
  .visit-cta-chip {
    width: 100%;
  }

  .visit-cta-image-text {
    right: 20px;
    bottom: 20px;
    font-size: 24px;
  }

  .faq-kicker-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-kicker-row span {
    width: 120px;
  }
}

@media (max-width: 560px) {
  .plan-summary-head h2,
  .specs-copy h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.08;
  }

  .plan-summary-head {
    margin-bottom: 10px;
  }

  .plan-summary-table {
    display: table;
    table-layout: fixed;
    overflow: hidden;
    white-space: normal;
    box-shadow: 0 8px 22px rgba(69, 33, 14, 0.08);
  }

  .plan-summary-table thead th:first-child,
  .plan-summary-table tbody tr td:first-child {
    width: 38px;
  }

  .plan-summary-table thead th:last-child {
    width: 96px;
  }

  .plan-summary-table thead th,
  .plan-summary-table tbody td {
    padding: 8px 5px;
    font-size: 11px;
    line-height: 1.3;
  }

  .plan-summary-table tbody td:nth-child(2) {
    overflow-wrap: break-word;
  }

  .plan-summary-table tbody tr td:first-child {
    font-size: 13px;
  }

  .summary-price-btn {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0 4px;
    border-radius: 8px;
    font-size: 11px;
  }

  .summary-price-btn i {
    display: none;
  }

  .plan-summary-note {
    font-size: 11px;
    line-height: 1.35;
  }

  .plan-summary-aside {
    display: none;
  }

  .specifications-section {
    padding: 20px 0 24px;
  }

  .specs-grid {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .spec-item {
    min-height: 112px;
    padding: 12px !important;
    border: 0;
    border-radius: 10px;
    background: rgba(30, 10, 4, 0.55);
    box-shadow: inset 0 0 0 1px rgba(238, 190, 121, 0.38), 0 8px 18px rgba(0, 0, 0, 0.12);
  }

  .spec-item:nth-child(7) {
    display: none;
  }

  .spec-icon {
    width: 32px;
    height: 32px;
    border-width: 1px;
    font-size: 14px;
  }

  .spec-text h3 {
    margin: 8px 0 3px;
    font-size: 14px;
    line-height: 1.15;
  }

  .spec-text p {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 16px;
    border-radius: 18px;
  }

  .location-map-panel {
    min-height: 300px;
    border-radius: 18px;
  }

  .faq-item summary {
    font-size: 15px;
  }
}

/* =========================================================
   FULL UI PROFESSIONAL POLISH v14
   Desktop goal: each major visual section remains fully visible
   inside a standard 1440×900 / laptop viewport without oversized UI.
   ========================================================= */

:root {
  --header-height: 66px;
  --container: 1560px;
  --section-space: 56px;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  font-size: 15px;
  line-height: 1.5;
}

main > section,
footer {
  scroll-margin-top: var(--header-height);
}

.section-container {
  width: min(calc(100% - 56px), var(--container));
}

/* ---------- Header ---------- */

.site-header {
  height: var(--header-height);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  gap: 26px;
}

.brand {
  font-size: 23px;
}

.desktop-nav {
  gap: clamp(11px, 1vw, 18px);
}

.desktop-nav a {
  font-size: 11px;
}

.header-actions {
  gap: 8px;
}

.header-actions .btn {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 11px;
}

/* ---------- Shared typography ---------- */

.section-kicker,
.section-kicker-alt,
.dark-section-kicker,
.master-plan-kicker,
.residence-kicker {
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
}

.btn {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

/* ---------- Master Plan ---------- */

@media (min-width: 1101px) {
  .master-plan-section {
    height: calc(100svh - var(--header-height));
    min-height: 650px;
    max-height: 830px;
    overflow: hidden;
  }

  .master-plan-inner {
    height: 100%;
    grid-template-columns: minmax(500px, 0.78fr) minmax(0, 1.22fr);
  }

  .master-plan-copy {
    overflow: hidden;
    padding: 30px 28px 28px max(28px, calc((100vw - 1560px) / 2 + 28px));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .master-plan-kicker {
    margin-bottom: 8px;
  }

  .master-plan-copy h2 {
    font-size: clamp(36px, 3vw, 48px);
  }

  .master-plan-intro {
    max-width: 560px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .master-plan-actions {
    margin-top: 16px;
    gap: 12px;
  }

  .master-btn,
  .master-btn-outline {
    min-width: 0;
    min-height: 46px;
    padding: 0 20px;
    font-size: 12px;
    border-radius: 8px;
  }

  .master-plan-legend {
    margin-top: 22px;
    column-gap: 12px;
  }

  .legend-column {
    gap: 8px;
  }

  .legend-item {
    min-height: 38px;
    padding: 5px 8px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    border: 1px solid rgba(179, 142, 99, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
  }

  .legend-badge {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .legend-item span:last-child {
    font-size: 12px;
    line-height: 1.2;
  }

  .master-plan-visual {
    min-height: 0;
    height: 100%;
    padding: 14px;
    background: #e8e0d5;
  }

  .master-plan-visual img {
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(56, 37, 24, 0.16);
  }
}

/* ---------- Lifestyle ---------- */

@media (min-width: 1101px) {
  .lifestyle-section {
    min-height: 390px;
    max-height: calc(100svh - var(--header-height));
  }

  .lifestyle-inner {
    padding: 24px 0 28px;
  }

  .lifestyle-heading {
    margin-bottom: 10px;
  }

  .lifestyle-heading h2 {
    font-size: clamp(30px, 2.55vw, 42px);
  }

  .lifestyle-tabs {
    gap: 8px;
    margin-bottom: 12px;
  }

  .lifestyle-tab {
    height: 44px;
    min-width: 230px;
    padding: 9px 15px;
    gap: 10px;
    border-radius: 8px;
    font-size: 13px;
  }

  .lifestyle-tab i {
    font-size: 14px;
  }

  .lifestyle-card {
    width: 206px;
    flex-basis: 206px;
  }

  .lifestyle-card-image {
    height: 128px;
    border-radius: 8px;
  }

  .lifestyle-card-caption {
    margin-top: 6px;
    font-size: 13px;
  }

  .lifestyle-nav {
    width: 46px;
    height: 46px;
  }

  .lifestyle-nav i {
    font-size: 17px;
  }

  .lifestyle-nav-prev { left: -25px; }
  .lifestyle-nav-next { right: -25px; }
}

/* ---------- Residences ---------- */

@media (min-width: 1101px) {
  .residences-slider,
  .residence-image-panel,
  .residence-image-panel img,
  .residence-content-panel {
    min-height: 0;
    height: calc(100svh - var(--header-height));
    max-height: 800px;
  }

  .residence-copy {
    width: min(610px, calc(100% - 56px));
    padding: 30px 0 48px;
  }

  .residence-kicker {
    margin-bottom: 12px;
  }

  .residence-copy h2 {
    font-size: clamp(38px, 3.25vw, 54px);
  }

  .residence-intro {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.45;
  }

  .residence-features {
    margin-top: 22px;
  }

  .residence-feature {
    padding: 0 12px;
    gap: 10px;
  }

  .residence-feature i {
    font-size: 22px;
  }

  .residence-feature span {
    font-size: 10.5px;
  }

  .residence-actions {
    margin-top: 26px;
    gap: 12px;
  }

  .residence-btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 12px;
    border-radius: 8px;
  }

  .residence-arrow {
    width: 54px;
    height: 54px;
  }

  .residence-arrow i {
    font-size: 19px;
  }
}

/* ---------- Floor plans ---------- */

@media (min-width: 1101px) {
  .floor-plans-section {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 28px 0;
  }

  .floor-plans-inner {
    padding: 0 14px;
  }

  .floor-tabs {
    gap: 6px;
  }

  .floor-tab {
    min-height: 54px;
    padding: 6px 12px;
    border-radius: 9px;
  }

  .floor-tab-title {
    font-size: 19px;
  }

  .floor-tab-size {
    margin-top: 3px;
    font-size: 12px;
  }

  .floor-content {
    padding: 8px 18px 4px;
  }

  .floor-content-head h2 {
    font-size: clamp(34px, 2.8vw, 46px);
  }

  .floor-content-head p {
    margin-top: 4px;
    font-size: 14px;
  }

  .floor-main-grid {
    margin-top: 4px;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 24px;
  }

  .floor-plan-visual img {
    max-height: 340px;
  }

  .floor-area-row {
    min-height: 48px;
  }

  .floor-area-row > span,
  .floor-area-row > strong {
    min-height: 48px;
    padding: 0 18px;
  }

  .floor-area-row > span,
  .floor-area-row > strong {
    font-size: 14px;
  }

  .floor-actions {
    margin-top: 12px;
    gap: 10px;
  }

  .floor-btn {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
  }
}

/* ---------- Floor Plan summary ---------- */

@media (min-width: 1101px) {
  .plan-summary-section {
    min-height: 335px;
    max-height: calc(100svh - var(--header-height));
    padding: 16px 0 18px;
  }

  .plan-summary-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
  }

  .plan-summary-head {
    margin-bottom: 8px;
  }

  .plan-summary-head h2 {
    font-size: clamp(42px, 3.55vw, 61px);
  }

  .plan-summary-table thead th {
    padding: 7px 12px;
    font-size: 13px;
  }

  .plan-summary-table tbody td {
    padding: 7px 12px;
    font-size: 12px;
  }

  .plan-summary-table tbody tr td:first-child {
    width: 60px;
    font-size: 13px;
  }

  .summary-price-btn {
    min-width: 145px;
    min-height: 36px;
    border-radius: 8px;
    font-size: 13px;
  }

  .plan-summary-note {
    margin-top: 5px;
    font-size: 9.5px;
  }

  .plan-summary-aside {
    min-height: 260px;
    padding: 30px 24px;
    border-radius: 14px;
  }

  .plan-summary-aside h3 {
    font-size: clamp(26px, 1.9vw, 34px);
  }

  .advisor-btn {
    margin-top: 26px;
    min-height: 48px;
    border-radius: 9px;
    font-size: 14px;
  }
}

/* ---------- Specifications ---------- */

@media (min-width: 1101px) {
  .specifications-section {
    min-height: 0;
    padding: 18px 0;
  }

  .specs-inner {
    grid-template-columns: 1fr;
    padding: 24px 26px 26px;
  }

  .specs-copy h2 {
    font-size: clamp(30px, 2.45vw, 42px);
  }

  .specs-grid {
    margin-top: 22px;
  }

  .spec-item {
    min-height: 112px;
    padding-right: 20px;
  }

  .spec-item:not(:first-child) {
    padding-left: 20px;
  }

  .spec-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-width: 1px;
    background: rgba(34, 9, 1, 0.36);
    box-shadow: 0 5px 14px rgba(12, 3, 0, 0.2);
  }

  .spec-text h3 {
    margin-top: 11px;
    font-size: 13px;
  }

  .spec-text p {
    font-size: 11.5px;
    line-height: 1.35;
  }
}

/* ---------- Location ---------- */

@media (min-width: 1101px) {
  .location-section {
    height: calc(100svh - var(--header-height));
    min-height: 640px;
    max-height: none;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  .location-card {
    height: calc(100% - 20px);
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.78fr);
    gap: 18px;
    padding: 20px 22px;
    border-radius: 18px;
  }

  .location-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .location-copy h2 {
    font-size: clamp(34px, 2.7vw, 46px);
  }

  .location-address {
    gap: 12px;
    margin-top: 10px;
  }

  .location-address i {
    font-size: 35px;
  }

  .location-address p {
    font-size: 15px;
  }

  .location-intro {
    max-width: 620px;
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .location-feature-row {
    gap: 10px;
    margin-top: 12px;
  }

  .location-mini-card {
    min-height: 74px;
    padding: 10px 12px;
    gap: 11px;
    border-radius: 10px;
  }

  .location-mini-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 18px;
  }

  .location-mini-card h3 {
    font-size: 13px;
  }

  .location-mini-card p {
    margin-top: 1px;
    font-size: 11px;
  }

  .location-action-row {
    gap: 10px;
    margin-top: 12px;
  }

  .location-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 9px;
    font-size: 14px;
  }

  .nearby-block {
    margin-top: 18px;
  }

  .nearby-head h3 {
    font-size: 24px;
  }

  .nearby-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .nearby-card {
    min-height: 62px;
    padding: 8px 10px;
    gap: 8px;
    border-radius: 9px;
  }

  .nearby-card i {
    font-size: 18px;
  }

  .nearby-card h4 {
    font-size: 11px;
  }

  .nearby-card p {
    font-size: 13px;
  }

  .location-map-panel {
    min-height: 0;
    height: 100%;
    max-height: none;
    border-radius: 16px;
  }
}

/* ---------- RERA + Developer + CTA ---------- */

@media (min-width: 1101px) {
  .rera-developer-section {
    max-height: calc(100svh - var(--header-height));
    overflow: hidden;
  }

  .rera-dev-grid {
    padding: 14px 0 8px;
  }

  .rera-panel,
  .developer-panel {
    padding: 0 18px 8px;
  }

  .rera-panel h2,
  .developer-panel h2 {
    font-size: clamp(25px, 2vw, 34px);
  }

  .rera-phases {
    margin-top: 12px;
    gap: 18px;
  }

  .rera-phase h3 {
    font-size: 12px;
  }

  .rera-phase p {
    margin-top: 5px;
    font-size: 9.5px;
  }

  .rera-info-btn {
    margin-top: 12px;
    min-height: 38px;
    font-size: 10px;
  }

  .developer-panel h3 {
    margin-top: 5px;
    font-size: 14px;
  }

  .developer-address-grid {
    margin-top: 12px;
    gap: 18px;
  }

  .developer-address-grid strong {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .developer-address-grid p {
    font-size: 9.5px;
  }

  .brand-emblem {
    width: 50px;
    height: 66px;
    margin-bottom: 6px;
    border-radius: 14px;
    font-size: 20px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tag {
    font-size: 9.5px;
  }

  .visit-cta-band {
    margin-top: 4px;
    background:
      linear-gradient(rgba(35, 13, 7, 0.38), rgba(35, 13, 7, 0.46)),
      url("../images/backgrounds/marble-light.png") center / cover no-repeat;
  }

  .visit-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .visit-cta-copy {
    padding: 14px 0;
  }

  .visit-cta-copy h2 {
    font-size: clamp(28px, 2.4vw, 42px);
  }

  .visit-cta-copy p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .visit-cta-form {
    margin-top: 12px;
    grid-template-columns: 1.05fr 1fr 1.1fr 1.1fr 1.55fr 0.82fr 0.9fr;
    gap: 8px;
  }

  .visit-cta-form input,
  .visit-cta-select-wrap {
    min-height: 46px;
  }

  .visit-cta-form input,
  .visit-cta-select-wrap select {
    padding: 0 13px;
    font-size: 12.5px;
    font-weight: 500;
  }

  .visit-cta-submit,
  .visit-cta-chip {
    min-height: 46px;
    font-size: 11.5px;
    border-radius: 9px;
  }

  .visit-cta-image {
    min-height: 190px;
  }

  .visit-cta-image-text {
    right: 22px;
    bottom: 20px;
    font-size: 22px;
  }
}

/* ---------- FAQ ---------- */

@media (min-width: 1101px) {
  .faq-section {
    min-height: 460px;
    max-height: calc(100svh - var(--header-height));
    padding: 24px 0 30px;
  }

  .faq-kicker-row {
    grid-template-columns: auto 88px;
    gap: 13px;
  }

  .faq-heading h2 {
    margin-top: 7px;
    font-size: clamp(34px, 2.65vw, 46px);
  }

  .faq-grid {
    margin-top: 18px;
    gap: 13px;
  }

  .faq-column {
    gap: 8px;
  }

  .faq-item summary {
    min-height: 44px;
    padding: 0 14px 0 16px;
    font-size: 13.5px;
    line-height: 1.3;
  }

  .faq-item summary i {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .faq-item p {
    padding: 0 42px 13px 16px;
    font-size: 12px;
    line-height: 1.55;
  }
}

/* ---------- Premium Footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  color: #f7eadb;
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 132, 67, 0.11), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(222, 170, 97, 0.06), transparent 30%),
    linear-gradient(180deg, #241108 0%, #150905 54%, #0f0603 100%);
  border-top: 1px solid rgba(222, 170, 97, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 68%);
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

.footer-main,
.footer-rera-strip,
.footer-bottom,
.footer-disclaimer {
  position: relative;
  z-index: 1;
}

.footer-main {
  padding: 50px 0 34px;
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.78fr 1fr;
  gap: clamp(36px, 4vw, 68px);
}

.footer-brand-column {
  padding-right: clamp(0px, 2vw, 24px);
}

.footer-brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  padding-bottom: 15px;
  color: #e7b968;
  font-family: var(--heading-font);
  font-size: 31px;
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: color 320ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}

.footer-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #dca653, transparent);
  transition: width 320ms ease;
}

.footer-brand:hover {
  color: #f3ca81;
  transform: translateY(-2px);
}

.footer-brand:hover::after {
  width: 86px;
}

.footer-summary {
  max-width: 440px;
  margin: 20px 0 0;
  color: rgba(247, 234, 219, 0.74);
  font-size: 13.5px;
  line-height: 1.72;
  letter-spacing: 0.002em;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #fff9f1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: rgba(221, 166, 83, 0.72);
  transition: width 280ms ease;
}

.footer-column:hover h3::after {
  width: 46px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links a,
.footer-link-button {
  position: relative;
  padding: 3px 0;
  border: 0;
  color: rgba(247, 234, 219, 0.72);
  background: transparent;
  font-size: 12.75px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition:
    color 240ms ease,
    transform 280ms cubic-bezier(.2,.7,.2,1);
}

.footer-links a::before,
.footer-link-button::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 5px;
  height: 1px;
  background: #e0aa57;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms ease;
}

.footer-links a:hover,
.footer-link-button:hover,
.footer-links a:focus-visible,
.footer-link-button:focus-visible {
  color: #efc47c;
  transform: translateX(7px);
}

.footer-links a:hover::before,
.footer-link-button:hover::before,
.footer-links a:focus-visible::before,
.footer-link-button:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.footer-contact-column > p {
  margin: 0;
  color: rgba(247, 234, 219, 0.72);
  font-size: 12.75px;
  line-height: 1.72;
}

.footer-contact-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 10px;
  border: 1px solid rgba(225, 177, 102, 0.18);
  border-radius: 999px;
  color: #e9bd73;
  background: rgba(255,255,255,0.018);
  font-size: 12.5px;
  transition:
    color 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    transform 280ms cubic-bezier(.2,.7,.2,1),
    box-shadow 280ms ease;
}

.footer-contact-actions a i {
  width: 17px;
  text-align: center;
  transition: transform 260ms ease;
}

.footer-contact-actions a:hover,
.footer-contact-actions a:focus-visible {
  color: #fff1d5;
  border-color: rgba(225, 177, 102, 0.48);
  background: rgba(225, 177, 102, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.footer-contact-actions a:hover i {
  transform: scale(1.08);
}

.footer-rera-strip {
  padding: 19px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.075);
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.footer-rera-strip > div {
  min-width: 0;
  padding: 3px 24px;
  border-right: 1px solid rgba(255,255,255,0.075);
  transition: background 260ms ease, transform 260ms ease;
}

.footer-rera-strip > div:hover {
  background: rgba(225, 177, 102, 0.035);
  transform: translateY(-1px);
}

.footer-rera-strip > div:first-child {
  padding-left: 0;
}

.footer-rera-strip > div:last-child {
  border-right: 0;
}

.footer-rera-strip span {
  display: block;
  color: #dfae64;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.footer-rera-strip strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  color: rgba(247, 234, 219, 0.67);
  font-size: 10.5px;
  line-height: 1.45;
  font-weight: 500;
}

.footer-bottom {
  background: rgba(0,0,0,0.13);
}

.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(247, 234, 219, 0.58);
  font-size: 11.5px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal-links a {
  position: relative;
  padding: 4px 0;
  color: rgba(247, 234, 219, 0.64);
  font-size: 11.5px;
  transition: color 220ms ease;
}

.footer-legal-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #dbab62;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #efc47c;
}

.footer-legal-links a:hover::after,
.footer-legal-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-disclaimer {
  padding: 15px 0 24px;
}

.footer-disclaimer p {
  max-width: 1240px;
  margin: 0;
  color: rgba(247, 234, 219, 0.46);
  font-size: 9.75px;
  line-height: 1.65;
}

.site-footer a:focus-visible,
.site-footer button:focus-visible {
  outline: 2px solid rgba(231, 185, 104, 0.85);
  outline-offset: 4px;
}

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

/* ---------- Common desktop short-height fallback ---------- */

@media (min-width: 1101px) and (max-height: 760px) {
  :root {
    --header-height: 60px;
  }

  .project-overview-shell {
    min-height: max(560px, calc(100svh - var(--header-height)));
    align-items: center;
  }

  .overview-copy-panel {
    align-self: center;
  }

  .project-overview-section,
  .master-plan-section,
  .residences-slider,
  .residence-image-panel,
  .residence-image-panel img,
  .residence-content-panel,
  .location-section {
    height: calc(100svh - var(--header-height));
    min-height: 560px;
  }

  .hero h1 { font-size: 52px; }
  .hero h2 { font-size: 27px; }
  .hero-form-card { padding: 12px 14px; }
  .price-strip { min-height: 56px; }

  .overview-title,
  .at-glance-heading h2,
  .plan-summary-head h2 { font-size: 38px; }
  .overview-intro { font-size: 13.5px; }
  .overview-feature-card { min-height: 60px; }

  .residence-copy h2 { font-size: 42px; }
  .residence-intro { font-size: 11.5px; }
  .residence-actions { margin-top: 18px; }

  .floor-tab { min-height: 50px; }
  .floor-plan-visual img { max-height: 320px; }
  .floor-area-row,
  .floor-area-row > span,
  .floor-area-row > strong { min-height: 48px; }

  .location-map-panel { max-height: none; }
}

/* ---------- Tablet/mobile footer ---------- */

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 46px;
  }

  .footer-rera-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-rera-strip > div,
  .footer-rera-strip > div:first-child {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-rera-strip > div:last-child {
    padding-bottom: 11px;
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 38px 0 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    font-size: 29px;
  }

  .footer-summary {
    max-width: 100%;
    font-size: 13px;
  }

  .footer-links a,
  .footer-link-button,
  .footer-contact-column > p,
  .footer-contact-actions a {
    font-size: 12.5px;
  }

  .footer-bottom-inner {
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .footer-disclaimer {
    padding-top: 14px;
    padding-bottom: 88px;
  }

  .footer-disclaimer p {
    font-size: 9.5px;
  }
}


.desktop-nav a.is-active {
  color: var(--gold-light);
}

.desktop-nav a.is-active::after {
  width: 100%;
}

/* =========================================================
   HERO PROFESSIONAL POLISH
   Uses the supplied project visual and keeps the complete
   desktop hero within the available viewport height.
   ========================================================= */

.hero-background {
  background-color: #130b07;
  background-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(12, 7, 4, 0.76) 0%,
      rgba(12, 7, 4, 0.61) 31%,
      rgba(12, 7, 4, 0.24) 58%,
      rgba(12, 7, 4, 0.36) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 5, 3, 0.12) 0%,
      rgba(8, 5, 3, 0.04) 48%,
      rgba(10, 6, 3, 0.57) 100%
    );
}

.hero-content {
  animation: none;
}

.hero-content > * {
  animation: heroElementReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > h1 { animation-delay: 80ms; }
.hero-content > h2 { animation-delay: 160ms; }
.hero-content > .hero-description { animation-delay: 240ms; }
.hero-content > .hero-stats { animation-delay: 320ms; }

@keyframes heroElementReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.44);
}

.hero-description {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.hero-stats {
  border-color: rgba(226, 178, 105, 0.42);
  background: linear-gradient(110deg, rgba(18, 10, 6, 0.78), rgba(29, 16, 9, 0.58));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.stat-card {
  position: relative;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.stat-card:hover {
  background: rgba(220, 172, 98, 0.12);
  box-shadow: inset 0 0 30px rgba(229, 184, 111, 0.04);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover .stat-icon {
  transform: translateY(-2px) scale(1.05);
  background: rgba(225, 184, 115, 0.12);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

.hero-form-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 202, 135, 0.16), transparent 38%),
    linear-gradient(155deg, rgba(41, 29, 23, 0.54), rgba(20, 12, 9, 0.66));
  -webkit-backdrop-filter: blur(11px) saturate(1.18);
  backdrop-filter: blur(11px) saturate(1.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 36px rgba(255, 224, 176, 0.025);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 157, 0.88), transparent);
}

.hero-form-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.055), transparent 31%),
    radial-gradient(circle at 12% 88%, rgba(202, 142, 72, 0.08), transparent 34%);
}

.hero-form-card:hover,
.hero-form-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(240, 194, 122, 0.78);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(227, 179, 105, 0.08);
}

.form-group input,
.form-group select {
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.form-group input:hover,
.form-group select:hover {
  border-color: rgba(229, 183, 113, 0.56);
  background-color: rgba(255, 255, 255, 0.065);
}

.form-group input:focus,
.form-group select:focus {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 3px rgba(204, 153, 78, 0.12),
    0 8px 22px rgba(0, 0, 0, 0.16);
}

.hero .btn,
.hero .form-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero .btn::before,
.hero .form-submit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70%;
  left: -34%;
  width: 24%;
  height: 240%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(22deg) translateX(-280%);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero .btn:hover::before,
.hero .form-submit:hover::before {
  transform: rotate(22deg) translateX(720%);
}

.hero .btn:active,
.hero .form-submit:active {
  transform: translateY(0) scale(0.985);
}

.form-submit:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.price-strip {
  background:
    radial-gradient(circle at 78% 20%, rgba(220, 169, 91, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(23, 12, 7, 0.96), rgba(45, 22, 10, 0.91), rgba(22, 12, 7, 0.96));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

@media (min-width: 901px) {
  .hero {
    height: calc(100svh - clamp(36px, 6vh, 64px));
    min-height: 540px;
    max-height: 860px;
  }

  .hero-inner {
    width: min(calc(100% - 56px), var(--container));
    min-height: 0;
    padding: clamp(10px, 1.8vh, 20px) 0 clamp(8px, 1.3vh, 14px);
    grid-template-columns: minmax(0, 1fr) minmax(330px, 370px);
    gap: clamp(28px, 4vw, 70px);
  }

  .hero-content {
    max-width: 940px;
    transform: translateY(8px);
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(56px, 4.9vw, 86px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .hero h2 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(28px, 2.35vw, 40px);
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .hero-description {
    max-width: 750px;
    margin-bottom: 30px;
    font-size: clamp(13.5px, 1vw, 16px);
    line-height: 1.68;
  }

  .hero-stats {
    width: 100%;
    max-width: 700px;
  }

  .stat-card {
    min-width: 0;
    padding: 8px 12px;
    gap: 10px;
  }

  .stat-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .stat-icon i {
    font-size: 15px;
  }

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

  .stat-card span {
    font-size: 10.5px;
  }

  .hero-form-card {
    width: 100%;
    max-width: 370px;
    padding: 21px 22px;
  }

  .form-header {
    margin-bottom: 14px;
    padding-bottom: 13px;
  }

  .form-header h3 {
    font-size: 24px;
    line-height: 1.24;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-group label {
    margin-bottom: 5px;
    font-size: 10.5px;
  }

  .form-group input,
  .form-group select {
    height: 44px;
    padding-inline: 13px;
    font-size: 12.5px;
  }

  .form-group select {
    background-position:
      calc(100% - 18px) 19px,
      calc(100% - 13px) 19px;
  }

  .form-submit {
    height: 48px;
    margin-top: 4px;
    font-size: 12.5px;
  }

  .form-note {
    margin-top: 10px;
    font-size: 10px;
  }

  .price-strip {
    width: min(calc(100% - 56px), var(--container));
    min-height: 68px;
    margin: 0 auto 10px;
    padding: 9px 20px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .price-strip-copy > span {
    font-size: 13px;
  }

  .price-main {
    gap: 18px;
  }

  .price-main strong {
    font-size: clamp(25px, 1.8vw, 34px);
  }

  .price-main p {
    max-width: 470px;
    font-size: 10px;
  }

  .price-strip-actions {
    width: auto;
    gap: 10px;
  }

  .price-strip-actions .btn {
    min-width: 185px;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 10.5px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(54px, 6vw, 68px);
  }

  .hero h2 {
    font-size: clamp(27px, 3.1vw, 34px);
  }

  .price-main p {
    display: none;
  }

  .price-strip-actions .btn {
    min-width: 150px;
  }
}

@media (min-width: 901px) and (max-height: 680px) {
  :root {
    --header-height: 60px;
  }

  .hero-inner {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .hero h1 {
    margin-bottom: 9px;
    font-size: clamp(50px, 4.2vw, 64px);
  }

  .hero h2 {
    margin-bottom: 11px;
    font-size: clamp(25px, 2.1vw, 31px);
    line-height: 1.12;
  }

  .hero-description {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-content {
    transform: translateY(4px);
  }

  .stat-card {
    padding-block: 9px;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-form-card {
    padding: 13px 16px;
  }

  .form-header {
    margin-bottom: 7px;
    padding-bottom: 7px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .form-group {
    margin-bottom: 5px;
  }

  .form-group label {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .form-group input,
  .form-group select {
    height: 36px;
    font-size: 11px;
  }

  .form-group select {
    background-position:
      calc(100% - 18px) 15px,
      calc(100% - 13px) 15px;
  }

  .form-submit {
    height: 39px;
    margin-top: 2px;
    font-size: 11px;
  }

  .form-note {
    margin-top: 6px;
    font-size: 9px;
  }

  .price-strip {
    min-height: 56px;
    margin-bottom: 8px;
    padding-block: 6px;
  }

  .price-strip-actions .btn {
    min-height: 38px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-bottom: 82px;
  }

  .hero-background {
    background-color: #120a06;
    background-size: auto 580px;
    background-position: 58% 0;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 6, 3, 0.34) 0%, rgba(10, 6, 3, 0.55) 36%, rgba(18, 10, 6, 0.88) 75%, #120a06 100%),
      linear-gradient(90deg, rgba(10, 6, 3, 0.38), rgba(10, 6, 3, 0.1));
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero-content {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(48px, 9vw, 64px);
  }

  .hero h2 {
    font-size: clamp(26px, 4.3vw, 34px);
    line-height: 1.15;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-stats {
    scroll-snap-type: x proximity;
  }

  .stat-card {
    scroll-snap-align: start;
  }

  .hero-form-card {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    width: calc(100% - 28px);
    padding-top: 28px;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: clamp(42px, 11vw, 52px);
  }

  .hero h2 {
    margin: 10px 0 12px;
    font-size: clamp(23px, 5.8vw, 29px);
  }

  .hero-description {
    margin-bottom: 16px;
    font-size: 13.5px;
  }

  .hero-stats {
    margin-top: 16px;
  }

  .hero-form-card {
    padding: 20px;
  }

  .price-strip {
    width: calc(100% - 28px);
  }
}

/* =========================================================
   HERO — CURRENT FINAL RULES
   Cleaned version: obsolete v2/v4/v14 hero overrides removed.
   This is the single final override layer for the current hero.
   ========================================================= */

@media (min-width: 901px) {
  .hero {
    height: 100svh;
    min-height: 620px;
    max-height: 940px;
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
  }

  .hero-background {
    background-position: center 46%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(12, 7, 4, 0.58) 0%,
        rgba(12, 7, 4, 0.43) 29%,
        rgba(12, 7, 4, 0.15) 57%,
        rgba(12, 7, 4, 0.23) 100%
      ),
      linear-gradient(
        180deg,
        rgba(8, 5, 3, 0.06) 0%,
        rgba(8, 5, 3, 0.02) 54%,
        rgba(10, 6, 3, 0.40) 100%
      );
  }

  .hero-inner {
    width: min(calc(100% - 56px), var(--container));
    min-height: 0;
    flex: 1 1 auto;
    margin-inline: auto;
    padding: 6px 0;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 370px);
    gap: clamp(30px, 3.4vw, 58px);
    align-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: none;
  }

  .hero h1 {
    margin: 0 0 16px;
    font-size: clamp(60px, 4.7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.045em;
  }

  .hero h2 {
    width: 100%;
    max-width: 570px;
    margin: 0 0 20px;
    font-size: clamp(27px, 2vw, 34px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.018em;
    text-wrap: balance;
  }

  .hero-description {
    width: 100%;
    max-width: 680px;
    margin: 0 0 24px;
    font-size: clamp(14px, 1vw, 15.5px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-stats {
    width: 100%;
    max-width: 660px;
    margin-top: 2px;
    background: linear-gradient(110deg, rgba(18, 10, 6, 0.58), rgba(29, 16, 9, 0.42));
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  }

  .stat-card {
    flex: 1 1 0;
    min-width: 0;
    padding: 11px 12px;
    gap: 10px;
  }

  .stat-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
  }

  .stat-icon i {
    font-size: 14px;
  }

  .stat-card strong {
    margin-bottom: 3px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
    white-space: nowrap;
  }

  .stat-card span {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .hero-form-card {
    width: 100%;
    max-width: 360px;
    padding: 16px 18px;
    background:
      radial-gradient(circle at 100% 0%, rgba(245, 202, 135, 0.13), transparent 38%),
      linear-gradient(155deg, rgba(41, 29, 23, 0.5), rgba(20, 12, 9, 0.62));
    -webkit-backdrop-filter: blur(9px) saturate(1.15);
    backdrop-filter: blur(9px) saturate(1.15);
  }

  .form-header {
    margin-bottom: 9px;
    padding-bottom: 9px;
  }

  .form-header h3 {
    font-size: 21px;
  }

  .form-group {
    margin-bottom: 7px;
  }

  .form-group label {
    margin-bottom: 3px;
    font-size: 10.5px;
    line-height: 1.3;
  }

  .form-group input,
  .form-group select {
    height: 38px;
    font-size: 12.5px;
  }

  .form-submit {
    height: 42px;
    margin-top: 2px;
    font-size: 12px;
  }

  .form-note {
    margin-top: 7px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  .price-strip {
    flex: 0 0 auto;
    width: min(calc(100% - 56px), var(--container));
    min-height: 56px;
    margin: 0 auto 8px;
    padding: 7px 18px;
    gap: 16px;
  }

  .price-strip-copy > span {
    font-size: 12px;
  }

  .price-main {
    gap: 14px;
  }

  .price-main strong {
    font-size: clamp(22px, 1.55vw, 28px);
  }

  .price-main p {
    max-width: 430px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  .price-strip-actions .btn {
    min-width: 170px;
    min-height: 38px;
    padding-inline: 15px;
    font-size: 10.5px;
  }
}

@media (min-width: 1101px) {
  .hero-inner {
    width: min(calc(100% - 112px), 1560px);
    grid-template-columns: minmax(0, 650px) minmax(300px, 330px);
    justify-content: space-between;
    column-gap: clamp(80px, 8vw, 150px);
  }

  .hero-content {
    max-width: 650px;
    justify-self: start;
  }

  .hero h2 {
    max-width: 540px;
  }

  .hero-description,
  .hero-stats {
    max-width: 620px;
  }

  .hero-form-card {
    max-width: 330px;
    justify-self: end;
    margin-left: auto;
  }

  .price-strip {
    width: min(calc(100% - 112px), 1560px);
  }
}

@media (min-width: 1101px) and (max-width: 1366px) {
  .hero-inner {
    width: calc(100% - 88px);
    grid-template-columns: minmax(0, 620px) 315px;
    column-gap: clamp(58px, 6vw, 92px);
  }

  .hero-content {
    max-width: 620px;
  }

  .hero h2 {
    max-width: 520px;
  }

  .hero-description,
  .hero-stats {
    max-width: 600px;
  }

  .hero-form-card {
    max-width: 315px;
  }

  .price-strip {
    width: calc(100% - 88px);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero-inner {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .hero h1 {
    margin-bottom: 13px;
    font-size: clamp(54px, 4.25vw, 70px);
  }

  .hero h2 {
    margin-bottom: 16px;
    font-size: clamp(26px, 1.9vw, 31px);
    font-weight: 400;
  }

  .hero-description {
    margin-bottom: 20px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .hero-stats {
    max-width: 650px;
  }

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

  .stat-card span {
    font-size: 11px;
  }

  .hero-form-card {
    padding: 12px 15px;
  }

  .form-header h3 {
    font-size: 19px;
  }

  .form-group label {
    font-size: 10px;
  }

  .form-group input,
  .form-group select {
    height: 34px;
    font-size: 12px;
  }

  .form-submit {
    height: 38px;
  }

  .form-note {
    font-size: 10px;
  }

  .price-strip {
    min-height: 50px;
    padding-block: 5px;
  }
}

/* ==========================================================
   COMPACT ENQUIRY POPUP
   ========================================================== */
body.modal-open {
  overflow: hidden;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.enquiry-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 3, 0.68);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.enquiry-modal-card {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(225, 169, 91, 0.48);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(42, 14, 4, 0.68), rgba(25, 8, 2, 0.84)),
    url("../images/backgrounds/marble-light.png") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(16, 5, 1, 0.42);
  color: #fff7ed;
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 220ms ease;
}

.enquiry-modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(238, 182, 102, 0.12), transparent 31%),
    linear-gradient(135deg, rgba(255,255,255,0.025), transparent 40%);
}

.enquiry-modal.is-open .enquiry-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.enquiry-modal-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.enquiry-modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 182, 111, 0.36);
  border-radius: 50%;
  background: rgba(35, 12, 4, 0.58);
  color: #f5cf99;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.enquiry-modal-close:hover {
  transform: rotate(6deg) scale(1.04);
  background: rgba(102, 45, 13, 0.72);
  border-color: rgba(238, 182, 102, 0.72);
}

.enquiry-modal-kicker {
  margin: 0 0 8px;
  color: #e5ad62;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.enquiry-modal h2 {
  max-width: 100%;
  margin: 0 0 24px;
  color: #fff9f2;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(25px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.enquiry-modal-form {
  display: grid;
  gap: 14px;
}

.enquiry-modal-field {
  display: grid;
  gap: 6px;
}

.enquiry-modal-field label {
  color: rgba(255, 244, 231, 0.8);
  font-size: 12px;
  font-weight: 600;
}

.enquiry-modal-field label span {
  color: rgba(255, 244, 231, 0.5);
  font-weight: 400;
}

.enquiry-modal-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(232, 182, 111, 0.24);
  border-radius: 11px;
  outline: 0;
  background: rgba(20, 8, 3, 0.56);
  color: #fffaf3;
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.enquiry-modal-field input::placeholder {
  color: rgba(255, 244, 231, 0.38);
}

.enquiry-modal-field input:hover {
  border-color: rgba(232, 182, 111, 0.42);
}

.enquiry-modal-field input:focus {
  border-color: #dda554;
  background: rgba(20, 8, 3, 0.72);
  box-shadow: 0 0 0 3px rgba(221, 165, 84, 0.11);
}

.enquiry-modal-submit {
  min-height: 48px;
  margin-top: 4px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #dba254;
  border-radius: 11px;
  background: linear-gradient(135deg, #e9b86f, #c98733);
  color: #2c1206;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(114, 53, 13, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.enquiry-modal-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.035);
  box-shadow: 0 14px 28px rgba(114, 53, 13, 0.28);
}

.enquiry-modal-submit i {
  transition: transform 180ms ease;
}

.enquiry-modal-submit:hover i {
  transform: translateX(3px);
}

.enquiry-modal-status {
  min-height: 16px;
  margin: -2px 0 0;
  color: #eac18a;
  font-size: 11px;
  line-height: 1.4;
}

.enquiry-modal-status.is-error {
  color: #ffd2c7;
}

@media (max-width: 600px) {
  .enquiry-modal {
    padding: 14px;
  }

  .enquiry-modal-card {
    width: min(100%, 390px);
    border-radius: 17px;
  }

  .enquiry-modal-content {
    padding: 28px 22px 24px;
  }

  .enquiry-modal h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }

  .enquiry-modal-field input {
    min-height: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-modal,
  .enquiry-modal-card,
  .enquiry-modal-close,
  .enquiry-modal-field input,
  .enquiry-modal-submit,
  .enquiry-modal-submit i {
    transition: none !important;
  }
}

/* ==========================================================
   SHARED PREMIUM CTA INTERACTIONS
   ========================================================== */
.hero .btn::before,
.hero .form-submit::before,
.summary-price-btn::before,
.advisor-btn::before,
.visit-cta-submit::before {
  display: none;
}

:is(
  .btn,
  .form-submit,
  .residence-btn,
  .floor-btn,
  .summary-price-btn,
  .advisor-btn,
  .location-btn,
  .rera-info-btn,
  .visit-cta-submit,
  .visit-cta-chip,
  .enquiry-modal-submit
) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 240ms ease,
    box-shadow 260ms ease,
    border-color 240ms ease;
}

@media (hover: hover) {
  :is(
    .btn,
    .form-submit,
    .residence-btn,
    .floor-btn,
    .summary-price-btn,
    .advisor-btn,
    .location-btn,
    .rera-info-btn,
    .visit-cta-submit,
    .visit-cta-chip,
    .enquiry-modal-submit
  ):hover {
    transform: translateY(-4px) scale(1.015);
    filter: brightness(1.07) saturate(1.04) drop-shadow(0 10px 12px rgba(45, 17, 4, 0.2));
  }

  :is(
    .btn,
    .form-submit,
    .residence-btn,
    .floor-btn,
    .summary-price-btn,
    .advisor-btn,
    .location-btn,
    .visit-cta-submit,
    .visit-cta-chip,
    .enquiry-modal-submit
  ):hover i {
    transform: translateX(5px) scale(1.06);
  }

  .btn-outline:hover {
    color: var(--white);
    background: rgba(0, 0, 0, 0.16);
  }

  .residence-btn-outline:hover {
    color: #f5e5d2;
    background: rgba(29, 12, 5, 0.26);
  }

  .floor-btn-outline:hover {
    color: #2a1a11;
    background: rgba(255, 255, 255, 0.25);
  }
}

:is(
  .btn,
  .form-submit,
  .residence-btn,
  .floor-btn,
  .summary-price-btn,
  .advisor-btn,
  .location-btn,
  .rera-info-btn,
  .visit-cta-submit,
  .visit-cta-chip,
  .enquiry-modal-submit
):active {
  transform: translateY(0) scale(0.975);
  filter: brightness(0.98);
}

:is(
  .btn,
  .form-submit,
  .residence-btn,
  .floor-btn,
  .summary-price-btn,
  .advisor-btn,
  .location-btn,
  .rera-info-btn,
  .visit-cta-submit,
  .visit-cta-chip,
  .enquiry-modal-submit
):focus-visible {
  outline: 3px solid rgba(239, 187, 105, 0.5);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  :is(
    .btn,
    .form-submit,
    .residence-btn,
    .floor-btn,
    .summary-price-btn,
    .advisor-btn,
    .location-btn,
    .rera-info-btn,
    .visit-cta-submit,
    .visit-cta-chip,
    .enquiry-modal-submit
  ),
  :is(
    .btn,
    .form-submit,
    .residence-btn,
    .floor-btn,
    .summary-price-btn,
    .advisor-btn,
    .location-btn,
    .visit-cta-submit,
    .visit-cta-chip,
    .enquiry-modal-submit
  ) i {
    transition: none !important;
  }

}

/* ==========================================================
   SHARED FEATURE-POINT INTERACTIONS
   ========================================================== */
:is(
  .stat-card,
  .overview-feature-card,
  .legend-item,
  .residence-feature,
  .nearby-card
) {
  position: relative;
  transition:
    transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 280ms ease;
}

:is(
  .stat-icon,
  .overview-feature-icon,
  .legend-badge,
  .residence-feature i,
  .nearby-card i
) {
  transition:
    transform 300ms cubic-bezier(0.2, 0.75, 0.2, 1),
    color 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

:is(
  .stat-card strong,
  .overview-feature-copy h3,
  .legend-item span:last-child,
  .residence-feature span,
  .nearby-card h4,
  .nearby-card p
) {
  transition: color 220ms ease, transform 240ms ease;
}

@media (hover: hover) {
  .stat-card:hover {
    z-index: 1;
    transform: scale(1.018);
  }

  :is(.overview-feature-card, .legend-item, .residence-feature, .nearby-card):hover {
    z-index: 1;
    transform: translateY(-5px);
  }

  .overview-feature-card:hover,
  .legend-item:hover,
  .nearby-card:hover {
    border-color: rgba(190, 132, 66, 0.62);
    box-shadow: 0 14px 30px rgba(74, 40, 19, 0.14);
  }

  .stat-card:hover .stat-icon,
  .overview-feature-card:hover .overview-feature-icon,
  .legend-item:hover .legend-badge,
  .residence-feature:hover i,
  .nearby-card:hover i {
    transform: translateY(-3px) rotate(-6deg) scale(1.1);
  }

  .stat-card:hover .stat-icon {
    border-color: #f0bd72;
    background-color: rgba(225, 161, 77, 0.2);
    color: #ffd28e;
  }

  .overview-feature-card:hover .overview-feature-icon,
  .legend-item:hover .legend-badge {
    border-color: #c8863e;
    background-color: #d99a4e;
    color: #321405;
    box-shadow: 0 9px 20px rgba(151, 88, 31, 0.22);
  }

  .residence-feature:hover i {
    color: #ffd28e;
    filter: drop-shadow(0 7px 10px rgba(222, 157, 70, 0.28));
  }

  .nearby-card:hover i {
    color: #c47a2d;
    filter: drop-shadow(0 7px 9px rgba(164, 96, 33, 0.2));
  }

  .stat-card:hover strong,
  .residence-feature:hover span {
    transform: translateX(3px);
    color: #ffd493;
  }

  .overview-feature-card:hover .overview-feature-copy h3,
  .legend-item:hover span:last-child,
  .nearby-card:hover h4,
  .nearby-card:hover p {
    transform: translateX(3px);
    color: #9b5c23;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(
    .stat-card,
    .overview-feature-card,
    .legend-item,
    .residence-feature,
    .nearby-card,
    .stat-icon,
    .overview-feature-icon,
    .legend-badge,
    .residence-feature i,
    .nearby-card i,
    .stat-card strong,
    .overview-feature-copy h3,
    .legend-item span:last-child,
    .residence-feature span,
    .nearby-card h4,
    .nearby-card p
  ) {
    transition: none !important;
  }

  :is(.stat-card, .overview-feature-card, .legend-item, .residence-feature, .nearby-card):hover,
  .stat-card:hover .stat-icon,
  .overview-feature-card:hover .overview-feature-icon,
  .legend-item:hover .legend-badge,
  .residence-feature:hover i,
  .nearby-card:hover i,
  .stat-card:hover strong,
  .overview-feature-card:hover .overview-feature-copy h3,
  .legend-item:hover span:last-child,
  .residence-feature:hover span,
  .nearby-card:hover h4,
  .nearby-card:hover p {
    transform: none;
  }
}

/* ==========================================================
   HERO BACKGROUND SLIDESHOW — latest refinement
   ========================================================== */
.hero-background-slide {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  animation: none;
  transform: scale(1.018);
}

.hero-background-slide.is-active {
  opacity: 1;
  animation: heroSlideKenBurns 7s ease-out both;
}

.hero-background-pool {
  background-image: url("../images/hero/pool.webp");
  background-position: center 52%;
}

.hero-background-towers {
  background-image: url("../images/hero/towers.webp");
  background-position: center 50%;
}

@media (max-width: 900px) {
  .hero-background-slide {
    background-position: 58% top;
  }
}

@keyframes heroSlideKenBurns {
  from { transform: scale(1.045); }
  to { transform: scale(1.018); }
}

/* Give the bottom price rail breathing room inside the hero. */
@media (min-width: 901px) {
  .price-strip {
    margin-bottom: 28px;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .price-strip {
    margin-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-slide,
  .hero-background-slide.is-active {
    transition: none;
    animation: none;
    transform: scale(1.018);
  }
}

/* ==========================================================
   MOBILE RESPONSIVE REFINEMENTS — LOCATION + RERA/CTA
   ========================================================== */
@media (max-width: 600px) {
  .location-section {
    padding: 10px 0 14px;
  }

  .location-card {
    gap: 16px;
    padding: 14px;
    border-radius: 16px;
  }

  .location-copy h2 {
    margin-top: 4px;
    font-size: clamp(25px, 9vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .location-address {
    gap: 10px;
    margin-top: 12px;
  }

  .location-address i {
    font-size: 28px;
    margin-top: 1px;
  }

  .location-address p {
    font-size: 13px;
    line-height: 1.35;
  }

  .location-intro {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .location-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .location-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    gap: 10px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.1;
  }

  .nearby-block {
    margin-top: 20px;
  }

  .nearby-head {
    gap: 10px;
  }

  .nearby-head h3 {
    font-size: 20px;
  }

  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .nearby-card {
    min-height: 74px;
    padding: 10px 10px;
    gap: 10px;
    border-radius: 14px;
    align-items: center;
  }

  .nearby-card i {
    font-size: 20px;
    flex: 0 0 20px;
  }

  .nearby-card h4 {
    font-size: 10.5px;
    line-height: 1.2;
  }

  .nearby-card p {
    font-size: 13px;
    line-height: 1.15;
  }

  .location-map-panel {
    min-height: 240px;
    border-radius: 16px;
  }

  .rera-developer-section {
    padding-bottom: 0;
  }

  .rera-dev-grid {
    padding: 12px 0 10px;
  }

  .rera-panel,
  .developer-panel {
    padding: 0 18px 18px;
  }

  .rera-panel {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(177, 142, 105, 0.34);
  }

  .section-kicker-alt,
  .section-kicker-alt-light {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .rera-panel h2,
  .developer-panel h2 {
    margin-top: 6px;
    font-size: clamp(22px, 8vw, 34px);
    line-height: 0.98;
  }

  .rera-phases {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rera-phase h3 {
    font-size: 14px;
  }

  .rera-phase p {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .rera-info-btn {
    margin-top: 16px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  .developer-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 18px;
  }

  .developer-panel h3 {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .developer-address-grid {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .developer-address-grid strong {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .developer-address-grid p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .developer-brand {
    padding-top: 4px;
  }

  .brand-emblem {
    width: 62px;
    height: 82px;
    margin-bottom: 10px;
    border-width: 2px;
    border-radius: 18px;
    font-size: 24px;
  }

  .brand-name {
    font-size: 20px;
    line-height: 1.05;
  }

  .brand-tag {
    font-size: 12px;
  }

  .visit-cta-band {
    margin-top: 0;
  }

  .visit-cta-copy {
    padding: 18px 0 18px;
  }

  .visit-cta-copy h2 {
    margin-top: 4px;
    font-size: clamp(22px, 8.6vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .visit-cta-copy p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .visit-cta-form {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .visit-cta-form input,
  .visit-cta-select-wrap {
    min-height: 50px;
    border-radius: 12px;
  }

  .visit-cta-form input,
  .visit-cta-select-wrap select {
    padding: 0 14px;
    font-size: 14px;
  }

  .visit-cta-select-wrap i {
    right: 14px;
    font-size: 13px;
  }

  .visit-cta-submit,
  .visit-cta-chip {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 14px;
    gap: 10px;
  }

  .visit-cta-chip {
    justify-content: center;
  }

  .visit-cta-status {
    min-height: 14px;
    font-size: 11.5px;
  }
}

@media (max-width: 380px) {
  .location-action-row,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .location-btn,
  .visit-cta-submit,
  .visit-cta-chip {
    font-size: 13.5px;
  }

  .rera-panel,
  .developer-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .visit-cta-copy h2 {
    font-size: 31px;
  }

  .visit-cta-copy p,
  .developer-address-grid p,
  .rera-phase p {
    font-size: 12px;
  }
}

/* ==========================================================
   MOBILE RESPONSIVE REFINEMENTS — FAQ + FOOTER
   ========================================================== */
@media (max-width: 640px) {
  .faq-section {
    padding: 20px 0 24px;
  }

  .faq-kicker-row {
    grid-template-columns: auto 54px;
    gap: 10px;
  }

  .faq-kicker-row .section-kicker-alt {
    font-size: 9.5px;
    line-height: 1.2;
    letter-spacing: 0.2em;
  }

  .faq-heading h2 {
    margin-top: 8px;
    max-width: 100%;
    font-size: clamp(27px, 8.1vw, 34px);
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  .faq-grid {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-column {
    gap: 8px;
  }

  .faq-item {
    border-radius: 13px;
    box-shadow: 0 4px 14px rgba(63, 36, 20, 0.035);
  }

  .faq-item summary {
    min-height: 48px;
    padding: 10px 12px 10px 15px;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.28;
  }

  .faq-item summary i {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .faq-item p {
    padding: 0 42px 13px 15px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .site-footer {
    border-top-color: rgba(222, 170, 97, 0.28);
  }

  .footer-main {
    padding: 28px 0 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-brand {
    padding-bottom: 12px;
    font-size: 26px;
    line-height: 0.84;
  }

  .footer-brand::after {
    width: 42px;
  }

  .footer-summary {
    max-width: 100%;
    margin-top: 14px;
    font-size: 12.5px;
    line-height: 1.58;
  }

  .footer-column h3 {
    margin-bottom: 12px;
    padding-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .footer-links {
    gap: 5px;
  }

  .footer-links a,
  .footer-link-button {
    padding: 2px 0;
    font-size: 11.5px;
    line-height: 1.42;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
    padding-top: 2px;
  }

  .footer-contact-column > p {
    font-size: 11.5px;
    line-height: 1.55;
  }

  .footer-contact-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-contact-actions a {
    min-height: 38px;
    justify-content: center;
    padding: 7px 8px;
    font-size: 11.5px;
  }

  .footer-rera-strip {
    padding: 10px 0;
    grid-template-columns: 1fr;
  }

  .footer-rera-strip > div,
  .footer-rera-strip > div:first-child {
    padding: 9px 0;
  }

  .footer-rera-strip span {
    font-size: 9px;
  }

  .footer-rera-strip strong {
    margin-top: 4px;
    font-size: 9.5px;
    line-height: 1.35;
  }

  .footer-bottom-inner {
    min-height: 0;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-inner p,
  .footer-legal-links a {
    font-size: 10.5px;
  }

  .footer-legal-links {
    gap: 12px 16px;
  }

  .footer-disclaimer {
    padding: 12px 0 82px;
  }

  .footer-disclaimer p {
    font-size: 9px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .faq-heading h2 {
    font-size: 26px;
  }

  .faq-item summary {
    font-size: 13px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand-column,
  .footer-contact-column {
    grid-column: auto;
  }

  .footer-contact-actions {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   MOBILE HERO REFINEMENT — dedicated mobile images + cleaner layout
   ========================================================== */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 16px;
    background: #120a06;
  }

  .hero-background-slide {
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-background-pool {
    background-image: url("../images/hero/hero-mobile-clubhouse.webp");
    background-position: center 12%;
  }

  .hero-background-towers {
    background-image: url("../images/hero/hero-mobile-towers.webp");
    background-position: center 12%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 6, 3, 0.08) 0%, rgba(11, 6, 3, 0.22) 28%, rgba(11, 6, 3, 0.64) 56%, rgba(11, 6, 3, 0.94) 80%, #120a06 100%),
      linear-gradient(90deg, rgba(11, 6, 3, 0.44), rgba(11, 6, 3, 0.10) 42%, rgba(11, 6, 3, 0.28) 100%);
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: calc(100svh - var(--header-height) - 170px);
    padding: 24px 0 18px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: end;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: auto;
  }

  .hero h1 {
    margin: 0 0 8px;
    font-size: clamp(42px, 11vw, 56px);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .hero h2 {
    max-width: 320px;
    margin: 0 0 10px;
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .hero-description {
    max-width: 330px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12.5px;
    line-height: 1.5;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .stat-card {
    min-width: 0;
    padding: 0;
    gap: 8px;
    border-right: 0;
    align-items: flex-start;
    background: none !important;
    box-shadow: none !important;
  }

  .stat-card::after {
    display: none;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-width: 1px;
    background: rgba(228, 181, 111, 0.12);
    box-shadow: none;
  }

  .stat-icon i {
    font-size: 11px;
  }

  .stat-card strong {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1.28;
    white-space: normal;
  }

  .stat-card span {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .price-strip {
    width: calc(100% - 28px);
    min-height: 0;
    margin: 0 auto 8px;
    padding: 16px 16px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-radius: 16px;
  }

  .price-strip-copy > span {
    font-size: 11px;
  }

  .price-main {
    margin-top: 5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-main strong {
    font-size: clamp(18px, 8vw, 25px);
    line-height: 1.02;
  }

  .price-main p {
    max-width: none;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .price-strip-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .price-strip-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    gap: 6px;
    justify-content: center;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .price-strip-actions .btn i {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    min-height: calc(100svh - var(--header-height) - 205px);
    padding: 20px 0 16px;
    gap: 16px;
  }

  .hero-background-pool,
  .hero-background-towers {
    background-position: center top;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 50px);
  }

  .hero h2 {
    max-width: 300px;
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .hero-description {
    max-width: 300px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero-inner {
    width: calc(100% - 22px);
    min-height: calc(100svh - var(--header-height) - 214px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    max-width: 270px;
    font-size: 21px;
  }

  .hero-description {
    max-width: 275px;
    font-size: 11.5px;
  }

  .hero-stats {
    gap: 9px 10px;
  }

  .stat-card strong {
    font-size: 11.5px;
  }

  .stat-card span {
    font-size: 10px;
  }

  .price-strip {
    width: calc(100% - 22px);
    padding: 14px 12px 12px;
  }

  .price-main strong {
    font-size: 17px;
  }

  .price-main p {
    font-size: 11px;
  }

  .price-strip-actions .btn {
    min-height: 42px;
    padding: 0 6px;
    font-size: 10.5px;
    letter-spacing: -0.01em;
  }

  .price-strip-actions .btn i {
    font-size: 11px;
  }
}

/* ==========================================================
   JR REAL BUILDWELL BRANDING — project page header
   ========================================================== */
.site-header .brand {
  width: 176px;
  min-width: 176px;
  height: 44px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 178, 105, 0.32);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header .brand img {
  width: 100%;
  height: auto;
  max-height: 30px;
  display: block;
  object-fit: contain;
}

@media (hover: hover) {
  .site-header .brand:hover {
    transform: translateY(-1px);
    background: #fffaf1;
    box-shadow: 0 11px 28px rgba(0, 0, 0, 0.18);
  }
}

@media (max-width: 900px) {
  .site-header .brand {
    width: 148px;
    min-width: 148px;
    height: 40px;
    padding: 6px 9px;
    border-radius: 9px;
  }

  .site-header .brand img {
    max-height: 26px;
  }
}

@media (max-width: 380px) {
  .site-header .brand {
    width: 132px;
    min-width: 132px;
  }
}

/* ==========================================================
   HEADER / NAV / DEVELOPER BRAND — final responsive refinement
   ========================================================== */
.mobile-header-whatsapp {
  display: none;
}

.county-group-logo {
  width: min(100%, 300px);
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* The old generated CG mark is no longer used. */
.brand-emblem,
.brand-name,
.brand-tag {
  display: none;
}

@media (min-width: 1281px) {
  .desktop-nav {
    gap: clamp(15px, 1.25vw, 24px);
  }

  .desktop-nav a {
    font-size: 12.5px;
  }
}

@media (max-width: 1280px) {
  .header-inner {
    gap: 10px;
  }

  .mobile-header-whatsapp {
    min-height: 38px;
    margin-left: auto;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 0 0 auto;
    border: 1px solid rgba(62, 194, 100, 0.65);
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(180deg, #25d366, #18a94c);
    box-shadow: 0 8px 20px rgba(18, 145, 65, 0.22);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  }

  .mobile-header-whatsapp i {
    font-size: 17px;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .mobile-menu nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
  }

  .mobile-menu nav a {
    padding: 13px 2px;
    font-size: 13.5px;
  }

  .mobile-bottom-bar {
    display: none !important;
  }
}

@media (hover: hover) and (max-width: 1280px) {
  .mobile-header-whatsapp:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 11px 24px rgba(18, 145, 65, 0.3);
  }
}

@media (max-width: 600px) {
  .header-inner {
    width: calc(100% - 22px);
  }

  .site-header .brand {
    width: 132px;
    min-width: 132px;
    height: 38px;
    padding: 5px 7px;
  }

  .site-header .brand img {
    max-height: 24px;
  }

  .mobile-header-whatsapp {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
  }

  .mobile-header-whatsapp span {
    display: none;
  }

  .mobile-header-whatsapp i {
    font-size: 19px;
  }

  .mobile-menu nav {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    padding: 20px 0 16px;
  }

  .mobile-menu nav a {
    padding: 12px 0;
    font-size: 13px;
  }

  .mobile-menu-actions {
    width: calc(100% - 28px);
    padding-bottom: 20px;
  }

  .developer-brand {
    padding: 2px 0 0;
  }

  .county-group-logo {
    width: min(100%, 240px);
  }
}

@media (max-width: 380px) {
  .site-header .brand {
    width: 118px;
    min-width: 118px;
  }

  .mobile-header-whatsapp {
    width: 35px;
    min-width: 35px;
    padding: 0;
  }

  .county-group-logo {
    width: min(100%, 210px);
  }
}

/* ==========================================================
   DESKTOP FLOATING WHATSAPP CTA
   Keeps the compact header WhatsApp control on tablet/mobile.
   ========================================================== */
@media (min-width: 1281px) {
  .mobile-header-whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 1250;
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #2bd66b 0%, #20bd5a 55%, #159447 100%);
    box-shadow:
      0 12px 30px rgba(10, 104, 48, 0.30),
      0 4px 10px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition:
      transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1),
      box-shadow 220ms ease,
      filter 220ms ease;
  }

  .mobile-header-whatsapp i {
    font-size: 29px;
    line-height: 1;
  }

  .mobile-header-whatsapp span {
    position: absolute;
    right: 70px;
    top: 50%;
    width: max-content;
    padding: 9px 12px;
    border: 1px solid rgba(214, 160, 91, 0.36);
    border-radius: 9px;
    color: #f8efe4;
    background: rgba(31, 17, 11, 0.94);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-header-whatsapp:hover,
  .mobile-header-whatsapp:focus-visible {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.04);
    box-shadow:
      0 17px 38px rgba(10, 104, 48, 0.38),
      0 6px 14px rgba(0, 0, 0, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .mobile-header-whatsapp:hover span,
  .mobile-header-whatsapp:focus-visible span {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .mobile-header-whatsapp:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.25);
    outline-offset: 4px;
  }
}

@media (min-width: 1281px) and (max-height: 720px) {
  .mobile-header-whatsapp {
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }

  .mobile-header-whatsapp i {
    font-size: 26px;
  }
}


/* ==========================================================
   DESKTOP WHATSAPP — true viewport-fixed control
   Kept outside the fixed/backdrop-filter header so it cannot
   inherit the header as its containing block.
   ========================================================== */
.desktop-floating-whatsapp {
  display: none;
}

@media (min-width: 1281px) {
  .mobile-header-whatsapp {
    display: none !important;
  }

  .desktop-floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1600;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(145deg, #2bd66b 0%, #20bd5a 56%, #159447 100%);
    box-shadow: 0 14px 34px rgba(10,104,48,.36), 0 5px 14px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.26);
    transition: transform 220ms cubic-bezier(.2,.75,.2,1), box-shadow 220ms ease, filter 220ms ease;
  }

  .desktop-floating-whatsapp i {
    font-size: 30px;
    line-height: 1;
  }

  .desktop-floating-whatsapp span {
    position: absolute;
    right: 72px;
    top: 50%;
    width: max-content;
    padding: 9px 12px;
    border: 1px solid rgba(214,160,91,.34);
    border-radius: 9px;
    color: #f8efe4;
    background: rgba(31,17,11,.95);
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px,-50%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .desktop-floating-whatsapp:hover,
  .desktop-floating-whatsapp:focus-visible {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.05);
    box-shadow: 0 18px 40px rgba(10,104,48,.42), 0 7px 16px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.3);
  }

  .desktop-floating-whatsapp:hover span,
  .desktop-floating-whatsapp:focus-visible span {
    opacity: 1;
    transform: translate(0,-50%);
  }

  .desktop-floating-whatsapp:focus-visible {
    outline: 3px solid rgba(37,211,102,.28);
    outline-offset: 4px;
  }
}

@media (min-width: 1281px) and (max-height: 720px) {
  .desktop-floating-whatsapp {
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
  }
  .desktop-floating-whatsapp i { font-size: 27px; }
}


/* ==========================================================
   DESKTOP HEADER LOGO — larger artwork, same header height
   ========================================================== */
@media (min-width: 901px) {
  .site-header .brand {
    width: 205px;
    min-width: 205px;
    height: 44px;
    padding: 2px 8px;
  }

  .site-header .brand img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    transform: scale(1.08);
    transform-origin: center;
  }
}
