/* ==========================================================================
   ARKADE SAPPHIRE — TRADITIONAL AFFLUENCE · Santacruz West
   Luxury landing page theme: deep chocolate brown × champagne gold
   ========================================================================== */

@font-face {
  font-family: "Gilda Display";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Gilda_Display/GildaDisplay-Regular.ttf);
}

@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Poppins/Poppins-Light.ttf);
}

@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
}

:root {
  --ink: #241711;
  --brown: #35231d;          /* matches brochure cover / monogram bg */
  --brown-2: #43302a;
  --brown-3: #54403a;
  --gold: #c49b5a;
  --gold-deep: #a87f3e;
  --gold-light: #e3cb97;
  --champagne: #d9bc8a;
  --cream: #faf6ef;
  --ivory: #f3ecdf;
  --text: #4b3f37;
  --text-light: #e9ddcc;
  --muted-light: #c4b3a0;
  --line-gold: rgba(196, 155, 90, 0.35);
  --serif: "Gilda Display", Georgia, serif;
  --sans: "Poppins", sans-serif;
  --shadow-soft: 0 24px 60px -28px rgba(36, 23, 17, 0.45);
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 60px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

section[id],
header[id] {
  scroll-margin-top: 76px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-gold,
.btn-ghost,
.btn-brown {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: all 0.45s var(--ease-lux);
  cursor: pointer;
  z-index: 1;
}

.btn-gold {
  color: #fff;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, var(--gold-deep));
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  transition: left 0.7s var(--ease-lux);
  z-index: -1;
}

.btn-gold:hover {
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(168, 127, 62, 0.75);
  transform: translateY(-2px);
}

.btn-gold:hover::after {
  left: 130%;
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
  z-index: -1;
}

.btn-ghost:hover {
  color: var(--brown);
  border-color: #fff;
}

.btn-ghost:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-brown {
  color: var(--cream);
  background: var(--brown);
  border-color: var(--brown);
}

.btn-brown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
  z-index: -1;
}

.btn-brown:hover {
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px rgba(168, 127, 62, 0.7);
}

.btn-brown:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-sm-nav {
  padding: 11px 24px;
  font-size: 11.5px;
  letter-spacing: 2px;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.ta-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0.72), rgba(20, 12, 8, 0));
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}

.ta-nav.scrolled {
  padding: 8px 0;
  background: rgba(42, 27, 21, 0.97);
  box-shadow: 0 10px 35px -18px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.ta-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 35px;
  
  width: auto;
  transition: transform 0.4s var(--ease-lux);
}

.ta-brand:hover .brand-logo {
  transform: translateY(-2px);
}

.ta-brand-mark {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: #e7e3df;
  
  letter-spacing: -2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: color 0.4s ease, transform 0.4s var(--ease-lux);
}

.ta-brand:hover .ta-brand-mark {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.ta-brand-mark.lg {
  font-size: 56px;
}

.ta-brand-text {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-gold);
  padding-left: 12px;
}

.ta-brand-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #f4efe8;
}

.ta-brand-sub {
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--champagne);
}

.ta-nav .nav-link {
  position: relative;
  color: #f1eae0 !important;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 10px;
  padding: 8px 2px !important;
}

.ta-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.4s var(--ease-lux), left 0.4s var(--ease-lux);
}

.ta-nav .nav-link:hover,
.ta-nav .nav-link.active {
  color: var(--gold-light) !important;
}

.ta-nav .nav-link:hover::after,
.ta-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-dev-mark {
  font-size: 11px;
  letter-spacing: 3px;
  color: #f1eae0;
  white-space: nowrap;
}

.nav-dev-mark i {
  color: var(--gold);
  font-style: normal;
  margin: 0 4px;
}

.nav-arkade-logo {
  height: 26px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.nav-arkade-logo:hover {
  opacity: 1;
}

/* hamburger */
.ta-toggler {
  border: 1px solid var(--line-gold);
  background: transparent;
  padding: 12px 11px;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  box-shadow: none !important;
}

.ta-toggler span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-light);
  transition: all 0.3s ease;
}

@media (max-width: 1199.98px) {
  .ta-nav .navbar-collapse {
    background: rgba(42, 27, 21, 0.98);
    margin-top: 14px;
    padding: 22px 24px 26px;
    border-top: 1px solid var(--line-gold);
  }

  .ta-nav .nav-link {
    margin: 4px 0;
  }

  .nav-cta-wrap {
    margin-top: 16px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #1a0f09;
}

/* image area — sits above the stats strip so the full banner shows */
.hero-media {
  position: relative;
  flex: 1;
  display: flex;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #1a0f09;
}

/* single static banner image (desktop) */
.hero-slide {
  position: absolute;
  inset: 0;
  background-image: url('../images/brochure/banner/hero-bg1.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

/* mobile banner */
@media (max-width: 767.98px) {
  .hero-slide {
    background-image: url('../images/brochure/banner/mob1.jpeg');
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(75deg, rgba(26, 15, 9, 0.9) 0%, rgba(26, 15, 9, 0.55) 42%, rgba(26, 15, 9, 0.08) 75%),
    linear-gradient(180deg, rgba(26, 15, 9, 0.45) 0%, rgba(26, 15, 9, 0) 30%, rgba(26, 15, 9, 0.62) 100%);
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 110px;
}

.hero-content {
  max-width: 760px;
}

/* hero brand logo (above the title) */
.hero-logo {
  margin-bottom: 26px;
}

.hero-logo-img {
  width: clamp(240px, 30vw, 400px);
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
}

.k-line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 108px);
  line-height: 1.02;
  color: #fdfaf4;
  margin-bottom: 26px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  font-size: clamp(38px, 4.6vw, 76px);
}

.hero-title span:last-child {
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: #efe7da;
  margin-bottom: 38px;
  max-width: 640px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

/* entrance reveals */
.reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5, .reveal-6 {
  opacity: 0;
  transform: translateY(34px);
  animation: heroRise 1.1s var(--ease-lux) forwards;
}

.reveal-1 { animation-delay: 0.25s; }
.reveal-2 { animation-delay: 0.45s; }
.reveal-3 { animation-delay: 0.62s; }
.reveal-4 { animation-delay: 0.85s; }
.reveal-5 { animation-delay: 1.05s; }
.reveal-6 { animation-delay: 1.3s; }

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hero stats strip */
.hero-strip {
  border-top: 1px solid rgba(227, 203, 151, 0.28);
  background: linear-gradient(180deg, rgba(38, 23, 16, 0.55), rgba(38, 23, 16, 0.78));
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: flex;
  justify-content: space-between;
}

.hstat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 10px;
  position: relative;
  transition: background 0.4s ease;
}

.hstat + .hstat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  height: 52%;
  width: 1px;
  background: rgba(227, 203, 151, 0.25);
}

.hstat:hover {
  background: rgba(196, 155, 90, 0.12);
}

.hstat-num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--gold-light);
}

.hstat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #ded2c0;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  right: 38px;
  bottom: 110px;
  width: 30px;
  height: 52px;
  border: 1px solid rgba(227, 203, 151, 0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 9px;
  z-index: 2;
}

.hero-scroll span {
  width: 3px;
  height: 9px;
  border-radius: 3px;
  background: var(--gold-light);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.ta-marquee {
  background: var(--ink);
  border-top: 1px solid rgba(196, 155, 90, 0.3);
  border-bottom: 1px solid rgba(196, 155, 90, 0.3);
  overflow: hidden;
  padding: 16px 0;
}

.ta-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.ta-marquee:hover .ta-marquee-track {
  animation-play-state: paused;
}

.ta-marquee-track span {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
  white-space: nowrap;
  padding-right: 18px;
}

.ta-marquee-track i {
  font-style: normal;
  color: var(--gold);
  margin: 0 16px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Sections — shared
   ========================================================================== */

.section {
  padding: 104px 0;
  position: relative;
}

.section.slim {
  padding: 88px 0;
}

.section-cream {
  background: var(--cream);
}

.section-ivory {
  background: var(--ivory);
}

.section-dark {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(196, 155, 90, 0.10), transparent 55%),
    var(--brown);
  color: var(--text-light);
}

.sec-head {
  margin-bottom: 56px;
}

.sec-kicker {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.section-dark .sec-kicker {
  color: var(--champagne);
}

.sec-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 0;
}

.sec-title em {
  font-style: normal;
  color: var(--gold-deep);
}

.sec-title.light {
  color: #fbf7ef;
}

.sec-title.light em {
  color: var(--gold-light);
}

.gold-rule {
  position: relative;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(196, 155, 90, 0.15));
  margin: 26px 0 28px;
}

.gold-rule::before {
  content: "";
  position: absolute;
  left: 36px;
  top: -3.5px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.gold-rule.mx-auto {
  background: linear-gradient(90deg, rgba(196, 155, 90, 0.15), var(--gold), rgba(196, 155, 90, 0.15));
}

.sec-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
}

.sec-lead strong {
  color: var(--brown);
  font-weight: 600;
}

.sec-lead.light,
.sec-text.light {
  color: var(--muted-light);
}

.sec-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text);
}

/* ticked bullets */
.tick-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.tick-list li {
  position: relative;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.6;
  padding: 9px 0 9px 38px;
  border-bottom: 1px dashed rgba(196, 155, 90, 0.3);
  transition: padding-left 0.35s var(--ease-lux);
}

.tick-list li:hover {
  padding-left: 46px;
}

.tick-list li:last-child {
  border-bottom: 0;
}

.tick-list i {
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Lux form card (overview)
   ========================================================================== */

.lux-form-card {
  background: #fff;
  border: 1px solid rgba(196, 155, 90, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 46px 44px 40px;
  position: relative;
  overflow: hidden;
}

.lux-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}

.lux-form-head {
  text-align: center;
  margin-bottom: 30px;
}

.lux-form-kicker {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.lux-form-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin: 0;
}

.lux-field {
  position: relative;
  margin-bottom: 18px;
}

.lux-field i {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.lux-field .form-control {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(75, 63, 55, 0.3);
  border-radius: 0;
  padding: 12px 4px 12px 30px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.lux-field .form-control::placeholder {
  color: #a3958a;
  letter-spacing: 0.5px;
}

.lux-field .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--gold);
  background: linear-gradient(0deg, rgba(196, 155, 90, 0.06), transparent 60%);
}

.lux-form-note {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: #9b8d80;
  text-align: center;
  margin: 16px 0 0;
}

.lux-form-note::before {
  content: "\f023";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
  color: var(--gold);
}

/* validation states — keep elegant */
.was-validated .lux-field .form-control:invalid,
.was-validated .cta-input:invalid {
  border-color: #b3573f;
  background-image: none;
}

.was-validated .lux-field .form-control:valid,
.was-validated .cta-input:valid {
  border-color: #7c9165;
  background-image: none;
}

.invalid-feedback {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #b3573f;
  margin-top: 6px;
  padding-left: 2px;
}

.lux-field .invalid-feedback {
  padding-left: 30px;
}

.cta-form .invalid-feedback {
  color: #efa68e;
}

/* ==========================================================================
   USP cards
   ========================================================================== */

.usp-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(196, 155, 90, 0.22);
  border-radius: var(--radius-lg);
  padding: 38px 26px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), border-color 0.5s ease;
}

.usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-lux);
}

.usp-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 50px -25px rgba(168, 127, 62, 0.45);
}

.usp-card:hover::before {
  transform: scaleX(1);
}

.usp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-deep);
  background: transparent;
  transition: background 0.45s var(--ease-lux), color 0.45s ease, transform 0.45s var(--ease-lux);
}

.usp-card:hover .usp-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  transform: rotateY(180deg);
}

.usp-card p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* desktop / tablet: static 2- & 4-column grid (swiper not initialised) */
@media (min-width: 768px) {
  .usp-swiper {
    overflow: visible;
  }

  .usp-swiper .swiper-wrapper {
    flex-wrap: wrap;
    width: auto;
    margin: -12px;
  }

  .usp-swiper .swiper-slide {
    flex: 0 0 50%;
    width: 50%;
    height: auto;
    padding: 12px;
    box-sizing: border-box;
  }
}

@media (min-width: 992px) {
  .usp-swiper .swiper-slide {
    flex: 0 0 25%;
    width: 25%;
  }
}

/* mobile: horizontal slider */
@media (max-width: 767.98px) {
  .usp-swiper {
    padding-bottom: 48px;
  }

  .usp-swiper .swiper-slide {
    height: auto;
  }
}

/* ==========================================================================
   Image frames
   ========================================================================== */

.img-frame {
  position: relative;
}

.img-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease-lux);
  pointer-events: none;
}

.img-frame:hover::before {
  transform: translate(-8px, 8px);
}

.img-frame img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.img-frame.tall img {
  max-height: 620px;
  object-fit: cover;
}

.img-frame.light::before {
  border-color: rgba(227, 203, 151, 0.55);
}

/* ==========================================================================
   Configuration card
   ========================================================================== */

.config-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  padding: 26px 30px;
  background: var(--brown);
  border: 1px solid rgba(196, 155, 90, 0.4);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s ease, transform 0.5s var(--ease-lux);
}

.config-card::before {
  content: "ta";
  position: absolute;
  right: -14px;
  bottom: -38px;
  font-family: var(--serif);
  font-size: 130px;
  line-height: 1;
  color: rgba(196, 155, 90, 0.12);
  pointer-events: none;
}

.config-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -22px rgba(36, 23, 17, 0.6);
}

.config-type {
  font-family: var(--serif);
  font-size: 24px;
  color: #fbf6ed;
  margin: 0 0 4px;
}

.config-type span {
  color: var(--gold-light);
}

.config-meta {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin: 0;
}

.config-right {
  text-align: right;
}

.config-price {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.lux-chip {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid rgba(196, 155, 90, 0.55);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  background: rgba(196, 155, 90, 0.07);
  transition: all 0.4s var(--ease-lux);
}

.lux-chip:hover {
  background: var(--brown);
  color: var(--gold-light);
  border-color: var(--brown);
  transform: translateY(-3px);
}

/* ==========================================================================
   Amenities — circular icon grid
   ========================================================================== */

.amen-swiper {
  max-width: 1040px;
  margin: 0 auto;
}

.amen-item {
  text-align: center;
  cursor: default;
}

.amen-icon {
  position: relative;
  width: 98px;
  height: 98px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--brown);
  background: #fff;
  border: 1px solid rgba(196, 155, 90, 0.45);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.65);
  transition: background 0.5s var(--ease-lux), color 0.45s ease,
    transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux),
    border-color 0.45s ease;
}

.amen-icon i {
  transition: transform 0.5s var(--ease-lux);
}

/* halo ring */
.amen-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(227, 203, 151, 0.55);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.5s ease, transform 0.55s var(--ease-lux);
}

.amen-item:hover .amen-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 70%, var(--gold-light));
  color: #fff;
  border-color: var(--gold-light);
  transform: translateY(-9px);
  box-shadow: 0 26px 44px -16px rgba(168, 127, 62, 0.65);
}

.amen-item:hover .amen-icon::after {
  opacity: 1;
  transform: scale(1);
}

.amen-item:hover .amen-icon i {
  transform: scale(1.14) rotate(-6deg);
}

.amen-item p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
  transition: color 0.4s ease;
}

.amen-item:hover p {
  color: var(--gold-light);
}

/* desktop / tablet: static centered grid (swiper not initialised) */
@media (min-width: 768px) {
  .amen-swiper {
    overflow: visible;
  }

  .amen-swiper .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px 18px;
  }

  .amen-item {
    flex: 0 0 178px;
    width: 178px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .amen-swiper .swiper-wrapper {
    gap: 34px 10px;
  }

  .amen-item {
    flex: 0 0 150px;
    width: 150px;
  }

  .amen-icon {
    width: 86px;
    height: 86px;
    font-size: 27px;
  }
}

/* mobile: horizontal slider — one amenity at a time */
@media (max-width: 767.98px) {
  .amen-swiper {
    /* top padding keeps the hover lift + halo ring inside the clip area */
    padding: 22px 0 6px;
  }

  .amen-icon {
    width: 104px;
    height: 104px;
    font-size: 34px;
  }

  .amen-item p {
    font-size: 14.5px;
  }
}

/* ==========================================================================
   Investment stats
   ========================================================================== */

.inv-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(196, 155, 90, 0.35);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}

.inv-stat {
  flex: 1 1 33.33%;
  min-width: 180px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: background 0.45s ease;
}

.inv-stat + .inv-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(196, 155, 90, 0.3);
}

.inv-stat:hover {
  background: rgba(196, 155, 90, 0.08);
}

.inv-num {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.1;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.inv-label {
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.65;
  color: var(--text);
}

/* ==========================================================================
   Connectivity
   ========================================================================== */

.conn-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.conn-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(196, 155, 90, 0.25);
  border-radius: var(--radius);
  transition: background 0.35s ease, padding-left 0.35s var(--ease-lux);
}

.conn-list li:hover {
  background: rgba(196, 155, 90, 0.09);
  padding-left: 22px;
}

.conn-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
}

.conn-name i {
  color: var(--gold-deep);
  width: 26px;
  font-size: 13px;
}

.conn-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(75, 63, 55, 0.4);
  transform: translateY(-4px);
}

.conn-time {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-deep);
  white-space: nowrap;
}

.conn-time small {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}

.map-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(196, 155, 90, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-frame img {
  width: 100%;
  transition: transform 1.2s var(--ease-lux);
}

.map-frame:hover img {
  transform: scale(1.05);
}

.map-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(42, 27, 21, 0.92);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid rgba(227, 203, 151, 0.4);
  border-radius: var(--radius-pill);
  transition: background 0.4s ease, color 0.4s ease;
}

.map-frame:hover .map-zoom {
  background: var(--gold);
  color: #fff;
}

/* ==========================================================================
   Lifestyle swiper
   ========================================================================== */

.life-swiper {
  padding-bottom: 54px;
}

.life-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  isolation: isolate;
  border-radius: var(--radius-lg);
}

.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-lux);
}

.life-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(26, 15, 9, 0.05) 45%, rgba(26, 15, 9, 0.85) 100%);
}

.life-card:hover img {
  transform: scale(1.08);
}

.life-cap {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 18px;
  color: #fdfaf3;
  letter-spacing: 0.8px;
}

.life-cap::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 8px;
}

.life-pagination.swiper-pagination-bullets .swiper-pagination-bullet,
.gallery-pagination.swiper-pagination-bullets .swiper-pagination-bullet,
.usp-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(196, 155, 90, 0.45);
  opacity: 1;
  transition: all 0.35s ease;
}

.life-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active,
.gallery-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active,
.usp-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 40px;
  background: var(--gold);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-wrap {
  position: relative;
}

.gallery-swiper {
  padding: 10px 0 70px;
}

.gallery-swiper .swiper-slide {
  height: auto;
  aspect-ratio: 1 / 1;
}

.gallery-swiper .swiper-slide a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px -30px rgba(36, 23, 17, 0.55);
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-lux), filter 0.6s ease;
  filter: saturate(0.92);
}

.gallery-swiper .swiper-slide-active img {
  filter: saturate(1);
}

.gallery-swiper .swiper-slide a:hover img {
  transform: scale(1.06);
}

.gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 10;
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.94);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(36, 23, 17, 0.5);
  transition: all 0.4s var(--ease-lux);
}

.gal-prev { left: 6vw; }
.gal-next { right: 6vw; }

.gal-nav:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(168, 127, 62, 0.8);
}

/* ==========================================================================
   Mobile slider nav buttons (amenities & USP)
   ========================================================================== */

.m-slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.m-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-lux);
}

.m-nav-btn:hover,
.m-nav-btn:active {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  border-color: var(--gold-light);
  box-shadow: 0 12px 26px -12px rgba(168, 127, 62, 0.8);
}

/* gallery mobile nav sits right under the pagination */
.gal-m-nav {
  margin-top: 0;
  padding-bottom: 8px;
}

/* on the dark amenities section */
.section-dark .m-nav-btn {
  color: var(--gold-light);
  border-color: rgba(227, 203, 151, 0.6);
}

.section-dark .m-nav-btn:hover,
.section-dark .m-nav-btn:active {
  color: #fff;
  border-color: var(--gold-light);
}

/* ==========================================================================
   Legacy / About developer
   ========================================================================== */

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.legacy-stat {
  background: #fff;
  border: 1px solid rgba(196, 155, 90, 0.3);
  border-radius: var(--radius-lg);
  padding: 26px 18px 22px;
  text-align: center;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.4s ease;
}

.legacy-stat:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 40px -22px rgba(168, 127, 62, 0.5);
}

.legacy-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.legacy-label {
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--text);
}

.aura-card .img-frame {
  margin-bottom: 0;
}

.aura-cap {
  background: #fff;
  border: 1px solid rgba(196, 155, 90, 0.35);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s ease;
}

.aura-card:hover .aura-cap {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px -22px rgba(168, 127, 62, 0.45);
}

.aura-kicker {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-deep);
  margin: 0 0 4px;
}

.aura-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  margin: 0;
}

.aura-text strong {
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */

.contact-cta {
  background:
    radial-gradient(110% 100% at 15% 100%, rgba(196, 155, 90, 0.14), transparent 60%),
    linear-gradient(160deg, #2c1c15, var(--brown) 60%, #2c1c15);
  color: var(--text-light);
}

.cta-monogram {
  max-width: 250px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.5));
  transition: transform 0.8s var(--ease-lux);
}

.cta-monogram:hover {
  transform: scale(1.04) rotate(-1.5deg);
}

.cta-input {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: #f6f0e6 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(227, 203, 151, 0.35);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.cta-input::placeholder {
  color: #b6a28d;
  letter-spacing: 0.6px;
}

.cta-input:focus {
  box-shadow: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09) !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.ta-footer {
  background: var(--ink);
  color: #b9a995;
  padding: 70px 0 0;
  text-align: center;
}

.foot-brand .ta-brand-mark {
  color: #d8d4d0;
}

.foot-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #f3ede2;
  margin: 14px 0 4px;
}

.foot-brand-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 34px;
}

.foot-arkade-logo {
  height: 28px;
  width: auto;
  display: inline-block;
  margin: 4px 0 36px;
  opacity: 0.92;
}

.foot-logo {
  height: 64px;
  width: auto;
  display: inline-block;
  margin-bottom: 36px;
}

.foot-info p {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 8px;
}

.foot-info i {
  color: var(--gold);
  font-size: 12px;
}

.foot-rera {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px auto 26px;
  max-width: 560px;
}

.qr-box {
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 6px;
}

.qr-box img {
  border-radius: 8px;
}

.qr-box img {
  width: 72px;
  height: 72px;
  display: block;
}

.foot-rera p {
  font-size: 11.5px;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}

.foot-rera span {
  color: var(--champagne);
}

.foot-disclaimer p {
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.9;
  color: #8d7e6c;
  max-width: 980px;
  margin: 0 auto;
}

.foot-disclaimer strong {
  color: #b9a995;
}

.foot-rule {
  border: 0;
  height: 1px;
  background: rgba(196, 155, 90, 0.25);
  margin: 36px 0 0;
  opacity: 1;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 88px;
}

.foot-bottom p {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 1200px) {
  .foot-bottom {
    /* clearance for the desktop fixed CTA bar */
    padding-bottom: 104px;
  }
}

/* ==========================================================================
   Modal
   ========================================================================== */

.lux-modal {
  border: 1px solid rgba(196, 155, 90, 0.5);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.lux-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}

.lux-modal .modal-body {
  padding: 44px 42px 38px;
  text-align: center;
}

.lux-modal-title {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 6px;
}

.lux-modal-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
}

.lux-modal form {
  text-align: left;
}

.lux-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(196, 155, 90, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-deep);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.lux-modal-close:hover {
  background: var(--gold);
  color: #fff;
  transform: rotate(90deg);
}

/* ==========================================================================
   Submission loader
   ========================================================================== */

/* inline button spinner */
.btn-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: -3px;
  animation: btnSpin 0.7s linear infinite;
}

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

/* full-screen overlay */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(30, 19, 13, 0.85);
  backdrop-filter: blur(7px);
  animation: loaderFade 0.35s ease;
}

.page-loader[hidden] {
  display: none;
}

@keyframes loaderFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.loader-ring {
  position: relative;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(196, 155, 90, 0.25);
  border-top-color: var(--gold-light);
  animation: btnSpin 0.9s linear infinite;
}

.loader-ring span {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--gold-light);
}

.loader-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0;
}

/* ==========================================================================
   Duplicate submission popup
   ========================================================================== */

.dup-popup {
  position: fixed;
  inset: 0;
  z-index: 2060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 19, 13, 0.8);
  backdrop-filter: blur(6px);
  animation: loaderFade 0.3s ease;
}

.dup-popup[hidden] {
  display: none;
}

.dup-card {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(196, 155, 90, 0.5);
  border-radius: var(--radius-lg);
  padding: 38px 34px 34px;
  text-align: center;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  animation: dupPop 0.45s var(--ease-lux);
}

.dup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}

@keyframes dupPop {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dup-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin: 4px 0 10px;
}

.dup-text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

/* ==========================================================================
   Desktop fixed CTA bar (hidden on mobile)
   ========================================================================== */

.desk-fixed-cta {
  position: fixed;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1045;
  justify-content: space-between;
  align-items: center;
  /* no backdrop — the empty middle must not block clicks */
  pointer-events: none;
  animation: ctaRise 0.9s var(--ease-lux) 1.6s backwards;
}

@keyframes ctaRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.desk-fixed-cta .btn-gold,
.desk-fixed-cta .btn-brown {
  pointer-events: auto;
  padding: 14px 30px;
  font-size: 12px;
  box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.55);
}

.desk-fixed-cta .btn-brown {
  border-color: rgba(196, 155, 90, 0.5);
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */

.mobile-fixed-button {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: flex;
}

.m-cta {
  flex: 1;
  border: 0;
  padding: 16px 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold-light);
  border-top: 1px solid rgba(196, 155, 90, 0.5);
  transition: background 0.3s ease;
}

.m-cta i {
  margin-right: 6px;
}

.m-cta.gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  color: #fff;
}

.m-cta:active {
  filter: brightness(1.15);
}

/* ==========================================================================
   Responsive refinements
   ========================================================================== */

@media (max-width: 991.98px) {
  .section {
    padding: 72px 0;
  }

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

  .hero-cta {
    margin-bottom: 44px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hstat {
    flex: 1 1 50%;
    padding: 14px 8px;
    justify-content: flex-start;
  }

  .hstat-num {
    font-size: 30px;
  }

  .hstat-label {
    font-size: 9.5px;
  }

  .hstat:nth-child(3)::before {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

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

  .gal-nav {
    display: none;
  }

  .img-frame::before {
    top: -12px;
    right: -10px;
    bottom: 12px;
    left: 10px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: clamp(44px, 13vw, 60px);
  }

  .lux-form-card {
    padding: 36px 26px 32px;
  }

  .config-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .config-right {
    text-align: left;
  }

  .inv-stat {
    flex: 1 1 100%;
  }

  .inv-stat + .inv-stat::before {
    width: 64%;
    height: 1px;
    top: 0;
    left: 18%;
  }

  .foot-rera {
    flex-direction: column;
  }

  .foot-rera p {
    text-align: center;
  }

  .foot-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
    transform: none;
  }

  .ta-marquee-track {
    animation-duration: 120s;
  }

  .reveal-1, .reveal-2, .reveal-3, .reveal-4, .reveal-5, .reveal-6,
  .desk-fixed-cta {
    animation-duration: 0.01s;
    animation-delay: 0s;
  }
}

/* ==========================================================================
   Thank-you page
   ========================================================================== */

.secton-thankyou {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(196, 155, 90, 0.12), transparent 55%),
    var(--brown);
  padding: 140px 20px 80px;
}

.thankyou-content {
  text-align: center;
  max-width: 560px;
}

.thankyou-content-img img {
  width: 110px;
  margin-bottom: 24px;
}

.thankyou-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  color: #fbf6ed;
  margin-bottom: 8px;
}

.thankyou-title em {
  font-style: normal;
  color: var(--gold-light);
}

.thankyou-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted-light);
  margin-top: 14px;
}

/* ---- Pulse blinker animation ---- */
@keyframes btn-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(194,156,89,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(194,156,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(194,156,89,0); }
}
.btn-pulse {
  animation: btn-pulse-ring 1.8s ease-out infinite;
}











