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

:root {
  --crimson: #7a1128;
  --crimson-dark: #5e0d1e;
  --gold: #c49a2a;
  --gold-light: #d4aa3a;
  --cream: #f5f0e6;
  --cream-dark: #ede6d8;
  --warm-white: #faf7f2;
  --text-dark: #1a0a04;
  --text-mid: #2b2826;
  --text-light: #7a5a3a;
  --border: #ddd4c0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4,
.rise h2, .why h2, .why-point h4,
.states-header h2, .state-text h3,
.plots h2, .amenities h2, .plan h2,
.plan-details h3, .crown-title,
.testi h2, .faq h2, .map-section h3,
.rise-stat h3, .why-quote {
  font-family: 'Cormorant Garamond', serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(15,6,2,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              padding 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
}
nav.scrolled {
  background: rgba(15,6,2,0.96);
  backdrop-filter: blur(8px);
  padding: 10px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 600;
  color: #d4c8b0; text-decoration: none;
  letter-spacing: 0.5px; text-transform: uppercase;
  position: relative; transition: color 0.2s ease;
}
.nav-links a.nav-link-active { color: var(--gold-light); }
.nav-links a.nav-link-active::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); border-radius: 1px;
}
.nav-cta {
  background: var(--gold); color: #fff;
  font-size: 12px; padding: 9px 20px;
  border: none; border-radius: 2%;
  cursor: pointer; letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif; font-weight: 700;
}
body.states-active nav { opacity: 0; pointer-events: none; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  background: #1a1008; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,5,0,0.9) 0%, rgba(10,5,0,0.3) 45%, rgba(10,5,0,0.3) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('../images/render6.webp') center/cover no-repeat; z-index: 0;
}
.hero-content { position: relative; z-index: 2; padding: 140px 80px 80px; max-width: 700px; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px; font-weight: 400; font-style: italic;
  line-height: 1.08; color: #f0e8d8; margin-bottom: 24px;
  animation: fadeUpIn 0.9s ease forwards; opacity: 0; animation-delay: 0.45s;
}
.hero h1 span { color: var(--gold); display: block; }
.hero-sub {
  font-size: 14px; color: #dfdfdf; max-width: 350px;
  line-height: 1.8; margin-bottom: 36px;
  animation: fadeUpIn 0.9s ease forwards; opacity: 0; animation-delay: 0.7s;
}
.hero-btns {
  display: flex; gap: 14px;
  animation: fadeUpIn 0.9s ease forwards; opacity: 0; animation-delay: 0.9s;
}
.hero-content .section-label {
  animation: fadeUpIn 0.8s ease forwards; opacity: 0; animation-delay: 0.2s;
}
.btn-primary {
  background: var(--gold); color: #fff; padding: 13px 28px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Manrope', sans-serif; font-weight: 700;
  border-radius: 2px;
}
.btn-outline-white {
  background: transparent; color: #f0e8d8; padding: 12px 28px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(240,232,216,0.5); cursor: pointer;
  font-family: 'Manrope', sans-serif;
  border-radius: 2px;
}

@keyframes fadeUpIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalScaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* ── TICKER ── */
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker { background: var(--crimson); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tickerScroll 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-content { display: inline-flex; align-items: center; gap: 24px; padding-right: 24px; }
.ticker-content span { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 1px; text-transform: uppercase; }
.ticker-dot { color: rgba(255,255,255,0.35) !important; font-size: 16px !important; }

.section-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }

/* ── ON THE RISE ── */
.rise { background: var(--cream); padding: 50px 80px 72px; }
.rise-inner { max-width: 1100px; margin: 0 auto; }
.rise-label { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); margin-bottom: 15px; }
.rise-label-dot { color: var(--gold); font-size: 8px; }
.rise-heading { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 400; line-height: 1.05; color: var(--text-dark); margin-bottom: 28px; letter-spacing: -0.5px; }
.rise-heading em { font-style: italic; color: var(--crimson); }
.rise-body { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-mid); max-width: 560px; line-height: 1.8; margin-bottom: 60px; }
.rise-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-bottom: 56px; }
.rise-stat { padding: 0 40px 0 0; }
.rise-stat:last-child { padding-right: 0; }
.rise-stat-icon { width: 32px; height: 32px; margin-bottom: 20px; opacity: 0.75; }
.rise-stat-icon svg { width: 100%; height: 100%; }
.rise-stat h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; }
.rise-stat p { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-light); line-height: 1.65; }
.rise-bar { background: var(--crimson); padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 10px; }
.rise-bar-left { display: flex; flex-direction: column; gap: 6px; }
.rise-bar-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; font-style: italic; color: #fff; line-height: 1.1; }
.rise-bar-sub { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); }
.rise-bar-btn { background: var(--gold); color: #fff; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: none; border-radius: 2%; padding: 14px 32px; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background 0.2s; }
.rise-bar-btn:hover { background: var(--gold-light); }

/* ── WHY DEVANAHALLI ── */
.why { background: var(--cream); padding: 50px 80px 80px; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-top { margin-bottom: 20px; }
.why-section-label { display: block; font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: var(--crimson); margin-bottom: 16px; }
.why-heading { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 500; line-height: 1.08; color: var(--text-dark); letter-spacing: -0.5px; }
.why-heading em { font-style: italic; color: var(--crimson); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-points { display: flex; flex-direction: column; }
.why-point { display: flex; gap: 24px; align-items: flex-start; padding: 32px 0; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 600; color: var(--gold); flex-shrink: 0; }
.why-point-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; }
.why-point-body p { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-light); line-height: 1.75; }
.why-divider { width: 100%; height: 1px; background: var(--border); }
.why-quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--text-mid); line-height: 1.65; padding: 32px 0 24px; }
.why-link { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; color: var(--crimson); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.why-link:hover { gap: 10px; }
.why-right { display: flex; flex-direction: column; position: sticky; top: 80px; }
.why-img-wrap { position: relative; width: 100%; height: 260px; overflow: hidden; border-radius: 10px; }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-img-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,4,0,0.82) 0%, transparent 100%); padding: 32px 20px 18px; }
.why-img-caption-label { font-family: 'Manrope', sans-serif; font-size: 10px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.why-img-caption-text { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: #fff; line-height: 1.2; }
.why-table-wrap { border: 1px solid var(--border); border-top: none; margin-top: 10px; border-radius: 10px; }
.why-table-header { background: var(--crimson); padding: 12px 20px; display: flex; align-items: center; border-radius: 10px 10px 0 0; }
.why-table-header span { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.why-table-body { background: var(--warm-white); }
.why-table-row { display: grid; grid-template-columns: 1fr 1fr 130px; align-items: center; padding: 10px 27px; border-bottom: 1px solid var(--border); background: var(--warm-white); }
.why-table-row:last-child { border-bottom: none; }
.why-table-row span { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-mid); }
.why-table-row span:nth-child(2) { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--text-dark); text-align: center; }
.why-table-row span:nth-child(3) { text-align: center; font-size: 12px; color: var(--text-light); }
.why-gain { color: var(--crimson) !important; font-weight: 600 !important; }
.why-table-note { font-family: 'Manrope', sans-serif; font-size: 10px; color: var(--text-light); line-height: 1.6; padding: 12px 20px; border-top: 1px solid var(--border); font-style: italic; }

/* ── 5 STATES ── */
.states-wrapper { position: relative; display: flex; flex-direction: column; }
.states-sticky-header { position: sticky; top: 0; z-index: 10; background: var(--crimson); padding: 30px 80px; }
.states-label { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(196,154,42,0.85); margin-bottom: 10px; }
.states-label-dot { font-size: 8px; color: var(--gold); }
.states-heading { font-family: 'Cormorant Garamond', serif; font-size: 55px; font-weight: 400; color: #f5f0e8; line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.5px; }
.states-heading em { font-style: italic; color: var(--gold-light); }
.states-sub { font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(245,240,232,0.65); max-width: 480px; line-height: 1.75; }
.states-cards { display: flex; flex-direction: column; }
.state-card { display: grid; grid-template-columns: 1fr 1fr; height: calc(100vh - var(--states-header-height, 220px)); background: var(--warm-white); }
.state-card-img { position: relative; overflow: hidden; height: 100%; }
.state-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.state-card:hover .state-card-img img { transform: scale(1.03); }
.state-card-img-label { position: absolute; bottom: 20px; left: 24px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); background: rgba(10,4,0,0.35); padding: 5px 12px; backdrop-filter: blur(4px); }
.state-card-text { display: flex; flex-direction: column; justify-content: center; padding: 60px 72px; background: var(--warm-white); height: 100%; overflow: hidden; }
.state-card-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.state-card-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 500; color: var(--text-dark); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.3px; }
.state-card-text p { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-light); line-height: 1.8; max-width: 380px; }
body.states-active { scrollbar-width: none; -ms-overflow-style: none; }
body.states-active::-webkit-scrollbar { display: none; }
body.states-active nav { opacity: 0; pointer-events: none; }

/* ── CHOOSE PLOT ── */
.plots { background: var(--cream); padding: 80px 80px; }
.plots-inner { max-width: 1050px; margin: 0 auto; }
.plots-label { display: block; font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: var(--gold); margin-bottom: 10px; }
.plots-heading { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 500; color: var(--text-dark); line-height: 1.1; margin-bottom: 35px; letter-spacing: -0.5px; }
.plots-heading em { font-style: italic; color: var(--crimson); }
.plots-gold-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 44px; }
.plots-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; align-items: stretch; }
.plots-col { display: flex; flex-direction: column; gap: 14px; }
.plot-card { background: #fff; border-radius: 16px; border: 1px solid #e6ddd0; padding: 28px 24px 24px; display: flex; flex-direction: column; flex: 1; position: relative; cursor: pointer; transition: background 0.3s ease, border-color 0.3s ease; }
.plot-card:not(.plot-card--featured):hover { background: var(--crimson); border-color: var(--crimson); }
.plot-card:not(.plot-card--featured):hover .plot-card-type { color: rgba(255,255,255,0.55); }
.plot-card:not(.plot-card--featured):hover .plot-card-size { color: #fff; }
.plot-card:not(.plot-card--featured):hover .plot-x { color: rgba(255,255,255,0.6); }
.plot-card:not(.plot-card--featured):hover .plot-card-sqft { color: rgba(255,255,255,0.5); }
.plot-card:not(.plot-card--featured):hover .plot-card-link { color: var(--gold-light); background: rgba(196,154,42,0.15); border-color: rgba(196,154,42,0.4); gap: 8px; }
.plot-card:not(.plot-card--featured):hover .plot-card-link:hover { background: rgba(196,154,42,0.25); border-color: rgba(196,154,42,0.65); }
.plot-card-type { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson); margin-bottom: 14px; display: block; transition: color 0.3s; }
.plot-card-size { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--text-dark); line-height: 1; margin-bottom: 6px; transition: color 0.3s; }
.plot-x { font-size: 24px; color: var(--text-mid); transition: color 0.3s; }
.plot-card-size--custom { font-size: 38px; font-style: italic; font-weight: 400; }
.plot-card-sqft { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-light); margin-bottom: 20px; transition: color 0.3s; }
.plot-card-link { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; color: var(--crimson); text-decoration: none; margin-top: auto; display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 6px; border: 1px solid transparent; transition: color 0.3s, gap 0.2s, background 0.3s, border-color 0.3s; align-self: flex-start; }
.plot-card--featured { background: var(--crimson); border-color: var(--crimson); padding: 36px 24px 24px; flex: 1.4; }
.plot-card-popular { position: absolute; top: -16px; left: 20px; background: var(--gold); color: #fff; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; padding: 7px 16px; border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap; }
.plot-card--featured .plot-card-type { color: rgba(255,255,255,0.55); }
.plot-card--featured .plot-card-size { color: #fff; font-size: 42px; }
.plot-card--featured .plot-x { color: rgba(255,255,255,0.6); font-size: 28px; }
.plot-card--featured .plot-card-sqft { color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.plot-card-price { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.plot-card-onwards { font-family: 'Manrope', sans-serif; font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 24px; flex: 1; }
.plot-card-book { width: 100%; background: var(--gold); color: #fff; border: none; padding: 15px; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border-radius: 5px; transition: background 0.2s; margin-top: auto; }
.plot-card-book:hover { background: #b8882a; }
.plots-panel { background: #fff; border-radius: 16px; border: 1px solid #e6ddd0; display: flex; flex-direction: column; overflow: hidden; align-self: stretch; }
.plots-panel-top { padding: 28px 24px 24px; flex: 1; }
.plots-panel-top h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--text-dark); margin-bottom: 20px; }
.plots-includes-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.plots-includes-list li { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-light); display: flex; align-items: flex-start; gap: 12px; line-height: 1.4; }
.plots-includes-list li::before { content: '✓'; color: var(--text-light); font-size: 12px; font-weight: 600; flex-shrink: 0; }
.plots-panel-divider { height: 1px; background: #e6ddd0; margin: 0 24px; }
.plots-panel-bottom { padding: 22px 24px 24px; text-align: center; }
.plots-panel-from { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.plots-panel-price { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.plots-panel-for { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.plots-panel-btn { width: 100%; background: var(--crimson); color: #fff; border: none; padding: 16px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 5px; transition: background 0.2s; }
.plots-panel-btn:hover { background: var(--crimson-dark); }

/* ── AMENITIES ── */
.amenities { background: var(--crimson); padding: 72px 80px 64px; }
.amenities-inner { max-width: 1100px; margin: 0 auto; }
.amenities-label { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(196,154,42,0.85); margin-bottom: 10px; }
.amenities-label-dot { font-size: 8px; color: var(--gold); }
.amenities-heading { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 400; color: #f5f0e8; line-height: 1.05; margin-bottom: 14px; letter-spacing: -0.5px; }
.amenities-heading em { font-style: italic; color: var(--gold-light); }
.amenities-sub { font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(245,240,232,0.55); margin-bottom: 36px; line-height: 1.6; }
.amenities-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.am-row { display: flex; gap: 12px; height: 220px; }
.am-row .am-card--wide { flex: 1.65; }
.am-row .am-card--narrow { flex: 1; }
.am-card { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; flex-shrink: 0; }
.am-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.am-card:hover img { transform: scale(1.04); }
.am-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%); z-index: 1; transition: opacity 0.3s ease; }
.am-card-label { position: absolute; bottom: 16px; left: 18px; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.5); transition: opacity 0.3s ease; z-index: 2; }
.am-card-overlay { position: absolute; inset: 0; background: rgba(10,4,0,0.78); display: flex; flex-direction: column; justify-content: center; padding: 28px; opacity: 0; transition: opacity 0.35s ease; z-index: 3; border-radius: 12px; }
.am-card:hover .am-card-overlay { opacity: 1; }
.am-card:hover .am-card-label { opacity: 0; }
.am-card:hover::before { opacity: 0; }
.am-card-overlay-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 16px; }
.am-card-overlay-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.am-card-overlay-list li { font-family: 'Manrope', sans-serif; font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 10px; line-height: 1.3; }
.am-card-overlay-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }
.amenities-tags { display: flex; flex-wrap: wrap; gap: 10px; padding: 8px 16px; border: 1px solid rgba(245,240,232,0.25); border-radius: 12px; }
.am-tag { font-family: 'Manrope', sans-serif; font-size: 12px; color: rgba(245,240,232,0.7); border: 1px solid rgba(245,240,232,0.25); padding: 7px 16px; border-radius: 20px; transition: border-color 0.2s, color 0.2s; cursor: default; }
.am-tag:hover { border-color: rgba(245,240,232,0.55); color: #f5f0e8; }

/* ── MASTERFULLY PLANNED ── */
.plan { background: var(--cream); padding: 80px 80px; }
.plan-inner { max-width: 1100px; margin: 0 auto; }
.plan-label { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.plan-label-dot { font-size: 8px; color: var(--gold); }
.plan-heading { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 400; color: var(--text-dark); line-height: 1.08; margin-bottom: 16px; letter-spacing: -0.5px; }
.plan-heading em { font-style: italic; color: var(--crimson); }
.plan-sub { font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--text-light); max-width: 700px; line-height: 1.7; margin-bottom: 32px; }
.plan-stats { display: flex; gap: 0; margin-bottom: 30px; padding-bottom: 35px; border-bottom: 1px solid var(--border); }
.plan-stat { flex: 1; text-align: center; padding-right: 24px; border-right: 1px solid var(--border); margin-right: 24px; }
.plan-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.plan-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 35px; font-weight: 800; color: var(--crimson); line-height: 1; margin-bottom: 6px; }
.plan-stat-lbl { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.plan-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; }
.plan-tab { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; padding: 11px 36px; border-radius: 50px; border: 1.5px solid var(--border); background: transparent; color: var(--text-light); cursor: pointer; transition: all 0.25s ease; }
.plan-tab:hover { border-color: var(--crimson); color: var(--crimson); }
.plan-tab--active { background: var(--crimson); border-color: var(--crimson); color: #fff !important; }
.plan-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: stretch; }
.plan-map-img { position: relative; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #ede8dc; height: 100%; }
.plan-map-img img { width: 100%; height: 100%; display: block; min-height: 0; transition: opacity 0.3s ease; }
.plan-phase-badge { position: absolute; top: 16px; left: 16px; background: var(--crimson); color: #fff; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; z-index: 2; }
.plan-right { display: flex; flex-direction: column; padding-top: 8px; height: 100%; }
.plan-legend-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--text-dark); margin-bottom: 24px; }
.plan-legend { display: flex; flex-direction: column; gap: 16px; margin-bottom: 18px; }
.plan-legend-item { display: flex; align-items: center; gap: 14px; font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-mid); }
.plan-legend-dot { width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0; }
.plan-divider { height: 1px; background: var(--gold); opacity: 0.35; margin-bottom: 28px; }
.plan-highlights-label { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson); margin-bottom: 20px; }
.plan-highlights { list-style: none; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.plan-highlights li { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.plan-highlights li::before { content: '✦'; color: var(--crimson); font-size: 8px; flex-shrink: 0; margin-top: 4px; }

  .crown { background: var(--cream); padding: 60px 0; }
  .crown-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

  .plan-header { text-align: left; margin-bottom: 48px; }
  .plan-label {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  }
  .plan-label-dot { font-size: 8px; color: var(--gold); }
  .crown-heading {
    font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 400; color: var(--text-dark); line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px;
  }
  
  .crown-heading em { font-style: italic; color: var(--crimson); }

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

  /* SVG diagram */
  .crown-diagram { width: 100%; }
  #crown-svg { width: 100%; height: auto; display: block; overflow: visible; }

  /* Cards */
  .crown-cards { display: flex; flex-direction: column; gap: 10px; }

  .crown-card {
    background: #ede8dc;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 18px 22px 20px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    width: 100%;
  }
  .crown-card:hover { border-color: #ddd0bc; }
  .crown-card.active {
    background: #fff;
    border-color: #e0d4be;
    box-shadow: 0 2px 20px rgba(122,17,40,0.07);
  }

  .crown-card-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px; width: 100%;
  }
  .crown-card-header h3 {
    font-family: Georgia, serif; font-size: 20px; font-weight: 500;
    color: var(--text-light); white-space: nowrap; transition: color 0.3s;
    flex-shrink: 0;
  }
  .crown-card.active .crown-card-header h3 { color: var(--crimson); }
  .crown-card-line {
    flex: 1; height: 1px; background: var(--gold); opacity: 0.25; transition: opacity 0.3s;
  }
  .crown-card.active .crown-card-line { opacity: 0.55; }

  .crown-card-places {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .crown-place {
    display: flex; flex-direction: column; align-items: center;
    gap: 7px; text-align: center; padding: 6px 4px;
  }
  .crown-place-icon {
    width: 22px; height: 22px; color: #c0b090; transition: color 0.3s; flex-shrink: 0;
  }
  .crown-card.active .crown-place-icon { color: var(--gold); }
  .crown-place span {
    font-family: 'Manrope', sans-serif; font-size: 11px;
    color: var(--text-light); line-height: 1.3; transition: color 0.3s;
  }
  .crown-card.active .crown-place span { color: var(--text-mid); }

  .crown-quote {
    display: flex; align-items: flex-start; gap: 14px; margin-top: 8px;
  }
  .crown-quote-bar {
    width: 3px; min-height: 36px; background: var(--gold);
    opacity: 0.4; flex-shrink: 0; border-radius: 2px;
  }
  .crown-quote p {
    font-family: Georgia, serif; font-size: 14px; font-style: italic;
    color: var(--text-light); line-height: 1.7;
  }

  /* SVG pins transition */
  #pins-10, #pins-20, #pins-30 { transition: opacity 0.45s ease; }
  #ring-10, #ring-10-fill, #ring-20, #ring-30 {
    transition: stroke 0.4s, stroke-width 0.4s, fill 0.4s, fill-opacity 0.4s;
  }

/* ── TESTIMONIALS ── */
.testi { background: var(--cream); padding: 80px 80px 72px; }
.testi-inner { max-width: 1100px; margin: 0 auto; }
.testi-header { margin-bottom: 48px; }
.testi-label { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.testi-label-dot { font-size: 8px; color: var(--gold); }
.testi-heading { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 400; color: var(--text-dark); line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
.testi-heading em { font-style: italic; color: var(--crimson); }
.testi-sub { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--text-light); line-height: 1.6; }
.testi-layout { display: grid; grid-template-columns: 1fr 0.52fr; gap: 28px; align-items: start; }
.testi-left { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.testi-featured { background: var(--crimson); border-radius: 16px; padding: 44px 48px 40px; position: relative; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; }
.testi-bigquote { position: absolute; top: 20px; right: 36px; font-family: 'Cormorant Garamond', serif; font-size: 120px; line-height: 1; color: rgba(255,255,255,0.08); font-weight: 700; pointer-events: none; user-select: none; }
.testi-featured-stars, .testi-featured-quote, .testi-featured-author { transition: opacity 0.4s ease, transform 0.4s ease; }
.testi-featured.switching .testi-featured-stars,
.testi-featured.switching .testi-featured-quote,
.testi-featured.switching .testi-featured-author { opacity: 0; transform: translateY(8px); }
.testi-featured-stars { font-size: 18px; color: var(--gold-light); letter-spacing: 3px; margin-bottom: 24px; }
.testi-featured-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: #f5f0e8; line-height: 1.65; margin-bottom: 36px; flex: 1; }
.testi-featured-author { display: flex; align-items: center; gap: 18px; }
.testi-featured-avatar { width: 52px; height: 52px; border-radius: 50%; background: rgba(196,154,42,0.25); border: 1.5px solid rgba(196,154,42,0.5); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
.testi-featured-name { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.testi-featured-role { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--gold-light); margin-bottom: 3px; }
.testi-featured-plot { font-family: 'Manrope', sans-serif; font-size: 12px; color: rgba(255,255,255,0.5); }
.testi-nav { display: flex; align-items: center; gap: 16px; }
.testi-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #d4c8b4; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-mid); flex-shrink: 0; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.testi-arrow:hover { border-color: var(--crimson); color: var(--crimson); background: rgba(122,17,40,0.05); }
.testi-dots { display: flex; align-items: center; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 20px; background: #c8baa8; cursor: pointer; transition: background 0.3s ease, width 0.3s ease; border: none; padding: 0; flex-shrink: 0; }
.testi-dot.active { width: 24px; background: var(--crimson); }
.testi-right { min-width: 0; }
.testi-right-list { display: flex; flex-direction: column; gap: 12px; overflow: visible; padding-right: 2px; }
.testi-mini-card { background: #fff; border: 1px solid #e8e0d0; border-radius: 12px; padding: 18px 20px 16px; cursor: pointer; flex-shrink: 0; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.testi-mini-card:nth-child(n+4) { display: none; }
.testi-mini-card:hover { border-color: #d4b8b8; box-shadow: 0 2px 12px rgba(122,17,40,0.06); }
.testi-mini-card.active { border-color: #d4b8b8; box-shadow: 0 2px 16px rgba(122,17,40,0.1); background: #fdf8f4; }
.testi-mini-stars { font-size: 11px; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.testi-mini-quote { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.testi-mini-author { display: flex; align-items: center; gap: 10px; }
.testi-mini-avatar { width: 32px; height: 32px; border-radius: 50%; background: #f0e4e4; border: 1px solid #e0d0d0; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; color: var(--crimson); flex-shrink: 0; }
.testi-mini-name { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.testi-mini-plot { font-family: 'Manrope', sans-serif; font-size: 10px; color: var(--crimson); }

/* ── FAQ ── */
.faq { background: var(--crimson); padding: 88px 80px 80px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-label { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(196,154,42,0.8); margin-bottom: 16px; }
.faq-label-dot { font-size: 8px; color: var(--gold); }
.faq-heading { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 400; color: #f5f0e8; line-height: 1.2; letter-spacing: -0.3px; }
.faq-heading em { font-style: italic; color: var(--gold-light); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.faq-item { border: 1px solid rgba(245,240,232,0.2); border-radius: 12px; overflow: hidden; transition: border-color 0.3s ease; }
.faq-item.open { border-color: rgba(245,240,232,0.35); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; background: transparent; border: none; cursor: pointer; text-align: left; transition: background 0.25s ease; }
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-q span:first-child { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--gold-light); line-height: 1.5; flex: 1; transition: color 0.25s ease; }
.faq-item.open .faq-q span:first-child { color: #f5f0e8; }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; line-height: 1; transition: transform 0.35s ease, color 0.25s ease; font-weight: 300; width: 20px; text-align: center; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold-light); }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(245,240,232,0.65); line-height: 1.8; padding: 0 28px; transition: padding 0.35s ease; }
.faq-item.open .faq-answer { padding: 0 28px 24px; }
.faq-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.faq-cta-text { font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(245,240,232,0.5); }
.faq-cta-btn { background: var(--gold); color: #2c1a0e; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: 2px; padding: 16px 48px; cursor: pointer; transition: background 0.2s ease, transform 0.15s ease; }
.faq-cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold-sm { background: var(--gold); color: #fff; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: none; padding: 13px 36px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.btn-gold-sm:hover { background: var(--gold-light); }

/* ── MAP & CONTACT ── */
.map-section { background: var(--cream); padding: 64px 80px; }
.map-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 48px rgba(26,10,4,0.12); }
.map-left { position: relative; overflow: hidden; background: #2a1a0e; }
.map-left iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.map-pin-overlay { position: absolute; top: 47%; left: 49.5%; transform: translate(-50%,-50%); z-index: 10; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; pointer-events: none; }
@keyframes pinPulse { 0% { transform: scale(0.5); opacity: 0.75; } 100% { transform: scale(3.2); opacity: 0; } }
.map-pin-pulse { position: absolute; width: 32px; height: 32px; border-radius: 50%; background: rgba(122,17,40,0.5); animation: pinPulse 2.4s ease-out infinite; }
.map-pin-pulse--1 { animation-delay: 0s; }
.map-pin-pulse--2 { animation-delay: 0.8s; }
.map-pin-pulse--3 { animation-delay: 1.6s; }
.map-pin-dot { position: relative; z-index: 2; width: 34px; height: 34px; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.45)); }
.map-pin-dot svg { width: 100%; height: 100%; }
.map-right { background: var(--warm-white); padding: 44px 48px 40px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.map-form-header { margin-bottom: 22px; }
.map-form-label { display: flex; align-items: center; gap: 8px; font-family: 'Manrope', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.map-form-dot { font-size: 7px; color: var(--gold); }
.map-form-heading { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--text-dark); line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.3px; }
.map-form-heading em { font-style: italic; color: var(--crimson); }
.map-form-sub { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.map-form-rule { width: 40px; height: 2px; background: var(--gold); opacity: 0.55; }
.map-form { display: flex; flex-direction: column; gap: 12px; }
.map-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.map-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.map-field label { font-family: 'Manrope', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); }
.map-input-wrap { position: relative; min-width: 0; }
.map-input-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; color: #b8a890; pointer-events: none; transition: color 0.25s ease; }
.map-input-wrap:focus-within .map-input-icon { color: var(--crimson); }
.map-input-wrap input, .map-input-wrap select { width: 100%; min-width: 0; font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--text-dark); background: #fff; border: 1px solid #e0d4c0; border-radius: 8px; padding: 10px 12px 10px 34px; outline: none; appearance: none; -webkit-appearance: none; transition: border-color 0.25s ease, box-shadow 0.25s ease; box-sizing: border-box; }
.map-input-wrap input::placeholder { color: #c0ae90; font-size: 11px; }
.map-input-wrap input:focus, .map-input-wrap select:focus { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(122,17,40,0.07); }
.map-input-wrap.error input, .map-input-wrap.error select { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.07); }
.map-field-error { font-family: 'Manrope', sans-serif; font-size: 10px; color: #c0392b; min-height: 12px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-select-wrap { position: relative; }
.map-select-wrap select { padding-right: 26px; cursor: pointer; }
.map-select-arrow { position: absolute; right: 10px; top: 50%; transform: translateY(-50%) rotate(90deg); font-size: 14px; color: var(--text-light); pointer-events: none; }
.map-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--crimson); color: #fff; font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: none; border-radius: 8px; padding: 13px 20px; cursor: pointer; margin-top: 2px; transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; box-sizing: border-box; }
.map-submit svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s ease; }
.map-submit:hover { background: var(--crimson-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(122,17,40,0.22); }
.map-submit:hover svg { transform: translateX(3px); }
.map-submit:active { transform: translateY(0); box-shadow: none; }
.map-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.map-success { display: none; align-items: flex-start; gap: 12px; background: linear-gradient(135deg,#f5f0e6,#ede8d8); border: 1px solid rgba(196,154,42,0.3); border-radius: 8px; padding: 14px 16px; margin-top: 2px; }
.map-success.visible { display: flex; animation: fadeUpIn 0.4s ease forwards; }
.map-success-check { width: 28px; height: 28px; border-radius: 50%; background: var(--crimson); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-success-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.map-success-msg { font-family: 'Manrope', sans-serif; font-size: 11px; color: var(--text-light); line-height: 1.5; }
.map-form-note { font-family: 'Manrope', sans-serif; font-size: 10px; color: var(--text-light); text-align: center; opacity: 0.6; margin-top: 0; }

/* ── FOOTER ── */
.footer { background: #0a0602; padding: 20px 80px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-icon { width: 72px; height: 72px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.footer-icon img { width: 100%; height: 100%; object-fit: contain; filter: invert(1) brightness(1); opacity: 0.7; }
.footer-project-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: #c8b898; letter-spacing: 1px; margin-bottom: 4px; }
.footer-project-tag { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(200,184,152,0.4); margin-bottom: 28px; }
.footer-rera { display: flex; align-items: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; justify-content: center; }
.footer-rera-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.footer-rera-label { font-family: 'Manrope', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
.footer-rera-num { font-family: 'Manrope', sans-serif; font-size: 10px; color: rgba(200,184,152,0.45); }
.footer-rera-sep { width: 1px; height: 32px; background: rgba(200,184,152,0.15); flex-shrink: 0; }
.footer-rule { width: 100%; height: 1px; background: rgba(255,255,255,0.06); }
.footer-bottom { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 20px; }
.footer-copy { font-family: 'Manrope', sans-serif; font-size: 11px; color: rgba(200,184,152,0.4); flex: 1; text-align: left; white-space: nowrap; }
.footer-copy a { color: rgba(200,184,152,0.55); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.footer-copy a:hover { color: rgba(200,184,152,0.85); }
.footer-logo { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.footer-logo img { height: 36px; width: auto; object-fit: contain; opacity: 0.85; filter: brightness(0.9); transition: opacity 0.2s; }
.footer-logo img:hover { opacity: 1; }
.footer-links { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 8px; white-space: nowrap; }
.footer-links a { font-family: 'Manrope', sans-serif; font-size: 11px; color: rgba(200,184,152,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(200,184,152,0.85); }
.footer-links-sep { font-family: 'Manrope', sans-serif; font-size: 11px; color: rgba(200,184,152,0.2); }
.footer-disclaimer { font-family: 'Manrope', sans-serif; font-size: 10px; color: rgba(200,184,152,0.22); line-height: 1.7; text-align: center; max-width: 820px; padding: 14px 0 28px; border-top: 1px solid rgba(255,255,255,0.04); width: 100%; }

/* ── STICKY ENQUIRE BUTTON ── */
.sticky-enquire { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.sticky-enquire.visible { opacity: 1; pointer-events: all; }
.sticky-call-btn { display: none; align-items: center; justify-content: center; background: var(--gold); color: #fff; width: 40px; height: 40px; border-radius: 10px 0 0 10px; box-shadow: -4px 0 20px rgba(196,154,42,0.3); text-decoration: none; transition: background 0.2s ease, width 0.2s ease; flex-shrink: 0; }
.sticky-call-btn svg { width: 18px; height: 18px; }
.sticky-call-btn:hover { background: var(--gold-light); width: 46px; }
.sticky-enquire-btn { display: flex; flex-direction: row; align-items: center; gap: 8px; background: var(--crimson); color: #fff; border: none; cursor: pointer; padding: 16px 10px; border-radius: 10px 0 0 10px; box-shadow: -4px 0 20px rgba(122,17,40,0.3); transition: background 0.2s ease, padding 0.2s ease; }
.sticky-enquire-btn svg { width: 16px; height: 16px; flex-shrink: 0; transform: rotate(90deg); }
.sticky-enquire-btn span { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.sticky-enquire-btn:hover { background: var(--crimson-dark); padding: 16px 14px; }

/* ── MODAL BACKDROP ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
}
.modal-backdrop.active { display: block; animation: fadeIn 0.25s ease; }

/* ── MODAL POPUP ── */
.modal-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1101;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-popup.active {
  display: flex;
  animation: modalScaleIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-inner {
  background: var(--warm-white);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(10,4,0,0.4);
}

/* ── MODAL HEADER ── */
.modal-header {
  background: var(--crimson);
  padding: 28px 32px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(196,154,42,0.8);
  margin-bottom: 10px;
}
.modal-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 6px;
}
.modal-heading em { font-style: italic; color: var(--gold-light); }
.modal-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
}
.modal-close {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: 2px;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

/* ── MODAL BODY & FORM ── */
.modal-body { padding: 28px 32px 28px; }

.modal-form { display: flex; flex-direction: column; gap: 14px; }

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-field label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
}
.modal-field input,
.modal-field select {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid #e0d4c0;
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}
.modal-field input::placeholder { color: #c0ae90; font-size: 12px; }
.modal-field input:focus,
.modal-field select:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(122,17,40,0.07);
}
.modal-field.error input,
.modal-field.error select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.07);
}
.modal-field-error {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: #c0392b;
  min-height: 12px;
  display: block;
}

.modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--crimson);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.modal-submit svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }
.modal-submit:hover { background: var(--crimson-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(122,17,40,0.22); }
.modal-submit:hover svg { transform: translateX(3px); }
.modal-submit:active { transform: translateY(0); box-shadow: none; }
.modal-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }

.modal-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg,#f5f0e6,#ede8d8);
  border: 1px solid rgba(196,154,42,0.3);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 2px;
}
.modal-success.visible { display: flex; animation: fadeUpIn 0.4s ease forwards; }
.modal-success-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.modal-success-msg {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}
.modal-note {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  text-align: center;
  opacity: 0.6;
  margin: 0;
}

/* ── ENTRY ANIMATIONS ── */
.anim-label { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-label.anim-label--visible { opacity: 1; transform: translateY(0); }
.anim-header { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-header.anim-header--visible { opacity: 1; transform: translateY(0); }
.anim-sub { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-sub.anim-sub--visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ══════════════════════════════════════════════════════ */

/* ── Desktop compact ≤1280px ── */
@media (max-width: 1280px) {
  nav { padding: 12px 32px; }
  nav.scrolled { padding: 8px 32px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .hero-content { padding: 120px 60px 60px; }
  .hero h1 { font-size: 56px; }
  .rise { padding: 44px 60px 60px; }
  .rise-heading { font-size: 44px; }
  .rise-body { margin-bottom: 44px; }
  .why { padding: 44px 60px 64px; }
  .why-heading { font-size: 44px; }
  .why-layout { gap: 52px; }
  .states-sticky-header { padding: 24px 60px; }
  .states-heading { font-size: 46px; }
  .plots { padding: 60px 60px; }
  .plots-heading { font-size: 44px; }
  .amenities { padding: 60px 60px 52px; }
  .amenities-heading { font-size: 46px; }
  .plan { padding: 64px 60px; }
  .plan-heading { font-size: 46px; }
  .crown { padding: 60px 60px 52px; }
  .crown-heading { font-size: 44px; }
  .testi { padding: 60px 60px; }
  .testi-heading { font-size: 46px; }
  .faq { padding: 64px 60px; }
  .faq-heading { font-size: 46px; }
  .map-section { padding: 52px 60px; }
  .footer { padding: 18px 30px 0; }
}

/* ── Tablet ≤1024px ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  nav { padding: 14px 28px; }
  nav.scrolled { padding: 10px 28px; }
  .hero-content { padding: 110px 40px 60px; }
  .hero h1 { font-size: 48px; }
  .rise { padding: 48px 40px; }
  .rise-heading { font-size: 44px; }
  .rise-stats { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .rise-stat { padding-right: 0; }
  .rise-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .why { padding: 56px 40px; }
  .why-heading { font-size: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-right { position: static; }
  .states-sticky-header { padding: 22px 40px; }
  .states-heading { font-size: 40px; }
  .state-card { grid-template-columns: 1fr; height: auto; }
  .state-card-img { height: 280px; }
  .state-card-text { padding: 36px 40px; }
  .plots { padding: 52px 40px; }
  .plots-heading { font-size: 40px; }
  .plots-layout { grid-template-columns: 1fr 1fr; }
  .plots-panel { grid-column: 1 / -1; }
  .amenities { padding: 52px 40px 44px; }
  .amenities-heading { font-size: 44px; }
  .am-row { height: auto; flex-direction: column; }
  .am-row .am-card--wide,
  .am-row .am-card--narrow { flex: none; height: 200px; }
  .plan { padding: 52px 40px; }
  .plan-heading { font-size: 44px; }
  .plan-layout { grid-template-columns: 1fr; gap: 36px; }
  .plan-map-img { height: 320px; }
  .crown { padding: 52px 40px 44px; }
  .crown-heading { font-size: 40px; }
  .crown-layout { grid-template-columns: 1fr; gap: 32px; }
  .crown-diagram { max-width: 420px; margin: 0 auto; }
  .testi { padding: 52px 40px; }
  .testi-heading { font-size: 44px; }
  .testi-layout { grid-template-columns: 1fr; }
  .testi-right { display: none; }
  .faq { padding: 56px 40px; }
  .faq-heading { font-size: 44px; }
  .map-section { padding: 44px 40px; }
  .map-layout { grid-template-columns: 1fr; border-radius: 12px; }
  .map-left { min-height: 320px; border-radius: 12px 12px 0 0; }
  .map-left iframe { position: relative; min-height: 320px; }
  .map-right { padding: 32px 28px; border-radius: 0 0 12px 12px; }
  .map-form-heading { font-size: 30px; }
  .footer { padding: 32px 40px 0; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── Mobile ≤768px ── */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-logo img { height: 28px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }
  .hero-content { padding: 100px 24px 48px; max-width: 100%; }
  .hero h1 { font-size: 36px; line-height: 1.1; }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .btn-primary, .btn-outline-white { width: auto; text-align: center; padding: 12px 20px; font-size: 11px; }
  .rise { padding: 44px 24px 40px; }
  .rise-heading { font-size: 36px; }
  .rise-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rise-bar { padding: 22px 20px; }
  .rise-bar-title { font-size: 22px; }
  .why { padding: 44px 24px; }
  .why-heading { font-size: 32px; line-height: 1.1; }
  .why-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-img-wrap { height: 220px; }
  .states-sticky-header { padding: 18px 24px; }
  .states-heading { font-size: 32px; }
  .states-sub { font-size: 12px; }
  .state-card { grid-template-columns: 1fr; height: auto; }
  .state-card-img { height: 220px; }
  .state-card-text { padding: 28px 24px; }
  .state-card-text h3 { font-size: 28px; }
  .state-card-text p { font-size: 12px; }
  .plots { padding: 40px 24px; }
  .plots-heading { font-size: 34px; }
  .plots-layout { grid-template-columns: 1fr; }
  .amenities { padding: 44px 24px 40px; }
  .amenities-heading { font-size: 36px; line-height: 1.1; }
  .am-row { flex-direction: column; height: auto; }
  .am-row .am-card--wide,
  .am-row .am-card--narrow { flex: none; height: 180px; }
  .plan { padding: 44px 24px; }
  .plan-heading { font-size: 34px; }
  .plan-stats { display: none; }
  .plan-stat { min-width: 50%; width: 50%; flex: none; border-right: none; margin-right: 0; padding-right: 0; padding-bottom: 16px; }
  .plan-tabs { gap: 8px; }
  .plan-tab { padding: 10px 20px; font-size: 12px; }
  .plan-layout { grid-template-columns: 1fr; gap: 24px; }
  .plan-map-img { height: 260px; }
  .crown { padding: 44px 24px 40px; }
  .crown-heading { font-size: 32px; }
  .crown-layout { grid-template-columns: 1fr; gap: 24px; }
  .crown-diagram { max-width: 320px; }
  .crown-card-header h3 { font-size: 18px; }
  .testi { padding: 44px 24px; }
  .testi-heading { font-size: 34px; line-height: 1.1; }
  .testi-layout { grid-template-columns: 1fr; }
  .testi-right { display: none; }
  .testi-featured { padding: 28px 24px; min-height: auto; }
  .testi-featured-quote { font-size: 18px; }
  .faq { padding: 48px 24px; }
  .faq-heading { font-size: 34px; }
  .faq-q { font-size: 13px; padding: 14px 5px; }
  .map-section { padding: 36px 24px; }
  .map-layout { grid-template-columns: 1fr; border-radius: 12px; }
  .map-left { min-height: 260px; border-radius: 12px 12px 0 0; }
  .map-left iframe { position: relative; min-height: 260px; }
  .map-right { padding: 24px 20px; border-radius: 0 0 12px 12px; }
  .map-form-heading { font-size: 26px; }
  .map-field-row { grid-template-columns: 1fr; }
  .footer { padding: 28px 24px 0; }
  .footer-project-name { font-size: 18px; }
  .footer-rera { flex-direction: column; gap: 14px; }
  .footer-rera-sep { display: none; }
  .footer-rera-num { font-size: 9px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }
  .footer-logo img { height: 28px; }
  .sticky-call-btn { display: flex; }
  /* Modal full-screen on mobile */
  .modal-inner { border-radius: 12px; max-height: 96vh; }
  .modal-header { padding: 22px 22px 18px; }
  .modal-heading { font-size: 26px; }
  .modal-body { padding: 20px 22px 22px; }
  .modal-row { grid-template-columns: 1fr; }
}

/* ── Mobile small ≤480px ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .rise-heading { font-size: 30px; }
  .rise-stats { grid-template-columns: 1fr; gap: 20px; }
  .why-heading { font-size: 28px; }
  .states-heading { font-size: 28px; }
  .state-card-text h3 { font-size: 22px; }
  .plots-heading { font-size: 28px; }
  .amenities-heading { font-size: 30px; }
  .plan-heading { font-size: 28px; }
  .plan-stat { min-width: 100%; }
  .crown-heading { font-size: 28px; }
  .crown-diagram { max-width: 100%; }
  .testi-heading { font-size: 28px; }
  .testi-featured-quote { font-size: 16px; }
  .faq-heading { font-size: 28px; }
  .map-form-heading { font-size: 22px; }
  .modal-heading { font-size: 22px; }
}

/* ══════════════════════════════
   MOBILE NAV HAMBURGER
   ══════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #d4c8b0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,4,2,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  z-index: 1001;
}

.nav-mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,232,216,0.85);
  text-decoration: none;
  padding: 10px 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.2s ease, opacity 0.4s ease, transform 0.4s ease;
}

.nav-mobile-menu.open a:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.nav-mobile-menu.open a:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.nav-mobile-menu.open a:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.nav-mobile-menu.open a:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.nav-mobile-menu.open a:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.nav-mobile-menu.open a:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.nav-mobile-menu.open a:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

.nav-mobile-menu a:hover { color: var(--gold-light); }

.nav-mobile-menu .nav-mobile-cta {
  margin-top: 20px;
  background: var(--gold);
  color: #fff !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-style: normal !important;
  padding: 14px 40px !important;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition: background 0.2s ease, opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s !important;
}

.nav-mobile-menu.open .nav-mobile-cta { opacity: 1; transform: translateY(0); }
.nav-mobile-menu .nav-mobile-cta:hover { background: var(--gold-light); }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-mobile-close:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

.disclaimer
{
  color: var(--text-light);
  font-size: 12px;
}

  .float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.my-float {
    margin-top: 16px;
}
@media only screen and (max-width: 600px) {
    .float {
        bottom: 70px;
    }
}